/* Theme base styles */

/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
  --layout-max-width: 1248px;

  --deazy-yellow: #FFBD3E;
  --deazy-black: #141414;
  --deazy-grey: #4A4E60;
  --deazy-light-grey: #D4D9DC;
  --deazy-chalk: #F8F8F8;
  --deazy-cream: #F6F2EC;
  --deazy-white: #FFFFFF;
  --deazy-teal: #52C2B2;
  --deazy-blue: #221554;
  --deazy-red: #EE5858;
  --deazy-lightblue: #6079DA;

  --font-work-sans: 'Work Sans', sans-serif;
  --font-sora: 'Sora', sans-serif;

  --main-section-radius: 112px;
}

@media (max-width: 768px) {
  :root {
    --main-section-radius: 48px;
  }
}
/* 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)
*/



.flex {
  display: flex;
}

.flex--column {
  flex-direction: column;
}

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

/* Visibilty Classes */

.hide {
  display: none !important;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

.main-section {
  border-bottom-left-radius: var(--main-section-radius);
  border-bottom-right-radius: var(--main-section-radius);
  position: relative;
  margin-bottom: calc(-1 * var(--main-section-radius));
  padding-top: var(--main-section-radius);
  overflow: hidden;
  background-color: var(--deazy-white);
  color: var(--deazy-black);
}


  .main-section:nth-child(1) {
    z-index: 20;
  }
  .main-section:nth-child(2) {
    z-index: 19;
  }
  .main-section:nth-child(3) {
    z-index: 18;
  }
  .main-section:nth-child(4) {
    z-index: 17;
  }
  .main-section:nth-child(5) {
    z-index: 16;
  }
  .main-section:nth-child(6) {
    z-index: 15;
  }
  .main-section:nth-child(7) {
    z-index: 14;
  }
  .main-section:nth-child(8) {
    z-index: 13;
  }
  .main-section:nth-child(9) {
    z-index: 12;
  }
  .main-section:nth-child(10) {
    z-index: 11;
  }
  .main-section:nth-child(11) {
    z-index: 10;
  }
  .main-section:nth-child(12) {
    z-index: 9;
  }
  .main-section:nth-child(13) {
    z-index: 8;
  }
  .main-section:nth-child(14) {
    z-index: 7;
  }
  .main-section:nth-child(15) {
    z-index: 6;
  }
  .main-section:nth-child(16) {
    z-index: 5;
  }
  .main-section:nth-child(17) {
    z-index: 4;
  }
  .main-section:nth-child(18) {
    z-index: 3;
  }
  .main-section:nth-child(19) {
    z-index: 2;
  }.main-section--cream {
  background-color: var(--deazy-cream);
}
.main-section--chalk{
  background-color: var(--deazy-chalk);
}

.main-section--blue {
  background-color: var(--deazy-blue);
  color: #fff;
}

.main-section--yellow {
  background-color: var(--deazy-yellow);
  color: var(--deazy-black);
}

.main-section--rect {
  margin-bottom: 0;
  padding-bottom: 79px;
}

.main-section__title h2 {
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: 600;
  color: var(--deazy-black);
}

.main-section__title h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.125rem;
  font-family: var(--font-work-sans);
  color: var(--deazy-black);
}

.body-container-wrapper {
  padding-top: 89px;
  background: var(--deazy-white);
  position: relative;
  z-index: 2;
  border-bottom-left-radius: var(--main-section-radius);
  border-bottom-right-radius: var(--main-section-radius);
}

.body-container-wrapper .main-section:first-of-type {
  padding-top: 0px;
}

.body-wrapper > .main-section:last-of-type {
  margin-bottom: 0;
  border-radius: 0;
}

@media (max-width: 767px) {
  .body-container-wrapper {
    padding-top: 80px;
  }
}

/* Responsive Visibilty Classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important ;
  }
}

.no-scroll {
  overflow: hidden;
}

body #hubspot-messages-iframe-container {
  z-index: 12000;
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

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

  .content-wrapper {
    padding: 0 2rem;
  }
}

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

body {
  line-height: 1.4;
  overflow-wrap: break-word;
  color: var(--deazy-black);
}

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

.body1 {
  font-family: var(--font-work-sans);
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.01em;
}

.body2 {
  font-family: var(--font-work-sans);
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.01em;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Sora;
  font-weight: 600;
  letter-spacing: 0em;
  color: var(--deazy-black);

  margin: 0 0 1.4rem;
}

h1 {
  font-size: 64px;
  line-height: 72px;
}

h2 {
  font-size: 32px;
  line-height: 40px;
}

h3 {
  font-size: 20px;
  line-height: 28px;
}

.subheader1 {
  font-family: var(--font-sora);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.01em;
}

/* Lists */

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

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

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

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

.subheader {
  font-family: Work Sans;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  h1 {
    font-size: 40px;
    line-height: 48px;
  }

  .subheader {
    font-size: 18px;
  }
}


button,
.button,
.hs-button {
  position: relative;
  z-index: 1000;
  margin-top: .2rem;
  font-family: 'Sora', sans-serif;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  font-size: 15px;
  border-color: #4e4e4e;
  border-width: 1px;
  border-style: solid;
  background-color: var(--deazy-yellow);
  padding: 12px 15px;
  border-radius: 8px;
  min-height: 48px;
  font-weight: 600;
}

button:hover, .button:hover, .hs-button:hover{
  background-color: #F3B53C;
  box-shadow:inset 0px 0px 0px 1px var(--deazy-black);
}
button:focus:not(:active), .button:focus:not(:active),.hs-button:focus:not(:active){
  outline: none;
  border: 1px solid #355EFF;
  box-shadow:inset 0px 0px 0px 4px #355EFF;
}
button:active, .button::active,.hs-button:active{
  box-shadow: unset;
  border: unset;
  outline: none;
}

button,
.button,
.hs-button {
  color: var(--deazy-black);
}
button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: rgb(255, 205, 62, .5);
  border-color: rgba(20, 20, 20, 0.05);
  color: rgba(20, 20, 20, 0.05);
}

.button--white {
  background-color: #fff;
}

.button--outlined-white {
  color: #fff;
  border-color: #fff;
  border: 1px solid currentColor;
  background-color: transparent;
}
.button--outlined-white:hover{
  box-shadow:inset 0px 0px 0px 1px var(--deazy-white);
  background-color: transparent;
}
.button--outlined-white:disabled{
  border-color: rgba(255, 255, 255, 0.5);
  color: rgb(255, 255, 255, .5);
}


.button--black {
  background-color: var(--deazy-black);
  border-color: var(--deazy-black);
  color: #fff;
}
.button--black:hover{
  background-color: #373737;
  color: #fff;
}
.button--black:disabled{
  background-color: rgb(20, 20, 20, .5);
  border-color: rgb(20, 20, 20, .5);
}
.button--black:focus{
  color: var(--deazy-white);
}

.button--transparent {
  background-color: transparent;
}
.button--transparent:hover, .button--white:hover{
  background-color: rgba(20, 20, 20, 0.05);
}
.button--transparent:disabled{
  border-color: rgb(20, 20, 20, .5);
  color: rgb(20, 20, 20, .5);
}

.button--underline{
  position: relative;
  border: none;
  background: none;
  color: #000;
  font-weight: 500;
}
.button--underline::after{
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  width: 80%;
  height: 1px;
  transform-origin: top;
  background-color: #000;
}
.button--underline:hover{
  background: none;
  border: none;
  box-shadow: unset;
}
.button--underline:hover::after{
  transform: scaleY(2) translateX(-50%);
}
.button--underline:disabled{
  color: rgb(20, 20, 20, .5);
}
.button--underline:disabled::after{
  background-color: rgb(20, 20, 20, .5);
}


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

@media (max-width: 768px) {
  button,
  .button,
  .hs-button {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
/* Anchors */


a {
  text-decoration: none;
  color: #4e4e4e;
}

a:hover,
a:focus {
  color: #262626;
}

a:active {
  color: #767676;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.5rem;
  position: relative;
}

/* Labels */

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

.hs-form-field > label {
  position: absolute;
  top: 0;
  padding: 16px 0 0 16px;
  color: var(--deazy-grey);
  font-size: 1rem;
  transition: font-size .3s ease-in-out, padding-top .3s ease-in-out;
  margin: 0;
}

.hs-form-field.field-focused > label {
  font-size: 9px;
  padding-top: 2px;
  line-height: 18px;
}

.hs-form-field .hs-input {
  border: 1px transparent solid;
  transition: border-color .3s ease-in-out;
}

.hs-form-field.field-filled .hs-input {
  border: 1px var(--deazy-grey) solid;
}

/* 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;
  padding: 1.063rem 1rem;
  border: none;
  border-radius: 0.5rem;
  background: #FFFFFF;
  width: 100%;
}

form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=number] {
  height: 56px;
}

form textarea:focus, form input:focus{
  outline: none;
}

form.hs-form fieldset.form-columns-1 .hs-input {
  width: 100%;
}

form .hs-form-booleancheckbox label {
  height: auto;
  min-height: 32px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-left: 51px;
  font-size: 1rem;
  line-height: 1.375rem;
}

form .hs-form-booleancheckbox label a {
  text-decoration: underline;
  color: #4A4E60;
}

form .hs-form-booleancheckbox label input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}

form .hs-form-booleancheckbox label > span:before {
  content: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='11.5' fill='white' stroke='%23141414'/%3E%3C/svg%3E");
  width: 32px;
  height: 32px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
}

form .hs-form-booleancheckbox label input:checked ~ span:before {
  background-repeat: no-repeat;
  background-position: center;
  content: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='11.5' fill='white' stroke='%23141414'/%3E%3Ccircle cx='16' cy='16' r='7' fill='%23393A3A'/%3E%3C/svg%3E");
}

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

.hs-form-field .hs-error-msgs {
  /* position: absolute;
  top: 100%; */
  margin-bottom: -15px;
}

.hs-form-field .hs-error-msgs li {
  padding: 0;
  margin: 0;
}

.hs-form-field .hs-error-msgs .hs-error-msg {
  padding: 0;
  margin: 0;
  font-size: 0.75rem;
  line-height: 16px;
}

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



.filters {
  height: 56px;
  border-radius: 80px;
  background-color: #ffffff;
  display: flex;
  max-width: 530px;
  padding: 4px;
  margin: 40px auto;
}

.filters__control {
  cursor: pointer;
  position: relative;
  flex: 1;
}

.filters__control input {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -9999px;
  top: 0;
}

.filters__control label {
  cursor: pointer;
  padding: 12px 24px;
  background-color: #ffffff;
  border-radius: 80px;
  transition: background-color .3s ease-in-out;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
}

.filters__control input:checked + label {
  background-color: var(--deazy-black);
  color: #ffffff;
}

.filters__control label span{
  vertical-align: middle;
}
/* 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;
}
.box {
  padding: 2rem;
  border-radius: 1.5rem;
  font-size: 1.5rem;
  color: var(--deazy-black);
  font-weight: 600;
  line-height: 2rem;
}

.box--yellow {
  background-color: var(--deazy-yellow);
  font-family: 'Sora', sans-serif;;
}

.box--white {
  background-color: var(--deazy-white);
}

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

/* Header DND sections */

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

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
  padding: 20px 48px;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.header__row-2 {
  gap: 36px;
}

.header__main {
  display: flex;
  align-items: center;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background-color: #fff;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.header:not(.header--nav-open).header--scrolled {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  filter: drop-shadow(0px 16px 32px rgba(0, 0, 0, 0.06));
}

.header--scrolled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255,255,255,0.9);
  z-index: -1;
}

@media (min-width: 1100px) {
  .header .hs-menu-children-wrapper {
    padding: 8px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  }
}


@media (max-width: 1150px) and (min-width: 1100px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .header__container {
    flex-direction: column;
    padding: 20px 24px;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    flex-direction: column;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  overflow: hidden;
}

.header__logo img {
  max-width: 100%;
  width: 153px;
}

.header__logo--white {
  display: none;
}

.header__navigation.open .header__logo--white {
  display: block;
}

.header__navigation.open .header__logo--black {
  display: none;
}

.header__navigation .menu--mobile {
  display: none;
  margin-left: -16px;
  margin-right: -16px;
}

.header__navigation.open .menu--mobile {
  display: block;
}

.header__buttons--outer {
  display: none;
}


@media (max-width: 1100px) {
  .header__logo {
    margin-left: 22px;
    flex: 1;
  }

  .header__logo img {
    width: 157px;
  }

  .header__buttons--outer .button {
    font-size: 13px;
    line-height: 24px;
    padding: 7px 15px;
    min-height: unset;
    width: auto;
  }

  .header__row-2 .header--element {
    width: 100%;
  }

  .header__buttons--inner {
    display: none;
    flex-direction: column;
    gap: 16px;
  }

  .header__buttons--outer {
    display: flex;
  }

  .header__navigation.open .header__buttons--inner {
    display: flex;
  }

  .header__navigation.open .header__buttons--outer {
    display: none;
  }

  .header__buttons--inner .button--white {
    color: #FFFFFF;
    border-color: #FFFFFF;
    background-color: transparent;
  }
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}




.header__search .hs-search-field__input {
  
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-position: center right 15px;
    background-repeat: no-repeat;
  
  height: 45px;
  padding: 0 0.7rem;
}




.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

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

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 1100px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 1100px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

.header__buttons {
  gap: 16px;
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 1100px) {
  .header__navigation.open {
    background-color: #221554;
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9;
  }

  .header__navigation--toggle {
    cursor: pointer;
  }
}

/* Hamburger */

  .hamburger-nav {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    background-image: unset;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    margin-right: 0 !important;
    /*top:5px;*/
    z-index: 902;
  }
  .hamburger-nav:after {
    display: none !important;
  }
  .hamburger-nav.open span {
    background-color: #141414;
  }
  .hamburger-nav.open span:nth-child(1) {
    top: 10px;
    width: 0;
    left: 0;
  }
  .hamburger-nav.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #FFFFFF;
  }
  .hamburger-nav.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #FFFFFF;
  }
  .hamburger-nav.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  .hamburger-nav span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #141414;
    border-radius: 10000px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .hamburger-nav span:nth-child(1) {
    top: 8px;
    left: 4px;
    width: 27px;
  }
  .hamburger-nav span:nth-child(3), .hamburger-nav span:nth-child(2) {
    top: 20px;
    left: 4px;
    width: 32px;
  }
  .hamburger-nav span:nth-child(4) {
    top: 32px;
    left: 4px;
    width: 21px;
  }
/* FOOTER */
footer {
  padding: 10.125rem 0 3.125rem 0;
  color: var(--deazy-grey);
  font-size: 0.9375rem;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.footer--relative {
  position: relative;
}

footer a {
  color: var(--deazy-grey);
}

footer .box {
  width: 440px;
}

footer .box button {
  margin-top: 1.125rem;
}

footer .button {
  margin-top: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  min-width: 9.5rem;
}

footer h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}

footer .hs-menu-item {
  padding: 0.3rem 0;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
}

.footer-col--left {
  margin-right: 11.78%;
  width: 36.18%;
}

.footer-col--right {
  flex: 1;
}

.footer-logos {
  display: flex;
  align-items: center;
  padding-bottom: 35px;
}

.footer-logos__logo {
  display: block;
  margin-right: 6.625rem;
}

.footer-logos__logo:first-child {
  margin-top: -18px;
}

.footer-nav__col {
  flex: 1;
}

.footer-nav__col:first-child {
  max-width: 200px;
}

.footer-nav__col h3 {
  margin: 0 0 13px 0;
}

.footer-nav__col:last-child {
  flex: 0 0 130px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 0.5rem 0;
}

.footer-column img {
  display: block;
  max-width: 6.875rem;
}

.footer-column a {
  display: flex;
  gap: 0.5rem;
}

.footer-baseline-nav {
  padding-top: 110px;
}

.footer-baseline-nav .hs-menu-item {
  padding: 0 0 0 3rem;
}

.footer-baseline-nav .hs-menu-item:first-child {
  padding-left: 0;
}

@media (max-width: 1250px) {
  .footer-baseline-nav .hs-menu-item {
    padding-left: 1rem;
  }
}

@media (max-width: 1060px) {
  .footer-baseline-nav {
    padding-top: 75px;
  }

  .footer-baseline-nav .footer-col {
    width: 100%;
  }

  .footer-baseline-nav .footer-col--left {
    order: 2;
    padding-top: 56px;
  }

  .footer-baseline-nav .hs-menu-item {
    padding: 0 0 0 3rem;
  }
}

@media (max-width: 996px) {
  footer {
    padding-top: 9.125rem;
  }

  footer .box {
    width: 100%;
    margin-bottom: 56px;
    }

  footer .box .button {
    width: 100%;
    padding: 1rem 0;
  }

  .footer-col {
    width: 100%;
    margin-right: 0;
    flex-wrap: wrap;
  }

  .footer-logos {
    padding-bottom: 20px;
  }

  .footer-nav__col {
    width: 50%;
    flex: auto;
  }

  .footer-nav__col:first-child {
    width: 35%;
    flex: 0 0 35%;
    max-width: unset;
  }

  .footer-nav__col:last-child {
    width: 100%;
    flex-basis: 100%;
    padding-top: 64px;
  }

  .footer-nav__col:last-child .footer-column {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  .footer-nav__col:last-child .footer-column a {
    width: 35%;
  }

  .footer-nav__col:last-child .footer-column > img {
    margin-top: -45px;
  }
}

@media (max-width: 767px) {
  footer {
    padding-top: 5.625rem;
  }

  footer .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: row;
    gap: 0;
  }
}

@media (max-width: 500px) {
  .footer-nav__col:first-child {
    width: 50%;
    flex: 0 0 50%;
    max-width: unset;
  }

  .footer-nav__col:last-child .footer-column a {
    width: 50%;
  }

  .footer-nav__col:last-child .footer-column > img {
    margin-top: -45px;
  }

  .footer-baseline-nav .hs-menu-item {
    width: 50%;
    padding: 8px 0;
  }

  .footer-logos {
    width: 100%;
    gap: 24px;
  }

  .footer-logos__logo {
    margin-right: 0;
    height: 64px;
  }
}


/* Menu and simple menu */

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

.hs-menu-item {
  font-size: 15px;
  padding: 8px 8px;
}

.hs-menu-item a {
  color: #4e4e4e;
}

.hs-menu-item.hs-item-has-children > a:after {
  content: url("data:image/svg+xml,%3Csvg width='12' height='6' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 1L7 7L1 1' stroke='%234A4E60'/%3E%3C/svg%3E%0A");
  display: inline-block;
  margin-left: 4px;
  vertical-align: text-bottom;
}

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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

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

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

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

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