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


/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

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

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

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

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

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

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

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

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

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

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

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

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

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

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

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

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

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}


h1, h2, h3, h4, h5, h6 {
  font-family: "Lora", serif;
  font-weight: 400;
}

h1 {
  margin: 2rem 0;
  line-height: 1.13;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 4.375rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  h1 {
    font-size: 3.75rem;
  }
}
@media (max-width: 743px) {
  h1 {
    font-size: 2.875rem;
  }
}

h2 {
  margin: 1.5rem 0;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 3.375rem;
    line-height: 1.13;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  h2 {
    font-size: 3.25rem;
    line-height: 1.16;
  }
}
@media (max-width: 743px) {
  h2 {
    font-size: 2rem;
    line-height: 1.16;
  }
}

h3 {
  margin: 1rem 0;
}
@media (min-width: 1024px) {
  h3 {
    font-size: 2.875rem;
    line-height: 1.13;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  h3 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}
@media (max-width: 743px) {
  h3 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
}

h4 {
  margin: 1rem 0;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  h4 {
    font-size: 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  h4 {
    font-size: 1.5rem;
  }
}
@media (max-width: 743px) {
  h4 {
    font-size: 1.25rem;
  }
}

h5 {
  margin: 1rem 0;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  h5 {
    font-size: 1.5rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  h5 {
    font-size: 1.25rem;
  }
}
@media (max-width: 743px) {
  h5 {
    font-size: 1.125rem;
  }
}

h6 {
  margin: 1rem 0;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  h6 {
    font-size: 1.25rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  h6 {
    font-size: 1.125rem;
  }
}
@media (max-width: 743px) {
  h6 {
    font-size: 1rem;
  }
}

a {
  -webkit-transition: 0.2s color ease-in-out;
  transition: 0.2s color ease-in-out;
}

strong {
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
}

em {
  font-style: italic;
}

.rich-text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text-2);
}
.rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4, .rich-text h5, .rich-text h6 {
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  color: var(--color-text);
}
.rich-text h1 {
  margin: 1rem 0;
}
@media (min-width: 1024px) {
  .rich-text h1 {
    font-size: 2.875rem;
    line-height: 1.13;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .rich-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}
@media (max-width: 743px) {
  .rich-text h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
}
.rich-text h2 {
  margin: 1rem 0;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .rich-text h2 {
    font-size: 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .rich-text h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 743px) {
  .rich-text h2 {
    font-size: 1.25rem;
  }
}
.rich-text h3 {
  margin: 1rem 0;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .rich-text h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .rich-text h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 743px) {
  .rich-text h3 {
    font-size: 1.125rem;
  }
}
.rich-text h4 {
  margin: 1rem 0;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .rich-text h4 {
    font-size: 1.25rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .rich-text h4 {
    font-size: 1.125rem;
  }
}
@media (max-width: 743px) {
  .rich-text h4 {
    font-size: 1rem;
  }
}
.rich-text h5 {
  margin: 0.5rem 0;
  line-height: 1.35;
  font-size: 1.125rem;
}
.rich-text h6 {
  margin: 0.5rem 0;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .rich-text h6 {
    font-size: 1rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .rich-text h6 {
    font-size: 0.875rem;
  }
}
@media (max-width: 743px) {
  .rich-text h6 {
    font-size: 0.75rem;
  }
}
.rich-text img {
  margin: 0 0 1rem;
  display: block;
  max-width: 100%;
  height: auto;
}
@media (min-width: 1024px) {
  .rich-text figure {
    margin: 3rem 0;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .rich-text figure {
    margin: 2rem 0;
  }
}
@media (max-width: 743px) {
  .rich-text figure {
    margin: 1.5rem 0;
  }
}
.rich-text figure img {
  margin: 0;
}
.rich-text figure figcaption {
  margin-top: 0.5rem;
  padding-left: 0.5rem;
  border-left: 0.125rem solid var(--figcaption-color);
  font-size: 0.875rem;
  color: var(--figcaption-color);
}
.rich-text blockquote {
  padding-left: 1.25rem;
  border-left: 0.125rem solid var(--blockquote-border-color);
  font-family: "Lora", serif;
  font-weight: 400;
  color: var(--color-text);
}
@media (min-width: 1024px) {
  .rich-text blockquote {
    margin: 3rem 0;
    font-size: 2rem;
    line-height: 1.25;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .rich-text blockquote {
    margin: 2rem 0;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media (max-width: 743px) {
  .rich-text blockquote {
    margin: 1.5rem 0;
    font-size: 1.25rem;
    line-height: 1.3;
  }
}
.rich-text a {
  color: var(--color-brand);
}
@media (hover: hover) {
  .rich-text a:hover {
    color: var(--color-text);
  }
}
.rich-text p {
  margin: 0 0 0.75rem;
}
.rich-text p:last-child {
  margin-bottom: 0;
}
.rich-text strong {
  color: var(--color-text);
}
.rich-text ul {
  margin: 0.75rem 0;
  padding: 0;
  list-style: none;
}
.rich-text ul ul {
  margin: 0;
}
.rich-text ul li {
  position: relative;
  padding-left: 1.125rem;
  margin-bottom: 0.25rem;
}
.rich-text ul li:before {
  content: "";
  position: absolute;
  top: 0.5625rem;
  left: 0.1875rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--ul-list-dot-color);
  border-radius: 50%;
}
.rich-text .embed-responsive {
  margin: 1.5rem 0;
}
.rich-text ol {
  margin: 0.75rem 0;
  padding: 0;
  list-style: none;
  counter-reset: list1;
}
.rich-text ol > li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.rich-text ol > li:before {
  position: absolute;
  top: 0;
  left: 0;
  text-align: right;
  white-space: nowrap;
  counter-increment: list1;
  content: counter(list1) ".";
}
.rich-text ol > li > ol {
  margin: 0.75rem 0;
  padding: 0;
  list-style: none;
  counter-reset: list2;
}
.rich-text ol > li > ol > li {
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 0.5rem;
}
.rich-text ol > li > ol > li:before {
  position: absolute;
  top: 0;
  left: 0;
  text-align: right;
  white-space: nowrap;
  counter-increment: list2;
  content: counter(list1) "." counter(list2) ".";
}
.rich-text table {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  width: 100%;
  border-collapse: collapse;
  color: var(--color-text-2);
}
.rich-text table th,
.rich-text table td {
  vertical-align: top;
  border-width: 0.0625rem 0;
  border-style: solid;
  border-color: var(--color-border);
}
@media (min-width: 744px) and (max-width: 1399px) {
  .rich-text table th,
  .rich-text table td {
    padding: 1rem;
  }
}
@media (max-width: 743px) {
  .rich-text table th,
  .rich-text table td {
    padding: 0.75rem 0.5rem;
  }
}
.rich-text table th:first-child,
.rich-text table td:first-child {
  border-left-width: 0.0625rem;
}
.rich-text table th:last-child,
.rich-text table td:last-child {
  border-right-width: 0.0625rem;
}
@media (min-width: 1400px) {
  .rich-text table td {
    padding: 1.5rem;
  }
}
.rich-text table th {
  font-weight: 400;
  text-align: left;
}
@media (min-width: 1400px) {
  .rich-text table th {
    padding: 1rem 1.5rem;
  }
}

.has-error .choices__inner {
  border-color: #ff513d;
}

.choices {
  font-size: 1rem;
  line-height: 1.5;
}
.choices[data-type*=select-one]:after {
  content: none !important;
}
.choices[data-type*=select-one]:hover .choices__inner {
  border-color: var(--choices-border-hover-color) !important;
}
.choices[data-type*=select-one].is-open .choices-caret {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.choices[data-type*=select-one].is-open .choices__inner {
  border-color: var(--choices-border-active-color) !important;
}
.choices[data-type*=select-one].is-flipped .choices__list--dropdown, .choices[data-type*=select-one].is-flipped .choices__list[aria-expanded] {
  margin: 0 0 0.3125rem;
}
.choices-caret {
  position: absolute;
  top: 1.1875rem;
  right: 1rem;
}
.choices__item-label {
  word-break: break-word;
}
.choices__inner {
  height: 3.5rem;
  padding: 0.9375rem !important;
  border: 0.0625rem solid var(--choices-border-color) !important;
  border-radius: 0 !important;
  background: var(--choices-background-color) !important;
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}
.choices__list--single {
  padding: 0 1.25rem 0 0;
}
.choices__list--single .choices__item--selectable {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.choices__list--dropdown .choices__placeholder {
  display: none;
}
.choices__list--dropdown, .choices__list[aria-expanded] {
  z-index: 100;
  margin-top: 0.3125rem;
  background: var(--choices-background-color);
  border-color: var(--choices-border-color) !important;
  border-radius: 0 !important;
}
.choices__list--dropdown .choices__item--selectable, .choices__list[aria-expanded] .choices__item--selectable {
  padding: 1rem 2.5rem 1rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: var(--choices-option-background-hover-color) !important;
}
.choices__list--dropdown .choices__item--selectable.is-selected, .choices__list[aria-expanded] .choices__item--selectable.is-selected {
  background-color: var(--choices-option-selected-background-color) !important;
}
.choices__placeholder {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem !important;
  line-height: 1.4 !important;
  white-space: nowrap;
  color: var(--choices-placeholder-color);
  opacity: 1;
}
.choices__item.is-selected {
  background-color: var(--choices-option-selected-background-color) !important;
  color: var(--choices-option-selected-color);
}
.choices__item--selectable {
  padding-right: 2.5rem !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

.hs-input {
  display: block;
  width: 100%;
  padding: 1rem;
  height: 3.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--input-color);
  border: 0.0625rem solid var(--input-border-color);
  background: var(--input-background-color);
  border-radius: 0;
  outline: 0 none;
  -webkit-appearance: none;
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}
.hs-input:-webkit-autofill {
  -webkit-text-fill-color: var(--input-color);
  -webkit-box-shadow: 0 0 0 62.5rem var(--input-background-color) inset;
  box-shadow: 0 0 0 62.5rem var(--input-background-color) inset;
}
.hs-input::-webkit-input-placeholder {
  color: var(--input-placeholder-color);
}
.hs-input::-moz-placeholder {
  color: var(--input-placeholder-color);
}
.hs-input:-moz-placeholder {
  color: var(--input-placeholder-color);
}
.hs-input:-ms-input-placeholder {
  color: var(--input-placeholder-color);
}
@media (hover: hover) {
  .hs-input:hover {
    border-color: var(--input-border-hover-color);
  }
}
@media (hover: hover) {
  .hs-input:focus {
    border-color: var(--input-border-focus-color);
  }
}
.hs-input.invalid {
  border-color: #ff513d !important;
}
.hs-input[type=search]::-webkit-search-cancel-button, .hs-input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.hs_error_rollup {
  color: #ff513d;
}
.hs_error_rollup li {
  margin: 0 0 0.5625rem !important;
}

.input:has(+ .hs-error-msgs) .hs-form-booleancheckbox-display .hs-input + span:before {
  border-color: #ff513d !important;
}

.hs-error-msgs {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hs-error-msgs li {
  margin: 0.5625rem 0 0;
}
.hs-error-msgs .hs-error-msg {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
  color: #ff513d;
}
.hs-error-msgs label {
  margin: 0 !important;
}

.hs-button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0 none;
  border-radius: 0;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  outline: 0 none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: 0.3s background ease-in-out, 0.3s border-color ease-in-out, 0.3s color ease-in-out;
  transition: 0.3s background ease-in-out, 0.3s border-color ease-in-out, 0.3s color ease-in-out;
}
.hs-button.primary {
  padding: 0.5625rem 1.25rem 0.625rem;
  color: var(--color-text);
  background: none;
  border: 0.0625rem solid var(--button-border-color);
}
@media (hover: hover) {
  .hs-button.primary:hover {
    color: var(--color-text);
    border-color: var(--button-border-hover-color);
    background: var(--button-background-hover-color);
  }
}
.hs-button.primary.large {
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
}

.hs-richtext-wrapper {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}

.hs-richtext {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-text-2);
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.hs-richtext a {
  color: var(--color-text);
}
@media (hover: hover) {
  .hs-richtext a:hover {
    color: var(--color-text-2);
  }
}

.hbspt-form fieldset.form-columns-1 .input, .hbspt-form fieldset.form-columns-2 .input {
  margin-right: 0 !important;
}
.hbspt-form fieldset.form-columns-1 .hs-input, .hbspt-form fieldset.form-columns-2 .hs-input {
  width: 100% !important;
}
.hbspt-form fieldset.form-columns-1 {
  max-width: 100% !important;
}
.hbspt-form fieldset.form-columns-2 {
  margin: 0 -0.5rem;
  max-width: calc(100% + 1rem) !important;
}
.hbspt-form fieldset.form-columns-2 .hs-form-field {
  padding: 0 0.5rem !important;
}

@media (min-width: 1024px) {
  .hs-form-field {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 1023px) {
  .hs-form-field {
    margin-bottom: 1.5rem !important;
  }
}
.hs-form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-text);
}
.hs-form-field label .hs-form-required {
  display: inline-block;
  vertical-align: top;
  margin: -0.0625rem 0 0 0.125rem;
}

.inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.inputs-list .hs-form-booleancheckbox {
  margin-bottom: 1.25rem;
}
.inputs-list .hs-form-booleancheckbox:last-child {
  margin-bottom: 0;
}

.hs-form-radio-display,
.hs-form-checkbox-display,
.hs-form-booleancheckbox-display {
  margin-bottom: 0 !important;
}
.hs-form-radio-display .hs-input,
.hs-form-checkbox-display .hs-input,
.hs-form-booleancheckbox-display .hs-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.hs-form-radio-display .hs-input + span,
.hs-form-checkbox-display .hs-input + span,
.hs-form-booleancheckbox-display .hs-input + span {
  position: relative;
  display: block;
  min-height: 1.5rem;
  margin-left: 0 !important;
  padding: 0.0625rem 0 0 2rem;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text-3);
  cursor: pointer;
  white-space: normal;
  text-transform: none;
  -webkit-transition: 0.2s color ease-in-out;
  transition: 0.2s color ease-in-out;
}
.hs-form-radio-display .hs-input + span a,
.hs-form-checkbox-display .hs-input + span a,
.hs-form-booleancheckbox-display .hs-input + span a {
  color: var(--color-text);
}
@media (hover: hover) {
  .hs-form-radio-display .hs-input + span a:hover,
  .hs-form-checkbox-display .hs-input + span a:hover,
  .hs-form-booleancheckbox-display .hs-input + span a:hover {
    color: var(--color-text-2);
  }
}
.hs-form-radio-display .hs-input + span:before, .hs-form-radio-display .hs-input + span:after,
.hs-form-checkbox-display .hs-input + span:before,
.hs-form-checkbox-display .hs-input + span:after,
.hs-form-booleancheckbox-display .hs-input + span:before,
.hs-form-booleancheckbox-display .hs-input + span:after {
  content: "";
  position: absolute;
}
.hs-form-radio-display .hs-input + span:before,
.hs-form-checkbox-display .hs-input + span:before,
.hs-form-booleancheckbox-display .hs-input + span:before {
  top: 0.125rem;
  left: 0;
  width: 1.375rem;
  height: 1.375rem;
  border: 0.0625rem solid var(--checkbox-border-color);
  -webkit-transition: 0.2s border-color ease-in-out, 0.2s background-color ease-in-out;
  transition: 0.2s border-color ease-in-out, 0.2s background-color ease-in-out;
}
.has-error .hs-form-radio-display .hs-input + span:before,
.has-error .hs-form-checkbox-display .hs-input + span:before,
.has-error .hs-form-booleancheckbox-display .hs-input + span:before {
  background-color: #ffffff;
  border-color: #ff513d !important;
}
.hs-form-radio-display .hs-input + span:after,
.hs-form-checkbox-display .hs-input + span:after,
.hs-form-booleancheckbox-display .hs-input + span:after {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.hs-form-radio-display .hs-input:checked + span:before,
.hs-form-checkbox-display .hs-input:checked + span:before,
.hs-form-booleancheckbox-display .hs-input:checked + span:before {
  border-color: var(--checkbox-border-checked-color);
  background-color: var(--checkbox-background-checked-color);
}
.hs-form-radio-display .hs-input:checked + span:after,
.hs-form-checkbox-display .hs-input:checked + span:after,
.hs-form-booleancheckbox-display .hs-input:checked + span:after {
  opacity: 1;
  visibility: visible;
}

.hs-form-radio-display {
  position: relative;
}
.hs-form-radio-display .hs-input + span:before {
  border-radius: 50%;
}
.hs-form-radio-display .hs-input + span:after {
  top: 0.4375rem;
  left: 0.3125rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--radio-background-checked-color);
  border-radius: 50%;
}

.hs-form-checkbox-display,
.hs-form-booleancheckbox-display {
  position: relative;
}
.hs-form-checkbox-display .hs-input + span:after,
.hs-form-booleancheckbox-display .hs-input + span:after {
  left: 0.3125rem;
  top: 0.5625rem;
  width: 0.75rem;
  height: 0.375rem;
  border-width: 0 0 0.125rem 0.125rem;
  border-style: solid;
  border-color: var(--checkbox-icon-checked-color);
  border-radius: 0 0 0 0.0625rem;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.inputs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.625rem;
}

:root,
[data-theme=dark] {
  --color-bg: #111111;
  --color-bg-2: #1c1c1d;
  --color-text: #ffffff;
  --color-text-dark: #111111;
  --color-border: #2b2c2c;
  --color-text-2: #a8aab1;
  --color-text-3: #a8aab1;
  --color-brand: #88d98f;
  --color-purple: #9eb1ff;
  --theme-toggle-background: #2b2c2c;
  --theme-toggle-icon: #747477;
  --theme-toggle-icon-active: #ffffff;
  --theme-toggle-icon-hover: #eff1f6;
  --sticky-sidebar-num-color: #88d98f;
  --info-steps-tag-color: #88d98f;
  --ul-list-dot-color: #88d98f;
  --blockquote-border-color: #88d98f;
  --reviews-box-icon-color: #88d98f;
  --button-color: #ffffff;
  --button-border-color: #a8aab1;
  --button-border-hover-color: #ffffff;
  --button-background-hover-color: #1c1c1d;
  --button-default-background-hover: #62c66a;
  --content-label-border-color: #242f25;
  --content-label-background-color: #191d1a;
  --content-label-grey-border-color: #2b2c2c;
  --content-label-grey-background-color: #1c1c1d;
  --content-label-purple-background-color: #1d1e29;
  --content-label-purple-border-color: #212e5a;
  --tag-color-green: #88d98f;
  --tag-border-color: #2b2c2c;
  --tag-border-hover-color: #555558;
  --tag-background-hover-color: #1c1c1d;
  --menu-link-color: #ffffff;
  --menu-link-hover-color: #cccfd8;
  --menu-sublink-hover-color: #2b2c2c;
  --video-play-background-color: rgba(255,255,255,0.2);
  --info-tiles-dash-color: #88d98f;
  --button-arrow-border-color: #a8aab1;
  --button-arrow-background-hover-color: #1c1c1d;
  --button-arrow-border-hover-color: #ffffff;
  --button-arrow-border-disabled-color: #2b2c2c;
  --button-arrow-icon-disabled-color: #747477;
  --input-placeholder-color: #555558;
  --input-color: #ffffff;
  --input-background-color: #1c1c1d;
  --input-border-color: #2b2c2c;
  --input-border-hover-color: #555558;
  --input-border-focus-color: #a8aab1;
  --footer-menu-link-color: #a8aab1;
  --footer-menu-link-hover-color: #ffffff;
  --pagination-link-color: #ffffff;
  --pagination-link-hover-color: #ffffff;
  --pagination-link-border-color: #2b2c2c;
  --pagination-link-border-hover-color: #a8aab1;
  --pagination-link-background-color: #111111;
  --pagination-link-background-hover-color: #1c1c1d;
  --pagination-link-disabled-color: #2b2c2c;
  --pagination-link-border-active-color: #a8aab1;
  --share-widget-icon-color: #ffffff;
  --figcaption-color: #ffffff;
  --checkbox-border-color: #555558;
  --checkbox-border-checked-color: #88d98f;
  --checkbox-background-checked-color: #88d98f;
  --checkbox-icon-checked-color: #111111;
  --radio-background-checked-color: #111111;
  --choices-border-color: #2b2c2c;
  --choices-border-hover-color: #555558;
  --choices-border-active-color: #a8aab1;
  --choices-background-color: #1c1c1d;
  --choices-placeholder-color: #555558;
  --choices-text-color: #ffffff;
  --choices-option-background-hover-color: #2b2c2c;
  --choices-option-selected-color: #ffffff;
  --choices-option-selected-background-color: #111111;
  --audio-control-border-color: #2b2c2c;
  --audio-control-background-color: #111111;
  --audio-control-border-color-hover: #ffffff;
  --audio-control-background-color-hover: #1c1c1d;
  --tab-color-hover: #a8aab1;
  --tab-border-hover: #555558;
  --color-highlight-text: rgba(136, 217, 143, 0.35);
}

[data-theme=light] {
  --color-bg: #f5f6f7;
  --color-bg-2: #ffffff;
  --color-text: #2b2c2c;
  --color-text-dark: #ffffff;
  --color-border: #cccfd8;
  --color-text-2: #555558;
  --color-text-3: #111111;
  --color-purple: #3358d4;
  --color-brand: #004618;
  --theme-toggle-background: #e0e2e6;
  --theme-toggle-icon: #555558;
  --theme-toggle-icon-active: #111111;
  --theme-toggle-icon-hover: #1c1c1d;
  --sticky-sidebar-num-color: #266f2c;
  --info-steps-tag-color: #266f2c;
  --ul-list-dot-color: #266f2c;
  --blockquote-border-color: #266f2c;
  --reviews-box-icon-color: #266f2c;
  --button-color: #111111;
  --button-border-color: #1c1c1d;
  --button-border-hover-color: #747477;
  --button-background-hover-color: #e0e2e6;
  --button-default-background-hover: #266f2c;
  --content-label-border-color: rgba(0,70,24,0.4);
  --content-label-background-color: #dff5e1;
  --content-label-grey-border-color: #e0e2e6;
  --content-label-grey-background-color: #f5f6f7;
  --content-label-purple-background-color: #dee4ff;
  --content-label-purple-border-color: #9eb1ff;
  --tag-color-green: #266f2c;
  --tag-border-color: #e0e2e6;
  --tag-border-hover-color: #cccfd8;
  --tag-background-hover-color: #eff1f6;
  --menu-link-color: #111111;
  --menu-link-hover-color: #555558;
  --menu-sublink-hover-color: #eff1f6;
  --video-play-background-color: rgba(255,255,255,0.2);
  --info-tiles-dash-color: #62c66a;
  --button-arrow-border-color: #1c1c1d;
  --button-arrow-background-hover-color: #e0e2e6;
  --button-arrow-border-hover-color: #555558;
  --button-arrow-border-disabled-color: #cccfd8;
  --button-arrow-icon-disabled-color: #a8aab1;
  --input-placeholder-color: #a8aab1;
  --input-color: #2b2c2c;
  --input-background-color: #ffffff;
  --input-border-color: #cccfd8;
  --input-border-hover-color: #555558;
  --input-border-focus-color: #2b2c2c;
  --footer-menu-link-color: #555558;
  --footer-menu-link-hover-color: #2b2c2c;
  --pagination-link-color: #111111;
  --pagination-link-hover-color: #111111;
  --pagination-link-border-color: #cccfd8;
  --pagination-link-border-hover-color: #cccfd8;
  --pagination-link-background-color: #f5f6f7;
  --pagination-link-background-hover-color: #ffffff;
  --pagination-link-disabled-color: #cccfd8;
  --pagination-link-border-active-color: #1c1c1d;
  --share-widget-icon-color: #2b2c2c;
  --figcaption-color: #2b2c2c;
  --checkbox-border-color: #555558;
  --checkbox-border-checked-color: #004618;
  --checkbox-background-checked-color: #004618;
  --checkbox-icon-checked-color: #ffffff;
  --radio-background-checked-color: #ffffff;
  --choices-border-color: #cccfd8;
  --choices-border-hover-color: #555558;
  --choices-border-active-color: #2b2c2c;
  --choices-background-color: #ffffff;
  --choices-placeholder-color: #a8aab1;
  --choices-text-color: #ffffff;
  --choices-option-background-hover-color: #eff1f6;
  --choices-option-selected-color: #ffffff;
  --choices-option-selected-background-color: #555558;
  --audio-control-border-color: #cccfd8;
  --audio-control-background-color: #f5f6f7;
  --audio-control-border-color-hover: #555558;
  --audio-control-background-color-hover: #ffffff;
  --tab-color-hover: #555558;
  --tab-border-hover: #a8aab1;
}

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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "DM Sans", sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 744px) {
  body {
    padding-top: 5.5rem;
  }
}
@media (max-width: 743px) {
  body {
    padding-top: 4.1875rem;
  }
}

.main {
  position: relative;
  z-index: 100;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (max-width: 1599px) {
  .main {
    max-width: 99.9375rem;
  }
}
@media (min-width: 1600px) {
  .main {
    max-width: 86rem;
  }
}

.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 86rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 743px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0 none;
  border-radius: 0;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  outline: 0 none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: 0.3s background ease-in-out, 0.3s border-color ease-in-out, 0.3s color ease-in-out;
  transition: 0.3s background ease-in-out, 0.3s border-color ease-in-out, 0.3s color ease-in-out;
}
@media (hover: hover) {
  .btn:hover .btn-icon {
    -webkit-transform: translateX(0.3125rem);
    -ms-transform: translateX(0.3125rem);
    transform: translateX(0.3125rem);
  }
}
.btn-default {
  padding: 0.625rem 1.25rem 0.6875rem;
  background: var(--color-brand);
  color: var(--color-text-dark);
}
@media (hover: hover) {
  .btn-default:hover {
    background: var(--button-default-background-hover);
  }
}
.btn-default .btn-icon path {
  stroke: var(--color-text-dark);
}
.btn-bordered-light {
  padding: 0.5625rem 1.25rem;
  color: var(--button-color);
  background: none;
  border: 0.0625rem solid var(--button-border-color);
}
@media (hover: hover) {
  .btn-bordered-light:hover {
    color: var(--button-color);
    border-color: var(--button-border-hover-color);
    background: var(--button-background-hover-color);
  }
}
.btn-bordered-light.btn-lg {
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
}
.btn-bordered-light .btn-icon path {
  stroke: var(--color-text);
}
.btn-label {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: inline-block;
  overflow: hidden;
  line-height: 1.25;
}
.btn-label__char {
  display: inline-block;
  position: relative;
  text-shadow: 0 1.25em currentColor;
}
.btn-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.btn-icon:last-child {
  margin-left: 0.3125rem;
}
.btn-icon path {
  -webkit-transition: stroke 0.3s ease-in-out;
  transition: stroke 0.3s ease-in-out;
}
.btn-fullwidth {
  width: 100%;
}
.btn-lg {
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
}

.embed-responsive {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0 none;
  -o-object-fit: cover;
  object-fit: cover;
}

.content-vertical-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 100%;
  background-color: var(--color-border);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}

.content-dot {
  position: relative;
}
.content-dot:before {
  content: "";
  position: absolute;
  top: calc(50% - 0.375rem);
  right: calc(100% - 0.375rem);
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--color-bg);
  border: 0.0625rem solid var(--color-border);
}

.column-content {
  margin: 1.5rem 0;
  border: 0.0625rem solid var(--color-border);
}
@media (min-width: 744px) {
  .column-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 744px) {
  .column-content_col-2 .column-content__cell {
    width: 50%;
  }
  .column-content_col-2 .column-content__cell:nth-child(2n) {
    border-right: 0 none;
  }
}
@media (min-width: 1024px) {
  .column-content_col-3 .column-content__cell {
    width: 33.333333%;
  }
  .column-content_col-3 .column-content__cell:nth-child(3n) {
    border-right: 0 none;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .column-content_col-3 .column-content__cell {
    width: 100%;
    border-right: 0 none;
  }
}
.column-content img {
  margin: 0 0 0.5rem;
}
.column-content h4 {
  margin: 0 0 0.5rem;
}
@media (min-width: 1024px) {
  .column-content h4 {
    font-size: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .column-content h4 {
    font-size: 1.25rem;
  }
}
.column-content__cell {
  padding: 1.5rem;
  border-bottom: 0.0625rem solid var(--color-border);
}
@media (min-width: 744px) {
  .column-content__cell {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: -0.0625rem;
    border-right: 0.0625rem solid var(--color-border);
  }
}
@media (max-width: 743px) {
  .column-content__cell:last-child {
    border-bottom: 0 none;
  }
}
.column-content h1, .column-content h2, .column-content h3, .column-content h4, .column-content h5, .column-content h6 {
  font-family: "DM Sans", sans-serif !important;
  font-weight: bold !important;
  margin-top: 0 !important;
}

[data-lottie] svg {
  display: block;
  width: 100%;
  height: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}
.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch],
.lenis [data-lenis-prevent-vertical],
.lenis [data-lenis-prevent-horizontal] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}
.lenis.lenis-autoToggle {
  -webkit-transition-property: overflow;
  transition-property: overflow;
  -webkit-transition-duration: 1ms;
  transition-duration: 1ms;
  transition-behavior: allow-discrete;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  -webkit-transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.header_hide {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
}
.header_loaded .header__wrap {
  opacity: 1;
}
@media (max-width: 1023px) {
  .header.is-menu-open .header__panel {
    display: none;
  }
}
.header.is-menu-open .header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header.is-menu-open .header__menu-toggle-icon {
  display: none;
}
.header.is-menu-open .header__menu-toggle-close {
  display: block;
}
@media (max-width: 743px) {
  .header.is-menu-open .header__theme-toggle {
    opacity: 1;
    visibility: visible;
  }
}
.header__wrap {
  opacity: 0;
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-bg);
}
.header__panel {
  background-color: #242f25;
  background-repeat: repeat;
  background-size: 3.5rem 3.5rem;
  font-size: 0.875rem;
  color: #88d98f;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .header__panel {
    text-align: center;
  }
}
@media (min-width: 744px) {
  .header__panel {
    padding: 1.125rem 0;
  }
}
@media (max-width: 743px) {
  .header__panel {
    padding: 1rem 0;
  }
}
.header__panel.hidden {
  display: none;
}
.header__panel p {
  margin: 0 0 0.5rem;
}
.header__panel p:last-child {
  margin-bottom: 0;
}
.header__panel a {
  color: #ffffff;
  text-decoration: underline;
}
@media (hover: hover) {
  .header__panel a:hover {
    color: #88d98f;
  }
}
.header__panel-inner {
  position: relative;
}
@media (min-width: 1024px) {
  .header__panel-inner {
    padding: 0 3rem;
  }
}
@media (max-width: 1023px) {
  .header__panel-inner {
    padding-right: 3rem;
  }
}
.header__panel-close {
  position: absolute;
  right: -0.875rem;
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: none;
  border: 0 none;
  padding: 0;
  cursor: pointer;
}
@media (min-width: 744px) {
  .header__panel-close {
    top: -0.875rem;
  }
}
@media (max-width: 743px) {
  .header__panel-close {
    top: 50%;
    margin-top: -1.5rem;
  }
}
@media (hover: hover) {
  .header__panel-close:hover path {
    stroke: #ffffff;
  }
}
.header__panel-close-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}
.header__panel-close-icon path {
  -webkit-transition: stroke 0.3s ease-in-out;
  transition: stroke 0.3s ease-in-out;
  stroke: #88d98f;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (min-width: 744px) {
  .header__inner {
    padding: 1.5rem 0 1.4375rem;
  }
}
@media (max-width: 743px) {
  .header__inner {
    padding: 0.8125rem 0;
  }
}
.header__logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-decoration: none;
}
.header__logo-image {
  display: block;
}
@media (max-width: 743px) {
  .header__logo-image {
    width: 5.3125rem;
    height: re(34);
  }
}
.header__logo-sign {
  -webkit-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
  fill: var(--color-brand);
}
.header__logo-label {
  -webkit-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
  fill: var(--color-text);
}
@media (min-width: 1024px) {
  .header__menu-toggle {
    display: none;
  }
}
@media (max-width: 1023px) {
  .header__menu-toggle {
    margin-right: -0.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0 none;
    padding: 0;
    background: none;
    width: 2.5rem;
    height: 2.5rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
  }
}
.header__menu-toggle-icon, .header__menu-toggle-close {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}
.header__menu-toggle-icon path, .header__menu-toggle-close path {
  stroke: var(--color-text);
}
.header__menu-toggle-close {
  display: none;
}
@media (min-width: 1024px) {
  .header__menu {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .header__menu {
    height: calc(100vh - 5.5rem);
    height: calc(100vh - 5.5rem - var(--vh-offset, 0px));
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 743px) {
  .header__menu {
    height: calc(100vh - 4.125rem);
    height: calc(100vh - 4.125rem - var(--vh-offset, 0px));
    padding: 1rem 1rem 9.25rem;
  }
}
@media (max-width: 1023px) {
  .header__menu {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.0625rem);
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 744px) {
  .header__menu-footer {
    display: none;
  }
}
@media (max-width: 743px) {
  .header__menu-footer {
    position: fixed;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 1rem;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
  }
}
.header__menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 1024px) {
  .header__menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
  }
}
.header__menu-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}
@media (min-width: 1024px) and (hover: hover) {
  .header__menu-item:hover .header__menu-link {
    color: var(--menu-link-hover-color);
  }
  .header__menu-item:hover .header__menu-caret {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .header__menu-item:hover .header__menu-sub {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.header__menu-link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: none;
  border: 0 none;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--menu-link-color);
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
@media (max-width: 1023px) {
  .header__menu-link {
    padding: 1rem 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 1023px) {
  .header__menu-link.is-active {
    color: var(--menu-link-hover-color);
  }
  .header__menu-link.is-active .header__menu-caret {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@media (hover: hover) {
  .header__menu-link:hover {
    color: var(--menu-link-hover-color);
  }
}
.header__menu-caret {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header__menu-caret path {
  stroke: var(--color-text-2);
  -webkit-transition: stroke 0.2s ease-in-out;
  transition: stroke 0.2s ease-in-out;
}
.header__menu-sub {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: var(--color-bg-2);
}
@media (min-width: 1024px) {
  .header__menu-sub {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 11.625rem;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.3s ease-in-out;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .header__menu-sub:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 0.5rem;
  }
}
@media (max-width: 1023px) {
  .header__menu-sub {
    display: none;
  }
}
@media (max-width: 1023px) {
  .header__menu-sub.is-open {
    display: block;
  }
}
.header__menu-sub-link {
  display: block;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
@media (hover: hover) {
  .header__menu-sub-link:hover {
    background-color: var(--menu-sublink-hover-color);
  }
}
.header__aside {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 743px) {
  .header__theme-toggle {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 743px) {
  .header__button {
    display: none;
  }
}

.footer {
  position: relative;
  z-index: 50;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.footer__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .footer__inner {
    padding: 3.5rem 0;
  }
}
@media (max-width: 1023px) {
  .footer__inner {
    padding: 3rem 0;
  }
}
.footer__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
.footer__main {
  border-width: 0.0625rem 0.0625rem 0.0625rem 0;
  border-style: solid;
  border-color: var(--color-border);
}
@media (min-width: 1024px) {
  .footer__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1024px) {
  .footer__main-aside {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 2rem 2.8125rem 2rem 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .footer__main-aside {
    padding: 2rem 1.5rem;
    border-bottom: 0.0625rem solid var(--color-border);
  }
}
@media (max-width: 743px) {
  .footer__main-aside {
    padding: 1.5rem;
    border-bottom: 0.0625rem solid var(--color-border);
  }
}
.footer__main-content {
  border-left: 0.0625rem solid var(--color-border);
}
@media (min-width: 1024px) {
  .footer__main-content {
    padding: 2rem 0 2rem 2rem;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }
}
.footer__logo {
  display: block;
  text-decoration: none;
}
.footer__logo-image {
  display: block;
  width: 17.75rem;
  height: 3.8125rem;
}
.footer__menu-list {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .footer__menu-list {
    row-gap: 1.5rem;
    margin: 0;
  }
}
@media (max-width: 1023px) {
  .footer__menu-list {
    margin: 0 -0.0625rem -0.0625rem 0;
  }
}
.footer__menu-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (min-width: 1400px) {
  .footer__menu-item {
    width: 20%;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .footer__menu-item {
    width: 33.333333%;
    padding-right: 1rem;
  }
}
@media (max-width: 1023px) {
  .footer__menu-item {
    padding: 1.5rem;
    border-right: 0.0625rem solid var(--color-border);
    border-bottom: 0.0625rem solid var(--color-border);
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .footer__menu-item {
    width: 33.333333%;
  }
  .footer__menu-item:first-child, .footer__menu-item:nth-child(2) {
    width: 50%;
  }
}
@media (max-width: 743px) {
  .footer__menu-item {
    width: 50%;
  }
  .footer__menu-item:first-child {
    width: 100%;
  }
}
.footer__menu-title {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--color-text);
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.footer__menu-sub {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__menu-sub-item {
  padding: 0.5rem 0;
}
.footer__menu-sub-link {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: top;
  color: var(--footer-menu-link-color);
  text-decoration: none;
}
@media (hover: hover) {
  .footer__menu-sub-link:hover {
    color: var(--footer-menu-link-hover-color);
  }
}
@media (min-width: 1024px) {
  .footer__subscribe {
    padding: 3rem 2rem;
  }
}
@media (max-width: 1023px) {
  .footer__subscribe {
    padding: 2rem 1.5rem;
  }
}
.footer__subscribe-title {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--color-text);
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.footer__bottom {
  border-width: 0.0625rem 0.0625rem 0.0625rem 0;
  border-style: solid;
  border-color: var(--color-border);
}
@media (min-width: 1024px) {
  .footer__bottom {
    padding: 1rem 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 1023px) {
  .footer__bottom {
    padding: 1.5rem;
  }
}
.footer__bottom-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}
.footer__bottom-menu-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.footer__bottom-menu-link {
  display: block;
  color: var(--color-text-2);
  text-decoration: none;
}
@media (hover: hover) {
  .footer__bottom-menu-link:hover {
    color: var(--color-text);
  }
}
.footer__copyright {
  color: var(--color-text-2);
}
@media (max-width: 1023px) {
  .footer__copyright {
    margin-bottom: 1rem;
  }
}

.main-intro {
  position: relative;
}
.main-intro__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .main-intro__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 5rem 0;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .main-intro__inner {
    padding: 5rem 0 3rem;
  }
}
@media (max-width: 743px) {
  .main-intro__inner {
    padding: 3rem 0 2rem;
  }
}
.main-intro__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
@media (min-width: 1024px) {
  .main-intro__content {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 52.9015%;
    -ms-flex-item-align: center;
    align-self: center;
  }
}
@media (min-width: 1400px) {
  .main-intro__content {
    padding: 0 8% 0 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .main-intro__content {
    padding: 0 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .main-intro__content {
    margin-bottom: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 743px) {
  .main-intro__content {
    margin-bottom: 2rem;
    padding: 0 1.5rem;
  }
}
.main-intro__video {
  opacity: 0;
}
@media (min-width: 1024px) {
  .main-intro__video {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 47.0985%;
  }
}
.main-intro__video .inline-video__el {
  -o-object-fit: contain;
  object-fit: contain;
}
.main-intro__label {
  opacity: 0;
}
@media (min-width: 744px) {
  .main-intro__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .main-intro__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .main-intro__label:before {
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .main-intro__label:before {
    margin-right: 1.5rem;
  }
}
.main-intro__title {
  line-height: 1.13;
  font-weight: 400;
  opacity: 0;
}
@media (min-width: 1024px) {
  .main-intro__title {
    margin: 0 0 1.5rem;
    font-size: 3.375rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .main-intro__title {
    margin: 0 0 1rem;
    font-size: 3.25rem;
  }
}
@media (max-width: 743px) {
  .main-intro__title {
    margin: 0 0 1rem;
    font-size: 2rem;
  }
}
.main-intro__text {
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-text-2);
  opacity: 0;
}
@media (min-width: 744px) {
  .main-intro__text {
    font-size: 1.125rem;
  }
}
@media (max-width: 743px) {
  .main-intro__text {
    font-size: 1rem;
  }
}
.main-intro__footer {
  opacity: 0;
}
@media (min-width: 1024px) {
  .main-intro__footer {
    margin-top: 3.5rem;
  }
}
@media (max-width: 1023px) {
  .main-intro__footer {
    margin-top: 1.5rem;
  }
}
@media (max-width: 743px) {
  .main-intro__footer-button {
    width: 100%;
  }
}

.ticker-logos {
  position: relative;
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .ticker-logos:after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0.0625rem;
    right: 0;
    width: 10rem;
    height: 5rem;
    pointer-events: none;
  }
  [data-theme=dark] .ticker-logos:after {
    background: -webkit-gradient(linear, left top, right top, from(transparent), to(#111111));
    background: linear-gradient(to right, transparent, #111111);
  }
  [data-theme=light] .ticker-logos:after {
    background: -webkit-gradient(linear, left top, right top, from(transparent), to(#ffffff));
    background: linear-gradient(to right, transparent, #ffffff);
  }
}
.ticker-logos_reverse .ticker-logos__list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.ticker-logos__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .ticker-logos__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 3.5rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .ticker-logos__inner {
    padding-bottom: 3rem;
  }
}
@media (max-width: 743px) {
  .ticker-logos__inner {
    padding-bottom: 2.625rem;
  }
}
.ticker-logos__inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
@media (min-width: 1024px) {
  .ticker-logos__inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 3.5rem;
    width: 100vw;
    border-top: 0.0625rem solid var(--color-border);
    border-bottom: 0.0625rem solid var(--color-border);
    pointer-events: none;
  }
}
.ticker-logos__label {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--color-text);
  border-right: 0.0625rem solid var(--color-border);
}
@media (min-width: 1024px) {
  .ticker-logos__label {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 2rem;
  }
}
@media (max-width: 1023px) {
  .ticker-logos__label {
    padding: 1.125rem;
    border-top: 0.0625rem solid var(--color-border);
    text-align: center;
  }
}
.ticker-logos__body {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}
@media (min-width: 1024px) {
  .ticker-logos__body {
    width: 100vw;
    overflow: hidden;
  }
}
@media (max-width: 1023px) {
  .ticker-logos__body {
    z-index: 2;
    margin: 0 -1rem;
    border-top: 0.0625rem solid var(--color-border);
    border-bottom: 0.0625rem solid var(--color-border);
    background-color: var(--color-bg);
  }
}
.ticker-logos__body:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0.0625rem;
  bottom: 0.0625rem;
  left: 0;
  width: 2rem;
  pointer-events: none;
}
[data-theme=dark] .ticker-logos__body:before {
  background: -webkit-gradient(linear, left top, right top, from(#111111), to(transparent));
  background: linear-gradient(to right, #111111, transparent);
}
[data-theme=light] .ticker-logos__body:before {
  background: -webkit-gradient(linear, left top, right top, from(#f5f6f7), to(transparent));
  background: linear-gradient(to right, #f5f6f7, transparent);
}
@media (max-width: 1023px) {
  .ticker-logos__body:after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0.0625rem;
    bottom: 0.0625rem;
    right: 0;
    width: 2rem;
    pointer-events: none;
  }
  [data-theme=dark] .ticker-logos__body:after {
    background: -webkit-gradient(linear, left top, right top, from(transparent), to(#111111));
    background: linear-gradient(to right, transparent, #111111);
  }
  [data-theme=light] .ticker-logos__body:after {
    background: -webkit-gradient(linear, left top, right top, from(transparent), to(#ffffff));
    background: linear-gradient(to right, transparent, #ffffff);
  }
}
.ticker-logos__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ticker-logos__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.ticker-logos__item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 744px) {
  .ticker-logos__item {
    height: 5.125rem;
  }
}
@media (max-width: 743px) {
  .ticker-logos__item {
    height: 3.875rem;
  }
}
.ticker-logos__image {
  max-height: 100%;
}

.theme-toggle {
  padding: 0.125rem;
  height: 2.375rem;
  background: var(--theme-toggle-background);
  border: 0 none;
  border-radius: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
@media (hover: hover) {
  [data-theme=dark] .theme-toggle:hover .theme-toggle__item_light .theme-toggle__icon path {
    fill: var(--theme-toggle-icon-hover);
  }
  [data-theme=light] .theme-toggle:hover .theme-toggle__item_dark .theme-toggle__icon path {
    fill: var(--theme-toggle-icon-hover);
  }
}
.theme-toggle__item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
[data-theme=dark] .theme-toggle__item_dark {
  background-color: #1c1c1d;
}
[data-theme=dark] .theme-toggle__item_dark .theme-toggle__icon path {
  fill: var(--theme-toggle-icon-active);
}
[data-theme=light] .theme-toggle__item_light {
  background-color: #ffffff;
}
[data-theme=light] .theme-toggle__item_light .theme-toggle__icon path {
  fill: var(--theme-toggle-icon-active);
}
.theme-toggle__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}
.theme-toggle__icon path {
  fill: var(--theme-toggle-icon);
  -webkit-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
}

.cta-section {
  position: relative;
  text-align: center;
}
.cta-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-color: #2b2c2c;
}
@media (min-width: 1600px) {
  .cta-section__bg {
    left: 1rem;
    right: 1rem;
  }
}
.cta-section__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 37.5rem;
}
@media (min-width: 744px) {
  .cta-section__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (max-width: 743px) {
  .cta-section__inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.cta-section__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 744px) {
  .cta-section__icon {
    margin-bottom: 2rem;
  }
}
@media (max-width: 743px) {
  .cta-section__icon {
    margin-bottom: 1.5rem;
  }
}
.cta-section__icon img,
.cta-section__icon svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2.875rem;
  height: 2.875rem;
}
.cta-section__icon path {
  -webkit-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
}
@media (min-width: 744px) {
  .cta-section__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .cta-section__label {
    margin-bottom: 0.75rem;
  }
}
.cta-section__label .content-label_purple {
  color: #9eb1ff;
  background-color: #1d1e29;
  border-color: #212e5a;
}
.cta-section__label .content-label_green {
  color: #88d98f;
  background-color: #191d1a;
  border-color: #242f25;
}
.cta-section__label .content-label_grey {
  color: #ffffff;
  background-color: #1c1c1d;
  border-color: #2b2c2c;
}
.cta-section__title {
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
}
@media (min-width: 744px) {
  .cta-section__title {
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .cta-section__title {
    width: 60%;
    font-size: 2.875rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .cta-section__title {
    width: 80%;
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .cta-section__title {
    margin: 0 1.5rem;
    font-size: 1.75rem;
  }
  .cta-section__title br {
    display: none;
  }
}
.cta-section__text {
  color: #a8aab1;
}
@media (min-width: 744px) {
  .cta-section__text {
    margin: 1rem auto 0;
  }
}
@media (min-width: 1400px) {
  .cta-section__text {
    width: 60%;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .cta-section__text {
    width: 75%;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .cta-section__text {
    width: 85%;
  }
}
@media (max-width: 743px) {
  .cta-section__text {
    margin-top: 1rem;
  }
}
.cta-section__text p:last-child {
  margin-bottom: 0;
}
.cta-section__text a {
  color: #ffffff;
}
@media (hover: hover) {
  .cta-section__text a:hover {
    color: #a8aab1;
  }
}
@media (min-width: 744px) {
  .cta-section__footer {
    margin-top: 2rem;
  }
}
@media (max-width: 743px) {
  .cta-section__footer {
    padding: 0 1.5rem;
    margin-top: 1.5rem;
  }
}
@media (max-width: 743px) {
  .cta-section__button {
    width: 100%;
    max-width: 31.25rem;
  }
}
.cta-section .btn-bordered-light {
  color: #ffffff;
  border-color: #a8aab1;
}
@media (hover: hover) {
  .cta-section .btn-bordered-light:hover {
    border-color: #ffffff;
    background: #1c1c1d;
  }
}
.cta-section .btn-bordered-light .btn-icon path {
  stroke: #ffffff;
}

.silk-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}
.silk-bg__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 744px) and (max-width: 1023px) {
  .tiles-box_short .tiles-box__list-item:nth-child(n+3) {
    display: none;
  }
}
.tiles-box__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .tiles-box__inner {
    padding: 3.5rem 0;
  }
}
@media (max-width: 1023px) {
  .tiles-box__inner {
    padding: 3rem 0;
  }
}
.tiles-box__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
.tiles-box__head {
  text-align: center;
}
@media (min-width: 1024px) {
  .tiles-box__head {
    margin-bottom: 3rem;
    padding: 0 2rem;
  }
}
@media (max-width: 1023px) {
  .tiles-box__head {
    margin-bottom: 2rem;
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .tiles-box__head_simple {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 0;
    text-align: left;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .tiles-box__search {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .tiles-box__search {
    margin-top: 2rem;
  }
}
@media (max-width: 743px) {
  .tiles-box__search {
    margin-top: 1.5rem;
  }
}
@media (min-width: 744px) {
  .tiles-box__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .tiles-box__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .tiles-box__label:before {
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .tiles-box__label:before {
    margin-right: 1.5rem;
  }
}
.tiles-box__title {
  margin: 0;
  line-height: 1.13;
  font-weight: 400;
  color: var(--color-text);
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  .tiles-box__title {
    font-size: 2.875rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .tiles-box__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .tiles-box__title {
    font-size: 1.75rem;
  }
}
.tiles-box__list {
  border-top: 0.0625rem solid var(--color-border);
}
@media (min-width: 744px) {
  .tiles-box__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.tiles-box__list-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-right: 0.0625rem solid var(--color-border);
  border-bottom: 0.0625rem solid var(--color-border);
}
@media (min-width: 1024px) {
  .tiles-box__list-item {
    padding: 2rem;
    width: 33.333333%;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .tiles-box__list-item {
    padding: 1.5rem;
    width: 50%;
  }
}
@media (max-width: 743px) {
  .tiles-box__list-item {
    padding: 1.5rem;
    border-bottom: 0.0625rem solid var(--color-border);
  }
}
@media (min-width: 744px) {
  .tiles-box__pagination {
    margin-top: 3.5rem;
  }
}
@media (max-width: 743px) {
  .tiles-box__pagination {
    margin-top: 2.75rem;
  }
}

.post-card__image {
  position: relative;
  display: block;
  padding-bottom: 90%;
  margin-bottom: 1.5rem;
  overflow: hidden;
  text-decoration: none;
}
@media (hover: hover) {
  .post-card__image:hover .post-card__image-i {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.post-card__image-i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.post-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.post-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.post-card__date {
  font-size: 0.875rem;
  color: var(--color-text-2);
}
.post-card__title {
  margin: 0 0 0.5rem;
  font-family: "DM Sans", sans-serif;
  line-height: 1.35;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .post-card__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .post-card__title {
    font-size: 1.25rem;
  }
}
.post-card__title-link {
  display: block;
  color: var(--color-text);
  text-decoration: none;
}
@media (hover: hover) {
  .post-card__title-link:hover {
    color: var(--color-text-2);
  }
}
.post-card__text {
  color: var(--color-text-2);
}
@media (min-width: 1024px) {
  .post-card__footer {
    margin-top: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .post-card__footer {
    margin-top: 1rem;
  }
}

.more-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.25rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) {
  .more-link:hover {
    color: var(--color-text-2);
  }
  .more-link:hover .more-link__icon {
    -webkit-transform: translateX(0.3125rem);
    -ms-transform: translateX(0.3125rem);
    transform: translateX(0.3125rem);
  }
  .more-link:hover .more-link__icon path {
    stroke: var(--color-text-2);
  }
}
.more-link__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.more-link__icon path {
  stroke: var(--color-text);
  -webkit-transition: stroke 0.2s ease-in-out;
  transition: stroke 0.2s ease-in-out;
}

.content-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4375rem 0.9375rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  border-width: 0.0625rem;
  border-style: solid;
  border-radius: 1.25rem;
}
.content-label_green {
  color: var(--color-brand);
  background-color: var(--content-label-background-color);
  border-color: var(--content-label-border-color);
}
.content-label_green .content-label__icon path {
  fill: var(--color-brand);
}
.content-label_grey {
  color: var(--color-text);
  background-color: var(--content-label-grey-background-color);
  border-color: var(--content-label-grey-border-color);
}
.content-label_grey .content-label__icon path {
  fill: var(--color-text);
}
.content-label_purple {
  color: var(--color-purple);
  background-color: var(--content-label-purple-background-color);
  border-color: var(--content-label-purple-border-color);
}
.content-label_purple .content-label__icon path {
  fill: var(--color-purple);
}
.content-label__text {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.content-label__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.inline-video {
  position: relative;
  width: 100%;
  max-height: 100vh;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.inline-video.is-playing .inline-video__cover {
  display: none;
}
.inline-video_square {
  aspect-ratio: 1/1;
  width: min(100%, 100vh);
  margin-left: auto;
  margin-right: auto;
}
.inline-video_autoplay {
  width: min(100%, 177.7777777778vh);
  margin-left: auto;
  margin-right: auto;
}
.inline-video__el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.inline-video__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111111;
}
.inline-video__cover-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.inline-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -2.9375rem 0 0 -2.9375rem;
  width: 5.875rem;
  height: 5.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 0 0 0.375rem;
  border: 0 none;
  background: var(--video-play-background-color);
  border-radius: 50%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  -webkit-transition: 0.2s -webkit-transform ease-in-out;
  transition: 0.2s -webkit-transform ease-in-out;
  transition: 0.2s transform ease-in-out;
  transition: 0.2s transform ease-in-out, 0.2s -webkit-transform ease-in-out;
}
@media (hover: hover) {
  .inline-video__play:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.inline-video__play-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2.4375rem;
  height: 2.4375rem;
}

.scroll-steps {
  position: relative;
  overflow: hidden;
}
.scroll-steps__line {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 1rem;
  height: 100vh;
  width: 0.0625rem;
  background-color: var(--color-border);
  -webkit-transform-origin: center top;
  -ms-transform-origin: center top;
  transform-origin: center top;
  opacity: 0;
}
.scroll-steps__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
@media (min-width: 1600px) {
  .scroll-steps__bg {
    left: 1rem;
    right: 1rem;
  }
}
.scroll-steps__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.scroll-steps__bg-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.scroll-steps__bg-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.scroll-steps__bg-item:nth-child(1) {
  width: 100%;
}
@media (max-width: 743px) {
  .scroll-steps__bg-item:nth-child(1) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) {
  .scroll-steps__bg-item:nth-child(2) {
    margin-right: 10vw;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .scroll-steps__bg-item:nth-child(2) {
    margin-right: 5vw;
  }
}
@media (max-width: 743px) {
  .scroll-steps__bg-item:nth-child(2) {
    margin-right: 1rem;
  }
}
.scroll-steps__bg-el {
  position: absolute;
  top: 2.875rem;
  width: auto;
  height: calc(100vh - 92px);
}
@media (min-width: 1024px) {
  .scroll-steps__bg-el {
    right: 10vw;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .scroll-steps__bg-el {
    right: 5vw;
  }
}
@media (max-width: 743px) {
  .scroll-steps__bg-el {
    right: 1rem;
  }
}
.scroll-steps__bg-el path {
  fill: #111111;
}
.scroll-steps__bg-circle {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(100vh - 92px);
  height: calc(100vh - 92px);
  border-radius: 50%;
  background-color: #111111;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}
.scroll-steps__bg-circle_main {
  will-change: transform;
}
.scroll-steps__inner {
  position: relative;
  height: 100vh;
}
.scroll-steps__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.scroll-steps__item-inner {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 1400px) {
  .scroll-steps__item-inner {
    padding: 0 30%;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .scroll-steps__item-inner {
    padding: 0 20%;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .scroll-steps__item-inner {
    padding: 0 12%;
  }
}
@media (max-width: 743px) {
  .scroll-steps__item-content {
    padding: 0 1rem;
  }
}
@media (min-width: 744px) {
  .scroll-steps__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .scroll-steps__label {
    margin-bottom: 0.75rem;
  }
}
.scroll-steps__title {
  margin: 0 0 1rem;
  line-height: 1.13;
  font-weight: 400;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .scroll-steps__title {
    font-size: 2.875rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .scroll-steps__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .scroll-steps__title {
    font-size: 1.75rem;
  }
}
.scroll-steps__title_brand {
  color: #88d98f;
}
.scroll-steps__text {
  color: #a8aab1;
}
.scroll-steps .content-label_grey {
  color: #ffffff;
  background-color: #1c1c1d;
  border-color: #2b2c2c;
}
.scroll-steps .content-label_green {
  color: #88d98f;
  background-color: #191d1a;
  border-color: #242f25;
}

@media (min-width: 1024px) {
  .info-section_offset-md .info-section__inner {
    padding: 3.5rem 0;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .info-section_offset-md .info-section__inner {
    padding: 3rem 1.5rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .info-section_offset-md .info-section__title {
    margin: 0 0 2rem;
  }
}
@media (min-width: 1024px) {
  .info-section_offset-md .info-section__text p {
    margin: 0 0 2rem;
  }
}
@media (min-width: 1024px) {
  .info-section_top-offset .info-section__inner {
    padding: 7rem 0 3.5rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .info-section_top-offset .info-section__inner {
    padding: 5rem 1.5rem 3rem;
  }
}
@media (max-width: 743px) {
  .info-section_top-offset .info-section__inner {
    padding: 3rem 1.5rem;
  }
}
.info-section__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .info-section__inner {
    padding: 7rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .info-section__inner {
    padding: 5rem 1.5rem;
  }
}
@media (max-width: 743px) {
  .info-section__inner {
    padding: 3rem 1.5rem;
  }
}
.info-section__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
@media (min-width: 1024px) {
  .info-section__content {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50%;
    padding: 0 4.375rem 0 2rem;
  }
}
@media (max-width: 1023px) {
  .info-section__content .info-section__text {
    margin-top: -0.5rem;
  }
}
@media (min-width: 1024px) {
  .info-section__aside {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50%;
    padding-left: 4.375rem;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
}
@media (min-width: 1024px) {
  .info-section__aside_no-padding {
    padding-left: 0;
  }
}
@media (min-width: 744px) {
  .info-section__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .info-section__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .info-section__label:before {
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .info-section__label:before {
    margin-right: 1.5rem;
  }
}
.info-section__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
}
.info-section__logo-i {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.info-section__title {
  line-height: 1.13;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .info-section__title {
    margin: 0 0 1rem;
    font-size: 2.875rem;
  }
  .info-section__title:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .info-section__title {
    margin: 0 0 1rem;
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .info-section__title {
    margin: 0 0 1.5rem;
    font-size: 1.75rem;
  }
}
.info-section__subtitle {
  margin: 0 0 1rem;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .info-section__subtitle {
    font-size: 2rem;
    line-height: 1.25;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .info-section__subtitle {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media (max-width: 743px) {
  .info-section__subtitle {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}
.info-section__subtitle-audio-play {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  background: var(--audio-control-background-color);
  border: 0.0625rem solid var(--audio-control-border-color);
  border-radius: 0.25rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: border-color 0.2s ease-in-out, background 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out, background 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  .info-section__subtitle-audio-play {
    margin: 0.4375rem 0.25rem 0;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .info-section__subtitle-audio-play {
    margin: 0.125rem 0.25rem 0;
  }
}
@media (max-width: 743px) {
  .info-section__subtitle-audio-play {
    margin: 0 0.25rem;
  }
}
@media (hover: hover) {
  .info-section__subtitle-audio-play:hover {
    border-color: var(--audio-control-border-color-hover);
    background: var(--audio-control-background-color-hover);
  }
}
.info-section__subtitle-audio-play_playing {
  border-color: var(--audio-control-border-color-hover);
  background: var(--audio-control-background-color-hover);
}
.info-section__subtitle-audio-play img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}
.info-section__text {
  margin-bottom: 2rem;
  color: var(--color-text-2);
}
.info-section__text h3, .info-section__text h4, .info-section__text h5 {
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  color: var(--color-text);
}
.info-section__text p:last-child {
  margin-bottom: 0;
}
.info-section__text img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 1023px) {
  .info-section__text img {
    margin: 0 -1.5rem;
    width: calc(100% + 3rem);
    max-width: calc(100% + 3rem);
  }
}
@media (max-width: 743px) {
  .info-section__button {
    width: 100%;
  }
}

.info-section-with-image__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .info-section-with-image__inner {
    padding: 0 2rem;
  }
}
@media (max-width: 1023px) {
  .info-section-with-image__inner {
    padding: 0 1.5rem;
  }
}
.info-section-with-image__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
@media (min-width: 1024px) {
  .info-section-with-image__head {
    margin-bottom: 3rem;
  }
}
@media (min-width: 744px) {
  .info-section-with-image__head {
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .info-section-with-image__head {
    margin-bottom: 1rem;
  }
}
@media (min-width: 744px) {
  .info-section-with-image__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .info-section-with-image__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .info-section-with-image__label:before {
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .info-section-with-image__label:before {
    margin-right: 1.5rem;
  }
}
.info-section-with-image__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 1rem;
  font-size: 2.875rem;
  line-height: 1.13;
  font-weight: 400;
}
@media (min-width: 744px) {
  .info-section-with-image__title {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.info-section-with-image__title-label {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.info-section-with-image__title-image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (min-width: 744px) and (max-width: 1023px) {
  .info-section-with-image__title-image {
    width: 17.1875rem;
    height: 2.25rem;
  }
}
@media (max-width: 743px) {
  .info-section-with-image__title-image {
    width: 11.625rem;
    height: 1.5rem;
  }
}
[data-theme=light] .info-section-with-image__title-image_light {
  display: none;
}
[data-theme=dark] .info-section-with-image__title-image_dark {
  display: none;
}
.info-section-with-image__text {
  margin: 0 auto;
  color: var(--color-text-2);
}
@media (min-width: 1400px) {
  .info-section-with-image__text {
    width: 50%;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .info-section-with-image__text {
    width: 75%;
  }
}
.info-section-with-image__media-img {
  width: 100%;
  height: auto;
}
@media (min-width: 744px) {
  .info-section-with-image__media-img {
    display: block;
  }
}
@media (max-width: 743px) {
  .info-section-with-image__media-img {
    display: none;
  }
}
.info-section-with-image__media-img-mobile {
  width: 100%;
  height: auto;
}
@media (min-width: 744px) {
  .info-section-with-image__media-img-mobile {
    display: none;
  }
}
@media (max-width: 743px) {
  .info-section-with-image__media-img-mobile {
    display: block;
  }
}

.info-tiles__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .info-tiles__inner {
    padding-bottom: 3.5rem;
  }
}
@media (max-width: 1023px) {
  .info-tiles__inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.info-tiles__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
@media (min-width: 1024px) {
  .info-tiles__lines {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 1023px) {
  .info-tiles__lines {
    display: none;
  }
}
.info-tiles__lines-image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 90%;
  height: auto;
}
.info-tiles__track {
  fill: none;
  stroke-width: 1;
  stroke: var(--color-border);
}
.info-tiles__segment {
  fill: none;
  stroke-width: 2;
  stroke-linecap: square;
}
.info-tiles__grad-stop {
  stop-color: var(--info-tiles-dash-color);
}
@media (min-width: 1024px) {
  .info-tiles__list {
    border-top: 0.0625rem solid var(--color-border);
    border-bottom: 0.0625rem solid var(--color-border);
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .info-tiles__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 744px) {
  .info-tiles__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 743px) {
  .info-tiles__list {
    border-top: 0.0625rem solid var(--color-border);
    border-bottom: 0.0625rem solid var(--color-border);
  }
}
.info-tiles__list-item {
  border-right: 0.0625rem solid var(--color-border);
}
@media (min-width: 744px) {
  .info-tiles__list-item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
@media (min-width: 1024px) {
  .info-tiles__list-item {
    padding: 2rem;
    width: 33.333333%;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .info-tiles__list-item {
    width: 50%;
    border-top: 0.0625rem solid var(--color-border);
    border-bottom: 0.0625rem solid var(--color-border);
    margin-bottom: -0.0625rem;
  }
}
@media (max-width: 1023px) {
  .info-tiles__list-item {
    padding: 1.5rem;
  }
}
@media (max-width: 743px) {
  .info-tiles__list-item {
    border-bottom: 0.0625rem solid var(--color-border);
  }
  .info-tiles__list-item:last-child {
    border-bottom: 0 none;
  }
}
.info-tiles__item-image {
  position: relative;
  padding-bottom: 90%;
  margin-bottom: 1.5rem;
}
.info-tiles__item-image-i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.info-tiles__item-media {
  margin-bottom: 1.5rem;
}
.info-tiles__item-title {
  margin: 0 0 0.5rem;
  font-family: "DM Sans", sans-serif;
  line-height: 1.35;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .info-tiles__item-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .info-tiles__item-title {
    font-size: 1.25rem;
  }
}
.info-tiles__item-text {
  color: var(--color-text-2);
}

.reviews-box__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .reviews-box__inner {
    padding: 3.5rem 0;
  }
}
@media (max-width: 1023px) {
  .reviews-box__inner {
    padding: 3rem 0;
  }
}
.reviews-box__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
.reviews-box__head {
  text-align: center;
}
@media (min-width: 1024px) {
  .reviews-box__head {
    margin-bottom: 3rem;
    padding: 0 2rem;
  }
}
@media (max-width: 1023px) {
  .reviews-box__head {
    margin-bottom: 4rem;
    padding: 0 1.5rem;
  }
}
@media (min-width: 744px) {
  .reviews-box__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .reviews-box__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .reviews-box__label:before {
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .reviews-box__label:before {
    margin-right: 1.5rem;
  }
}
.reviews-box__title {
  margin: 0;
  line-height: 1.13;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .reviews-box__title {
    font-size: 2.875rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .reviews-box__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .reviews-box__title {
    font-size: 1.75rem;
  }
}
.reviews-box__wrap {
  position: relative;
}
@media (min-width: 744px) and (max-width: 1023px) {
  .reviews-box__wrap {
    padding-bottom: 10.625rem;
  }
}
@media (max-width: 743px) {
  .reviews-box__wrap {
    padding-bottom: 9.75rem;
  }
}
@media (max-width: 1023px) {
  .reviews-box__wrap {
    margin-right: -1rem;
  }
}
@media (max-width: 1023px) {
  .reviews-box__slider {
    padding-right: 2rem;
  }
}
@media (min-width: 1400px) {
  .reviews-box__item {
    padding: 0 25%;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .reviews-box__item {
    padding: 0 15%;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .reviews-box__item {
    padding: 0 10%;
  }
}
@media (max-width: 743px) {
  .reviews-box__item {
    padding: 0 2rem 0 1rem;
  }
}
.reviews-box__item-icon {
  display: block;
}
@media (min-width: 744px) {
  .reviews-box__item-icon {
    width: 3.375rem;
    height: 3.375rem;
  }
}
@media (min-width: 1024px) {
  .reviews-box__item-icon {
    margin: 0 auto 1rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .reviews-box__item-icon {
    margin: 0 auto 0.5rem;
  }
}
@media (max-width: 743px) {
  .reviews-box__item-icon {
    margin: 0 auto;
    width: 2.5rem;
    height: 2.5rem;
  }
}
.reviews-box__item-icon path {
  fill: var(--reviews-box-icon-color);
}
.reviews-box__item-text {
  font-family: "Lora", serif;
  line-height: 1.25;
  text-align: center;
}
@media (min-width: 1024px) {
  .reviews-box__item-text {
    font-size: 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .reviews-box__item-text {
    font-size: 1.5rem;
  }
}
@media (max-width: 743px) {
  .reviews-box__item-text {
    font-size: 1.25rem;
  }
}
.reviews-box__item-author {
  line-height: 1.5;
  font-weight: 600;
  color: var(--color-text);
}
@media (min-width: 1024px) {
  .reviews-box__item-author {
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 744px) {
  .reviews-box__item-author {
    font-size: 1.125rem;
  }
}
@media (max-width: 1023px) {
  .reviews-box__item-author {
    font-size: 1rem;
  }
}
.reviews-box__item-label {
  color: var(--color-text-2);
}
.reviews-box__item-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 744px) {
  .reviews-box__item-panel {
    margin-top: 3rem;
    gap: 2rem;
  }
}
@media (max-width: 743px) {
  .reviews-box__item-panel {
    margin-top: 2rem;
    gap: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}
.reviews-box__item-panel_centered {
  text-align: center;
}
.reviews-box__item-panel-content {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 18.75rem;
}
.reviews-box__item-panel-separator {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: var(--color-border);
}
@media (min-width: 744px) {
  .reviews-box__item-panel-separator {
    width: 0.0625rem;
    height: 2.5rem;
  }
}
@media (max-width: 743px) {
  .reviews-box__item-panel-separator {
    width: 2.5rem;
    height: 0.0625rem;
  }
}
.reviews-box__item-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 744px) {
  .reviews-box__item-logo {
    height: 3.4375rem;
  }
}
@media (max-width: 743px) {
  .reviews-box__item-logo {
    height: 2.5rem;
  }
}
.reviews-box__item-logo-image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: auto;
  max-height: 100%;
}
@media (max-width: 1023px) {
  .reviews-box__nav {
    position: absolute;
    left: 0;
    right: 1rem;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
  }
}
.reviews-box__nav-prev, .reviews-box__nav-next {
  margin: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 !important;
  background: var(--color-bg);
  border: 0.0625rem solid var(--button-arrow-border-color);
  -webkit-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .reviews-box__nav-prev, .reviews-box__nav-next {
    position: absolute;
    top: calc(50% - 2.5rem) !important;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 4.5rem !important;
    height: 4.5rem !important;
  }
}
@media (max-width: 1023px) {
  .reviews-box__nav-prev, .reviews-box__nav-next {
    position: relative !important;
    width: 3.5rem !important;
    height: 3.5rem !important;
  }
}
.reviews-box__nav-prev:after, .reviews-box__nav-next:after {
  content: none !important;
}
.reviews-box__nav-prev.disabled, .reviews-box__nav-next.disabled {
  border-color: var(--button-arrow-border-disabled-color);
  pointer-events: none;
}
.reviews-box__nav-prev.disabled .reviews-box__nav-icon path, .reviews-box__nav-next.disabled .reviews-box__nav-icon path {
  stroke: var(--button-arrow-icon-disabled-color);
}
@media (hover: hover) {
  .reviews-box__nav-prev:hover, .reviews-box__nav-next:hover {
    background: var(--button-arrow-background-hover-color);
    border-color: var(--button-arrow-border-hover-color);
  }
}
.reviews-box__nav-prev {
  left: 0 !important;
}
.reviews-box__nav-next {
  right: 0 !important;
}
.reviews-box__nav-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.5rem !important;
  height: 1.5rem !important;
}
.reviews-box__nav-icon path {
  stroke: var(--color-text);
  -webkit-transition: stroke 0.3s ease-in-out;
  transition: stroke 0.3s ease-in-out;
}
.reviews-box__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .reviews-box__controls {
    margin-top: 4rem;
  }
}
@media (max-width: 1023px) {
  .reviews-box__controls {
    position: absolute;
    left: 0;
    right: 1rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .reviews-box__controls {
    bottom: 5.5rem;
  }
}
@media (max-width: 743px) {
  .reviews-box__controls {
    bottom: 5.375rem;
  }
}
.reviews-box__progress {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  height: 0.125rem;
  overflow: hidden;
  background-color: var(--color-border);
}
.reviews-box__progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--reviews-box-icon-color);
  -webkit-transform: scaleX(var(--progress, 0));
  -ms-transform: scaleX(var(--progress, 0));
  transform: scaleX(var(--progress, 0));
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.reviews-box__counter {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--color-text-2);
}
.reviews-box__counter-separator {
  margin: 0 0.125rem;
}

.tabs-content__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .tabs-content__inner {
    padding: 3.5rem 0;
  }
}
@media (max-width: 1023px) {
  .tabs-content__inner {
    padding: 3rem 0;
  }
}
.tabs-content__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
@media (max-width: 743px) {
  .tabs-content__inner:before {
    z-index: 5;
  }
}
.tabs-content__head {
  position: relative;
  z-index: 6;
}
@media (min-width: 744px) {
  .tabs-content__head {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .tabs-content__head {
    margin-bottom: 3rem;
    padding: 0 2rem;
  }
}
@media (max-width: 1023px) {
  .tabs-content__head {
    margin-bottom: 2rem;
    padding: 0 1.5rem;
  }
}
@media (min-width: 744px) {
  .tabs-content__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .tabs-content__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .tabs-content__label:before {
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .tabs-content__label:before {
    margin-right: 1.5rem;
  }
}
.tabs-content__title {
  margin: 0;
  line-height: 1.13;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .tabs-content__title {
    font-size: 2.875rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .tabs-content__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .tabs-content__title {
    font-size: 1.75rem;
  }
}
.tabs-content__nav {
  position: relative;
  border-top: 0.0625rem solid var(--color-border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 744px) {
  .tabs-content__nav {
    border-right: 0.0625rem solid var(--color-border);
  }
}
@media (max-width: 743px) {
  .tabs-content__nav {
    margin: 0 -1rem -0.0625rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-bottom: 0.0625rem solid var(--color-border);
    border-right: 0.0625rem solid var(--color-border);
  }
}
.tabs-content__nav-item {
  padding: 1.5rem;
  margin: -0.0625rem;
  border: 0.0625rem solid var(--color-border);
  background: var(--color-bg);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  white-space: nowrap;
  color: var(--color-text);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
@media (min-width: 744px) {
  .tabs-content__nav-item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    width: calc(33.333333% + 0.0625rem);
  }
  .tabs-content__nav-item:first-child {
    margin-left: 0;
  }
}
@media (max-width: 743px) {
  .tabs-content__nav-item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: calc(33.333333% + 0.0625rem);
  }
  .tabs-content__nav-item:last-child {
    border-right: 0 none;
  }
}
@media (hover: hover) {
  .tabs-content__nav-item:hover {
    z-index: 2;
    border-color: var(--tab-border-hover);
    color: var(--tab-color-hover);
  }
}
.tabs-content__nav-item.is-active {
  background: var(--color-bg-2);
  color: var(--color-text);
  border-color: var(--color-border);
}
.tabs-content__list {
  border: 0.0625rem solid var(--color-border);
}
.tabs-content__item {
  display: none;
  background-color: var(--color-bg-2);
}
.tabs-content__item.is-active {
  display: block;
}
@media (min-width: 1024px) {
  .tabs-content__item-head {
    padding: 3rem 2rem 2rem;
    width: 50%;
  }
}
@media (max-width: 1023px) {
  .tabs-content__item-head {
    padding: 1.5rem 1.5rem 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .tabs-content__item-head {
    text-align: center;
  }
}
.tabs-content__item-title {
  margin: 0 0 0.5rem;
  font-family: "Lora", serif;
  line-height: 1.25;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .tabs-content__item-title {
    font-size: 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .tabs-content__item-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 743px) {
  .tabs-content__item-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 1023px) {
  .tabs-content__item-title br {
    display: none;
  }
}
.tabs-content__item-text {
  color: var(--color-text-2);
}
@media (min-width: 1024px) {
  .tabs-content__item-list {
    border-top: 0.0625rem solid var(--color-border);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -0.0625rem;
  }
}
@media (min-width: 1024px) {
  .tabs-content__item-list-item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 33.333333%;
    padding: 2rem;
    border-right: 0.0625rem solid var(--color-border);
  }
}
@media (max-width: 1023px) {
  .tabs-content__item-list-item {
    padding: 1.5rem;
    border-top: 0.0625rem solid var(--color-border);
  }
}
@media (min-width: 1024px) {
  .tabs-content__item-list-icon {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .tabs-content__item-list-icon {
    margin-bottom: 1rem;
  }
}
.tabs-content__item-list-icon-i {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
}
.tabs-content__item-list-title {
  margin: 0 0 0.5rem;
  line-height: 1.35;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .tabs-content__item-list-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .tabs-content__item-list-title {
    font-size: 1.25rem;
  }
}
.tabs-content__item-list-text {
  color: var(--color-text-2);
}

@media (min-width: 1024px) {
  .stats-box_top-offset .stats-box__inner {
    padding-top: 7rem;
  }
}
@media (max-width: 1023px) {
  .stats-box_top-offset .stats-box__inner {
    padding-top: 5rem;
  }
}
@media (min-width: 1400px) {
  .stats-box_simple .stats-box__inner {
    display: block;
  }
}
@media (min-width: 1400px) {
  .stats-box_simple .stats-box__head {
    padding: 0 0 3rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 1400px) {
  .stats-box_simple .stats-box__label {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .stats-box_simple .stats-box__title {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50%;
    padding-right: 4rem;
  }
}
@media (min-width: 1400px) {
  .stats-box_simple .stats-box__text {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50%;
    padding-left: 4rem;
  }
}
@media (min-width: 1400px) {
  .stats-box_simple .stats-box__list {
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .stats-box_simple .stats-box__item {
    width: 25%;
  }
}
@media (max-width: 743px) {
  .stats-box_simple .stats-box__item {
    width: 100%;
  }
}
.stats-box__inner {
  position: relative;
}
@media (min-width: 1400px) {
  .stats-box__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1024px) {
  .stats-box__inner {
    padding: 3.5rem 0 3.5rem 2rem;
  }
}
@media (max-width: 1023px) {
  .stats-box__inner {
    padding: 3rem 0;
  }
}
.stats-box__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
@media (min-width: 1400px) {
  .stats-box__head {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 4rem;
    width: 50%;
  }
}
@media (max-width: 1023px) {
  .stats-box__head {
    padding: 0 1.5rem;
  }
}
@media (max-width: 1399px) {
  .stats-box__head {
    margin-bottom: 2rem;
    text-align: center;
  }
}
@media (min-width: 744px) {
  .stats-box__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .stats-box__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .stats-box__label:before {
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .stats-box__label:before {
    margin-right: 1.5rem;
  }
}
.stats-box__title {
  margin: 0 0 1rem;
  line-height: 1.13;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .stats-box__title {
    font-size: 2.875rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .stats-box__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .stats-box__title {
    font-size: 1.75rem;
  }
}
.stats-box__text {
  color: var(--color-text-2);
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .stats-box__text {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }
}
.stats-box__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 0.0625rem solid var(--color-border);
  border-left: 0.0625rem solid var(--color-border);
}
@media (min-width: 1400px) {
  .stats-box__list {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50%;
  }
}
@media (min-width: 744px) {
  .stats-box__list_col-3 .stats-box__item {
    width: 33.333333%;
  }
}
@media (max-width: 743px) {
  .stats-box__list_col-3 .stats-box__item:last-child {
    width: 100%;
  }
}
.stats-box__item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-bottom: 0.0625rem solid var(--color-border);
  border-right: 0.0625rem solid var(--color-border);
}
@media (min-width: 744px) {
  .stats-box__item {
    padding: 2rem;
  }
}
@media (max-width: 743px) {
  .stats-box__item {
    padding: 1.5rem;
  }
}
.stats-box__item-value {
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Lora", serif;
  line-height: 1.13;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .stats-box__item-value {
    font-size: 4.375rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .stats-box__item-value {
    font-size: 3.75rem;
  }
}
@media (max-width: 743px) {
  .stats-box__item-value {
    font-size: 2.875rem;
  }
}
.stats-box__item-value-value {
  display: inline-block;
}
.stats-box__item-value-sign-after small {
  font-size: 50%;
}
.stats-box__item-label {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: var(--color-text-2);
}

.subscribe-widget {
  display: block;
}
.subscribe-widget form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .subscribe-widget form {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 1023px) {
  .subscribe-widget form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 1023px) {
  .subscribe-widget .btn {
    width: 100%;
  }
}
.subscribe-widget .hs-form-field {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 0 !important;
}
@media (min-width: 1024px) {
  .subscribe-widget .hs-form-field {
    width: 23.5625rem;
  }
}
@media (max-width: 1023px) {
  .subscribe-widget .hs-form-field {
    width: 100%;
  }
}
.subscribe-widget .hs-form-field > label {
  display: none;
}
.subscribe-widget .submitted-message {
  display: inline-block;
  vertical-align: top;
  padding: 1rem;
  border: 0.0625rem solid var(--color-border);
}
.subscribe-widget .hs-submit {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.subscribe-widget .hs_error_rollup {
  display: none;
}
.subscribe-widget input.hs-button {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-intro {
  position: relative;
}
.page-intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
@media (min-width: 1600px) {
  .page-intro__bg {
    left: 1rem;
    right: 1rem;
  }
}
.page-intro__inner {
  padding: 5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 37.5rem;
  max-height: 53.125rem;
}
@media (min-width: 744px) {
  .page-intro__inner {
    height: calc(100vh - 5.5rem);
  }
}
@media (max-width: 743px) {
  .page-intro__inner {
    height: calc(100vh - 4.1875rem);
    height: calc(100vh - 4.1875rem - var(--vh-offset, 0px));
  }
}
.page-intro__content {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
}
@media (min-width: 1400px) {
  .page-intro__content {
    width: 55%;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .page-intro__content {
    width: 65%;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .page-intro__content {
    width: 80%;
  }
}
@media (max-width: 743px) {
  .page-intro__content {
    width: 100%;
  }
}
.page-intro__label {
  opacity: 0;
}
@media (min-width: 744px) {
  .page-intro__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .page-intro__label {
    margin-bottom: 0.75rem;
  }
}
.page-intro__label .content-label_purple {
  color: #9eb1ff;
  background-color: #1d1e29;
  border-color: #212e5a;
}
.page-intro__label .content-label_green {
  color: #88d98f;
  background-color: #191d1a;
  border-color: #242f25;
}
.page-intro__label .content-label_grey {
  color: #ffffff;
  background-color: #1c1c1d;
  border-color: #2b2c2c;
}
.page-intro__title {
  opacity: 0;
  line-height: 1.13;
  font-weight: 400;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .page-intro__title {
    margin: 0 0 1.5rem;
    font-size: 3.375rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .page-intro__title {
    margin: 0 0 1rem;
    font-size: 3.25rem;
  }
}
@media (max-width: 743px) {
  .page-intro__title {
    margin: 0 0 1rem;
    font-size: 2rem;
  }
}
.page-intro__text {
  opacity: 0;
  line-height: 1.5;
  color: #a8aab1;
}
@media (min-width: 744px) {
  .page-intro__text {
    font-size: 1.125rem;
  }
}
@media (max-width: 743px) {
  .page-intro__text {
    font-size: 1rem;
  }
}
.page-intro__text a {
  color: #ffffff;
}
@media (hover: hover) {
  .page-intro__text a:hover {
    color: #a8aab1;
  }
}
@media (min-width: 1024px) {
  .page-intro__footer {
    margin-top: 2rem;
  }
}
@media (max-width: 1023px) {
  .page-intro__footer {
    margin-top: 1.5rem;
  }
}
.page-intro__subscribe {
  opacity: 0;
  margin-top: 2rem;
}
.page-intro__subscribe-title {
  margin-bottom: 1rem;
  line-height: 1.5;
  color: #ffffff;
}
@media (min-width: 744px) {
  .page-intro__subscribe-title {
    font-size: 1.125rem;
  }
}
@media (max-width: 743px) {
  .page-intro__subscribe-title {
    font-size: 1rem;
  }
}
.page-intro__subscribe-form {
  text-align: left;
}
@media (min-width: 1024px) {
  .page-intro__subscribe-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .page-intro__subscribe-form {
    margin: 0 auto;
    width: 25rem;
  }
}
.page-intro__subscribe .btn-bordered-light {
  color: #ffffff;
  border-color: #a8aab1;
}
@media (hover: hover) {
  .page-intro__subscribe .btn-bordered-light:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: #1c1c1d;
  }
}
.page-intro__subscribe .btn-bordered-light .btn-icon path {
  stroke: #ffffff;
}
.page-intro__subscribe .submitted-message {
  color: #ffffff;
  border: 0 none;
}
.page-intro__subscribe .hs-input {
  color: #ffffff;
  border-color: #2b2c2c;
  background: #1c1c1d;
}
.page-intro__subscribe .hs-input:-webkit-autofill {
  -webkit-text-fill-color: #ffffff;
  -webkit-box-shadow: 0 0 0 62.5rem #1c1c1d inset;
  box-shadow: 0 0 0 62.5rem #1c1c1d inset;
}
.page-intro__subscribe .hs-input::-webkit-input-placeholder {
  color: #555558;
}
.page-intro__subscribe .hs-input::-moz-placeholder {
  color: #555558;
}
.page-intro__subscribe .hs-input:-moz-placeholder {
  color: #555558;
}
.page-intro__subscribe .hs-input:-ms-input-placeholder {
  color: #555558;
}
@media (hover: hover) {
  .page-intro__subscribe .hs-input:hover {
    border-color: #555558;
  }
}
@media (hover: hover) {
  .page-intro__subscribe .hs-input:focus {
    border-color: #a8aab1;
  }
}
.page-intro .btn-bordered-light {
  color: #ffffff;
  border-color: #a8aab1;
}
@media (hover: hover) {
  .page-intro .btn-bordered-light:hover {
    border-color: #ffffff;
    background: #1c1c1d;
  }
}
.page-intro .btn-bordered-light .btn-icon path {
  stroke: #ffffff;
}

.search-field {
  position: relative;
}
@media (min-width: 1024px) {
  .search-field {
    width: 25rem;
  }
}
.search-field__input {
  padding-left: 3rem;
  padding-right: 3rem;
}
.search-field__icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 1.5rem;
  height: 1.5rem;
}
.search-field__icon path {
  stroke: #a8aab1;
}
.search-field__clear {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: none;
  border: 0 none;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.search-field__clear_active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (hover: hover) {
  .search-field__clear:hover path {
    stroke: var(--color-text);
  }
}
.search-field__clear path {
  stroke: #a8aab1;
  -webkit-transition: stroke 0.3s ease-in-out;
  transition: stroke 0.3s ease-in-out;
}

@media (min-width: 1024px) {
  .featured-posts_top-offset .featured-posts__inner {
    padding-top: 7rem;
  }
}
.featured-posts__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .featured-posts__inner {
    padding: 3.5rem 2rem;
  }
}
@media (max-width: 1023px) {
  .featured-posts__inner {
    padding: 3rem 1.5rem;
  }
}
.featured-posts__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
.featured-posts__title {
  line-height: 1.13;
  font-weight: 400;
  color: var(--color-text);
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  .featured-posts__title {
    margin: 0 0 1.5rem;
    font-size: 2.875rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .featured-posts__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .featured-posts__title {
    font-size: 2rem;
  }
}
@media (max-width: 1023px) {
  .featured-posts__title {
    margin: 0 0 2rem;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .featured-posts__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (hover: hover) {
  .featured-posts__item:hover .featured-posts__item-image-i {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.featured-posts__item-image {
  display: block;
  text-decoration: none;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .featured-posts__item-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
@media (min-width: 1400px) {
  .featured-posts__item-image {
    width: 52%;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .featured-posts__item-image {
    width: 50%;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .featured-posts__item-image {
    margin-bottom: 2rem;
  }
}
@media (max-width: 743px) {
  .featured-posts__item-image {
    margin: 0 -1.5rem 1.5rem;
  }
}
.featured-posts__item-image-i {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 743px) {
  .featured-posts__item-image-i {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (min-width: 1024px) {
  .featured-posts__item-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -ms-flex-item-align: center;
    align-self: center;
    padding: 0 3rem;
  }
}
.featured-posts__item-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .featured-posts__item-tags {
    margin-bottom: 1rem;
  }
}
@media (max-width: 1023px) {
  .featured-posts__item-tags {
    margin-bottom: 0.5rem;
  }
}
.featured-posts__item-title {
  font-family: "DM Sans", sans-serif;
  line-height: 1.35;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .featured-posts__item-title {
    margin: 0 0 1rem;
    font-size: 2rem;
  }
}
@media (max-width: 1023px) {
  .featured-posts__item-title {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
  }
}
.featured-posts__item-title-link {
  display: block;
  text-decoration: none;
  color: var(--color-text);
}
@media (hover: hover) {
  .featured-posts__item-title-link:hover {
    color: var(--color-text-2);
  }
}
.featured-posts__item-text {
  color: var(--color-text-2);
}
.featured-posts__item-panel {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.875rem;
}
.featured-posts__item-panel-separator {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 0.5rem;
  width: 0.0625rem;
  height: 0.9375rem;
  background-color: var(--color-text-3);
}

.tag-link {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: top;
  padding: 0.1875rem 0.6875rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  border-radius: 1rem;
  border: 0.0625rem solid var(--tag-border-color);
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.tag-link.green {
  color: var(--tag-color-green);
}
.tag-link.purple {
  color: var(--color-purple);
}
@media (hover: hover) {
  .tag-link:hover {
    border-color: var(--tag-border-hover-color);
    background-color: var(--tag-background-hover-color);
  }
}

.article-wrap__inner {
  position: relative;
}
@media (min-width: 744px) {
  .article-wrap__inner {
    padding: 5rem 0 3.5rem;
  }
}
@media (max-width: 743px) {
  .article-wrap__inner {
    padding: 3rem 0;
  }
}
.article-wrap__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
.article-wrap__head {
  position: relative;
}
@media (min-width: 1024px) {
  .article-wrap__head {
    margin-bottom: 1.5rem;
    text-align: center;
  }
}
@media (min-width: 1400px) {
  .article-wrap__head {
    padding: 0 20%;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .article-wrap__head {
    padding: 0 22%;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .article-wrap__head {
    margin-bottom: 3rem;
    padding: 0 1.5rem;
  }
}
@media (max-width: 743px) {
  .article-wrap__head {
    margin-bottom: 2rem;
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .article-wrap__back {
    position: absolute;
    left: 1.5625rem;
    top: -0.125rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .article-wrap__back {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 743px) {
  .article-wrap__back {
    margin-bottom: 1rem;
  }
}
.article-wrap__back-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-text);
}
@media (hover: hover) {
  .article-wrap__back-link:hover {
    color: var(--color-text-2);
  }
  .article-wrap__back-link:hover .article-wrap__back-arrow {
    -webkit-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  .article-wrap__back-link:hover .article-wrap__back-arrow path {
    stroke: var(--color-text-2);
  }
}
.article-wrap__back-arrow {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.article-wrap__back-arrow path {
  stroke: var(--color-text);
  -webkit-transition: 0.3s stroke ease-in-out;
  transition: 0.3s stroke ease-in-out;
}
.article-wrap__title {
  line-height: 1.13;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .article-wrap__title {
    margin: 0 0 2rem;
  }
}
@media (min-width: 1400px) {
  .article-wrap__title {
    font-size: 2.875rem;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .article-wrap__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .article-wrap__title {
    margin: 0 0 1rem;
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .article-wrap__title {
    margin: 0 0 1rem;
    font-size: 2rem;
  }
}
.article-wrap__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .article-wrap__meta {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.article-wrap__meta-separator {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 0.5rem;
  width: 0.0625rem;
  height: 0.9375rem;
  background-color: var(--color-text-3);
}
@media (min-width: 744px) {
  .article-wrap__cover {
    margin-bottom: 3.5rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .article-wrap__cover {
    height: 28.125rem;
  }
}
@media (max-width: 743px) {
  .article-wrap__cover {
    margin-bottom: 3rem;
  }
}
.article-wrap__cover-image {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 744px) and (max-width: 1023px) {
  .article-wrap__cover-image {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (max-width: 743px) {
  .article-wrap__cover-image {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.article-wrap__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-width: 0.0625rem 0.0625rem 0.0625rem 0;
  border-style: solid;
  border-color: var(--color-border);
}
@media (min-width: 1024px) {
  .article-wrap__aside {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    width: 35%;
    padding: 2rem;
  }
}
@media (max-width: 1023px) {
  .article-wrap__aside {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-bg);
    border-top: 0.0625rem solid var(--color-border);
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .article-wrap__aside .share-widget {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 1023px) and (max-width: 374px) {
  .article-wrap__aside .share-widget .a2a_kit > a {
    width: 3rem;
    height: 3rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .article-wrap__aside {
    padding: 0.9375rem 1.5rem 1rem;
  }
}
@media (max-width: 743px) {
  .article-wrap__aside {
    padding: 0.9375rem 1rem 1rem;
  }
}
@media (max-width: 1023px) {
  .article-wrap__aside_hide {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    pointer-events: none;
  }
}
.article-wrap__content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  border-left: 0.0625rem solid var(--color-border);
}
@media (min-width: 1024px) {
  .article-wrap__content {
    padding: 2rem;
  }
}
@media (max-width: 1023px) {
  .article-wrap__content {
    padding: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .article-wrap__share {
    position: sticky;
    top: 7.5rem;
  }
}

@media (min-width: 1024px) {
  .share-widget__label {
    margin-bottom: 1rem;
  }
}
@media (min-width: 744px) {
  .share-widget__label {
    font-size: 1.125rem;
    line-height: 1.35;
    font-weight: 600;
  }
}
.share-widget__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.share-widget .a2a_button_email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 0.0625rem solid var(--color-border);
  background: var(--pagination-link-background-color);
  -webkit-transition: 0.2s background ease-in-out, 0.2s border-color ease-in-out;
  transition: 0.2s background ease-in-out, 0.2s border-color ease-in-out;
}
@media (hover: hover) {
  .share-widget .a2a_button_email:hover {
    background: var(--pagination-link-background-hover-color);
  }
}
.share-widget .a2a_button_email path {
  fill: var(--share-widget-icon-color);
}
.share-widget .a2a_kit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.share-widget .a2a_kit > a {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 -0.0625rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 0.0625rem solid var(--color-border);
  background: var(--pagination-link-background-color);
  -webkit-transition: 0.2s background ease-in-out, 0.2s border-color ease-in-out;
  transition: 0.2s background ease-in-out, 0.2s border-color ease-in-out;
}
@media (hover: hover) {
  .share-widget .a2a_kit > a:hover {
    background: var(--pagination-link-background-hover-color);
  }
  .share-widget .a2a_kit > a:hover .a2a_svg {
    opacity: 1 !important;
  }
}
.share-widget .a2a_kit .a2a_svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  opacity: 1;
  background-color: transparent !important;
}
.share-widget .a2a_kit .a2a_svg path {
  fill: var(--share-widget-icon-color);
}

.blog-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 0.5rem;
}
.blog-pagination__link {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9375rem 1.25rem;
  min-width: 3.375rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--pagination-link-color);
  background: var(--pagination-link-background-color);
  border: 0.0625rem solid var(--pagination-link-border-color);
  text-decoration: none;
  -webkit-transition: 0.3s background ease-in-out, 0.3s border-color ease-in-out, 0.3s color ease-in-out;
  transition: 0.3s background ease-in-out, 0.3s border-color ease-in-out, 0.3s color ease-in-out;
}
@media (hover: hover) {
  .blog-pagination__link:hover {
    color: var(--pagination-link-hover-color);
    border-color: var(--pagination-link-border-hover-color);
    background: var(--pagination-link-background-hover-color);
  }
}
.blog-pagination__link--active {
  color: var(--pagination-link-hover-color) !important;
  border-color: var(--pagination-link-border-active-color) !important;
  background: var(--pagination-link-background-color) !important;
}
.blog-pagination__link path {
  stroke: var(--pagination-link-color);
}
.blog-pagination__prev-link {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 1.25rem 0 0;
  font-size: 1rem;
}
.blog-pagination__next-link {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 0 0 1.25rem;
  font-size: 1rem;
}
@media (max-width: 743px) {
  .blog-pagination__prev-link, .blog-pagination__next-link {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .blog-pagination__prev-link span, .blog-pagination__next-link span {
    display: none;
  }
}
.blog-pagination__prev-link--disabled, .blog-pagination__next-link--disabled {
  color: var(--pagination-link-disabled-color);
  pointer-events: none;
}
.blog-pagination__prev-link--disabled path, .blog-pagination__next-link--disabled path {
  stroke: var(--pagination-link-disabled-color);
}
.blog-pagination__separator-link {
  pointer-events: none;
}

.search-results__inner {
  position: relative;
}
@media (min-width: 744px) {
  .search-results__inner {
    padding: 5rem 0;
  }
}
@media (max-width: 743px) {
  .search-results__inner {
    padding: 3rem 0;
  }
}
.search-results__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
@media (min-width: 1024px) {
  .search-results__head {
    margin-bottom: 7rem;
    padding: 0 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .search-results__head {
    margin-bottom: 5rem;
    padding: 0 1.5rem;
  }
}
@media (max-width: 743px) {
  .search-results__head {
    margin-bottom: 3rem;
    padding: 0 1.5rem;
  }
}
.search-results__title {
  line-height: 1.13;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 1024px) {
  .search-results__title {
    margin: 0 0 3rem;
    font-size: 3.375rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .search-results__title {
    margin: 0 0 2rem;
    font-size: 3.25rem;
  }
}
@media (max-width: 743px) {
  .search-results__title {
    margin: 0 0 1.5rem;
    font-size: 2rem;
  }
}
.search-results__text {
  color: var(--color-text-2);
  text-align: center;
}
@media (min-width: 1024px) {
  .search-results__text {
    margin-top: 3rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .search-results__text {
    margin-top: 2rem;
  }
}
@media (max-width: 743px) {
  .search-results__text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .search-results__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .search-results__field {
    margin: 0 auto;
    width: 25rem;
  }
}
.search-results__list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 56.25rem;
  border: 0.0625rem solid var(--color-border);
}
.search-results__list-item {
  border-bottom: 0.0625rem solid var(--color-border);
}
.search-results__list-item:last-child {
  border-bottom: 0 none;
}
.search-results__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  color: var(--color-text);
}
@media (min-width: 744px) {
  .search-results__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .search-results__item {
    padding: 2rem;
  }
}
@media (max-width: 1023px) {
  .search-results__item {
    padding: 1.5rem;
  }
}
@media (max-width: 743px) {
  .search-results__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }
}
.search-results__item-content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.search-results__item-aside {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.search-results__item-title {
  margin-bottom: 0.5rem;
  line-height: 1.35;
  font-weight: bold;
}
@media (min-width: 744px) {
  .search-results__item-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 743px) {
  .search-results__item-title {
    font-size: 1.25rem;
  }
}
.search-results__item-text {
  color: var(--color-text-3);
}
.search-results__pagination {
  margin-top: 3.5rem;
}
.search-results__highlight {
  background-color: var(--color-highlight-text);
  padding: 0.0625rem 0.125rem;
  color: var(--color-text);
}

.contact-box.is-hbspt-form-submitted .contact-box__form, .contact-box.is-hbspt-form-submitted .contact-box__head {
  display: none;
}
.contact-box.is-hbspt-form-submitted .contact-box__success {
  display: block;
}
.contact-box__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .contact-box__inner {
    padding: 5rem 2rem 3.5rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .contact-box__inner {
    padding: 5rem 2rem 3rem;
  }
}
@media (max-width: 743px) {
  .contact-box__inner {
    padding: 3rem 1.5rem;
  }
}
.contact-box__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
.contact-box__head {
  text-align: center;
}
@media (min-width: 1024px) {
  .contact-box__head {
    margin-bottom: 5rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .contact-box__head {
    margin-bottom: 3rem;
  }
}
@media (max-width: 743px) {
  .contact-box__head {
    margin-bottom: 2rem;
  }
}
.contact-box__title {
  margin: 0 0 1rem;
  line-height: 1.13;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 1024px) {
  .contact-box__title {
    font-size: 3.375rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .contact-box__title {
    font-size: 3.25rem;
  }
}
@media (max-width: 743px) {
  .contact-box__title {
    font-size: 2rem;
  }
}
.contact-box__text {
  color: var(--color-text-2);
}
@media (min-width: 744px) {
  .contact-box__text {
    margin: 0 auto;
    font-size: 1.125rem;
  }
}
@media (min-width: 1400px) {
  .contact-box__text {
    width: 50%;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .contact-box__text {
    width: 60%;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .contact-box__text {
    width: 80%;
  }
}
@media (max-width: 1023px) {
  .contact-box__text br {
    display: none;
  }
}
@media (max-width: 743px) {
  .contact-box__text {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .contact-box__body {
    margin: 0 auto;
    width: 100%;
    max-width: 43.75rem;
  }
}
.contact-box__form input.hs-button {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact-box__form .btn-icon {
  display: none;
}
.contact-box__form .btn {
  min-width: 9.375rem;
}
@media (max-width: 1023px) {
  .contact-box__form .btn {
    width: 100%;
  }
}
.contact-box__form .hs-fieldtype-textarea {
  min-height: 8.75rem;
}
.contact-box__success {
  display: none;
  text-align: center;
}
.contact-box__success_active {
  display: block;
}
.contact-box__success-icon {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.contact-box__success-icon svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .contact-box__success-icon svg {
    width: 4.375rem;
    height: 4.375rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .contact-box__success-icon svg {
    width: 3.25rem;
    height: 3.25rem;
  }
}
@media (max-width: 743px) {
  .contact-box__success-icon svg {
    width: 2.6875rem;
    height: 2.6875rem;
  }
}
.contact-box__success-icon path {
  fill: var(--color-brand);
}
.contact-box__success-title {
  margin: 0 0 1rem;
  font-family: "Lora", serif;
  line-height: 1.13;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .contact-box__success-title {
    font-size: 3.375rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .contact-box__success-title {
    font-size: 3.25rem;
  }
}
@media (max-width: 743px) {
  .contact-box__success-title {
    font-size: 2rem;
  }
}
.contact-box__success-text {
  color: var(--color-text-2);
}
@media (min-width: 1024px) {
  .contact-box__success-text {
    font-size: 1.125rem;
  }
}
@media (max-width: 1023px) {
  .contact-box__success-text {
    font-size: 1rem;
  }
}
@media (min-width: 744px) {
  .contact-box__success-footer {
    margin-top: 3rem;
  }
}
@media (max-width: 743px) {
  .contact-box__success-footer {
    margin-top: 2rem;
  }
}

.jobs-box__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .jobs-box__inner {
    padding: 3.5rem 0;
  }
}
@media (max-width: 1023px) {
  .jobs-box__inner {
    padding: 3rem 0;
  }
}
.jobs-box__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
.jobs-box__head {
  text-align: center;
}
@media (min-width: 1024px) {
  .jobs-box__head {
    margin-bottom: 3rem;
    padding: 0 2rem;
  }
}
@media (max-width: 1023px) {
  .jobs-box__head {
    margin-bottom: 2rem;
    padding: 0 1.5rem;
  }
}
@media (min-width: 744px) {
  .jobs-box__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .jobs-box__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .jobs-box__label:before {
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .jobs-box__label:before {
    margin-right: 1.5rem;
  }
}
.jobs-box__title {
  margin: 0 0 1rem;
  line-height: 1.13;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .jobs-box__title {
    font-size: 2.875rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .jobs-box__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .jobs-box__title {
    font-size: 1.75rem;
  }
}
.jobs-box__text {
  color: var(--color-text-2);
}
.jobs-box__text a {
  color: var(--color-text);
}
@media (hover: hover) {
  .jobs-box__text a:hover {
    color: var(--color-text-2);
  }
}
@media (min-width: 1024px) {
  .jobs-box__body {
    margin: 0 auto;
    width: 100%;
    max-width: 48rem;
  }
}
.jobs-box__filters {
  margin-bottom: -0.0625rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 744px) {
  .jobs-box__filters {
    width: 16.0625rem;
  }
}
.jobs-box__filter {
  opacity: 0;
}
.jobs-box__item {
  margin-bottom: -0.0625rem;
}
.jobs-box__item:last-child {
  margin-bottom: 0;
}

.job-card {
  border: 0.0625rem solid var(--color-border);
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .job-card {
    padding: 2rem;
  }
}
@media (max-width: 1023px) {
  .job-card {
    padding: 1.5rem;
  }
}
.job-card.hidden {
  display: none;
}
@media (hover: hover) {
  .job-card:hover {
    background-color: var(--color-bg-2);
  }
}
.job-card__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.job-card__label, .job-card__location {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0.1875rem 0.75rem;
  border-radius: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  border-width: 0.0625rem;
  border-style: solid;
  background-color: var(--color-bg);
}
.job-card__label {
  color: var(--color-brand);
  border-color: var(--tag-border-color);
}
.job-card__location {
  border-color: var(--tag-border-color);
  color: var(--color-text);
}
@media (min-width: 744px) {
  .job-card__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
.job-card__title {
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
}
@media (min-width: 744px) {
  .job-card__title {
    margin: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }
}
@media (min-width: 1024px) {
  .job-card__title {
    font-size: 1.5rem;
    line-height: 1.35;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .job-card__title {
    font-size: 1.25rem;
    line-height: 1.35;
  }
}
@media (max-width: 743px) {
  .job-card__title {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    line-height: 1.3;
  }
}
.job-card__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.25rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (min-width: 744px) {
  .job-card__more {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
@media (min-width: 1024px) {
  .job-card__more {
    margin: 0 0 0.125rem 1.5rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .job-card__more {
    margin: 0 0 0 1rem;
  }
}
@media (hover: hover) {
  .job-card__more:hover {
    color: var(--color-text-2);
  }
  .job-card__more:hover .job-card__more-icon {
    -webkit-transform: translate(0.1875rem, -0.1875rem);
    -ms-transform: translate(0.1875rem, -0.1875rem);
    transform: translate(0.1875rem, -0.1875rem);
  }
  .job-card__more:hover .job-card__more-icon path {
    stroke: var(--color-text-2);
  }
}
.job-card__more-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.job-card__more-icon path {
  stroke: var(--color-text);
  -webkit-transition: stroke 0.2s ease-in-out;
  transition: stroke 0.2s ease-in-out;
}

@media (min-width: 1024px) {
  .sticky-sidebar-box_top-offset .sticky-sidebar-box__inner {
    padding-top: 7rem;
  }
}
@media (max-width: 1023px) {
  .sticky-sidebar-box_top-offset .sticky-sidebar-box__inner {
    padding-top: 5rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .sticky-sidebar-box_tablet-simple .sticky-sidebar-box__item {
    width: 100% !important;
    border-right: 0 none !important;
    margin-right: 0 !important;
  }
}
.sticky-sidebar-box_simple .sticky-sidebar-box__item-title {
  font-family: "Lora", serif;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .sticky-sidebar-box_simple .sticky-sidebar-box__item-title {
    margin: 0 0 1.5rem;
    font-size: 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .sticky-sidebar-box_simple .sticky-sidebar-box__item-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .sticky-sidebar-box_simple .sticky-sidebar-box__item-title {
    margin: 0 0 1rem;
  }
}
.sticky-sidebar-box__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .sticky-sidebar-box__inner {
    padding: 3.5rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 1023px) {
  .sticky-sidebar-box__inner {
    padding: 3rem 0;
  }
}
.sticky-sidebar-box__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
@media (min-width: 1024px) {
  .sticky-sidebar-box__head {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50%;
    position: sticky;
    top: 7.5rem;
    padding: 0 2rem;
  }
}
@media (max-width: 1023px) {
  .sticky-sidebar-box__head {
    margin-bottom: 2rem;
    padding: 0 1.5rem;
  }
}
@media (min-width: 744px) {
  .sticky-sidebar-box__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .sticky-sidebar-box__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .sticky-sidebar-box__label:before {
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .sticky-sidebar-box__label:before {
    margin-right: 1.5rem;
  }
}
.sticky-sidebar-box__title {
  margin: 0;
  line-height: 1.13;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .sticky-sidebar-box__title {
    font-size: 2.875rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .sticky-sidebar-box__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .sticky-sidebar-box__title {
    font-size: 1.75rem;
  }
}
.sticky-sidebar-box__list {
  border: 0.0625rem solid var(--color-border);
}
@media (min-width: 1024px) {
  .sticky-sidebar-box__list {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .sticky-sidebar-box__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.sticky-sidebar-box__item {
  border-bottom: 0.0625rem solid var(--color-border);
}
@media (min-width: 1024px) {
  .sticky-sidebar-box__item {
    padding: 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .sticky-sidebar-box__item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50%;
    border-right: 0.0625rem solid var(--color-border);
    margin-bottom: -0.0625rem;
  }
  .sticky-sidebar-box__item:nth-child(even) {
    margin-right: -0.0625rem;
    width: calc(50% + 0.0625rem);
  }
}
@media (max-width: 1023px) {
  .sticky-sidebar-box__item {
    padding: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .sticky-sidebar-box__item:last-child {
    border-bottom: 0 none;
  }
}
@media (max-width: 743px) {
  .sticky-sidebar-box__item:last-child {
    border-bottom: 0 none;
  }
}
.sticky-sidebar-box__item-num {
  margin-bottom: 1rem;
  font-family: "Lora", serif;
  color: var(--sticky-sidebar-num-color);
}
@media (min-width: 1024px) {
  .sticky-sidebar-box__item-num {
    font-size: 2rem;
    line-height: 1.25;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .sticky-sidebar-box__item-num {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media (max-width: 743px) {
  .sticky-sidebar-box__item-num {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}
.sticky-sidebar-box__item-title {
  margin: 0 0 0.5rem;
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .sticky-sidebar-box__item-title {
    font-size: 1.5rem;
    line-height: 1.35;
  }
}
@media (max-width: 1023px) {
  .sticky-sidebar-box__item-title {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}
.sticky-sidebar-box__item-subtitle {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
}
.sticky-sidebar-box__item-text {
  color: var(--color-text-2);
}
.sticky-sidebar-box__item-text ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 1024px) {
  .sticky-sidebar-box__item-text ul {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
  }
}
.sticky-sidebar-box__item-text ul li {
  position: relative;
  margin-bottom: 0.25rem;
  padding-left: 1.125rem;
}
@media (min-width: 1024px) {
  .sticky-sidebar-box__item-text ul li {
    display: inline-block;
    vertical-align: top;
    width: 100%;
  }
}
.sticky-sidebar-box__item-text ul li:before {
  content: "";
  position: absolute;
  top: 0.5625rem;
  left: 0.1875rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--color-brand);
}
@media (min-width: 744px) {
  .sticky-sidebar-box__item-video, .sticky-sidebar-box__item-image, .sticky-sidebar-box__item-media {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 743px) {
  .sticky-sidebar-box__item-video, .sticky-sidebar-box__item-image, .sticky-sidebar-box__item-media {
    margin-bottom: 1rem;
  }
}
.sticky-sidebar-box__item-image-i {
  display: block;
  width: 100%;
  height: auto;
}
.sticky-sidebar-box__item-video .inline-video {
  aspect-ratio: auto;
}
.sticky-sidebar-box__item-video .inline-video__el {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 743px) {
  .values-box_mobile-simple .values-box__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 744px) {
  .values-box_mobile-simple .values-box__list-item {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 743px) {
  .values-box_mobile-simple .values-box__list-item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50%;
  }
}
.values-box__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .values-box__inner {
    padding: 3.5rem 0;
  }
}
@media (max-width: 1023px) {
  .values-box__inner {
    padding: 3rem 0;
  }
}
.values-box__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
.values-box__head {
  text-align: center;
}
@media (min-width: 1024px) {
  .values-box__head {
    margin-bottom: 3rem;
    padding: 0 2rem;
  }
}
@media (max-width: 1023px) {
  .values-box__head {
    margin-bottom: 2rem;
    padding: 0 1.5rem;
  }
}
@media (min-width: 744px) {
  .values-box__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .values-box__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .values-box__label:before {
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .values-box__label:before {
    margin-right: 1.5rem;
  }
}
.values-box__title {
  margin: 0 0 1rem;
  font-weight: 400;
  color: var(--color-text);
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  .values-box__title {
    font-size: 2.875rem;
    line-height: 1.13;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .values-box__title {
    font-size: 2.5rem;
    line-height: 1.13;
  }
}
@media (max-width: 743px) {
  .values-box__title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
}
.values-box__text {
  color: var(--color-text-2);
}
@media (min-width: 1024px) {
  .values-box__text {
    margin: 0 auto;
  }
}
@media (min-width: 1400px) {
  .values-box__text {
    width: 60%;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .values-box__text {
    width: 75%;
  }
}
@media (min-width: 744px) {
  .values-box__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 744px) and (max-width: 1399px) {
  .values-box__list {
    margin-bottom: 0.0625rem;
  }
}
@media (min-width: 1024px) {
  .values-box__list_col-3 .values-box__list-item {
    width: 33.333333%;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .values-box__list_col-3 .values-box__list-item {
    width: 100%;
  }
}
@media (min-width: 744px) {
  .values-box__list-item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-right: 0.0625rem solid var(--color-border);
    border-top: 0.0625rem solid var(--color-border);
    border-bottom: 0.0625rem solid var(--color-border);
  }
}
@media (min-width: 1024px) {
  .values-box__list-item {
    width: 25%;
    padding: 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1399px) {
  .values-box__list-item {
    width: 50%;
    margin-bottom: -0.0625rem;
  }
}
@media (max-width: 1023px) {
  .values-box__list-item {
    padding: 1.5rem;
  }
}
@media (max-width: 743px) {
  .values-box__list-item {
    border-width: 0.0625rem 0.0625rem 0.0625rem 0;
    border-style: solid;
    border-color: var(--color-border);
    margin-bottom: -0.0625rem;
  }
  .values-box__list-item:last-child {
    margin-bottom: 0;
  }
}
.values-box__list-logo {
  padding-bottom: 1.5rem;
  height: 4.125rem;
  border-bottom: 0.0625rem solid var(--color-border);
}
@media (min-width: 1024px) {
  .values-box__list-logo {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .values-box__list-logo {
    margin-bottom: 1rem;
  }
}
.values-box__list-logo-i {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 2.625rem;
  width: auto;
}
.values-box__list-title {
  margin: 0 0 0.5rem;
  font-family: "DM Sans", sans-serif;
}
@media (min-width: 1024px) {
  .values-box__list-title {
    font-size: 1.5rem;
    line-height: 1.35;
    font-weight: bold;
  }
}
@media (max-width: 1023px) {
  .values-box__list-title {
    font-weight: 600;
  }
}
@media (max-width: 1023px) {
  .values-box__list-title {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}
.values-box__list-title:last-child {
  margin-bottom: 0;
}
.values-box__list-text {
  color: var(--color-text-2);
}
.values-box__list-num {
  margin-bottom: 1.5rem;
  font-family: "Lora", serif;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 400;
  color: var(--color-brand);
}
.values-box__image {
  padding-left: 0.0625rem;
}
.values-box__image-i {
  width: 100%;
  height: auto;
}
@media (min-width: 744px) {
  .values-box__image-i {
    display: block;
  }
}
@media (max-width: 743px) {
  .values-box__image-i {
    display: none;
  }
}
.values-box__image-i-mobile {
  width: 100%;
  height: auto;
}
@media (min-width: 744px) {
  .values-box__image-i-mobile {
    display: none;
  }
}
@media (max-width: 743px) {
  .values-box__image-i-mobile {
    display: block;
  }
}

@media (min-width: 744px) and (max-width: 1023px) {
  .tiles-list_tablet-simple .tiles-list__list-item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .tiles-list_col-4 .tiles-list__list-item {
    width: 25%;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .tiles-list_col-4 .tiles-list__list-item {
    width: 50%;
  }
}
.tiles-list__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .tiles-list__inner {
    padding: 3.5rem 0;
  }
}
@media (max-width: 1023px) {
  .tiles-list__inner {
    padding: 3rem 0;
  }
}
.tiles-list__inner:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
.tiles-list__head {
  text-align: center;
}
@media (min-width: 1024px) {
  .tiles-list__head {
    margin-bottom: 3rem;
    padding: 0 2rem;
  }
}
@media (max-width: 1023px) {
  .tiles-list__head {
    margin-bottom: 2rem;
    padding: 0 1.5rem;
  }
}
@media (min-width: 744px) {
  .tiles-list__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .tiles-list__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .tiles-list__label:before {
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .tiles-list__label:before {
    margin-right: 1.5rem;
  }
}
.tiles-list__title {
  margin: 0;
  line-height: 1.13;
  font-weight: 400;
  color: var(--color-text);
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  .tiles-list__title {
    font-size: 2.875rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .tiles-list__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .tiles-list__title {
    font-size: 1.75rem;
  }
  .tiles-list__title br {
    display: none;
  }
}
.tiles-list__text {
  color: var(--color-text-2);
  margin-top: 1rem;
}
.tiles-list__list {
  margin-bottom: 0.0625rem;
}
@media (min-width: 744px) {
  .tiles-list__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.tiles-list__list-item {
  border-right: 0.0625rem solid var(--color-border);
  border-top: 0.0625rem solid var(--color-border);
  border-bottom: 0.0625rem solid var(--color-border);
  margin-bottom: -0.0625rem;
}
@media (min-width: 744px) {
  .tiles-list__list-item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
@media (min-width: 1024px) {
  .tiles-list__list-item {
    width: 33.333333%;
    padding: 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .tiles-list__list-item {
    width: 50%;
  }
}
@media (max-width: 1023px) {
  .tiles-list__list-item {
    padding: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .tiles-list__list-icon {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .tiles-list__list-icon {
    margin-bottom: 1rem;
  }
}
.tiles-list__list-icon-i {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
}
.tiles-list__list-title {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .tiles-list__list-title {
    font-size: 1.5rem;
    line-height: 1.35;
  }
}
@media (max-width: 1023px) {
  .tiles-list__list-title {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}
.tiles-list__list-text {
  margin-top: 0.5rem;
  color: var(--color-text-2);
}

.terms-wrap__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .terms-wrap__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 7rem 0 3.5rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .terms-wrap__inner {
    padding: 5rem 1.5rem 3.5rem;
  }
}
@media (max-width: 743px) {
  .terms-wrap__inner {
    padding: 3rem 1.5rem;
  }
}
.terms-wrap__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
@media (min-width: 1024px) {
  .terms-wrap__aside {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 40%;
  }
}
@media (min-width: 1400px) {
  .terms-wrap__aside {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .terms-wrap__aside {
    padding-left: 2rem;
  }
}
@media (min-width: 1024px) {
  .terms-wrap__content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    padding-left: 2rem;
  }
}
.terms-wrap__content h1, .terms-wrap__content h2, .terms-wrap__content h3, .terms-wrap__content h4, .terms-wrap__content h5, .terms-wrap__content h6 {
  font-family: "Lora", serif;
  font-weight: 400;
}
.terms-wrap__content ul li {
  padding-left: 1.5rem;
}
.terms-wrap__content ul li:before {
  top: 0.625rem;
  left: 0.625rem;
  width: 0.25rem;
  height: 0.25rem;
  background-color: var(--color-text-2);
}
.terms-wrap__title {
  margin: 0 0 2rem;
  line-height: 1.13;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .terms-wrap__title {
    position: sticky;
    top: 7.5rem;
    font-size: 3.375rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .terms-wrap__title {
    font-size: 2.875rem;
  }
}
@media (max-width: 743px) {
  .terms-wrap__title {
    font-size: 2rem;
  }
}

.logos-tiles__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .logos-tiles__inner {
    padding: 3.5rem 0;
  }
}
@media (max-width: 1023px) {
  .logos-tiles__inner {
    padding: 3rem 0;
  }
}
.logos-tiles__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
.logos-tiles__head {
  text-align: center;
}
@media (min-width: 1024px) {
  .logos-tiles__head {
    margin-bottom: 3rem;
    padding: 0 2rem;
  }
}
@media (max-width: 1023px) {
  .logos-tiles__head {
    margin-bottom: 2rem;
    padding: 0 1.5rem;
  }
}
@media (min-width: 744px) {
  .logos-tiles__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .logos-tiles__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .logos-tiles__label:before {
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .logos-tiles__label:before {
    margin-right: 1.5rem;
  }
}
.logos-tiles__title {
  margin: 0;
  line-height: 1.13;
  font-weight: 400;
  color: var(--color-text);
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  .logos-tiles__title {
    font-size: 2.875rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .logos-tiles__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .logos-tiles__title {
    font-size: 1.75rem;
  }
}
.logos-tiles__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.logos-tiles__list-item {
  margin-bottom: -0.0625rem;
}
@media (min-width: 1024px) {
  .logos-tiles__list-item {
    width: 20%;
  }
  .logos-tiles__list-item:nth-child(5n) .logos-tiles__image {
    margin-right: 0;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .logos-tiles__list-item {
    width: 33.333333%;
  }
  .logos-tiles__list-item:nth-child(3n) .logos-tiles__image {
    margin-right: 0;
  }
}
@media (max-width: 743px) {
  .logos-tiles__list-item {
    width: 50%;
  }
  .logos-tiles__list-item:nth-child(2n) .logos-tiles__image {
    margin-right: 0;
  }
}
.logos-tiles__image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 0.0625rem solid var(--color-border);
  padding: 0 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: -0.0625rem;
}
@media (min-width: 1024px) {
  .logos-tiles__image {
    height: 8rem;
  }
}
@media (max-width: 1023px) {
  .logos-tiles__image {
    height: 7.25rem;
  }
}
.logos-tiles__image-i {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.team-box__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .team-box__inner {
    padding: 3.5rem 0;
  }
}
@media (max-width: 1023px) {
  .team-box__inner {
    padding: 3rem 0;
  }
}
.team-box__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
.team-box__head {
  text-align: center;
}
@media (min-width: 1024px) {
  .team-box__head {
    margin-bottom: 3rem;
    padding: 0 2rem;
  }
}
@media (max-width: 1023px) {
  .team-box__head {
    margin-bottom: 2rem;
    padding: 0 1.5rem;
  }
}
@media (min-width: 744px) {
  .team-box__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .team-box__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .team-box__label:before {
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .team-box__label:before {
    margin-right: 1.5rem;
  }
}
.team-box__title {
  margin: 0 0 1rem;
  line-height: 1.13;
  font-weight: 400;
  color: var(--color-text);
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  .team-box__title {
    font-size: 2.875rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .team-box__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .team-box__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 744px) {
  .team-box__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 744px) {
  .team-box__list-item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1024px) {
  .team-box__list-item {
    width: 33.333333%;
  }
  .team-box__list-item:nth-child(3n) .team-box__list-item-inner {
    margin-right: 0;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .team-box__list-item {
    width: 50%;
  }
  .team-box__list-item:nth-child(2n) .team-box__list-item-inner {
    margin-right: 0;
  }
}
@media (max-width: 743px) {
  .team-box__list-item {
    margin-bottom: -0.0625rem;
  }
  .team-box__list-item:last-child {
    margin-bottom: 0;
  }
}
.team-box__list-item-inner {
  border: 0.0625rem solid var(--color-border);
}
@media (min-width: 744px) {
  .team-box__list-item-inner {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(100% + 0.0625rem);
    margin: 0 -0.0625rem -0.0625rem 0;
  }
}
@media (min-width: 1024px) {
  .team-box__list-item-inner {
    padding: 2rem;
  }
}
@media (max-width: 1023px) {
  .team-box__list-item-inner {
    padding: 1.5rem;
  }
}

.user-card__image {
  position: relative;
  padding-bottom: 90%;
}
@media (min-width: 1024px) {
  .user-card__image {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .user-card__image {
    margin-bottom: 1rem;
  }
}
.user-card__image-i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.user-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.user-card__title {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .user-card__title {
    font-size: 1.5rem;
    line-height: 1.35;
  }
}
@media (max-width: 1023px) {
  .user-card__title {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}
.user-card__social {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .user-card__social {
    margin: 0.25rem 0 -0.25rem;
  }
}
@media (max-width: 1023px) {
  .user-card__social {
    margin: 0.125rem 0 -0.125rem;
  }
}
.user-card__social-link {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media (hover: hover) {
  .user-card__social-link:hover {
    opacity: 0.7;
  }
}
.user-card__social-icon path {
  fill: var(--color-text);
  -webkit-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
}
.user-card__label {
  margin-top: 0.5rem;
  color: var(--color-text-2);
}

@media (min-width: 1024px) {
  .info-steps-section_top-offset .info-steps-section__inner {
    padding-top: 7rem;
  }
}
.info-steps-section__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .info-steps-section__inner {
    padding: 3.5rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .info-steps-section__inner {
    padding: 5rem 1.5rem 3rem;
  }
}
@media (max-width: 743px) {
  .info-steps-section__inner {
    padding: 3rem 1.5rem;
  }
}
.info-steps-section__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
@media (min-width: 1024px) {
  .info-steps-section__content {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50%;
    padding: 0 4.375rem 0 2rem;
    position: sticky;
    top: 7.5rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .info-steps-section__content {
    padding-left: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .info-steps-section__aside {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50%;
    padding-left: 0.9375rem;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
}
@media (min-width: 744px) {
  .info-steps-section__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .info-steps-section__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .info-steps-section__label:before {
    margin-right: 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .info-steps-section__label:before {
    margin-right: 3rem;
  }
}
@media (max-width: 743px) {
  .info-steps-section__label:before {
    margin-right: 1.5rem;
  }
}
.info-steps-section__title {
  margin: 0 0 2rem;
  line-height: 1.13;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .info-steps-section__title {
    font-size: 2.875rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .info-steps-section__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .info-steps-section__title {
    font-size: 1.75rem;
  }
}
@media (max-width: 743px) {
  .info-steps-section__list_numbers .info-steps-section__list-item {
    padding-left: 3.75rem;
  }
}
@media (min-width: 744px) {
  .info-steps-section__list_numbers .info-steps-section__list-item.active .info-steps-section__list-dot:after {
    border-width: 1.5625rem;
  }
}
@media (max-width: 743px) {
  .info-steps-section__list_numbers .info-steps-section__list-item.active .info-steps-section__list-dot:after {
    border-width: 1.5rem;
  }
}
.info-steps-section__list_numbers .info-steps-section__list-item.active .info-steps-section__list-number {
  color: var(--color-bg);
}
@media (min-width: 744px) {
  .info-steps-section__list_numbers .info-steps-section__list-dot {
    left: -0.125rem;
    top: -0.125rem;
    width: 3.125rem;
    height: 3.125rem;
  }
}
@media (max-width: 743px) {
  .info-steps-section__list_numbers .info-steps-section__list-dot {
    left: -0.4375rem;
    top: -0.125rem;
    width: 3rem;
    height: 3rem;
  }
}
.info-steps-section__list_numbers .info-steps-section__list-line {
  bottom: 0.5rem;
  top: 3.375rem;
}
@media (min-width: 744px) and (max-width: 1023px) {
  .info-steps-section__list_numbers .info-steps-section__list-title {
    padding-top: 0.375rem;
  }
}
.info-steps-section__list-item {
  position: relative;
}
@media (min-width: 1024px) {
  .info-steps-section__list-item {
    min-height: 16.25rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .info-steps-section__list-item {
    min-height: 11.25rem;
  }
}
@media (min-width: 744px) {
  .info-steps-section__list-item {
    padding: 0 0 3rem 4.75rem;
  }
}
@media (max-width: 743px) {
  .info-steps-section__list-item {
    min-height: 10.375rem;
    padding: 0 0 3rem 3.125rem;
  }
}
.info-steps-section__list-item:last-child {
  padding-bottom: 0;
}
@media (max-width: 1023px) {
  .info-steps-section__list-item:last-child {
    min-height: auto;
  }
}
.info-steps-section__list-item:last-child .info-steps-section__list-line {
  display: none;
}
.info-steps-section__list-item.active .info-steps-section__list-title {
  color: var(--color-text);
}
.info-steps-section__list-item.active .info-steps-section__list-dot:after {
  border-color: var(--color-brand);
}
@media (min-width: 744px) {
  .info-steps-section__list-item.active .info-steps-section__list-dot:after {
    border-width: 0.6875rem;
  }
}
@media (max-width: 743px) {
  .info-steps-section__list-item.active .info-steps-section__list-dot:after {
    border-width: 0.5625rem;
  }
}
@media (min-width: 744px) {
  .info-steps-section__list-item.active .info-steps-section__list-dot:before {
    border-width: 0.5625rem;
  }
}
@media (max-width: 743px) {
  .info-steps-section__list-item.active .info-steps-section__list-dot:before {
    border-width: 0.375rem;
  }
}
.info-steps-section__list-tags {
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.info-steps-section__list-tag {
  padding: 0.1875rem 0.6875rem;
  color: var(--info-steps-tag-color);
  border: 0.0625rem solid var(--color-border);
  border-radius: 1rem;
}
.info-steps-section__list-title {
  line-height: 1.25;
  color: var(--color-text-2);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .info-steps-section__list-title {
    margin: 0 0 0.5rem;
    font-size: 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .info-steps-section__list-title {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 743px) {
  .info-steps-section__list-title {
    margin: 0 0 1rem;
    font-size: 1.25rem;
  }
}
.info-steps-section__list-text {
  color: var(--color-text-2);
}
.info-steps-section__list-text p:last-child {
  margin-bottom: 0;
}
.info-steps-section__list-number {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  color: var(--color-text);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (min-width: 744px) {
  .info-steps-section__list-number {
    padding-top: 0.6875rem;
  }
}
@media (max-width: 743px) {
  .info-steps-section__list-number {
    padding-top: 0.625rem;
  }
}
.info-steps-section__list-dot {
  position: absolute;
  z-index: 2;
}
@media (min-width: 744px) {
  .info-steps-section__list-dot {
    top: 0.3125rem;
    left: 0.375rem;
    width: 2.125rem;
    height: 2.125rem;
  }
}
@media (max-width: 743px) {
  .info-steps-section__list-dot {
    top: 0.125rem;
    left: 0.125rem;
    width: 1.875rem;
    height: 1.875rem;
  }
}
.info-steps-section__list-dot:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0.125rem solid var(--color-border);
  border-radius: 50%;
  -webkit-transition: border-color 0.3s ease-in-out, border-width 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out, border-width 0.3s ease-in-out;
}
.info-steps-section__list-dot:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 0 solid #191d1a;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transition: border-width 0.3s ease-in-out;
  transition: border-width 0.3s ease-in-out;
}
[data-theme=light] .info-steps-section__list-dot:before {
  border-color: #c9eecb;
}
.info-steps-section__list-line {
  position: absolute;
  bottom: 0;
  width: 0.125rem;
  background-color: var(--color-border);
  overflow: hidden;
}
@media (min-width: 744px) {
  .info-steps-section__list-line {
    top: 2.75rem;
    left: 1.375rem;
  }
}
@media (max-width: 743px) {
  .info-steps-section__list-line {
    top: 2.125rem;
    left: 1rem;
  }
}
.info-steps-section__list-line-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.125rem;
  height: 0;
  background-color: var(--color-brand);
}

.nav-content__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .nav-content__inner {
    padding: 7rem 0 3.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 1023px) {
  .nav-content__inner {
    padding: 5rem 0 3rem;
  }
}
.nav-content__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
.nav-content__aside {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (min-width: 1400px) {
  .nav-content__aside {
    width: 43%;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .nav-content__aside {
    width: 22rem;
  }
}
@media (max-width: 1023px) {
  .nav-content__aside {
    margin-bottom: 3rem;
    position: sticky;
    z-index: 5;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .nav-content__aside {
    top: 5.4375rem;
  }
}
@media (max-width: 743px) {
  .nav-content__aside {
    top: 4.125rem;
  }
}
.nav-content__main {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (min-width: 1400px) {
  .nav-content__main {
    width: 57%;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .nav-content__main {
    width: calc(100% - 22rem);
  }
}
@media (max-width: 1023px) {
  .nav-content__main {
    padding: 0 1.5rem;
  }
}
.nav-content__nav {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: var(--color-bg);
  border: 0.0625rem solid var(--color-border);
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 1024px) {
  .nav-content__nav {
    width: 20rem;
    position: sticky;
    top: 5.4375rem;
    max-height: calc(100vh - 5.4375rem);
    overflow-y: auto;
  }
  .nav-content__nav::-webkit-scrollbar {
    width: 0;
  }
  .nav-content__nav::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .nav-content__nav::-webkit-scrollbar-thumb {
    background-color: transparent;
  }
}
@media (max-width: 1023px) {
  .nav-content__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .nav-content__nav::-webkit-scrollbar {
    display: none;
  }
}
.nav-content__nav-item {
  position: relative;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .nav-content__nav-item {
    border-bottom: 0.0625rem solid var(--color-border);
  }
  .nav-content__nav-item:last-child {
    border-bottom: 0 none;
  }
}
@media (max-width: 1023px) {
  .nav-content__nav-item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-right: 0.0625rem solid var(--color-border);
  }
  .nav-content__nav-item:last-child {
    border-right: 0 none;
  }
}
.nav-content__nav-item:before {
  content: "";
  position: absolute;
  left: 0;
  background-color: var(--color-brand);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .nav-content__nav-item:before {
    top: -0.0625rem;
    width: 0.125rem;
    bottom: -0.0625rem;
  }
}
@media (max-width: 1023px) {
  .nav-content__nav-item:before {
    right: -0.0625rem;
    height: 0.125rem;
    bottom: 0;
  }
}
.nav-content__nav-item.active {
  background-color: var(--color-bg-2);
}
.nav-content__nav-item.active:before {
  opacity: 1;
}
.nav-content__nav-item.active .nav-content__nav-link {
  color: var(--color-text);
}
.nav-content__nav-link {
  display: block;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-text-2);
}
@media (min-width: 1024px) {
  .nav-content__nav-link {
    padding: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .nav-content__nav-link {
    padding: 1rem;
  }
}
@media (hover: hover) {
  .nav-content__nav-link:hover {
    color: var(--color-text);
  }
}
.nav-content__content h1, .nav-content__content h2, .nav-content__content h3, .nav-content__content h4, .nav-content__content h5, .nav-content__content h6 {
  font-family: "Lora", serif;
  font-weight: 400;
}
.nav-content__content h1:first-child, .nav-content__content h2:first-child, .nav-content__content h3:first-child, .nav-content__content h4:first-child, .nav-content__content h5:first-child, .nav-content__content h6:first-child {
  margin-top: 0;
}
.nav-content__content h2 {
  margin: 1rem 0;
}
@media (min-width: 1024px) {
  .nav-content__content h2 {
    font-size: 2.875rem;
    line-height: 1.13;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .nav-content__content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}
@media (max-width: 743px) {
  .nav-content__content h2 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
}
.nav-content__content h3 {
  margin: 1rem 0;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .nav-content__content h3 {
    font-size: 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .nav-content__content h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 743px) {
  .nav-content__content h3 {
    font-size: 1.25rem;
  }
}
.nav-content__content ul li {
  padding-left: 2.25rem;
  margin-bottom: 0.5rem;
}
.nav-content__content ul li:before {
  top: 0.125rem;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-color: transparent;
  border: 0.0625rem solid var(--color-brand);
}
.nav-content__content ul li:after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.3125rem;
  width: 0.625rem;
  height: 0.3125rem;
  border-width: 0 0 0.0625rem 0.0625rem;
  border-style: solid;
  border-color: var(--color-brand);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (max-width: 743px) {
  .nav-content .column-content {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

.page-intro-simple__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .page-intro-simple__inner {
    padding: 5rem 0 3.5rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .page-intro-simple__inner {
    padding: 5rem 0 3rem;
  }
}
@media (max-width: 743px) {
  .page-intro-simple__inner {
    padding: 3rem 0;
  }
}
.page-intro-simple__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
@media (min-width: 1024px) {
  .page-intro-simple__head {
    text-align: center;
    padding: 0 2rem;
  }
}
@media (min-width: 744px) {
  .page-intro-simple__head {
    margin-bottom: 3rem;
  }
}
@media (max-width: 743px) {
  .page-intro-simple__head {
    margin-bottom: 2rem;
  }
}
@media (max-width: 1023px) {
  .page-intro-simple__head {
    padding: 0 1.5rem;
  }
}
.page-intro-simple__label {
  opacity: 0;
}
@media (min-width: 744px) {
  .page-intro-simple__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .page-intro-simple__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .page-intro-simple__label:before {
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .page-intro-simple__label:before {
    margin-right: 1.5rem;
  }
}
.page-intro-simple__title {
  line-height: 1.13;
  font-weight: 400;
  opacity: 0;
}
@media (min-width: 1024px) {
  .page-intro-simple__title {
    margin: 0 auto 1.5rem;
    font-size: 3.375rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .page-intro-simple__title {
    margin: 0 0 1rem;
    font-size: 3.25rem;
  }
}
@media (max-width: 743px) {
  .page-intro-simple__title {
    margin: 0 0 1rem;
    font-size: 2rem;
  }
}
@media (min-width: 1400px) {
  .page-intro-simple__title {
    width: 60%;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .page-intro-simple__title {
    width: 80%;
  }
}
.page-intro-simple__text {
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-text-2);
  opacity: 0;
}
@media (min-width: 744px) {
  .page-intro-simple__text {
    font-size: 1.125rem;
  }
}
@media (max-width: 743px) {
  .page-intro-simple__text {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .page-intro-simple__text {
    margin: 0 auto;
  }
}
@media (min-width: 1400px) {
  .page-intro-simple__text {
    width: 65%;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .page-intro-simple__text {
    width: 80%;
  }
}
.page-intro-simple__video {
  padding-left: 0.0625rem;
  opacity: 0;
}
.page-intro-simple__video .inline-video {
  padding-bottom: 37%;
}

.media-scroll-items__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .media-scroll-items__inner {
    padding: 3.5rem 0;
  }
}
@media (max-width: 1023px) {
  .media-scroll-items__inner {
    padding: 3rem 0;
  }
}
.media-scroll-items__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
.media-scroll-items__head {
  text-align: center;
}
@media (min-width: 1024px) {
  .media-scroll-items__head {
    margin-bottom: 3rem;
    padding: 0 2rem;
  }
}
@media (max-width: 1023px) {
  .media-scroll-items__head {
    margin-bottom: 2rem;
    padding: 0 1.5rem;
  }
}
@media (min-width: 744px) {
  .media-scroll-items__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .media-scroll-items__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .media-scroll-items__label:before {
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .media-scroll-items__label:before {
    margin-right: 1.5rem;
  }
}
.media-scroll-items__title {
  margin: 0;
  line-height: 1.13;
  font-weight: 400;
  color: var(--color-text);
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  .media-scroll-items__title {
    font-size: 2.875rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .media-scroll-items__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .media-scroll-items__title {
    font-size: 1.75rem;
  }
  .media-scroll-items__title br {
    display: none;
  }
}
@media (min-width: 1024px) {
  .media-scroll-items__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1024px) {
  .media-scroll-items__image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50%;
    padding-bottom: 0.125rem;
  }
}
@media (max-width: 1023px) {
  .media-scroll-items__image {
    margin-bottom: 2rem;
  }
}
.media-scroll-items__image-i {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 744px) and (max-width: 1023px) {
  .media-scroll-items__image-i {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 743px) {
  .media-scroll-items__image-i {
    aspect-ratio: 1/0.9;
  }
}
@media (min-width: 1024px) {
  .media-scroll-items__list {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    padding-left: 3rem;
  }
}
.media-scroll-items__item {
  margin-bottom: -0.0625rem;
  border: 0.0625rem solid var(--color-border);
}
@media (min-width: 744px) {
  .media-scroll-items__item {
    padding: 1.5rem 2rem;
  }
}
@media (max-width: 743px) {
  .media-scroll-items__item {
    padding: 1.5rem;
  }
}
.media-scroll-items__item:last-child {
  margin-bottom: 0;
}
.media-scroll-items__item-title {
  line-height: 1.35;
  font-weight: 400;
}
@media (min-width: 744px) {
  .media-scroll-items__item-title {
    margin: 0 0 1.5rem;
  }
}
@media (min-width: 1400px) {
  .media-scroll-items__item-title {
    font-size: 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1399px) {
  .media-scroll-items__item-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 743px) {
  .media-scroll-items__item-title {
    margin: 0 0 1rem;
    font-size: 1.25rem;
  }
}
.media-scroll-items__item-text {
  color: var(--color-text-2);
}

.products-info-list__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .products-info-list__inner {
    padding: 3.5rem 0;
  }
}
@media (max-width: 1023px) {
  .products-info-list__inner {
    padding: 3rem 0;
  }
}
.products-info-list__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
.products-info-list__head {
  text-align: center;
}
@media (min-width: 1024px) {
  .products-info-list__head {
    margin-bottom: 3rem;
    padding: 0 2rem;
  }
}
@media (max-width: 1023px) {
  .products-info-list__head {
    margin-bottom: 2rem;
    padding: 0 1.5rem;
  }
}
@media (min-width: 744px) {
  .products-info-list__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .products-info-list__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .products-info-list__label:before {
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .products-info-list__label:before {
    margin-right: 1.5rem;
  }
}
.products-info-list__title {
  margin: 0;
  line-height: 1.13;
  font-weight: 400;
  color: var(--color-text);
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  .products-info-list__title {
    font-size: 2.875rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .products-info-list__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .products-info-list__title {
    font-size: 1.75rem;
  }
}
.products-info-list__item {
  border: 0.0625rem solid var(--color-border);
  margin-bottom: -0.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1024px) {
  .products-info-list__item {
    padding: 2rem;
  }
}
@media (max-width: 1023px) {
  .products-info-list__item {
    padding: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.products-info-list__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .products-info-list__item:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media (min-width: 1024px) {
  .products-info-list__item:nth-child(odd) .products-info-list__item-image {
    padding-left: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .products-info-list__item:nth-child(odd) .products-info-list__item-content {
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .products-info-list__item:nth-child(even) .products-info-list__item-image {
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .products-info-list__item:nth-child(even) .products-info-list__item-content {
    padding-left: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .products-info-list__item-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50%;
  }
}
@media (max-width: 1023px) {
  .products-info-list__item-image {
    margin-top: 1.5rem;
  }
}
.products-info-list__item-image-i {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 1024px) {
  .products-info-list__item-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }
}
.products-info-list__item-title {
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .products-info-list__item-title {
    margin: 0 0 1.5rem;
    font-size: 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .products-info-list__item-title {
    margin: 0 0 1rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 743px) {
  .products-info-list__item-title {
    margin: 0 0 1rem;
    font-size: 1.25rem;
  }
}
.products-info-list__item-subtitle {
  margin: 0 0 0.5rem;
  line-height: 1.35;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .products-info-list__item-subtitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .products-info-list__item-subtitle {
    font-size: 1.25rem;
  }
}
.products-info-list__item-text {
  color: var(--color-text-2);
}
.products-info-list__item-text ul {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.products-info-list__item-text ul li {
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.products-info-list__item-text ul img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: -0.125rem 0.5rem 0 0;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 744px) {
  .products-info-list__item-footer {
    margin-top: 1.5rem;
  }
}
@media (max-width: 743px) {
  .products-info-list__item-footer {
    margin-top: 1rem;
  }
}
@media (max-width: 743px) {
  .products-info-list__item-button {
    width: 100%;
  }
}

.steps-scheme-box__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .steps-scheme-box__inner {
    padding: 3.5rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 1023px) {
  .steps-scheme-box__inner {
    padding: 3rem 0;
  }
}
.steps-scheme-box__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
@media (min-width: 1024px) {
  .steps-scheme-box__head {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0 3rem 0 2rem;
    width: calc(50% - 1.5rem);
    position: sticky;
    top: 7.5rem;
  }
}
@media (max-width: 1023px) {
  .steps-scheme-box__head {
    padding: 0 1.5rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 744px) {
  .steps-scheme-box__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 743px) {
  .steps-scheme-box__label {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .steps-scheme-box__label:before {
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .steps-scheme-box__label:before {
    margin-right: 1.5rem;
  }
}
.steps-scheme-box__title {
  margin: 0 0 1rem;
  line-height: 1.13;
  font-weight: 400;
  color: var(--color-text);
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  .steps-scheme-box__title {
    font-size: 2.875rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .steps-scheme-box__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 743px) {
  .steps-scheme-box__title {
    font-size: 1.75rem;
  }
}
.steps-scheme-box__text {
  color: var(--color-text-2);
}
.steps-scheme-box__body {
  position: relative;
  background-color: #1c1c1d;
  aspect-ratio: 1/1;
}
@media (min-width: 1024px) {
  .steps-scheme-box__body {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.steps-scheme-box__logo {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: auto;
}
@media (min-width: 1400px) {
  .steps-scheme-box__logo {
    width: 8.375rem;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .steps-scheme-box__logo {
    width: 4.0625rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .steps-scheme-box__logo {
    width: 8.375rem;
  }
}
@media (max-width: 743px) {
  .steps-scheme-box__logo {
    width: 18%;
    max-width: 8.375rem;
  }
}
.steps-scheme-box__frame {
  position: absolute;
  top: 16%;
  right: 16%;
  bottom: 16%;
  left: 16%;
}
.steps-scheme-box__frame.active {
  background-color: #191d1a;
}
.steps-scheme-box__frame-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.steps-scheme-box__frame-line {
  position: absolute;
  background-color: #88d98f;
}
.steps-scheme-box__frame-line_1 {
  top: -0.125rem;
  left: 50%;
  width: 50%;
  height: 0.1875rem;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.steps-scheme-box__frame-line_2 {
  top: -0.125rem;
  height: calc(100% + 0.125rem);
  right: -0.125rem;
  width: 0.1875rem;
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}
.steps-scheme-box__frame-line_3 {
  left: -0.125rem;
  bottom: -0.125rem;
  width: calc(100% + 0.25rem);
  height: 0.1875rem;
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.steps-scheme-box__frame-line_4 {
  top: -0.125rem;
  height: calc(100% + 0.125rem);
  left: -0.125rem;
  width: 0.1875rem;
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}
.steps-scheme-box__frame-line_5 {
  top: -0.125rem;
  left: -0.125rem;
  width: 50%;
  height: 0.1875rem;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.steps-scheme-box__frame-list-item {
  position: absolute;
  background-color: #111111;
  border: 0.0625rem solid #111111;
  text-align: center;
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}
@media (min-width: 744px) {
  .steps-scheme-box__frame-list-item {
    width: 12.1875rem;
    padding: 0.75rem 1.25rem;
  }
}
@media (max-width: 743px) {
  .steps-scheme-box__frame-list-item {
    width: 5.9375rem;
    padding: 0.375rem 0.625rem;
  }
}
.steps-scheme-box__frame-list-item.active {
  border-color: #88d98f;
}
.steps-scheme-box__frame-list-item:nth-child(1) {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 744px) {
  .steps-scheme-box__frame-list-item:nth-child(1) {
    top: -4.6875rem;
  }
}
@media (max-width: 743px) {
  .steps-scheme-box__frame-list-item:nth-child(1) {
    top: -2.1875rem;
  }
}
.steps-scheme-box__frame-list-item:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width: 744px) {
  .steps-scheme-box__frame-list-item:nth-child(2) {
    right: -4.6875rem;
  }
}
@media (max-width: 743px) {
  .steps-scheme-box__frame-list-item:nth-child(2) {
    right: -2.1875rem;
  }
}
.steps-scheme-box__frame-list-item:nth-child(3) {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 744px) {
  .steps-scheme-box__frame-list-item:nth-child(3) {
    bottom: -4.6875rem;
  }
}
@media (max-width: 743px) {
  .steps-scheme-box__frame-list-item:nth-child(3) {
    bottom: -2.1875rem;
  }
}
.steps-scheme-box__frame-list-item:nth-child(4) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width: 744px) {
  .steps-scheme-box__frame-list-item:nth-child(4) {
    left: -4.6875rem;
  }
}
@media (max-width: 743px) {
  .steps-scheme-box__frame-list-item:nth-child(4) {
    left: -2.1875rem;
  }
}
.steps-scheme-box__frame-list-title {
  line-height: 1.35;
  font-weight: bold;
  color: #ffffff;
}
@media (min-width: 744px) {
  .steps-scheme-box__frame-list-title {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 743px) {
  .steps-scheme-box__frame-list-title {
    margin: 0 0 0.375rem;
    font-size: 0.75rem;
  }
}
.steps-scheme-box__frame-list-text {
  line-height: 1.5;
  color: #a8aab1;
}
@media (min-width: 744px) {
  .steps-scheme-box__frame-list-text {
    font-size: 0.875rem;
  }
}
@media (max-width: 743px) {
  .steps-scheme-box__frame-list-text {
    font-size: 0.4375rem;
  }
}
.steps-scheme-box__list {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #1c1c1d;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.steps-scheme-box__list.active {
  opacity: 1;
  visibility: visible;
}
.steps-scheme-box__list-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 1400px) {
  .steps-scheme-box__list-item {
    margin-bottom: 2.375rem;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .steps-scheme-box__list-item {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .steps-scheme-box__list-item {
    margin-bottom: 2.375rem;
  }
}
@media (max-width: 743px) {
  .steps-scheme-box__list-item {
    margin-bottom: 1rem;
  }
}
.steps-scheme-box__list-item:last-child {
  margin-bottom: 0;
}
.steps-scheme-box__list-title {
  background-color: #131314;
  line-height: 1.35;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
}
@media (min-width: 744px) {
  .steps-scheme-box__list-title {
    min-width: 19.875rem;
    padding: 1.5rem;
  }
}
@media (min-width: 1400px) {
  .steps-scheme-box__list-title {
    font-size: 2.625rem;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .steps-scheme-box__list-title {
    font-size: 2rem;
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .steps-scheme-box__list-title {
    font-size: 2.625rem;
  }
}
@media (max-width: 743px) {
  .steps-scheme-box__list-title {
    min-width: 16.25rem;
    padding: 1rem;
    font-size: 1.25rem;
  }
}

.error-box {
  height: 100%;
  text-align: center;
}
.error-box__container {
  height: 100%;
}
.error-box__inner {
  position: relative;
  min-height: 100%;
}
@media (min-width: 744px) {
  .error-box__inner {
    padding: 5rem 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 743px) {
  .error-box__inner {
    padding: 3rem 1.5rem;
  }
}
.error-box__inner:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.0625rem;
  background-color: var(--color-border);
}
.error-box__title {
  margin: 0 0 0.5rem;
  font-size: 6.25rem;
  line-height: 1.13;
  font-weight: 400;
  opacity: 0;
}
.error-box__subtitle {
  opacity: 0;
  line-height: 1.35;
  font-weight: bold;
}
@media (min-width: 744px) {
  .error-box__subtitle {
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 743px) {
  .error-box__subtitle {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
}
.error-box__text {
  opacity: 0;
  color: var(--color-text-2);
}
.error-box__text a {
  color: var(--color-text);
  text-decoration: underline;
}
@media (hover: hover) {
  .error-box__text a:hover {
    color: var(--color-text-2);
  }
}