@charset "UTF-8";
/*!
 * Project: Project Name
 * Author: Name
 * E-mail: E-mail
 * Website:
 */
/**
 * This is where all of the stylesheets are compiled.
 * They are processed in the order they are imported
 * to ensure the consistent increase of specificity.
 *
 *    ITCSS Methodology: Inverted Triangle CSS
 *
 *    **************   1. Settings
 *     ************    2. Tools
 *      **********     3. Generic
 *       ********      4. Elements
 *        ******       5. Objects
 *         ****        6. Components
 *          **         7. Utilities
 *
 * 1. Settings.........Global configuration and variables.
 * 2. Tools............Functions and mixins.
 * 3. Generic..........Ground zero styles.
 *                     (normalizing.css, box-sizing etc...)
 * 4. Elements.........Unclassed (bare) HTML element
 *                     (like H1, Ul, A etc...)
 * 5. Objects..........Common non-cosmetic structural design patterns.
 *                     e.g containers, rows, grids, colums etc...
 * 6. Components.......Specific cosmetic elements of UI.
 *                     e.g. buttons, forms, header, footer etc...
 * 7. Utilities........Helpers and overrides.
 *
 *    Modules..........Multi-part components.
 *                     e.g. Navbar (HTML, CSS and JS).
 *    Shame............All the CSS, hacks and things we are not proud of.
 */
/**
 * Based on
 *
 *  - reset.css 2.0 by Eric Meyer
      (public domain)
 *    http://meyerweb.com/eric/tools/css/reset/
 *
 *  - normalize.css 8.0.1 by Nicolas Gallagher and Jonathan Neal
 *    (licensed under MIT)
 *    https://github.com/necolas/normalize.css
 *
 *  - Reboot from Bootstrap 4.5.3
 *    (licensed under MIT)
 *    https://github.com/twbs/bootstrap
 */
/**
 * IE10+ doesn't honor `<meta name="viewport">` in some cases
 */
@-ms-viewport {
  width: device-width;
}
/**
 * general reset
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/**
 * HTML5 display-role reset for older browsers
 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section,
main, summary {
  display: block;
}

/**
 * inherit box model for all elements
 */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/**
 * html root rules
 * 1. set border-box for inheritance
 * 2. avoid 300ms click delay on touch devices that support the `touch-action`
 *    CSS property
 * 3. Prevent adjustments of font size after orientation changes in IE, on
 *    Windows Phone and iOS.
 * 4. Setting @viewport causes scrollbars to overlap content in IE11 and Edge,
 *    so we force a non-overlapping, non-auto-hiding scrollbar to counteract.
 * 5. Change the default tap highlight to be completely transparent in iOS.
 */
html {
  /* 1 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 2 */
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 4 */
  -ms-overflow-style: scrollbar;
  /* 5 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/**
 * body rules
 * 1. reset line-height to 1
 * 2. set base font-family to sans-serif
 * 3. Set an explicit initial text-align value so that we can later use the
 *    `inherit` value on things like `<th>` elements.
 */
body {
  /* 1 */
  line-height: 1;
  /* 2 */
  font-family: sans-serif;
  /* 3 */
  text-align: left;
}

/**
 * Future-proof rule: in browsers that support :focus-visible, suppress the focus outline
 * on elements that programmatically receive focus but wouldn't normally show a visible
 * focus outline. In general, this would mean that the outline is only applied if the
 * interaction that led to the element receiving programmatic focus was a keyboard interaction,
 * or the browser has somehow determined that the user is primarily a keyboard user and/or
 * wants focus outlines to always be presented.
 *
 * See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible
 * and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/
 */
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

/**
 * Lists
 */
ol, ul {
  list-style: none;
}

/**
 * Quotes
 */
blockquote, q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

/**
 * Tables
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  caption-side: bottom;
}

/**
 * Table Headers
 * 1. Matches default `<td>` alignment by inheriting from the `<body>`, or the
 *    closest parent with a set `text-align`.
 * 2. Fix alignment for Safari
 */
th {
  /* 1 */
  text-align: inherit;
  /* 2 */
  text-align: -webkit-match-parent;
}

/**
 * Horizontal Lines
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  /* 1 */
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  /* 2 */
  overflow: visible;
}

/**
 * Preformatted Text
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Don't allow content to break outside
 * 3. We have @viewport set which causes scrollbars to overlap content in IE11
 *    and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to
 *    counteract.
 */
pre,
code,
kbd,
samp {
  /* 1 */
  font-family: monospace, monospace;
}

pre {
  /* 2 */
  overflow: auto;
  /* 3 */
  -ms-overflow-style: scrollbar;
}

/**
 * Links
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  /* 1 */
  background-color: transparent;
  /* 2 */
  -webkit-text-decoration-skip: objects;
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 * 3. Add explicit cursor to indicate changed behavior.
 * 4. Prevent the text-decoration to be skipped.
 */
abbr[title] {
  /* 1 */
  border-bottom: 0;
  /* 2 */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 3 */
  cursor: help;
  /* 4 */
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  font-style: normal;
  line-height: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 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 {
  position: relative;
  font-size: 75%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/**
 * Prevent `em` being affected from global reset
 */
em {
  font-style: italic;
}

/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/**
 * Hide SVG overflow in IE
 */
svg:not(:root) {
  overflow: hidden;
}

/**
 * Remove the default `border-radius` that macOS Chrome adds.
 * Details at https://github.com/twbs/bootstrap/issues/24093
 */
button {
  border-radius: 0;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 * Credit: https://github.com/suitcss/base/
 */
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

/**
 * form element resets
 * 1. Remove the margin in Firefox and Safari
 * 2. inherit font rules
 */
input,
button,
select,
optgroup,
textarea {
  /* 1 */
  margin: 0;
  /* 2 */
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=reset],
[type=submit],
[type=button] {
  /* 2 */
  -webkit-appearance: button;
}

/**
 * Remove the default appearance of temporal inputs to avoid a Mobile Safari
 * bug where setting a custom line-height prevents text from being vertically
 * centered within the input.
 * See https://bugs.webkit.org/show_bug.cgi?id=139848
 * and https://github.com/twbs/bootstrap/issues/11266
 */
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Textareas should really only resize vertically so they don't break their
 *    (horizontal) containers.
 */
textarea {
  overflow: auto;
  resize: vertical;
}

/**
 * Show the overflow in IE.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 */
button,
select {
  text-transform: none;
}

/**
 * Set the cursor for non-`<button>` buttons
 * Details at https://github.com/twbs/bootstrap/pull/30562
 */
[role=button] {
  cursor: pointer;
}

/**
 * Remove the inheritance of word-wrap in Safari.
 * See https://github.com/twbs/bootstrap/issues/24990
 */
select {
  word-wrap: normal;
}

/**
 * Remove inner border and padding from Firefox, but don't restore the outline
 * like Normalize.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * 1. Add the correct box sizing in IE 10-
 * 2. Remove the padding in IE 10-
 */
input[type=radio],
input[type=checkbox] {
  /* 1 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * Suppress the focus outline on elements that cannot be accessed via keyboard.
 * This prevents an unwanted focus outline from appearing around elements that
 * might still respond to pointer events.
 * Credit: https://github.com/suitcss/base
 */
[tabindex="-1"]:focus {
  outline: 0 !important;
}

/**
 * Browsers set a default `min-width: min-content` on fieldsets,
 * unlike e.g. `<div>`s, which have `min-width: 0` by default.
 * So we reset that to ensure fieldsets behave more like a standard block element.
 * See https://github.com/twbs/bootstrap/issues/12359
 * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
 */
fieldset {
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Set display to block for all browsers
 */
legend {
  /* 1 */
  max-width: 100%;
  white-space: normal;
  /* 2 */
  color: inherit;
  /* 3 */
  display: block;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * 1. Remove the default vertical scrollbar in IE 10+.
 * 2. Textareas should really only resize vertically so they don't break their
 *    (horizontal) containers.
 */
textarea {
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  /* 1 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * 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] {
  /* 1 */
  -webkit-appearance: textfield;
  /* 2 */
  outline-offset: -2px;
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[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 {
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  font: inherit;
}

/**
 * Correct element display for output
 */
output {
  display: inline-block;
}

/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Always hide an element with the `hidden` HTML attribute (from PureCSS).
 * Needed for proper display in IE 10-.
 */
[hidden] {
  display: none;
}

/**
 * adds resets for buttons that are not covered by reset-and-normalize base
 */
[role=button],
input[type=button],
input[type=reset],
input[type=submit],
button {
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  color: inherit;
  text-align: inherit;
  background: none;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
[role=button]:not(:disabled),
input[type=button]:not(:disabled),
input[type=reset]:not(:disabled),
input[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}
[role=button]:-moz-focusring,
input[type=button]:-moz-focusring,
input[type=reset]:-moz-focusring,
input[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: none;
}
[role=button]:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
button:focus {
  outline: none;
}

/**
 * adds resets for links that are not covered by reset-and-normalize base
 */
a {
  color: inherit;
  text-decoration: none;
}
a:-moz-focusring {
  outline: none;
}
a:focus {
  outline: none;
}

/*
* @include mappy-bp(small large)
*/
/**
 * Animations
 */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.4));
            filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.4));
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
            filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
            filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.4));
            filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.4));
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
            filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
            filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
}
@-webkit-keyframes bouncealpha {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(150%) scale(0.9);
            transform: translateX(150%) scale(0.9);
  }
  26% {
    opacity: 0;
    -webkit-transform: translateX(-150%) scale(0.9);
            transform: translateX(-150%) scale(0.9);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
}
@keyframes bouncealpha {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(150%) scale(0.9);
            transform: translateX(150%) scale(0.9);
  }
  26% {
    opacity: 0;
    -webkit-transform: translateX(-150%) scale(0.9);
            transform: translateX(-150%) scale(0.9);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
}
@-webkit-keyframes bouncealphaleft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(-200%) scale(0.9);
            transform: translateX(-200%) scale(0.9);
  }
  26% {
    opacity: 0;
    -webkit-transform: translateX(200%) scale(0.9);
            transform: translateX(200%) scale(0.9);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
}
@keyframes bouncealphaleft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(-200%) scale(0.9);
            transform: translateX(-200%) scale(0.9);
  }
  26% {
    opacity: 0;
    -webkit-transform: translateX(200%) scale(0.9);
            transform: translateX(200%) scale(0.9);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
}
@-webkit-keyframes dropdownAppear {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes dropdownAppear {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes col {
  0% {
    fill: #000;
  }
  33%, 66% {
    fill: #10069f;
  }
  100% {
    fill: #000;
  }
}
@keyframes col {
  0% {
    fill: #000;
  }
  33%, 66% {
    fill: #10069f;
  }
  100% {
    fill: #000;
  }
}
/**
 * Barba Transitions
 */
/* Active state, define the transition,
here, same for leave and enter */
.barba-leave-active,
.barba-enter-active {
  -webkit-transition: opacity 350ms ease;
  transition: opacity 350ms ease;
}

.barba-leave-active {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

/* Initial state */
.barba-leave {
  opacity: 1;
}

.barba-enter {
  opacity: 0;
}

/* Ending state */
.barba-leave-to {
  opacity: 0;
}

.barba-enter-to {
  opacity: 1;
}

/* This code can be refactored for optimization… */
/* appear: active state, define the transition */
.barba-appear-active {
  -webkit-transition: opacity 450ms ease;
  transition: opacity 450ms ease;
}

/* appear: initial state */
.barba-appear {
  opacity: 0;
}

/* appear: ending state */
.barba-appear-to {
  opacity: 1;
}

/**
 * Global
 *
 * !default Flag
 * When building a library, a framework, a grid system or any piece of Sass
 * that is intended to be distributed and used by external developers,
 * all configuration variables should be defined with the !default flag
 * so they can be overwritten.
 */
:root {
  --font-family: $font-family;
  --font-family-alt: $font-size-base;
  --font-weight: 400;
  /* colors */
  --white: #fff;
  --black: #000;
  --primary-color: #21414a; /* Main brand color */
  --secondary-color: #3f8242; /* Accent color */
  --bg-color: var(--white); /* Background color */
  --primary-bg-color: var(--primary-color);
  --secondary-bg-color: #f2eee7; /* Secondary background color */
  --card-bg-color: #1f1f1f; /* Card background */
  --text-color: #494949; /* Primary text color */
  --title-color: var(--primary-color);
  --icons-color: #cfc1ab; /* Icons color */
  --category-bg-color: var(--secondary-color);
  --border-color: #e6ded1;
  --icons-hover-color: #7b808f;
  --color-accent: #d24c2d;
  /* form */
  --form-element-bg-color: var(--secondary-bg-color);
  --form-element-border-color: var(--icons-color);
  --form-element-border-radius: 9px;
  --form-col-gap: 25px;
  /* menu */
  --menu-bg-color: var(--secondary-color); /* Menu background color */
  --menu-border-color: #4ea052; /* Menu background color */
  --menu-link-color: var(--white); /* Menu link color */
  --menu-link-selected-color: var(--primary-color);
  --menu-title-bg-color: var(--primary-color); /* Menu title bg color */
  --menu-title-color: var(--white); /* Menu title color */
  --menu-width: 440px;
  --menu-mobile-width: 320px;
  /* header colors */
  --header-height: 80px;
  --header-bg-color: var(--white); /* Header background color */
  /* footer */
  --footer-bg-color: var(--white); /* Footer background color */
  --footer-border-color: var(--secondary-bg-color);
  --footer-secondary-nav-bg-color: var(--secondary-color);
  --footer-secondary-menu-link-color: var(--white);
  --footer-bottom-bg-color: var(--primary-color);
  --footer-bottom-color: var(--white);
  /* grid */
  --grid-gap: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  --gap: .938rem;
  --pad: .938rem;
  --max-width: calc(87.5rem + var(--grid-gap) * 2);
  --max-width-s: calc(60rem + var(--grid-gap) * 2);
  --max-width-xs: calc(53.75rem + var(--grid-gap) * 2);
  --max-width-xxs: calc(40rem + var(--grid-gap) * 2);
  --max-width-md: calc(68.75rem + var(--grid-gap) * 2);
  --max-width-l: calc(80rem);
  --max-width-xl: 102.5rem;
  --max-width-xxl: 115rem;
  --radius: 5px;
  --mm-spn-item-height: var(--header-height, 80px) !important;
  --mm-spn-item-indent: 30px !important;
}

/**
 * Transitions
 */
/**
 * Colors
 */
.page-transition {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 15000;
  pointer-events: none;
  overflow: hidden;
  background-color: #fff;
  background-color: var(--bg-color);
  opacity: 0;
  -webkit-animation-name: page-transition-out;
          animation-name: page-transition-out;
  -webkit-animation-duration: 0.35s;
          animation-duration: 0.35s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.page-transition .logo {
  position: fixed;
  z-index: 15030;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.page-transition .logo img {
  height: 65px;
}
.page-transition.show {
  pointer-events: all;
  opacity: 1;
  -webkit-animation: none;
          animation: none;
}
.page-transition.animIn {
  pointer-events: all;
  -webkit-animation-name: page-transition-in;
          animation-name: page-transition-in;
  -webkit-animation-duration: 0.35s;
          animation-duration: 0.35s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@-webkit-keyframes page-transition-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes page-transition-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes page-transition-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes page-transition-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/**
 * Clearfix
 *
 * Usage:
 * @include clearfix;
 */
/**
 * Fluid Type - responsive font size base on window width
 *
 * Usage:
 * @include fluid-type(320px, 1400px, 14px, 60px);
 * @include fluid-type(min window width, max window width, min font size, max font size);
 *
 */
/**
 * Remove default browser padding and list-style
 *
 * Usage:
 * @include list-none;
 */
/**
 * Set max width for an element and make it centered
 *
 * Usage:
 * @include max-width(600px);
 */
/**
 * Pseudo elements after / before
 *
 * Usage
 * @include pseudo;
 */
/**
  * Px to rem
  * https://github.com/nicholasruggeri/px-to-rem-sass-mixin
  *
  * Usage
  * font-size: rem(20)
  * margin: rem(40) rem(40);
 */
/**
 * Responsive ratio
 *
 * Usage:
 * @include responsive-ratio(16,9);
 * @include responsive-ratio(4,3);
 */
/**
 * Triangle
 * Usage:
 * @include triangle(red, up, 20px);
 *
 * Color, direction, size
 */
/**
 * Box Sizing
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/**
 * Colors
 */
/**
* Font Face
*/
b,
strong {
  font-weight: 700;
}

/**
 * Print styles.
 * Taken from https://github.com/h5bp/html5-boilerplate
 */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important; /* Black prints faster */
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/**
 * 1. Make the dialog container, and its child overlay spread across
 *    the entire window.
 */
.dialog-container,
.dialog-overlay {
  position: fixed; /* 1 */
  top: 0; /* 1 */
  right: 0; /* 1 */
  bottom: 0; /* 1 */
  left: 0; /* 1 */
}

/**
   * 1. Make sure the dialog container and all its descendants sits on
   *    top of the rest of the page.
   * 2. Make the dialog container a flex container to easily center the
   *    dialog.
   */
.dialog-container {
  --title-bg-color: var(--secondary-color);
  z-index: 2000; /* 1 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 2 */
}

/**
   * 1. Make sure the dialog container and all its descendants are not
   *    visible and not focusable when it is hidden.
   */
.dialog-container[aria-hidden=true] {
  display: none; /* 1 */
}

/**
   * 1. Make the overlay look like an overlay.
   */
.dialog-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* 1 */
  -webkit-animation: fade-in 200ms both;
          animation: fade-in 200ms both;
}

.dialog-content {
  margin: auto;
  z-index: 2;
  position: relative;
  background-color: #fff;
  background-color: var(--white);
  -webkit-animation: fade-in 400ms 200ms both, slide-up 400ms 200ms both;
          animation: fade-in 400ms 200ms both, slide-up 400ms 200ms both;
  width: 100%;
  max-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;
}
@media all and (min-width: 40em) {
  .dialog-content {
    max-width: 1024px;
    width: 90%;
    max-height: 95%;
  }
}
.dialog-content.alert-dialog {
  width: calc(100% - .938rem * 2);
  width: calc(100% - var(--pad) * 2);
  max-width: 650px;
}
.dialog-title {
  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;
  height: 80px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  background-color: undefined;
  background-color: var(--title-bg-color);
  padding-left: calc(.938rem * 1);
  padding-left: calc(var(--pad) * 1);
  padding-right: calc(.938rem * 1);
  padding-right: calc(var(--pad) * 1);
  color: #fff;
  color: var(--white);
}
@media all and (min-width: 40em) {
  .dialog-title {
    padding-left: calc(.938rem * 2);
    padding-left: calc(var(--pad) * 2);
    padding-right: calc(.938rem * 2);
    padding-right: calc(var(--pad) * 2);
  }
}
.dialog-title .title {
  color: #fff;
  color: var(--white);
}
.dialog-title .dialog-close {
  position: relative;
  top: auto;
  left: auto;
  right: 0;
  bottom: auto;
}
.dialog-wrap {
  padding-top: calc(.938rem * 2);
  padding-top: calc(var(--pad) * 2);
  height: 100%;
  overflow-y: auto;
}
@media all and (min-width: 40em) {
  .dialog-wrap {
    padding-top: 54px;
  }
}
.dialog-text {
  max-height: 100%;
  padding-left: calc(.938rem * 2);
  padding-left: calc(var(--pad) * 2);
  padding-right: calc(.938rem * 2);
  padding-right: calc(var(--pad) * 2);
  padding-bottom: 40px;
}
@media all and (min-width: 40em) {
  .dialog-text {
    padding-left: 54px;
    padding-right: 50px;
  }
}
.dialog-text--title {
  color: #21414a;
  color: var(--title-color);
  font-size: 1.375rem;
}
.dialog-text .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: .938rem;
  gap: var(--gap);
}
.dialog-text p + * {
  margin-top: 24px;
}

@media all and (min-width: 40em) {
  #companies-dialog .dialog-content {
    max-width: 850px;
  }
}
#companies-dialog .dialog-content .dialog-companies {
  margin-left: calc(-1 * .938rem * 2);
  margin-left: calc(-1 * var(--pad) * 2);
  margin-right: calc(-1 * .938rem * 2);
  margin-right: calc(-1 * var(--pad) * 2);
}
@media all and (min-width: 40em) {
  #companies-dialog .dialog-content .dialog-companies {
    margin-left: -54px;
    margin-right: -50px;
  }
}
#companies-dialog .dialog-content .dialog-companies .block {
  border-top: 1px solid #e6ded1;
  border-top: 1px solid var(--border-color);
  padding-left: calc(.938rem * 2);
  padding-left: calc(var(--pad) * 2);
  padding-right: calc(.938rem * 2);
  padding-right: calc(var(--pad) * 2);
  padding-bottom: 20px;
  padding-top: 20px;
}
@media all and (min-width: 40em) {
  #companies-dialog .dialog-content .dialog-companies .block {
    padding-left: 54px;
    padding-right: 50px;
  }
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
}
@-webkit-keyframes slide-up {
  from {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
}
@keyframes slide-up {
  from {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .dialog-overlay,
  .dialog-content {
    -webkit-animation: none;
            animation: none;
  }
}
.dialog-close {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  background-color: transparent;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  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;
}
.dialog-close svg {
  height: 30px;
}

/**
 * Document defaults (html, body)
 */
html {
  background-color: #fff;
  background-color: var(--bg-color);
  color: #494949;
  color: var(--text-color);
  font-family: "Nunito Sans", sans-serif, -apple-system, blinkmacsystemfont, "Segoe UI", "Helvetica Neue", arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-optical-sizing: auto;
  font-size: 1rem;
  font-weight: 400;
  font-weight: var(--font-weight);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  background-color: #fff;
  background-color: var(--bg-color);
  color: #494949;
  color: var(--text-color);
  font-family: "Nunito Sans", sans-serif, -apple-system, blinkmacsystemfont, "Segoe UI", "Helvetica Neue", arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-optical-sizing: auto;
  font-size: 1rem;
  font-weight: 400;
  font-weight: var(--font-weight);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  isolation: isolate;
}

html {
  scroll-behavior: smooth;
}

input {
  border: 0;
  color: #494949;
  color: var(--text-color);
}

h1 {
  color: #21414a;
  color: var(--title-color);
  line-height: 1.25;
  font-family: "Baloo Thambi 2", system-ui;
  font-weight: 600;
}

h2 {
  color: #21414a;
  color: var(--title-color);
  line-height: 1.25;
  font-family: "Baloo Thambi 2", system-ui;
  font-weight: 600;
}

h3 {
  color: #21414a;
  color: var(--title-color);
  line-height: 1.25;
  font-family: "Baloo Thambi 2", system-ui;
  font-weight: 600;
}

h4 {
  color: #21414a;
  color: var(--title-color);
  line-height: 1.25;
  font-family: "Baloo Thambi 2", system-ui;
  font-weight: 600;
}

h5 {
  color: #21414a;
  color: var(--title-color);
  line-height: 1.25;
  font-family: "Baloo Thambi 2", system-ui;
  font-weight: 600;
}

h6 {
  color: #21414a;
  color: var(--title-color);
  line-height: 1.25;
  font-family: "Baloo Thambi 2", system-ui;
  font-weight: 600;
}

.h1 {
  color: #21414a;
  color: var(--title-color);
  line-height: 1.25;
  font-family: "Baloo Thambi 2", system-ui;
  font-weight: 600;
}

.h2 {
  color: #21414a;
  color: var(--title-color);
  line-height: 1.25;
  font-family: "Baloo Thambi 2", system-ui;
  font-weight: 600;
}

.h3 {
  color: #21414a;
  color: var(--title-color);
  line-height: 1.25;
  font-family: "Baloo Thambi 2", system-ui;
  font-weight: 600;
}

.h4 {
  color: #21414a;
  color: var(--title-color);
  line-height: 1.25;
  font-family: "Baloo Thambi 2", system-ui;
  font-weight: 600;
}

.h5 {
  color: #21414a;
  color: var(--title-color);
  line-height: 1.25;
  font-family: "Baloo Thambi 2", system-ui;
  font-weight: 600;
}

.h6 {
  color: #21414a;
  color: var(--title-color);
  line-height: 1.25;
  font-family: "Baloo Thambi 2", system-ui;
  font-weight: 600;
}

.title-font {
  color: #21414a;
  color: var(--title-color);
  line-height: 1.25;
  font-family: "Baloo Thambi 2", system-ui;
  font-weight: 600;
}

.title {
  color: #21414a;
  color: var(--title-color);
  line-height: 1.25;
  font-family: "Baloo Thambi 2", system-ui;
  font-weight: 600;
}
h1--size-xs,
h2--size-xs,
h3--size-xs,
h4--size-xs,
h5--size-xs,
h6--size-xs,
.h1--size-xs,
.h2--size-xs,
.h3--size-xs,
.h4--size-xs,
.h5--size-xs,
.h6--size-xs,
.title-font--size-xs,
.title--size-xs {
  font-size: 1.0625rem;
}
h1--size-s,
h2--size-s,
h3--size-s,
h4--size-s,
h5--size-s,
h6--size-s,
.h1--size-s,
.h2--size-s,
.h3--size-s,
.h4--size-s,
.h5--size-s,
.h6--size-s,
.title-font--size-s,
.title--size-s {
  font-size: clamp(1.125rem, 1.0923rem + 0.1538vw, 1.25rem);
}
h1--size-m,
h2--size-m,
h3--size-m,
h4--size-m,
h5--size-m,
h6--size-m,
.h1--size-m,
.h2--size-m,
.h3--size-m,
.h4--size-m,
.h5--size-m,
.h6--size-m,
.title-font--size-m,
.title--size-m {
  font-size: clamp(1.25rem, 1.1846rem + 0.3077vw, 1.5rem);
}
h1--size-ml,
h2--size-ml,
h3--size-ml,
h4--size-ml,
h5--size-ml,
h6--size-ml,
.h1--size-ml,
.h2--size-ml,
.h3--size-ml,
.h4--size-ml,
.h5--size-ml,
.h6--size-ml,
.title-font--size-ml,
.title--size-ml {
  font-size: clamp(1.375rem, 1.3096rem + 0.3077vw, 1.625rem);
}
h1--size-l,
h2--size-l,
h3--size-l,
h4--size-l,
h5--size-l,
h6--size-l,
.h1--size-l,
.h2--size-l,
.h3--size-l,
.h4--size-l,
.h5--size-l,
.h6--size-l,
.title-font--size-l,
.title--size-l {
  font-size: clamp(1.5rem, 1.4019rem + 0.4615vw, 1.875rem);
}
h1--size-xl,
h2--size-xl,
h3--size-xl,
h4--size-xl,
h5--size-xl,
h6--size-xl,
.h1--size-xl,
.h2--size-xl,
.h3--size-xl,
.h4--size-xl,
.h5--size-xl,
.h6--size-xl,
.title-font--size-xl,
.title--size-xl {
  font-size: clamp(2rem, 1.9346rem + 0.3077vw, 2.25rem);
}
h1--size-xxl,
h2--size-xxl,
h3--size-xxl,
h4--size-xxl,
h5--size-xxl,
h6--size-xxl,
.h1--size-xxl,
.h2--size-xxl,
.h3--size-xxl,
.h4--size-xxl,
.h5--size-xxl,
.h6--size-xxl,
.title-font--size-xxl,
.title--size-xxl {
  font-size: clamp(2.25rem, 1.9885rem + 1.2308vw, 3.25rem);
}
h1--line {
  --line-w: 30px;
  --line-h: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: .938rem;
  gap: var(--gap);
  font-size: clamp(1.375rem, 1.3096rem + 0.3077vw, 1.625rem);
  text-transform: uppercase;
}
h2--line {
  --line-w: 30px;
  --line-h: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: .938rem;
  gap: var(--gap);
  font-size: clamp(1.375rem, 1.3096rem + 0.3077vw, 1.625rem);
  text-transform: uppercase;
}
h3--line {
  --line-w: 30px;
  --line-h: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: .938rem;
  gap: var(--gap);
  font-size: clamp(1.375rem, 1.3096rem + 0.3077vw, 1.625rem);
  text-transform: uppercase;
}
h4--line {
  --line-w: 30px;
  --line-h: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: .938rem;
  gap: var(--gap);
  font-size: clamp(1.375rem, 1.3096rem + 0.3077vw, 1.625rem);
  text-transform: uppercase;
}
h5--line {
  --line-w: 30px;
  --line-h: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: .938rem;
  gap: var(--gap);
  font-size: clamp(1.375rem, 1.3096rem + 0.3077vw, 1.625rem);
  text-transform: uppercase;
}
h6--line {
  --line-w: 30px;
  --line-h: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: .938rem;
  gap: var(--gap);
  font-size: clamp(1.375rem, 1.3096rem + 0.3077vw, 1.625rem);
  text-transform: uppercase;
}
.h1--line {
  --line-w: 30px;
  --line-h: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: .938rem;
  gap: var(--gap);
  font-size: clamp(1.375rem, 1.3096rem + 0.3077vw, 1.625rem);
  text-transform: uppercase;
}
.h2--line {
  --line-w: 30px;
  --line-h: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: .938rem;
  gap: var(--gap);
  font-size: clamp(1.375rem, 1.3096rem + 0.3077vw, 1.625rem);
  text-transform: uppercase;
}
.h3--line {
  --line-w: 30px;
  --line-h: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: .938rem;
  gap: var(--gap);
  font-size: clamp(1.375rem, 1.3096rem + 0.3077vw, 1.625rem);
  text-transform: uppercase;
}
.h4--line {
  --line-w: 30px;
  --line-h: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: .938rem;
  gap: var(--gap);
  font-size: clamp(1.375rem, 1.3096rem + 0.3077vw, 1.625rem);
  text-transform: uppercase;
}
.h5--line {
  --line-w: 30px;
  --line-h: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: .938rem;
  gap: var(--gap);
  font-size: clamp(1.375rem, 1.3096rem + 0.3077vw, 1.625rem);
  text-transform: uppercase;
}
.h6--line {
  --line-w: 30px;
  --line-h: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: .938rem;
  gap: var(--gap);
  font-size: clamp(1.375rem, 1.3096rem + 0.3077vw, 1.625rem);
  text-transform: uppercase;
}
.title-font--line {
  --line-w: 30px;
  --line-h: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: .938rem;
  gap: var(--gap);
  font-size: clamp(1.375rem, 1.3096rem + 0.3077vw, 1.625rem);
  text-transform: uppercase;
}
.title--line {
  --line-w: 30px;
  --line-h: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: .938rem;
  gap: var(--gap);
  font-size: clamp(1.375rem, 1.3096rem + 0.3077vw, 1.625rem);
  text-transform: uppercase;
}
@media all and (min-width: 40em) {
  h1--line,
  h2--line,
  h3--line,
  h4--line,
  h5--line,
  h6--line,
  .h1--line,
  .h2--line,
  .h3--line,
  .h4--line,
  .h5--line,
  .h6--line,
  .title-font--line,
  .title--line {
    --line-w: 40px;
  }
}
h1--line::before {
  content: "";
  height: 4px;
  height: var(--line-h);
  width: 30px;
  width: var(--line-w);
  background-color: #3f8242;
  background-color: var(--category-bg-color);
  margin-top: 0.75rem;
}
@media all and (min-width: 40em){
  h1--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
h2--line::before {
  content: "";
  height: 4px;
  height: var(--line-h);
  width: 30px;
  width: var(--line-w);
  background-color: #3f8242;
  background-color: var(--category-bg-color);
  margin-top: 0.75rem;
}
@media all and (min-width: 40em){
  h2--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
h3--line::before {
  content: "";
  height: 4px;
  height: var(--line-h);
  width: 30px;
  width: var(--line-w);
  background-color: #3f8242;
  background-color: var(--category-bg-color);
  margin-top: 0.75rem;
}
@media all and (min-width: 40em){
  h3--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
h4--line::before {
  content: "";
  height: 4px;
  height: var(--line-h);
  width: 30px;
  width: var(--line-w);
  background-color: #3f8242;
  background-color: var(--category-bg-color);
  margin-top: 0.75rem;
}
@media all and (min-width: 40em){
  h4--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
h5--line::before {
  content: "";
  height: 4px;
  height: var(--line-h);
  width: 30px;
  width: var(--line-w);
  background-color: #3f8242;
  background-color: var(--category-bg-color);
  margin-top: 0.75rem;
}
@media all and (min-width: 40em){
  h5--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
h6--line::before {
  content: "";
  height: 4px;
  height: var(--line-h);
  width: 30px;
  width: var(--line-w);
  background-color: #3f8242;
  background-color: var(--category-bg-color);
  margin-top: 0.75rem;
}
@media all and (min-width: 40em){
  h6--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
.h1--line::before {
  content: "";
  height: 4px;
  height: var(--line-h);
  width: 30px;
  width: var(--line-w);
  background-color: #3f8242;
  background-color: var(--category-bg-color);
  margin-top: 0.75rem;
}
@media all and (min-width: 40em){
  .h1--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
@media all and (min-width: 40em){
  .h1--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
.h2--line::before {
  content: "";
  height: 4px;
  height: var(--line-h);
  width: 30px;
  width: var(--line-w);
  background-color: #3f8242;
  background-color: var(--category-bg-color);
  margin-top: 0.75rem;
}
@media all and (min-width: 40em){
  .h2--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
@media all and (min-width: 40em){
  .h2--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
.h3--line::before {
  content: "";
  height: 4px;
  height: var(--line-h);
  width: 30px;
  width: var(--line-w);
  background-color: #3f8242;
  background-color: var(--category-bg-color);
  margin-top: 0.75rem;
}
@media all and (min-width: 40em){
  .h3--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
@media all and (min-width: 40em){
  .h3--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
.h4--line::before {
  content: "";
  height: 4px;
  height: var(--line-h);
  width: 30px;
  width: var(--line-w);
  background-color: #3f8242;
  background-color: var(--category-bg-color);
  margin-top: 0.75rem;
}
@media all and (min-width: 40em){
  .h4--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
@media all and (min-width: 40em){
  .h4--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
.h5--line::before {
  content: "";
  height: 4px;
  height: var(--line-h);
  width: 30px;
  width: var(--line-w);
  background-color: #3f8242;
  background-color: var(--category-bg-color);
  margin-top: 0.75rem;
}
@media all and (min-width: 40em){
  .h5--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
@media all and (min-width: 40em){
  .h5--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
.h6--line::before {
  content: "";
  height: 4px;
  height: var(--line-h);
  width: 30px;
  width: var(--line-w);
  background-color: #3f8242;
  background-color: var(--category-bg-color);
  margin-top: 0.75rem;
}
@media all and (min-width: 40em){
  .h6--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
@media all and (min-width: 40em){
  .h6--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
.title-font--line::before {
  content: "";
  height: 4px;
  height: var(--line-h);
  width: 30px;
  width: var(--line-w);
  background-color: #3f8242;
  background-color: var(--category-bg-color);
  margin-top: 0.75rem;
}
@media all and (min-width: 40em){
  .title-font--line::before{
  width: 40px;
  width: var(--line-w);
  }
}
.title--line::before {
  content: "";
  height: 4px;
  height: var(--line-h);
  width: 30px;
  width: var(--line-w);
  background-color: #3f8242;
  background-color: var(--category-bg-color);
  margin-top: 0.75rem;
}
@media all and (min-width: 40em){
  .title--line::before{
  width: 40px;
  width: var(--line-w);
  }
}

p,
.paragraph {
  font-size: 1.0625rem;
}

.white-bg {
  background-color: #fff;
  background-color: var(--white);
}

.secondary-bg {
  background-color: #f2eee7;
  background-color: var(--secondary-bg-color);
}

.primary-bg {
  background-color: #21414a;
  background-color: var(--primary-bg-color);
  color: #fff;
  color: var(--white);
}
.primary-bg h1,
.primary-bg h2,
.primary-bg h3,
.primary-bg h4,
.primary-bg h5,
.primary-bg h6,
.primary-bg .h1,
.primary-bg .h2,
.primary-bg .h3,
.primary-bg .h4,
.primary-bg .h5,
.primary-bg .h6,
.primary-bg .title-font,
.primary-bg .title {
  --title-color: currentColor;
}

.container-arrow-bottom {
  background-color: #f2eee7;
  background-color: var(--secondary-bg-color);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  isolation: isolate;
}
.container-arrow-bottom:after {
  content: "";
  background-color: #f2eee7;
  background-color: var(--secondary-bg-color);
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(50%) rotate(45deg);
          transform: translateX(-50%) translateY(50%) rotate(45deg);
  z-index: -1;
}

.thom-form {
  display: block;
  position: relative;
}
.thom-form--loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  pointer-events: none;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  background-color: rgba(255, 255, 255, 0.7);
}
.thom-form--loader .spinner {
  -webkit-animation: none;
          animation: none;
  display: none;
}
.thom-form.loading .thom-form--loader {
  opacity: 1;
  pointer-events: all;
}
.thom-form.loading .thom-form--loader .spinner {
  display: block;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}
.thom-form--response {
  color: #d24c2d;
  color: var(--color-accent);
  margin-bottom: calc(.938rem * 2);
  margin-bottom: calc(var(--pad) * 2);
  position: relative;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.thom-form--response.is-hidden {
  margin-bottom: 0;
  opacity: 0;
}
.thom-form .field-validation-valid {
  display: none;
}
.thom-form fieldset {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #e6ded1;
  border-top: 1px solid var(--border-color);
}
.thom-form__row {
  text-align: left;
}
@media all and (min-width: 40em) {
  .thom-form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: calc(-1 * 25px);
    margin-right: calc(-1 * var(--form-col-gap));
  }
  .thom-form__row .thom-form__row {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.thom-form__row.a-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.thom-form__row.a-h-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.thom-form__row.no-b {
  border: 0;
}
.thom-form__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .938rem;
  gap: var(--pad);
  margin: 0;
  width: 100%;
  padding-bottom: 20px;
  padding-top: 20px;
  margin-right: 25px;
  margin-right: var(--form-col-gap);
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .thom-form__column {
    margin-top: -1px;
  }
}
.thom-form__column.b-t {
  border-top: 1px solid #000;
  border-top: 1px solid var(--black);
}
.thom-form__column.no-b {
  border: 0;
}
.thom-form__column.no-p {
  padding-bottom: 0;
  padding-top: 0;
}
.thom-form__column--full {
  width: 100%;
}
@media all and (min-width: 40em) {
  .thom-form__column.size.aligh-h-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .thom-form__column.size--full {
    width: calc(100% - 0px);
  }
  .thom-form__column.size--10 {
    width: calc(10% - 25px);
    width: calc(10% - var(--form-col-gap));
  }
  .thom-form__column.size--20 {
    width: calc(20% - 25px);
    width: calc(20% - var(--form-col-gap));
  }
  .thom-form__column.size--25 {
    width: calc(25% - 25px);
    width: calc(25% - var(--form-col-gap));
  }
  .thom-form__column.size--30 {
    width: calc(30% - 25px);
    width: calc(30% - var(--form-col-gap));
  }
  .thom-form__column.size--1-3 {
    width: calc(33.3333333333% - 25px);
    width: calc(33.3333333333% - var(--form-col-gap));
  }
  .thom-form__column.size--2-3 {
    width: calc(66.6666666667% - 25px);
    width: calc(66.6666666667% - var(--form-col-gap));
  }
  .thom-form__column.size--1-6 {
    width: calc(16.6666666667% - 25px);
    width: calc(16.6666666667% - var(--form-col-gap));
  }
  .thom-form__column.size--40 {
    width: calc(40% - 25px);
    width: calc(40% - var(--form-col-gap));
  }
  .thom-form__column.size--45 {
    width: calc(45% - 25px);
    width: calc(45% - var(--form-col-gap));
  }
  .thom-form__column.size--50 {
    width: calc(50% - 25px);
    width: calc(50% - var(--form-col-gap));
  }
  .thom-form__column.size--60 {
    width: calc(60% - 25px);
    width: calc(60% - var(--form-col-gap));
  }
  .thom-form__column.size--70 {
    width: calc(70% - 25px);
    width: calc(70% - var(--form-col-gap));
  }
  .thom-form__column.size--80 {
    width: calc(80% - 25px);
    width: calc(80% - var(--form-col-gap));
  }
  .thom-form__column.size--auto {
    width: auto;
    max-width: calc(80% - 25px);
    max-width: calc(80% - var(--form-col-gap));
  }
}
@media all and (min-width: 40em) {
  .thom-form__column.f-direction-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.thom-form__column.a-v-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.thom-form__column.a-h-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.thom-form__msg {
  color: #fff;
  color: var(--white);
  font-size: 14px;
}
.thom-form .has-danger input {
  --form-element-border-color: #d24c2d;
  --form-element-border-color: var(--color-accent);
  border-color: #d24c2d;
  border-color: var(--color-accent);
  -webkit-filter: drop-shadow(0 0.1rem 0.1rem rgba(203, 83, 83, 0.3));
          filter: drop-shadow(0 0.1rem 0.1rem rgba(203, 83, 83, 0.3));
}
.thom-form .has-danger select {
  --form-element-border-color: #d24c2d;
  --form-element-border-color: var(--color-accent);
  border-color: #d24c2d;
  border-color: var(--color-accent);
  -webkit-filter: drop-shadow(0 0.1rem 0.1rem rgba(203, 83, 83, 0.3));
          filter: drop-shadow(0 0.1rem 0.1rem rgba(203, 83, 83, 0.3));
}
.thom-form .has-danger .thom-form__radio--fake:before {
  --form-element-border-color: #d24c2d;
  --form-element-border-color: var(--color-accent);
  border-color: #d24c2d;
  border-color: var(--color-accent);
  -webkit-filter: drop-shadow(0 0.1rem 0.1rem rgba(203, 83, 83, 0.3));
          filter: drop-shadow(0 0.1rem 0.1rem rgba(203, 83, 83, 0.3));
}
.thom-form .has-danger .thom-form__checkbox--fake:before {
  --form-element-border-color: #d24c2d;
  --form-element-border-color: var(--color-accent);
  border-color: #d24c2d;
  border-color: var(--color-accent);
  -webkit-filter: drop-shadow(0 0.1rem 0.1rem rgba(203, 83, 83, 0.3));
          filter: drop-shadow(0 0.1rem 0.1rem rgba(203, 83, 83, 0.3));
}
.thom-form .has-danger .thom-form__file--label {
  --form-element-border-color: #d24c2d;
  --form-element-border-color: var(--color-accent);
  border-color: #d24c2d;
  border-color: var(--color-accent);
  -webkit-filter: drop-shadow(0 0.1rem 0.1rem rgba(203, 83, 83, 0.3));
          filter: drop-shadow(0 0.1rem 0.1rem rgba(203, 83, 83, 0.3));
}
.thom-form .has-danger .pristine-error {
  color: #d24c2d;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 800;
  line-height: normal;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.thom-form__label {
  display: block;
  text-align: left;
}
.thom-form__input-text {
  --input-h: 50px;
  background-color: #f2eee7;
  background-color: var(--form-element-bg-color);
  border: 1px solid #cfc1ab;
  border: 1px solid var(--form-element-border-color);
  border-radius: 9px;
  border-radius: var(--form-element-border-radius);
  color: #494949;
  color: var(--text-color);
  display: block;
  font-size: 16px;
  height: 50px;
  height: var(--input-h);
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: normal;
  padding: 0 .938rem;
  padding: 0 var(--pad);
}
.thom-form__input-textarea {
  --input-h: 50px;
  background-color: #f2eee7;
  background-color: var(--form-element-bg-color);
  border: 1px solid #cfc1ab;
  border: 1px solid var(--form-element-border-color);
  border-radius: 9px;
  border-radius: var(--form-element-border-radius);
  color: #494949;
  color: var(--text-color);
  display: block;
  font-size: 16px;
  height: 50px;
  height: var(--input-h);
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: normal;
  padding: 0 .938rem;
  padding: 0 var(--pad);
}
.thom-form__select {
  --input-h: 50px;
  background-color: #f2eee7;
  background-color: var(--form-element-bg-color);
  border: 1px solid #cfc1ab;
  border: 1px solid var(--form-element-border-color);
  border-radius: 9px;
  border-radius: var(--form-element-border-radius);
  color: #494949;
  color: var(--text-color);
  display: block;
  font-size: 16px;
  height: 50px;
  height: var(--input-h);
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: normal;
  padding: 0 .938rem;
  padding: 0 var(--pad);
}
.thom-form__input-text::-webkit-input-placeholder {
  color: #494949;
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.5;
}
.thom-form__input-text::-moz-placeholder {
  color: #494949;
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.5;
}
.thom-form__input-text:-ms-input-placeholder {
  color: #494949;
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.5;
}
.thom-form__input-text::-ms-input-placeholder {
  color: #494949;
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.5;
}
.thom-form__input-text::placeholder {
  color: #494949;
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.5;
}
.thom-form__input-textarea::-webkit-input-placeholder {
  color: #494949;
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.5;
}
.thom-form__input-textarea::-moz-placeholder {
  color: #494949;
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.5;
}
.thom-form__input-textarea:-ms-input-placeholder {
  color: #494949;
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.5;
}
.thom-form__input-textarea::-ms-input-placeholder {
  color: #494949;
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.5;
}
.thom-form__input-textarea::placeholder {
  color: #494949;
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.5;
}
.thom-form__select::-webkit-input-placeholder {
  color: #494949;
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.5;
}
.thom-form__select::-moz-placeholder {
  color: #494949;
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.5;
}
.thom-form__select:-ms-input-placeholder {
  color: #494949;
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.5;
}
.thom-form__select::-ms-input-placeholder {
  color: #494949;
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.5;
}
.thom-form__select::placeholder {
  color: #494949;
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.5;
}
.thom-form__input-text:focus {
  outline: none;
  -webkit-filter: drop-shadow(0 0 0.3rem hsl(from #21414a h s l/0.05));
          filter: drop-shadow(0 0 0.3rem hsl(from #21414a h s l/0.05));
  -webkit-filter: drop-shadow(0 0 0.3rem hsl(from var(--primary-color) h s l/0.05));
          filter: drop-shadow(0 0 0.3rem hsl(from var(--primary-color) h s l/0.05));
}
.thom-form__input-textarea:focus {
  outline: none;
  -webkit-filter: drop-shadow(0 0 0.3rem hsl(from #21414a h s l/0.05));
          filter: drop-shadow(0 0 0.3rem hsl(from #21414a h s l/0.05));
  -webkit-filter: drop-shadow(0 0 0.3rem hsl(from var(--primary-color) h s l/0.05));
          filter: drop-shadow(0 0 0.3rem hsl(from var(--primary-color) h s l/0.05));
}
.thom-form__select:focus {
  outline: none;
  -webkit-filter: drop-shadow(0 0 0.3rem hsl(from #21414a h s l/0.05));
          filter: drop-shadow(0 0 0.3rem hsl(from #21414a h s l/0.05));
  -webkit-filter: drop-shadow(0 0 0.3rem hsl(from var(--primary-color) h s l/0.05));
          filter: drop-shadow(0 0 0.3rem hsl(from var(--primary-color) h s l/0.05));
}
.thom-form__input-text:focus::-webkit-input-placeholder, .thom-form__input-textarea:focus::-webkit-input-placeholder, .thom-form__select:focus::-webkit-input-placeholder {
  color: #d9d9d9;
}
.thom-form__input-text:focus::-moz-placeholder, .thom-form__input-textarea:focus::-moz-placeholder, .thom-form__select:focus::-moz-placeholder {
  color: #d9d9d9;
}
.thom-form__input-text:focus:-ms-input-placeholder, .thom-form__input-textarea:focus:-ms-input-placeholder, .thom-form__select:focus:-ms-input-placeholder {
  color: #d9d9d9;
}
.thom-form__input-text:focus::-ms-input-placeholder, .thom-form__input-textarea:focus::-ms-input-placeholder, .thom-form__select:focus::-ms-input-placeholder {
  color: #d9d9d9;
}
.thom-form__input-text:focus::placeholder, .thom-form__input-textarea:focus::placeholder, .thom-form__select:focus::placeholder {
  color: #d9d9d9;
}
.thom-form__input-text + .thom-form__checkcont, .thom-form__input-textarea + .thom-form__checkcont, .thom-form__select + .thom-form__checkcont {
  margin-top: 15px;
}
.thom-form input:-webkit-autofill {
  -webkit-text-fill-color: #000;
  -webkit-text-fill-color: var(--black);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
  box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px var(--white) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.thom-form input:-webkit-autofill:hover {
  -webkit-text-fill-color: #000;
  -webkit-text-fill-color: var(--black);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
  box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px var(--white) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.thom-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #000;
  -webkit-text-fill-color: var(--black);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
  box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px var(--white) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.thom-form input:-webkit-autofill:active {
  -webkit-text-fill-color: #000;
  -webkit-text-fill-color: var(--black);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
  box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px var(--white) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.thom-form textarea:-webkit-autofill {
  -webkit-text-fill-color: #000;
  -webkit-text-fill-color: var(--black);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
  box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px var(--white) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.thom-form textarea:-webkit-autofill:hover {
  -webkit-text-fill-color: #000;
  -webkit-text-fill-color: var(--black);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
  box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px var(--white) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.thom-form textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #000;
  -webkit-text-fill-color: var(--black);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
  box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px var(--white) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.thom-form textarea:-webkit-autofill:active {
  -webkit-text-fill-color: #000;
  -webkit-text-fill-color: var(--black);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
  box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px var(--white) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.thom-form select:-webkit-autofill {
  -webkit-text-fill-color: #000;
  -webkit-text-fill-color: var(--black);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
  box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px var(--white) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.thom-form select:-webkit-autofill:hover {
  -webkit-text-fill-color: #000;
  -webkit-text-fill-color: var(--black);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
  box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px var(--white) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.thom-form select:-webkit-autofill:focus {
  -webkit-text-fill-color: #000;
  -webkit-text-fill-color: var(--black);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
  box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px var(--white) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.thom-form select:-webkit-autofill:active {
  -webkit-text-fill-color: #000;
  -webkit-text-fill-color: var(--black);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
  box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px var(--white) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.thom-form input:-moz-read-only {
  background-color: #fff;
  background-color: var(--white);
  color: rgba(#000, 0.7);
  color: rgba(var(--black), 0.7);
}
.thom-form input:read-only {
  background-color: #fff;
  background-color: var(--white);
  color: rgba(#000, 0.7);
  color: rgba(var(--black), 0.7);
}
.thom-form textarea:-moz-read-only {
  background-color: #fff;
  background-color: var(--white);
  color: rgba(#000, 0.7);
  color: rgba(var(--black), 0.7);
}
.thom-form textarea:read-only {
  background-color: #fff;
  background-color: var(--white);
  color: rgba(#000, 0.7);
  color: rgba(var(--black), 0.7);
}
.thom-form__select[multiple] {
  background: none;
  height: auto;
  padding-top: 10px;
}
.thom-form__input-textarea {
  height: 120px;
  resize: none;
}
.thom-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='8' viewBox='0 0 15 8'%3E%3Cpath d='M6.77.778a1,1,0,0,1,1.459,0l5.192,5.538A1,1,0,0,1,12.692,8H2.308a1,1,0,0,1-.73-1.684Z' transform='translate(15 8) rotate(180)' fill='%23cfc1ab'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px);
  background-size: 15px 8px;
  padding-right: 55px;
}
.thom-form .select:after {
  background-image: undefined !important;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(70%, rgba(var(--color-bg-wrapper), 1))) !important;
  background-image: linear-gradient(to right, rgba(var(--color-bg-wrapper), 1) 70%) !important;
  width: 60px;
}
.thom-form__submit {
  font-size: 1.0625rem !important;
  margin-top: 0 !important;
  margin-left: auto;
}
.thom-form__submit--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.thom-form__checkbox {
  --checkbox-size: 24px;
  --checkbox-border-radius: 3px;
  --checkbox-point-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .938rem;
  gap: var(--pad);
  isolation: isolate;
  padding-left: 20px;
  padding-right: 20px;
}
.thom-form__checkbox--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(.938rem * 2);
  gap: calc(var(--pad) * 2);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.thom-form__checkbox--container .pristine-error {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.thom-form__checkbox--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(.938rem * 1);
  gap: calc(var(--pad) * 1);
  position: relative;
  font-size: 14px;
  color: #494949;
  color: var(--text-color);
}
@media all and (min-width: 40em) {
  .thom-form__checkbox--label {
    gap: 20px;
  }
}
.thom-form__checkbox--label a {
  text-decoration: underline;
}
.thom-form__checkbox--original {
  border: 0;
  display: block;
  height: undefined;
  height: var(--checkbox-size);
  width: undefined;
  width: var(--checkbox-size);
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  z-index: 10;
}
.thom-form__checkbox--fake {
  height: undefined;
  height: var(--checkbox-size);
  width: undefined;
  width: var(--checkbox-size);
  position: relative;
  -webkit-box-flex: undefined;
      -ms-flex: undefined;
          flex: undefined;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--checkbox-size);
          flex: 0 0 var(--checkbox-size);
  margin-top: 2px;
}
.thom-form__checkbox--fake:before {
  content: "";
  position: absolute;
  border: 1px solid #cfc1ab;
  border: 1px solid var(--form-element-border-color);
  border-radius: undefined;
  border-radius: var(--checkbox-border-radius);
  background-color: #fff;
  background-color: var(--white);
  z-index: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.thom-form__checkbox--fake:after {
  content: "";
  background-color: #cfc1ab;
  background-color: var(--form-element-border-color);
  border-radius: undefined;
  border-radius: var(--checkbox-border-radius);
  height: undefined;
  height: var(--checkbox-point-size);
  width: undefined;
  width: var(--checkbox-point-size);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
  opacity: 0;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  z-index: 1;
}
.thom-form__checkbox--original:checked ~ .thom-form__checkbox--fake:after {
  opacity: 1;
}
.thom-form__radio {
  --radio-size: 28px;
  --radio-point-size: 12px;
  isolation: isolate;
}
.thom-form__radio--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(.938rem * 2);
  gap: calc(var(--gap) * 2);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .thom-form__radio--container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: .938rem;
    gap: var(--gap);
  }
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .thom-form__radio--container .question {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.thom-form__radio--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: #494949;
  color: var(--text-color);
}
.thom-form__radio--original {
  border: 0;
  display: block;
  height: undefined;
  height: var(--radio-size);
  width: undefined;
  width: var(--radio-size);
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  z-index: 10;
}
.thom-form__radio--fake {
  height: undefined;
  height: var(--radio-size);
  width: undefined;
  width: var(--radio-size);
  position: relative;
  -webkit-box-flex: undefined;
      -ms-flex: undefined;
          flex: undefined;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--radio-size);
          flex: 0 0 var(--radio-size);
}
.thom-form__radio--fake:before {
  content: "";
  position: absolute;
  border: 1px solid #cfc1ab;
  border: 1px solid var(--form-element-border-color);
  border-radius: 50%;
  background-color: #f2eee7;
  background-color: var(--form-element-bg-color);
  z-index: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.thom-form__radio--fake:after {
  content: "";
  background-color: #cfc1ab;
  background-color: var(--form-element-border-color);
  border-radius: 50%;
  height: undefined;
  height: var(--radio-point-size);
  width: undefined;
  width: var(--radio-point-size);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
  opacity: 0;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  z-index: 1;
}
.thom-form__radio--original:checked ~ .thom-form__radio--fake:after {
  opacity: 1;
}
.thom-form__file {
  --file-h: 50px;
  position: relative;
  isolation: isolate;
  padding: 0;
}
.thom-form__file input[type=file] {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.thom-form__file--label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: undefined;
  height: var(--file-h);
  border: 1px solid #e6ded1;
  border: 1px solid var(--border-color);
  border-radius: undefined;
  border-radius: calc(var(--file-h) / 2);
  overflow: hidden;
  cursor: pointer;
}
@media (hover: hover) {
  .thom-form__file--label:hover .thom-form__file--button {
    background-color: hsl(from #a89273 h s calc(l - 5));
  }
  .thom-form__file--label:hover .thom-form__file--name {
    background-color: hsl(from #fff h s calc(l - 2));
    background-color: hsl(from var(--white) h s calc(l - 2));
  }
}
.thom-form__file--button {
  background-color: #a89273;
  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;
  text-align: center;
  color: #fff;
  color: var(--white);
  padding-left: .938rem;
  padding-left: var(--pad);
  padding-right: .938rem;
  padding-right: var(--pad);
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  font-size: 0.875rem;
  white-space: nowrap;
}
@media all and (min-width: 40em) {
  .thom-form__file--button {
    min-width: 145px;
    font-size: 1rem;
  }
}
.thom-form__file--name {
  background-color: #fff;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: .938rem;
  padding-left: var(--pad);
  padding-right: .938rem;
  padding-right: var(--pad);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -ms-hyphens: auto;
      hyphens: auto;
  width: 100%;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.thom-form__file--help {
  font-size: 14px;
}
.thom-form .field-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.thom-form .input-validation-error {
  background-color: #d24c2d;
  background-color: var(--color-accent);
  border-color: #d24c2d;
  border-color: var(--color-accent);
}
.thom-form__checkcont__checkbox.input-validation-error ~ .thom-form__checkcont__label {
  color: #d24c2d;
  color: var(--color-accent);
}
.thom-form__checkcont__checkbox.input-validation-error ~ .thom-form__checkcont__label a {
  color: #d24c2d;
  color: var(--color-accent);
}
.thom-form__checkcont__checkbox.input-validation-error ~ .thom-form__checkcont__customcheckbox {
  border-color: #d24c2d;
  border-color: var(--color-accent);
}
.thom-form__recaptchaCont {
  margin-bottom: calc(clamp(.938rem, 3.241vw + .208rem, 2.5rem) * 2);
  margin-bottom: calc(var(--grid-gap) * 2);
  overflow: hidden;
}
@media all and (min-width: 40em) {
  .thom-form__recaptchaCont {
    margin-bottom: calc(clamp(.938rem, 3.241vw + .208rem, 2.5rem));
    margin-bottom: calc(var(--grid-gap));
  }
}
.thom-form__recaptcha {
  width: 100%;
}
.thom-form__recaptcha > div {
  width: 100%;
}
@media all and (min-width: 40em) {
  .thom-form .mtcaptcha {
    float: right;
  }
}
.thom-form__last {
  display: block;
  margin-bottom: calc(clamp(.938rem, 3.241vw + .208rem, 2.5rem) / 2);
  margin-bottom: calc(var(--grid-gap) / 2);
  padding: 0 calc(clamp(.938rem, 3.241vw + .208rem, 2.5rem) / 2);
  padding: 0 calc(var(--grid-gap) / 2);
  width: 100%;
}
.thom-form__error {
  display: block;
  clear: both;
  margin-left: auto;
  margin-right: auto;
  color: #d24c2d;
  color: var(--color-accent);
  margin-bottom: 20px;
  padding: 0;
}
.thom-form__error::after {
  display: block;
  clear: both;
  content: "";
}
.thom-form .inv-recaptcha-holder {
  position: relative;
  margin-top: 25px;
}
.thom-form .attachments {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.thom-form .attachments--title {
  padding-left: 30px;
  padding-right: 30px;
}
.thom-form .attachments--list--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 30px;
}
.thom-form .attachments--list--item:not(:last-child) {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
}
.thom-form .thom-form--accordion--list .thom-form--accordion--item:last-child {
  border-bottom: 0;
}
.thom-form .thom-form--accordion--item {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  padding-left: 5px;
  padding-right: 5px;
}
.thom-form .thom-form--accordion--item .accordion--title {
  color: #21414a;
  color: var(--primary-color);
  padding-top: 15px;
  padding-bottom: 15px;
}
.thom-form .thom-form--accordion--item .accordion--title .thom-form__radio {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.thom-form .thom-form--accordion--item .accordion--title .thom-form__radio--label {
  gap: 25px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  pointer-events: none;
}
.thom-form .thom-form--accordion--item .accordion--title .thom-form__radio--label span {
  color: #21414a;
  color: var(--primary-color);
}
.thom-form .thom-form--accordion--item .accordion--content {
  padding-left: 53px;
}
.thom-form .thom-form--accordion--item .accordion--content > *:not(:last-child) {
  margin-bottom: .938rem;
  margin-bottom: var(--pad);
}
.thom-form .thom-form--accordion--item .accordion--content .thom-form__checkbox {
  --checkbox-size: 20px;
  --checkbox-border-radius: 4px;
  --checkbox-point-size: 20px;
  padding-left: 0;
  padding-right: 0;
}
.thom-form .thom-form--accordion--item .accordion--content .thom-form__checkbox--label {
  gap: .938rem;
  gap: var(--gap);
}
.thom-form .thom-form--accordion--item .accordion--content .thom-form__checkbox--fake:before {
  background-color: #f8f5f1;
}
.thom-form .thom-form--accordion--item .accordion--content .thom-form__checkbox--fake:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.625' height='9' viewBox='0 0 12.625 9'%3E%3Cpath id='Tracciato_148206' data-name='Tracciato 148206' d='M18.1,9.9l-6.923,6.375L8.325,13.65,6.9,14.963,11.176,18.9l8.349-7.687Z' transform='translate(-6.9 -9.9)' fill='%23fff'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
}
.thom-form .thom-form--accordion--item.active .accordion--content {
  padding-top: 10px;
  padding-bottom: 25px;
}

/**
 * Layout
 */
@media all and (min-width: 40em) {
  .mainWrap {
    min-height: 100svh;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mainWrap > * {
    width: 100%;
  }
  .mainWrap .footer {
    margin-top: auto;
  }
}

.wrapper {
  position: relative;
}

.main {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  position: relative;
  isolation: isolate;
}
.drawer-is-open .main {
  -webkit-transform: translate3d(320px, 0, 0);
          transform: translate3d(320px, 0, 0);
  -webkit-transform: translate3d(var(--menu-mobile-width), 0, 0);
          transform: translate3d(var(--menu-mobile-width), 0, 0);
}
@media all and (min-width: 40em) {
  .drawer-is-open .main {
    -webkit-transform: translate3d(440px, 0, 0);
            transform: translate3d(440px, 0, 0);
    -webkit-transform: translate3d(var(--menu-width), 0, 0);
            transform: translate3d(var(--menu-width), 0, 0);
  }
}
.main--content {
  padding-bottom: calc(.938rem * 6);
  padding-bottom: calc(var(--pad) * 6);
  padding-top: calc(.938rem * 4);
  padding-top: calc(var(--pad) * 4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 4);
  gap: calc(var(--pad) * 4);
}
.main--content--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 2);
  gap: calc(var(--pad) * 2);
}
@media all and (min-width: 40em) {
  .main--content--wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.main--content--aside {
  display: none;
}
.main--content--aside.always-visible {
  display: block;
  margin-bottom: calc(.938rem * 2);
  margin-bottom: calc(var(--pad) * 2);
}
@media all and (min-width: 57.5em) {
  .main--content--aside {
    display: block;
    width: 80%;
    max-width: 245px;
    padding-right: 5px;
    margin-bottom: 0;
  }
}
.main--content--aside__spacer {
  display: none;
}
@media all and (min-width: 57.5em) {
  .main--content--aside__spacer {
    display: block;
    width: 80%;
    max-width: 245px;
    padding-right: 5px;
  }
}
.main--content--aside--menu {
  font-size: 17px;
}
.main--content--aside--menu ul {
  color: #21414a;
  color: var(--primary-color);
}
.main--content--aside--menu ul li.label {
  border-bottom: 2px solid #f2eee7;
  border-bottom: 2px solid var(--secondary-bg-color);
  padding-bottom: .938rem;
  padding-bottom: var(--pad);
  text-transform: uppercase;
}
.main--content--aside--menu ul li:not(.label) {
  padding: .938rem 0;
  padding: var(--pad) 0;
}
.main--content--aside--menu ul li:not(.label) a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.main--content--aside--menu ul li:not(.label) a:before {
  content: "•";
}
@media (hover: hover) {
  .main--content--aside--menu ul li a {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .main--content--aside--menu ul li a:not(.selected):hover {
    color: hsl(from currentColor h s calc(l - 20));
  }
}
.main--content--aside--menu ul li a.selected {
  color: #3f8242;
  color: var(--secondary-color);
}
@media all and (min-width: 40em) {
  .main--content--aside + .main--content--container, .main--content--aside__spacer + .main--content--container {
    padding-left: 0;
    padding-right: 0;
  }
  .main--content--aside + .main--content--container > *:not(.size--full):not(.stores), .main--content--aside__spacer + .main--content--container > *:not(.size--full):not(.stores) {
    max-width: 920px !important;
  }
}
.main--content--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 100%;
}
@media all and (min-width: 40em) {
  .main--content--container {
    padding-left: calc(.938rem * 2);
    padding-left: calc(var(--pad) * 2);
    padding-right: calc(.938rem * 2);
    padding-right: calc(var(--pad) * 2);
  }
  .main--content--container > *:not(.size--full) {
    max-width: 1260px;
  }
}
.main--content.aside--right .main--content--wrap {
  gap: 50px;
}
@media all and (min-width: 40em) {
  .main--content.aside--right .main--content--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media all and (min-width: 57.5em) {
  .main--content.aside--right .main--content--wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
  }
}
@media all and (min-width: 57.5em) {
  .main--content.aside--right .main--content--container {
    padding-right: 0;
  }
}
.main--content.aside--right .main--content--aside {
  display: block;
}
@media all and (min-width: 57.5em) {
  .main--content.aside--right .main--content--aside {
    max-width: 540px;
    padding-right: 0;
  }
}

.max-w {
  --max-w--pad: 20px;
  max-width: calc(87.5rem + clamp(.938rem, 3.241vw + .208rem, 2.5rem) * 2);
  max-width: var(--max-width);
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: .938rem;
  padding-left: var(--pad);
  padding-right: .938rem;
  padding-right: var(--pad);
}
@media all and (min-width: 40em) {
  .max-w {
    --max-w--pad: var(--grid-gap);
  }
  .max-w-no-pad {
    --max-w--pad: 0;
  }
}
.max-w-s {
  --max-w--pad: 20px;
  max-width: calc(60rem + clamp(.938rem, 3.241vw + .208rem, 2.5rem) * 2);
  max-width: var(--max-width-s);
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 20px;
  padding-left: var(--max-w--pad);
  padding-right: 20px;
  padding-right: var(--max-w--pad);
}
@media all and (min-width: 40em){
  .max-w-s{
  padding-right: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  padding-right: var(--max-w--pad);
  }
}
@media all and (min-width: 40em){
  .max-w-s{
  padding-left: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  padding-left: var(--max-w--pad);
  }
}
@media all and (min-width: 40em) {
  .max-w-s {
    --max-w--pad: var(--grid-gap);
  }
  .max-w-s-no-pad {
    --max-w--pad: 0;
  }
}
.max-w-xs {
  --max-w--pad: 20px;
  max-width: calc(53.75rem + clamp(.938rem, 3.241vw + .208rem, 2.5rem) * 2);
  max-width: var(--max-width-xs);
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 20px;
  padding-left: var(--max-w--pad);
  padding-right: 20px;
  padding-right: var(--max-w--pad);
}
@media all and (min-width: 40em){
  .max-w-xs{
  padding-right: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  padding-right: var(--max-w--pad);
  }
}
@media all and (min-width: 40em){
  .max-w-xs{
  padding-left: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  padding-left: var(--max-w--pad);
  }
}
@media all and (min-width: 40em) {
  .max-w-xs {
    --max-w--pad: var(--grid-gap);
  }
  .max-w-xs-no-pad {
    --max-w--pad: 0;
  }
}
.max-w-xxs {
  --max-w--pad: 20px;
  max-width: calc(40rem + clamp(.938rem, 3.241vw + .208rem, 2.5rem) * 2);
  max-width: var(--max-width-xxs);
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 20px;
  padding-left: var(--max-w--pad);
  padding-right: 20px;
  padding-right: var(--max-w--pad);
}
@media all and (min-width: 40em){
  .max-w-xxs{
  padding-right: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  padding-right: var(--max-w--pad);
  }
}
@media all and (min-width: 40em){
  .max-w-xxs{
  padding-left: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  padding-left: var(--max-w--pad);
  }
}
@media all and (min-width: 40em) {
  .max-w-xxs {
    --max-w--pad: var(--grid-gap);
  }
  .max-w-xxs-no-pad {
    --max-w--pad: 0;
  }
}
.max-w-md {
  --max-w--pad: 20px;
  max-width: calc(68.75rem + clamp(.938rem, 3.241vw + .208rem, 2.5rem) * 2);
  max-width: var(--max-width-md);
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 20px;
  padding-left: var(--max-w--pad);
  padding-right: 20px;
  padding-right: var(--max-w--pad);
}
@media all and (min-width: 40em){
  .max-w-md{
  padding-right: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  padding-right: var(--max-w--pad);
  }
}
@media all and (min-width: 40em){
  .max-w-md{
  padding-left: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  padding-left: var(--max-w--pad);
  }
}
@media all and (min-width: 40em) {
  .max-w-md {
    --max-w--pad: var(--grid-gap);
  }
  .max-w-md-no-pad {
    --max-w--pad: 0;
  }
}
.max-w-l {
  --max-w--pad: 20px;
  max-width: calc(80rem);
  max-width: var(--max-width-l);
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  padding-left: var(--grid-gap);
  padding-right: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  padding-right: var(--grid-gap);
}
@media all and (min-width: 40em) {
  .max-w-l {
    --max-w--pad: var(--grid-gap);
  }
  .max-w-l-no-pad {
    --max-w--pad: 0;
  }
}
.max-w-xl {
  --max-w--pad: 20px;
  max-width: 102.5rem;
  max-width: var(--max-width-xl);
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 20px;
  padding-left: var(--max-w--pad);
  padding-right: 20px;
  padding-right: var(--max-w--pad);
}
@media all and (min-width: 40em){
  .max-w-xl{
  padding-right: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  padding-right: var(--max-w--pad);
  }
}
@media all and (min-width: 40em){
  .max-w-xl{
  padding-left: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  padding-left: var(--max-w--pad);
  }
}
@media all and (min-width: 40em) {
  .max-w-xl {
    --max-w--pad: var(--grid-gap);
  }
  .max-w-xl-no-pad {
    --max-w--pad: 0;
  }
}
.max-w-xxl {
  --max-w--pad: 20px;
  max-width: 115rem;
  max-width: var(--max-width-xxl);
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 20px;
  padding-left: var(--max-w--pad);
  padding-right: 20px;
  padding-right: var(--max-w--pad);
}
@media all and (min-width: 40em){
  .max-w-xxl{
  padding-right: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  padding-right: var(--max-w--pad);
  }
}
@media all and (min-width: 40em){
  .max-w-xxl{
  padding-left: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  padding-left: var(--max-w--pad);
  }
}
@media all and (min-width: 40em) {
  .max-w-xxl {
    --max-w--pad: var(--grid-gap);
  }
  .max-w-xxl-no-pad {
    --max-w--pad: 0;
  }
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .max-w-no-pad-s {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

*:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-underline {
  text-decoration: underline;
}

.sticky {
  position: sticky;
  top: calc(80px + 30px);
  top: calc(var(--header-height) + 30px);
  max-height: calc(100vh - 80px - 60px);
  max-height: calc(100vh - var(--header-height) - 60px);
  overflow: auto;
}

.spacer-h__20 {
  height: 20px;
}

img[data-src],
img[data-srcset] {
  display: block;
}

img:not([src]) {
  visibility: hidden;
}

/**
* Replace for Lightgallery plugin
*/
@font-face {
  font-family: "lg";
  src: url("../fonts/lg.woff2?io9a6k") format("woff2"), url("../fonts/lg.ttf?io9a6k") format("truetype"), url("../fonts/lg.woff?io9a6k") format("woff"), url("../fonts/lg.svg?io9a6k#lg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.lg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "lg" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-container {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.lg-next,
.lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1084;
  outline: none;
  border: none;
}

.lg-next.disabled,
.lg-prev.disabled {
  opacity: 0 !important;
  cursor: default;
}

.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
  color: #fff;
}

.lg-single-item .lg-next,
.lg-single-item .lg-prev {
  display: none;
}

.lg-next {
  right: 20px;
}

.lg-next:before {
  content: "\e095";
}

.lg-prev {
  left: 20px;
}

.lg-prev:after {
  content: "\e094";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.lg-media-overlap .lg-toolbar {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  will-change: color;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.lg-toolbar .lg-icon.lg-icon-18 {
  font-size: 18px;
}

.lg-toolbar .lg-icon:hover {
  color: #fff;
}

.lg-toolbar .lg-close:after {
  content: "\e070";
}

.lg-toolbar .lg-maximize {
  font-size: 22px;
}

.lg-toolbar .lg-maximize:after {
  content: "\e90a";
}

.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out 0s;
  transition: opacity 0.2s ease-out 0s;
}

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}

.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

.lg-sub-html a {
  color: inherit;
}

.lg-sub-html a:hover {
  text-decoration: underline;
}

.lg-media-overlap .lg-sub-html {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.lg-item .lg-sub-html {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-error-msg {
  font-size: 14px;
  color: #999;
}

.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle;
}

.lg-closing .lg-toolbar,
.lg-closing .lg-prev,
.lg-closing .lg-next,
.lg-closing .lg-sub-html {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -webkit-transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-media-cont {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-media-cont {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.lg-icon:focus-visible {
  color: #fff;
  border-radius: 3px;
  outline: 1px dashed rgba(255, 255, 255, 0.6);
}

.lg-toolbar .lg-icon:focus-visible {
  border-radius: 8px;
  outline-offset: -5px;
}

.lg-group:after {
  content: "";
  display: table;
  clear: both;
}

.lg-container {
  display: none;
  outline: none;
}

.lg-container.lg-show {
  display: block;
}

.lg-on {
  scroll-behavior: unset;
}

.lg-overlay-open {
  overflow: hidden;
}

.lg-toolbar,
.lg-prev,
.lg-next,
.lg-pager-outer,
.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-show-in .lg-toolbar,
.lg-show-in .lg-prev,
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer {
  opacity: 1;
}

.lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1;
}

.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0.001;
  outline: none;
  will-change: auto;
  overflow: hidden;
  -webkit-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.lg-outer.lg-zoom-from-image {
  opacity: 1;
}

.lg-outer.lg-visible {
  opacity: 1;
}

.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.lg-outer .lg-inner {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
  white-space: nowrap;
}

.lg-outer .lg-item {
  display: none !important;
}

.lg-outer .lg-item:not(.lg-start-end-progress) {
  background: url("../img/loading.gif") no-repeat scroll center center transparent;
}

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.lg-outer .lg-img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  font-size: 0;
}

.lg-outer .lg-item.lg-complete {
  background-image: none;
}

.lg-outer .lg-item.lg-current {
  z-index: 1060;
}

.lg-outer .lg-object {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
}

.lg-outer .lg-empty-html.lg-sub-html,
.lg-outer .lg-empty-html .lg-sub-html {
  display: none;
}

.lg-outer.lg-hide-download .lg-download {
  opacity: 0.75;
  pointer-events: none;
}

.lg-outer .lg-first-slide .lg-dummy-img {
  position: absolute;
  top: 50%;
  left: 50%;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
  opacity: 1;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-out 0.15s;
  transition: opacity 0.2s ease-out 0.15s;
}

.lg-outer .lg-media-cont {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.lg-outer .lg-media-cont .lg-object {
  width: 100% !important;
  height: 100% !important;
}

.lg-outer .lg-has-iframe .lg-media-cont {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  will-change: auto;
  -webkit-transition: opacity 333ms ease-in 0s;
  transition: opacity 333ms ease-in 0s;
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
  opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-container {
  display: none;
}

.lg-container.lg-show {
  display: block;
}

.lg-container.lg-dragging-vertical .lg-backdrop {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
  position: absolute;
}

.lg-inline .lg-backdrop {
  z-index: 1;
}

.lg-inline .lg-outer {
  z-index: 2;
}

.lg-inline .lg-maximize:after {
  content: "\e909";
}

.lg-components {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.35s ease-out 0s;
  transition: -webkit-transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s, -webkit-transform 0.35s ease-out 0s;
  z-index: 1080;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-css3.lg-zoom-in .lg-item {
  opacity: 0;
}

.lg-css3.lg-zoom-in .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(1.3, 1.3, 1.3);
  transform: scale3d(1.3, 1.3, 1.3);
}

.lg-css3.lg-zoom-in .lg-item.lg-next-slide {
  -webkit-transform: scale3d(1.3, 1.3, 1.3);
  transform: scale3d(1.3, 1.3, 1.3);
}

.lg-css3.lg-zoom-in .lg-item.lg-current {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-css3.lg-zoom-in .lg-item.lg-prev-slide, .lg-css3.lg-zoom-in .lg-item.lg-next-slide, .lg-css3.lg-zoom-in .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-lollipop-rev .lg-item {
  opacity: 0;
}

.lg-css3.lg-lollipop-rev .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(0, 0, 0) scale(0.5);
  transform: translate3d(0, 0, 0) scale(0.5);
}

.lg-css3.lg-lollipop-rev .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-lollipop-rev .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-lollipop-rev .lg-item.lg-prev-slide, .lg-css3.lg-lollipop-rev .lg-item.lg-next-slide, .lg-css3.lg-lollipop-rev .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide-skew-ver-cross .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-prev-slide {
  -webkit-transform: skew(0deg, 20deg) translate3d(0, -100%, 0px);
  transform: skew(0deg, 20deg) translate3d(0, -100%, 0px);
}

.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-next-slide {
  -webkit-transform: skew(0deg, 20deg) translate3d(0, 100%, 0px);
  transform: skew(0deg, 20deg) translate3d(0, 100%, 0px);
}

.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-current {
  -webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  opacity: 1;
}

.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-ver-cross .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-ver-cross .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-lollipop .lg-item {
  opacity: 0;
}

.lg-css3.lg-lollipop .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-lollipop .lg-item.lg-next-slide {
  -webkit-transform: translate3d(0, 0, 0) scale(0.5);
  transform: translate3d(0, 0, 0) scale(0.5);
}

.lg-css3.lg-lollipop .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-lollipop .lg-item.lg-prev-slide, .lg-css3.lg-lollipop .lg-item.lg-next-slide, .lg-css3.lg-lollipop .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide-skew-ver-rev .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-prev-slide {
  -webkit-transform: skew(-60deg, 0deg) translate3d(0, -100%, 0px);
  transform: skew(-60deg, 0deg) translate3d(0, -100%, 0px);
}

.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-next-slide {
  -webkit-transform: skew(-60deg, 0deg) translate3d(0, 100%, 0px);
  transform: skew(-60deg, 0deg) translate3d(0, 100%, 0px);
}

.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-current {
  -webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  opacity: 1;
}

.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-ver-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-ver-rev .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-rotate-rev .lg-item {
  opacity: 0;
}

.lg-css3.lg-rotate-rev .lg-item.lg-prev-slide {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.lg-css3.lg-rotate-rev .lg-item.lg-next-slide {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.lg-css3.lg-rotate-rev .lg-item.lg-current {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  opacity: 1;
}

.lg-css3.lg-rotate-rev .lg-item.lg-prev-slide, .lg-css3.lg-rotate-rev .lg-item.lg-next-slide, .lg-css3.lg-rotate-rev .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide-skew-ver .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-skew-ver .lg-item.lg-prev-slide {
  -webkit-transform: skew(60deg, 0deg) translate3d(0, -100%, 0px);
  transform: skew(60deg, 0deg) translate3d(0, -100%, 0px);
}

.lg-css3.lg-slide-skew-ver .lg-item.lg-next-slide {
  -webkit-transform: skew(60deg, 0deg) translate3d(0, 100%, 0px);
  transform: skew(60deg, 0deg) translate3d(0, 100%, 0px);
}

.lg-css3.lg-slide-skew-ver .lg-item.lg-current {
  -webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  opacity: 1;
}

.lg-css3.lg-slide-skew-ver .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-ver .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-ver .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-rotate .lg-item {
  opacity: 0;
}

.lg-css3.lg-rotate .lg-item.lg-prev-slide {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.lg-css3.lg-rotate .lg-item.lg-next-slide {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.lg-css3.lg-rotate .lg-item.lg-current {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  opacity: 1;
}

.lg-css3.lg-rotate .lg-item.lg-prev-slide, .lg-css3.lg-rotate .lg-item.lg-next-slide, .lg-css3.lg-rotate .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide-skew .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-skew .lg-item.lg-prev-slide {
  -webkit-transform: skew(20deg, 0deg) translate3d(-100%, 0%, 0px);
  transform: skew(20deg, 0deg) translate3d(-100%, 0%, 0px);
}

.lg-css3.lg-slide-skew .lg-item.lg-next-slide {
  -webkit-transform: skew(20deg, 0deg) translate3d(100%, 0%, 0px);
  transform: skew(20deg, 0deg) translate3d(100%, 0%, 0px);
}

.lg-css3.lg-slide-skew .lg-item.lg-current {
  -webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  opacity: 1;
}

.lg-css3.lg-slide-skew .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew .lg-item.lg-next-slide, .lg-css3.lg-slide-skew .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-scale-up .lg-item {
  opacity: 0;
}

.lg-css3.lg-scale-up .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
  transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
}

.lg-css3.lg-scale-up .lg-item.lg-next-slide {
  -webkit-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
  transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
}

.lg-css3.lg-scale-up .lg-item.lg-current {
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-scale-up .lg-item.lg-prev-slide, .lg-css3.lg-scale-up .lg-item.lg-next-slide, .lg-css3.lg-scale-up .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide-vertical-growth .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-vertical-growth .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, -150%, 0);
  transform: scale3d(0.5, 0.5, 0.5) translate3d(0, -150%, 0);
}

.lg-css3.lg-slide-vertical-growth .lg-item.lg-next-slide {
  -webkit-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, 150%, 0);
  transform: scale3d(0.5, 0.5, 0.5) translate3d(0, 150%, 0);
}

.lg-css3.lg-slide-vertical-growth .lg-item.lg-current {
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide-vertical-growth .lg-item.lg-prev-slide, .lg-css3.lg-slide-vertical-growth .lg-item.lg-next-slide, .lg-css3.lg-slide-vertical-growth .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide-circular-vertical .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-circular-vertical .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(0, 0, 0) translate3d(0, -100%, 0);
  transform: scale3d(0, 0, 0) translate3d(0, -100%, 0);
}

.lg-css3.lg-slide-circular-vertical .lg-item.lg-next-slide {
  -webkit-transform: scale3d(0, 0, 0) translate3d(0, 100%, 0);
  transform: scale3d(0, 0, 0) translate3d(0, 100%, 0);
}

.lg-css3.lg-slide-circular-vertical .lg-item.lg-current {
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide-circular-vertical .lg-item.lg-prev-slide, .lg-css3.lg-slide-circular-vertical .lg-item.lg-next-slide, .lg-css3.lg-slide-circular-vertical .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide-vertical .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-vertical .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.lg-css3.lg-slide-vertical .lg-item.lg-next-slide {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.lg-css3.lg-slide-vertical .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide-vertical .lg-item.lg-prev-slide, .lg-css3.lg-slide-vertical .lg-item.lg-next-slide, .lg-css3.lg-slide-vertical .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide-circular .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-circular .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide-circular .lg-item.lg-next-slide {
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.lg-css3.lg-slide-circular .lg-item.lg-current {
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide-circular .lg-item.lg-prev-slide, .lg-css3.lg-slide-circular .lg-item.lg-next-slide, .lg-css3.lg-slide-circular .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-soft-zoom .lg-item {
  opacity: 0;
}

.lg-css3.lg-soft-zoom .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.lg-css3.lg-soft-zoom .lg-item.lg-next-slide {
  -webkit-transform: scale3d(0.9, 0.9, 0.9);
  transform: scale3d(0.9, 0.9, 0.9);
}

.lg-css3.lg-soft-zoom .lg-item.lg-current {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-css3.lg-soft-zoom .lg-item.lg-prev-slide, .lg-css3.lg-soft-zoom .lg-item.lg-next-slide, .lg-css3.lg-soft-zoom .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide-skew-cross-rev .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-prev-slide {
  -webkit-transform: skew(0deg, -60deg) translate3d(-100%, 0%, 0px);
  transform: skew(0deg, -60deg) translate3d(-100%, 0%, 0px);
}

.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-next-slide {
  -webkit-transform: skew(0deg, -60deg) translate3d(100%, 0%, 0px);
  transform: skew(0deg, -60deg) translate3d(100%, 0%, 0px);
}

.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-current {
  -webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  opacity: 1;
}

.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-cross-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-cross-rev .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-tube .lg-item {
  opacity: 0;
}

.lg-css3.lg-tube .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(1, 0, 1) translate3d(-100%, 0, 0);
  transform: scale3d(1, 0, 1) translate3d(-100%, 0, 0);
}

.lg-css3.lg-tube .lg-item.lg-next-slide {
  -webkit-transform: scale3d(1, 0, 1) translate3d(100%, 0, 0);
  transform: scale3d(1, 0, 1) translate3d(100%, 0, 0);
}

.lg-css3.lg-tube .lg-item.lg-current {
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-tube .lg-item.lg-prev-slide, .lg-css3.lg-tube .lg-item.lg-next-slide, .lg-css3.lg-tube .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide-skew-cross .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-skew-cross .lg-item.lg-prev-slide {
  -webkit-transform: skew(0deg, 60deg) translate3d(-100%, 0%, 0px);
  transform: skew(0deg, 60deg) translate3d(-100%, 0%, 0px);
}

.lg-css3.lg-slide-skew-cross .lg-item.lg-next-slide {
  -webkit-transform: skew(0deg, 60deg) translate3d(100%, 0%, 0px);
  transform: skew(0deg, 60deg) translate3d(100%, 0%, 0px);
}

.lg-css3.lg-slide-skew-cross .lg-item.lg-current {
  -webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  opacity: 1;
}

.lg-css3.lg-slide-skew-cross .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-cross .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-cross .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-zoom-in-big .lg-item {
  opacity: 0;
}

.lg-css3.lg-zoom-in-big .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(2, 2, 2);
  transform: scale3d(2, 2, 2);
}

.lg-css3.lg-zoom-in-big .lg-item.lg-next-slide {
  -webkit-transform: scale3d(2, 2, 2);
  transform: scale3d(2, 2, 2);
}

.lg-css3.lg-zoom-in-big .lg-item.lg-current {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-css3.lg-zoom-in-big .lg-item.lg-prev-slide, .lg-css3.lg-zoom-in-big .lg-item.lg-next-slide, .lg-css3.lg-zoom-in-big .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide-skew-only-rev .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-skew-only-rev .lg-item.lg-prev-slide {
  -webkit-transform: skew(-10deg, 0deg);
  transform: skew(-10deg, 0deg);
}

.lg-css3.lg-slide-skew-only-rev .lg-item.lg-next-slide {
  -webkit-transform: skew(-10deg, 0deg);
  transform: skew(-10deg, 0deg);
}

.lg-css3.lg-slide-skew-only-rev .lg-item.lg-current {
  -webkit-transform: skew(0deg, 0deg);
  transform: skew(0deg, 0deg);
  opacity: 1;
}

.lg-css3.lg-slide-skew-only-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-only-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-only-rev .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-zoom-in-out .lg-item {
  opacity: 0;
}

.lg-css3.lg-zoom-in-out .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(2, 2, 2);
  transform: scale3d(2, 2, 2);
}

.lg-css3.lg-zoom-in-out .lg-item.lg-next-slide {
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
}

.lg-css3.lg-zoom-in-out .lg-item.lg-current {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-css3.lg-zoom-in-out .lg-item.lg-prev-slide, .lg-css3.lg-zoom-in-out .lg-item.lg-next-slide, .lg-css3.lg-zoom-in-out .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide-skew-only-y-rev .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-prev-slide {
  -webkit-transform: skew(0deg, -10deg);
  transform: skew(0deg, -10deg);
}

.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-next-slide {
  -webkit-transform: skew(0deg, -10deg);
  transform: skew(0deg, -10deg);
}

.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-current {
  -webkit-transform: skew(0deg, 0deg);
  transform: skew(0deg, 0deg);
  opacity: 1;
}

.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide-skew-only-y .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-skew-only-y .lg-item.lg-prev-slide {
  -webkit-transform: skew(0deg, 10deg);
  transform: skew(0deg, 10deg);
}

.lg-css3.lg-slide-skew-only-y .lg-item.lg-next-slide {
  -webkit-transform: skew(0deg, 10deg);
  transform: skew(0deg, 10deg);
}

.lg-css3.lg-slide-skew-only-y .lg-item.lg-current {
  -webkit-transform: skew(0deg, 0deg);
  transform: skew(0deg, 0deg);
  opacity: 1;
}

.lg-css3.lg-slide-skew-only-y .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-only-y .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-only-y .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-zoom-out-big .lg-item {
  opacity: 0;
}

.lg-css3.lg-zoom-out-big .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
}

.lg-css3.lg-zoom-out-big .lg-item.lg-next-slide {
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
}

.lg-css3.lg-zoom-out-big .lg-item.lg-current {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-css3.lg-zoom-out-big .lg-item.lg-prev-slide, .lg-css3.lg-zoom-out-big .lg-item.lg-next-slide, .lg-css3.lg-zoom-out-big .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide-skew-only .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-skew-only .lg-item.lg-prev-slide {
  -webkit-transform: skew(10deg, 0deg);
  transform: skew(10deg, 0deg);
}

.lg-css3.lg-slide-skew-only .lg-item.lg-next-slide {
  -webkit-transform: skew(10deg, 0deg);
  transform: skew(10deg, 0deg);
}

.lg-css3.lg-slide-skew-only .lg-item.lg-current {
  -webkit-transform: skew(0deg, 0deg);
  transform: skew(0deg, 0deg);
  opacity: 1;
}

.lg-css3.lg-slide-skew-only .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-only .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-only .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-zoom-out-in .lg-item {
  opacity: 0;
}

.lg-css3.lg-zoom-out-in .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
}

.lg-css3.lg-zoom-out-in .lg-item.lg-next-slide {
  -webkit-transform: scale3d(2, 2, 2);
  transform: scale3d(2, 2, 2);
}

.lg-css3.lg-zoom-out-in .lg-item.lg-current {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-css3.lg-zoom-out-in .lg-item.lg-prev-slide, .lg-css3.lg-zoom-out-in .lg-item.lg-next-slide, .lg-css3.lg-zoom-out-in .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide-skew-rev .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-skew-rev .lg-item.lg-prev-slide {
  -webkit-transform: skew(-20deg, 0deg) translate3d(-100%, 0%, 0px);
  transform: skew(-20deg, 0deg) translate3d(-100%, 0%, 0px);
}

.lg-css3.lg-slide-skew-rev .lg-item.lg-next-slide {
  -webkit-transform: skew(-20deg, 0deg) translate3d(100%, 0%, 0px);
  transform: skew(-20deg, 0deg) translate3d(100%, 0%, 0px);
}

.lg-css3.lg-slide-skew-rev .lg-item.lg-current {
  -webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  opacity: 1;
}

.lg-css3.lg-slide-skew-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-rev .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-zoom-out .lg-item {
  opacity: 0;
}

.lg-css3.lg-zoom-out .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(0.7, 0.7, 0.7);
  transform: scale3d(0.7, 0.7, 0.7);
}

.lg-css3.lg-zoom-out .lg-item.lg-next-slide {
  -webkit-transform: scale3d(0.7, 0.7, 0.7);
  transform: scale3d(0.7, 0.7, 0.7);
}

.lg-css3.lg-zoom-out .lg-item.lg-current {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-css3.lg-zoom-out .lg-item.lg-prev-slide, .lg-css3.lg-zoom-out .lg-item.lg-next-slide, .lg-css3.lg-zoom-out .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide-skew-ver-cross-rev .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-prev-slide {
  -webkit-transform: skew(0deg, -20deg) translate3d(0, -100%, 0px);
  transform: skew(0deg, -20deg) translate3d(0, -100%, 0px);
}

.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-next-slide {
  -webkit-transform: skew(0deg, -20deg) translate3d(0, 100%, 0px);
  transform: skew(0deg, -20deg) translate3d(0, 100%, 0px);
}

.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-current {
  -webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  opacity: 1;
}

.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-medium-zoom-item {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.lg-medium-zoom .lg-outer {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.lg-medium-zoom .lg-outer.lg-grab img.lg-object {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.lg-medium-zoom .lg-outer.lg-grabbing img.lg-object {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

/**
 * Links
 */
a {
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

.flip > * {
  pointer-events: none;
}
.flip--wrap {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  will-change: transform;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.flip--wrap:after {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transform: rotateX(90deg) rotateY(180deg) rotateZ(180deg) translateY(100%);
          transform: rotateX(90deg) rotateY(180deg) rotateZ(180deg) translateY(100%);
  opacity: 1;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  z-index: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.flip--wrap .over {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transform: rotateX(90deg) rotateY(180deg) rotateZ(180deg) translateY(100%);
          transform: rotateX(90deg) rotateY(180deg) rotateZ(180deg) translateY(100%);
  opacity: 1;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  z-index: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.flip--wrap .over span {
  display: inline;
  color: lightgrey;
}
.flip--wrap span,
.flip--wrap .default {
  display: block;
  position: relative;
}
.flip--wrap .default span {
  display: inline-block;
}
@media screen and (prefers-reduced-motion: no-preference) and (hover: hover) and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  .flip:not(.notHover):hover .flip--wrap {
    -webkit-transform: translateY(-50%) rotateX(90deg) translateZ(0) scale(1);
            transform: translateY(-50%) rotateX(90deg) translateZ(0) scale(1);
  }
  .flip:not(.notHover):hover .flip--wrap:after,
  .flip:not(.notHover):hover .flip--wrap .over {
    -webkit-transform: rotateX(90deg) rotateY(180deg) rotateZ(180deg) translateY(100%) translateZ(0) scale(1);
            transform: rotateX(90deg) rotateY(180deg) rotateZ(180deg) translateY(100%) translateZ(0) scale(1);
  }
}

.link {
  cursor: pointer;
}
@media (hover: hover) {
  .link {
    -webkit-transition: all 0.35s ease-in-out !important;
    transition: all 0.35s ease-in-out !important;
  }
  .link:hover {
    opacity: 0.7 !important;
  }
}

.underline {
  width: 100%;
  background-image: linear-gradient(transparent calc(100% - 10px), currentColor 10px);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  -webkit-transition: background-size 0.2s;
  transition: background-size 0.2s;
}
.underline-reverse {
  background-size: 100% 2px;
}

@media (hover: hover) {
  *:hover > .underline,
  a:hover .underline {
    background-size: 100% 2px;
  }
  *:hover > .underline-reverse,
  a:hover .underline-reverse {
    background-size: 0% 2px;
  }
}
/**
 * Lists
 */
ol,
ul,
dl {
  margin-top: 0;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1rem;
  margin-top: 0.5rem;
}

dt {
  font-weight: bold;
}

/**
 * Media
 */
img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

svg {
  display: block;
}

.notwine {
  width: 30%;
  position: relative;
  left: -130px;
}

img[width],
img[height] {
  max-width: none;
}

figure {
  margin: 0;
}

object,
iframe,
embed,
canvas,
video,
audio {
  max-width: 100%;
}

/**
 * Paragraph
 */
p a,
.paragraph a {
  text-decoration: underline;
}
p > a,
.paragraph > a {
  text-decoration: none;
}

/**
 * Social
 */
.social {
  display: block;
}
.social--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/**
 * Spinner
 * https://cssloaders.github.io/
 */
.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 2000;
  left: 0;
  top: 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;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  opacity: 0;
  -webkit-transition: all 0.35s 0.35s linear;
  transition: all 0.35s 0.35s linear;
  pointer-events: none;
}
.loader .spinner {
  -webkit-animation: none;
          animation: none;
}
.loader.show {
  opacity: 1;
  pointer-events: all;
}
.loader.show .spinner {
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}

.spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #21414a;
  border-top: 3px solid var(--primary-color);
  border-right: 3px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/**
 * Tables
 */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.advantages--list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 50px;
}
@media all and (min-width: 40em) {
  .advantages--list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.advantages--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.advantages--item .ico {
  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-radius: 50%;
  background-color: #f2eee7;
  background-color: var(--secondary-bg-color);
  width: 40px;
  aspect-ratio: 1/1;
}
.advantages--item span {
  color: #21414a;
  color: var(--primary-color);
}

.article {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.article p a {
  color: #3f8242;
  color: var(--secondary-color);
  text-decoration: underline;
}
@media (hover: hover) {
  .article p a {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .article p a:hover {
    color: hsl(from #3f8242 h s calc(l - 20));
    color: hsl(from var(--secondary-color) h s calc(l - 20));
  }
}
@media all and (min-width: 40em) {
  .article--horizontal .article--container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .article--horizontal .article--container > * {
    width: 50%;
    max-width: 50%;
    overflow: hidden;
  }
}
@media all and (min-width: 57.5em) {
  .article--horizontal .article--container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.article--horizontal .article--container .image {
  margin-bottom: 0 !important;
}
.article--horizontal .article--container .text {
  height: auto !important;
}
.article--text {
  padding-bottom: .938rem !important;
  padding-bottom: var(--pad) !important;
  padding-top: .938rem;
  padding-top: var(--pad);
  margin-top: calc(-1 * .938rem * 3);
  margin-top: calc(-1 * var(--gap) * 3);
}
.article .col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 2);
  gap: calc(var(--gap) * 2);
}
@media all and (min-width: 40em) {
  .article .col-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .article .col-2 > * {
    width: 50%;
    max-width: 50%;
    overflow: hidden;
  }
}
@media only screen and (min-width: 920px) and (max-width: 1150px) {
  .article .col-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .article .col-2 > * {
    width: 100%;
    max-width: none;
  }
}
.article .col-2 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 2);
  gap: calc(var(--gap) * 2);
}
.article .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .938rem;
  gap: var(--pad);
  height: 100%;
}
.article .text--flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: calc(.938rem * 2);
  gap: calc(var(--pad) * 2);
}
.article .text--flex > * {
  width: 50%;
  min-width: 50%;
}
.article .text p a {
  text-decoration: none;
  color: inherit;
}
.article .data {
  color: #21414a;
  color: var(--primary-color);
}
.article .sign {
  color: #21414a;
  color: var(--primary-color);
}
.article .tags {
  --tag-border-size: 2px;
  --tag-color: #21414a;
  --tag-color: var(--primary-color);
  --tag-bg-color: transparent;
  --tag-border-color: #21414a;
  --tag-border-color: var(--tag-color);
  --tag-height: 30px;
  --tag-font-size: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: .938rem;
  gap: var(--pad);
}
.article .tags .tag {
  background-color: transparent;
  background-color: var(--tag-bg-color);
  color: #21414a;
  color: var(--tag-color);
  border: 2px solid #21414a;
  border: var(--tag-border-size) solid var(--tag-border-color);
  border-radius: calc(30px / 2);
  border-radius: calc(var(--tag-height) / 2);
  height: 30px;
  height: var(--tag-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 11px;
  font-size: var(--tag-font-size);
  font-weight: 900;
  line-height: normal;
  padding-left: 20px;
  padding-right: 20px;
  text-transform: uppercase;
}
@media (hover: hover) {
  .article .tags .tag[href] {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .article .tags .tag[href]:hover {
    background-color: #21414a;
    background-color: var(--primary-bg-color);
    color: #fff;
    color: var(--white);
  }
}
.article .tags .tag.evidence {
  --tag-bg-color: var(--primary-bg-color);
  --tag-color: var(--white);
}
.article * + .tags {
  padding-top: .938rem;
  padding-top: var(--pad);
}
.article--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 2);
  gap: calc(var(--gap) * 2);
}
.article--container .btn {
  margin-top: 10px;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}
.article ol:not([class]) li {
  font-size: 1.0625rem;
  margin-bottom: .938rem;
  margin-bottom: var(--pad);
  padding-left: 1rem;
  position: relative;
}
.article ul:not([class]) li {
  font-size: 1.0625rem;
  margin-bottom: .938rem;
  margin-bottom: var(--pad);
  padding-left: 1rem;
  position: relative;
}
.article ol:not([class]) li:before,
.article ul:not([class]) li:before {
  content: "•";
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}
.article ol.b-bottom li {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  font-size: 1.0625rem;
  margin-bottom: .938rem;
  margin-bottom: var(--pad);
  padding-bottom: .938rem;
  padding-bottom: var(--pad);
  position: relative;
  padding-left: 1rem;
}
.article ul.b-bottom li {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  font-size: 1.0625rem;
  margin-bottom: .938rem;
  margin-bottom: var(--pad);
  padding-bottom: .938rem;
  padding-bottom: var(--pad);
  position: relative;
  padding-left: 1rem;
}
.article ol.b-bottom li:before,
.article ul.b-bottom li:before {
  content: "•";
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}
.article ol.b-bottom.no-style li,
.article ul.b-bottom.no-style li {
  padding-left: 0;
}
.article ol.b-bottom.no-style li::before,
.article ul.b-bottom.no-style li::before {
  display: none;
}
.article--plus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 2);
  gap: calc(var(--gap) * 2);
  margin-top: .938rem;
  margin-top: var(--pad);
  padding: calc(.938rem * 2);
  padding: calc(var(--pad) * 2);
}
@media all and (min-width: 40em) {
  .article--plus {
    padding: 50px;
  }
}
.article--plus--hero {
  margin-left: calc(-1 * .938rem * 2);
  margin-left: calc(-1 * var(--pad) * 2);
  margin-right: calc(-1 * .938rem * 2);
  margin-right: calc(-1 * var(--pad) * 2);
  margin-top: calc(-1 * .938rem * 2);
  margin-top: calc(-1 * var(--pad) * 2);
  margin-bottom: .938rem;
  margin-bottom: var(--pad);
}
@media all and (min-width: 40em) {
  .article--plus--hero {
    margin-left: -50px;
    margin-right: -50px;
    margin-top: -50px;
    margin-bottom: 25px;
  }
}
.article--years--list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(.938rem * 2);
  gap: calc(var(--pad) * 2);
  padding-bottom: .938rem;
  padding-bottom: var(--pad);
}
.article--years--list li:not(:last-child) {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: .938rem;
  margin-bottom: var(--pad);
}
.article--years--list li .year {
  font-size: 1.25rem;
  line-height: 1.3;
}
.article--indent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 2);
  gap: calc(var(--gap) * 2);
}
@media all and (min-width: 40em) {
  .article--indent {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 50px;
  }
}
.article--indent > div:first-child {
  display: none;
}
@media all and (min-width: 40em) {
  .article--indent > div:first-child {
    display: block;
    width: 350px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 350px;
            flex: 0 0 350px;
  }
}
.article .video {
  aspect-ratio: 16/9;
  position: relative;
}
.article .video video,
.article .video iframe {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
}

.articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 2);
  gap: calc(var(--gap) * 2);
}
.articles .btn {
  margin-top: 10px;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}
.articles .article {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: calc(.938rem * 3);
  padding-bottom: calc(var(--gap) * 3);
  margin-bottom: calc(.938rem * 1);
  margin-bottom: calc(var(--gap) * 1);
}
.articles .article a {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
@media (hover: hover) {
  .hover-btn:hover .articles .article a, .articles .article a:hover {
    color: hsl(from currentColor h s calc(l - 20));
  }
}
.articles--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 2);
  gap: calc(var(--gap) * 2);
}
@media all and (min-width: 40em) {
  .articles--wrap {
    border-bottom: 1px solid #e6ded1;
    border-bottom: 1px solid var(--border-color);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: calc(.938rem * 1);
    margin-bottom: calc(var(--gap) * 1);
  }
  .articles--wrap > * {
    width: 50%;
    max-width: 50%;
    overflow: hidden;
  }
}
.articles--wrap .article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media all and (min-width: 40em) {
  .articles--wrap .article {
    border-bottom: 0;
    margin-bottom: 0;
  }
}
.articles--wrap .article .article--container {
  height: 100%;
}
.articles--wrap .article .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .938rem;
  gap: var(--pad);
  height: 100%;
}
.articles--wrap .article .text .tags {
  margin-top: auto;
}

.primary-bg .article {
  --border-color: #284e59;
}
.primary-bg .article .data {
  color: currentColor;
}
.primary-bg .articles--wrap {
  --border-color: #284e59;
}
.primary-bg .tags {
  --tag-color: currentColor;
}
@media (hover: hover) {
  .primary-bg .tags .tag[href]:hover {
    background-color: #fff;
    background-color: var(--white);
    border-color: #fff;
    border-color: var(--white);
    color: #21414a;
    color: var(--primary-bg-color);
  }
}
.primary-bg .tags .tag.evidence {
  --tag-bg-color: var(--white);
  --tag-border-color: var(--tag-bg-color);
  --tag-color: var(--primary-bg-color);
}

.grecaptcha-badge {
  z-index: 2000;
}
.grecaptcha-badge.hide {
  visibility: hidden;
}

.accordion--item {
  pointer-events: none;
}
.accordion--item.active {
  pointer-events: all;
}
.accordion--item.active .accordion--title .ico {
  color: #21414a;
  color: var(--primary-color);
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.accordion--item.active .accordion--title .ico:before {
  -webkit-transform: rotate(90deg) translateY(-50%);
          transform: rotate(90deg) translateY(-50%);
  opacity: 0;
}
.accordion--item.active .accordion--content {
  opacity: 1;
  overflow: visible;
}
@media (hover: hover) {
  .accordion--item .accordion--title {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .accordion--item:hover:not(.active) .accordion--title {
    color: #3f8242;
    color: var(--secondary-color);
  }
  .accordion--item:hover:not(.active) .accordion--title .ico {
    color: #21414a;
    color: var(--primary-color);
  }
}
.accordion--title {
  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;
  gap: calc(.938rem * 2);
  gap: calc(var(--pad) * 2);
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  pointer-events: all;
}
.accordion--title .ico {
  position: relative;
  width: 24px;
  height: 24px;
  color: #cfc1ab;
  color: var(--icons-color);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: -webkit-transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.accordion--title .ico:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.accordion--title .ico:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: currentColor;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.accordion--content {
  height: 0;
  overflow: hidden;
  will-change: height;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  opacity: 0;
}
.accordion--content > *:not(:last-child) {
  margin-bottom: calc(.938rem * 2);
  margin-bottom: calc(var(--pad) * 2);
}
@media all and (min-width: 40em) {
  .accordion--content .text--two-columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: calc(.938rem * 2);
       -moz-column-gap: calc(.938rem * 2);
            column-gap: calc(.938rem * 2);
    -webkit-column-gap: calc(var(--pad) * 2);
       -moz-column-gap: calc(var(--pad) * 2);
            column-gap: calc(var(--pad) * 2);
  }
}
.accordion--content > .thom-form__row .thom-form__column {
  padding-bottom: 0;
  padding-top: 0;
}

.breadcrumbs {
  --max-w--pad: 20px;
  height: 60px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  padding-left: 20px;
  padding-left: var(--max-w--pad);
  padding-right: 20px;
  padding-right: var(--max-w--pad);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

@media all and (min-width: 40em){
  .breadcrumbs{
  padding-right: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  padding-right: var(--max-w--pad);
  }
}

@media all and (min-width: 40em){
  .breadcrumbs{
  padding-left: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  padding-left: var(--max-w--pad);
  }
}
.breadcrumbs.color-white {
  color: #fff;
  color: var(--white);
}
@media all and (min-width: 40em) {
  .breadcrumbs {
    --max-w--pad: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
    --max-w--pad: var(--grid-gap);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: calc(.938rem * 2 + clamp(.938rem, 3.241vw + .208rem, 2.5rem));
    padding-left: calc(var(--pad) * 2 + var(--max-w--pad));
    padding-right: calc(.938rem * 2 + clamp(.938rem, 3.241vw + .208rem, 2.5rem));
    padding-right: calc(var(--pad) * 2 + var(--max-w--pad));
  }
  @media all and (min-width: 40em){
    .breadcrumbs{
    padding-right: calc(.938rem * 2 + clamp(.938rem, 3.241vw + .208rem, 2.5rem));
    padding-right: calc(var(--pad) * 2 + var(--max-w--pad));
    }
  }
  @media all and (min-width: 40em){
    .breadcrumbs{
    padding-right: calc(.938rem * 2 + clamp(.938rem, 3.241vw + .208rem, 2.5rem));
    padding-right: calc(var(--pad) * 2 + var(--max-w--pad));
    }
  }
  @media all and (min-width: 40em){
    .breadcrumbs{
    padding-left: calc(.938rem * 2 + clamp(.938rem, 3.241vw + .208rem, 2.5rem));
    padding-left: calc(var(--pad) * 2 + var(--max-w--pad));
    }
  }
  @media all and (min-width: 40em){
    .breadcrumbs{
    padding-left: calc(.938rem * 2 + clamp(.938rem, 3.241vw + .208rem, 2.5rem));
    padding-left: calc(var(--pad) * 2 + var(--max-w--pad));
    }
  }
}
.breadcrumbs > *:not(:last-child):after {
  content: "/";
  margin: 0 4px;
}

.label--line {
  --line-w: 40px;
  --line-h: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #21414a;
  color: var(--primary-color);
  font-size: 0.9375rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.label--line::before {
  content: "";
  height: 4px;
  height: var(--line-h);
  width: 40px;
  width: var(--line-w);
  background-color: #3f8242;
  background-color: var(--category-bg-color);
}

.text-uppercase {
  text-transform: uppercase;
}

.pxFormGenerator .formContainer {
  max-width: 72.6rem;
  margin-left: auto;
  margin-right: auto;
}

.pxFormGenerator .formContainer #formGeneratorForm .form_generater_form_div .form-control {
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

.pxFormGenerator .formContainer #formGeneratorForm .form_generater_form_div select {
  background-image: url(https://cdn.shopify.com/s/files/1/0628/7291/2056/files/select_arrow.png?v=1768556431) !important;
}

.banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
}
.banner--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: -1;
}
.banner .container {
  position: relative;
  z-index: 1;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media all and (min-width: 40em) {
  .banner .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.banner--flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 2);
  gap: calc(var(--gap) * 2);
  height: 100%;
}
@media all and (min-width: 40em) {
  .banner--flex-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.banner .description {
  color: #fff;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 2);
  gap: calc(var(--gap) * 2);
}
.banner--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: .938rem;
  gap: var(--gap);
  font-size: 1.75rem;
  text-transform: uppercase;
}
@media all and (min-width: 40em) {
  .banner--title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2rem;
  }
}
.banner--title svg {
  height: auto;
  width: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
@media all and (min-width: 40em) {
  .banner--title svg {
    width: 28px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28px;
            flex: 0 0 28px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.banner--title::before {
  margin-top: 0;
}
.banner--subtitle {
  font-size: 1.125rem;
}
@media all and (min-width: 40em) {
  .banner--subtitle {
    font-size: 1.25rem;
  }
}
.banner--text {
  font-size: 1.0625rem;
}
.banner--button {
  margin-top: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media all and (min-width: 40em) {
  .banner .image {
    padding-left: calc(.938rem * 2);
    padding-left: calc(var(--pad) * 2);
    padding-right: calc(.938rem * 2);
    padding-right: calc(var(--pad) * 2);
  }
}
.banner--howToJoin .container {
  padding-left: 5px;
  padding-right: 5px;
}
@media all and (min-width: 40em) {
  .banner--howToJoin .container {
    padding-left: calc(.938rem * 2);
    padding-left: calc(var(--pad) * 2);
    padding-right: calc(.938rem * 2);
    padding-right: calc(var(--pad) * 2);
  }
}
@media all and (min-width: 57.5em) {
  .banner--howToJoin .description {
    padding-left: calc(.938rem * 2);
    padding-left: calc(var(--pad) * 2);
    padding-right: calc(clamp(.938rem, 3.241vw + .208rem, 2.5rem) * 2);
    padding-right: calc(var(--grid-gap) * 2);
  }
}
@media all and (min-width: 40em) and (max-width: 57.4375em) {
  .banner--howToJoin .image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    padding: 0;
  }
}
@media all and (min-width: 57.5em) {
  .banner--howToJoin .image {
    width: 40%;
    min-width: 300px;
    max-width: 400px;
  }
}
.banner--howToJoin .image img {
  max-width: 60%;
}
@media all and (min-width: 40em) {
  .banner--howToJoin .image img {
    max-width: 250px;
  }
}
@media all and (min-width: 57.5em) {
  .banner--howToJoin .image img {
    max-width: 100%;
  }
}
@media all and (min-width: 40em) {
  .banner--howToJoin .banner--flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media all and (min-width: 57.5em) {
  .banner--howToJoin .banner--flex-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.banner--newsletter {
  background-attachment: fixed;
}
.banner--newsletter .container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media all and (min-width: 40em) {
  .banner--newsletter .container {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}
.banner--newsletter .banner--flex-container {
  padding-left: 5px;
  padding-right: 5px;
}
@media all and (min-width: 40em) {
  .banner--newsletter .banner--flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: calc(.938rem * 2);
    padding-left: calc(var(--pad) * 2);
    padding-right: calc(.938rem * 2);
    padding-right: calc(var(--pad) * 2);
  }
}
@media all and (min-width: 57.5em) {
  .banner--newsletter .banner--flex-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 0;
    padding-right: 0;
  }
  .banner--newsletter .banner--flex-container > * {
    width: 50%;
  }
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .banner--newsletter .banner--title:before {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}
.banner--newsletter .description {
  gap: 5px;
}
@media all and (min-width: 40em) {
  .banner--newsletter .description {
    padding-top: 25px;
  }
}
@media all and (min-width: 57.5em) {
  .banner--newsletter .thom-form {
    padding-left: calc(.938rem * 2);
    padding-left: calc(var(--pad) * 2);
    padding-right: calc(.938rem * 2);
    padding-right: calc(var(--pad) * 2);
  }
}
@media all and (min-width: 75em) {
  .banner--newsletter .thom-form .form--split {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
  .banner--newsletter .thom-form .form--split--sx {
    width: 100%;
  }
  .banner--newsletter .thom-form .form--split--dx {
    width: auto;
  }
}
@media all and (min-width: 40em) {
  .banner--newsletter .thom-form .thom-form__row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-right: 0;
  }
}
.banner--newsletter .thom-form .thom-form__column {
  padding-bottom: 10px;
  padding-top: 10px;
  margin-right: 10px;
}
.banner--newsletter .thom-form .thom-form__column.submit-column {
  width: auto;
  margin-right: 0;
}
.banner--newsletter .thom-form .thom-form__input-text {
  --form-element-bg-color: transparent;
  --form-element-border-radius: calc(50px / 2);
  --form-element-border-radius: calc(var(--input-h) / 2);
  --form-element-border-color: #fff;
  --form-element-border-color: var(--white);
  border-width: 2px;
  color: #fff;
  color: var(--white);
}
.banner--newsletter .thom-form .thom-form__input-text::-webkit-input-placeholder {
  color: #fff;
  color: var(--white);
}
.banner--newsletter .thom-form .thom-form__input-text::-moz-placeholder {
  color: #fff;
  color: var(--white);
}
.banner--newsletter .thom-form .thom-form__input-text:-ms-input-placeholder {
  color: #fff;
  color: var(--white);
}
.banner--newsletter .thom-form .thom-form__input-text::-ms-input-placeholder {
  color: #fff;
  color: var(--white);
}
.banner--newsletter .thom-form .thom-form__input-text::placeholder {
  color: #fff;
  color: var(--white);
}
.banner--newsletter .thom-form .thom-form__checkbox {
  padding-left: 0;
  padding-right: 0;
}
.banner--newsletter .thom-form .thom-form__checkbox span {
  color: #fff;
  color: var(--white);
  font-size: 0.875rem;
}
.banner--newsletter .thom-form .thom-form__checkbox .thom-form__checkbox--label {
  gap: .938rem;
  gap: var(--gap);
}
.banner--newsletter .thom-form .thom-form__checkbox .thom-form__checkbox--fake {
  --checkbox-border-radius: 50%;
  --form-element-border-color: var(--white);
}
.banner--newsletter .thom-form .thom-form__checkbox .thom-form__checkbox--fake:before {
  background-color: transparent;
  border-width: 2px;
}
.banner--newsletter .thom-form__submit {
  margin-top: 0;
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .banner--newsletter .thom-form__submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .banner--newsletter .thom-form .submit-column {
    margin-right: 0;
  }
}
.banner--numbers--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: calc(.938rem * 2);
  row-gap: calc(var(--gap) * 2);
  width: 100%;
}
@media all and (min-width: 40em) {
  .banner--numbers--list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    max-width: 920px;
  }
}
.banner--numbers--list > * {
  width: 50%;
  text-align: center;
}
@media all and (min-width: 40em) {
  .banner--numbers--list > * {
    width: 100%;
  }
}
.banner--numbers--list .icon {
  height: 80px;
  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-bottom: calc(.938rem * 2);
  margin-bottom: calc(var(--gap) * 2);
}

.brands--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.brands--wrap .brands--item {
  padding-bottom: 50px;
}
.brands--wrap .brands--item:not(:last-child) {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
}
.brands--item {
  position: relative;
  margin-left: -9px;
}
.brands--item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  bottom: 50px;
  width: 9px;
  background-color: #3f8242;
  background-color: var(--category-bg-color);
}
.brands--item--title {
  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: 140px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: .938rem;
  padding-top: var(--pad);
  padding-bottom: .938rem;
  padding-bottom: var(--pad);
}
.brands--list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
@media all and (min-width: 40em) {
  .brands--list {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .brands--list.col-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.brands--list li {
  border-top: 1px solid #e6ded1;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid #e6ded1;
  border-right: 1px solid var(--border-color);
  border-left: 1px solid #e6ded1;
  border-left: 1px solid var(--border-color);
  position: relative;
  margin-top: -1px;
  margin-left: -1px;
}
.brands--list li .ico {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #cfc1ab;
  color: var(--icons-color);
  pointer-events: none;
}
.brands--list li .ico svg {
  width: auto;
  height: 14px;
}
@media (hover: hover) {
  .brands--list li img {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .brands--list li:hover img {
    opacity: 0.7;
  }
}

.certifications {
  overflow: hidden;
}
.certifications--list {
  margin-left: calc(-1 * .938rem);
  margin-left: calc(-1 * var(--pad));
  margin-right: calc(-1 * .938rem);
  margin-right: calc(-1 * var(--pad));
}
.certifications--item {
  width: 100%;
  margin-bottom: 50px;
  padding-left: .938rem;
  padding-left: var(--pad);
  padding-right: .938rem;
  padding-right: var(--pad);
}
@media all and (min-width: 40em) {
  .certifications--item {
    width: 50%;
  }
}
.certifications--item--image img {
  max-width: 300px;
}
.certifications--item--desc {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.certifications--item--desc .data {
  color: #21414a;
  color: var(--primary-color);
}
.certifications--item--desc .title {
  margin-bottom: 25px;
}
.certifications--item--desc .downloads--list {
  padding-top: calc(.938rem * 2);
  padding-top: calc(var(--pad) * 2);
}

.committees--item:not(:last-child) {
  margin-bottom: 20px;
}
.committees--item--title {
  border-top: 1px solid #e6ded1;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 110px;
}
.committees--item--title .title {
  padding-left: 24px;
  padding-right: 24px;
}
.committees--item--logo {
  height: 100%;
}
.committees--item--logo img {
  width: auto;
  height: 100%;
}
.committees--item--content > * {
  margin-top: 0;
}

.contact--address .logo {
  margin-bottom: 60px;
}
.contact--address .logo svg {
  max-width: 100%;
}
.contact--address p {
  font-size: 0.8125rem;
}
.contact--address p a {
  color: #3f8242;
  color: var(--secondary-color);
  text-decoration: none;
}
@media (hover: hover) {
  .contact--address p a {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .contact--address p a:hover {
    text-decoration: underline;
  }
}

.downloads--list {
  padding-top: .938rem;
  padding-top: var(--pad);
}
@media all and (min-width: 40em) {
  .downloads--list--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: calc(.938rem * 2);
       -moz-column-gap: calc(.938rem * 2);
            column-gap: calc(.938rem * 2);
    -webkit-column-gap: calc(var(--pad) * 2);
       -moz-column-gap: calc(var(--pad) * 2);
            column-gap: calc(var(--pad) * 2);
  }
}
.downloads--item {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
}
.downloads--item:not(:last-child) {
  margin-bottom: .938rem;
  margin-bottom: var(--pad);
}
.downloads--item--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  line-height: 1;
  padding-left: 8px;
  padding-right: calc(.938rem * 2);
  padding-right: calc(var(--pad) * 2);
  padding-bottom: .938rem;
  padding-bottom: var(--pad);
  position: relative;
  width: 100%;
}
.downloads--item--ico {
  margin-top: 3px;
}
.downloads--item--ico svg {
  width: 20px;
}
.downloads--item--title {
  margin-bottom: 5px;
}
.downloads--item--fileName {
  color: #21414a;
  color: var(--primary-color);
  font-size: 0.875rem;
}
.downloads--item .lock {
  margin-left: auto;
  margin-right: calc(-1 * .938rem * 2);
  margin-right: calc(-1 * var(--pad) * 2);
  padding-top: 3px;
}
.downloads--item .lock svg {
  width: auto;
  height: 20px;
}
@media (hover: hover) {
  .downloads--item a {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .downloads--item a:hover {
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
}

.education .title--line {
  text-transform: none;
}
.education--wrap {
  padding-top: calc(.938rem * 1);
  padding-top: calc(var(--gap) * 1);
}
.education--item:not(:last-child) {
  margin-bottom: 20px;
}
.education--item .title--category {
  background-color: #fff;
  background-color: var(--white);
  color: #21414a;
  color: var(--primary-color);
  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;
  min-height: 90px;
  margin-bottom: 2px;
  padding-bottom: 5px;
  padding-top: 5px;
  padding-left: calc(.938rem * 2);
  padding-left: calc(var(--pad) * 2);
  padding-right: 20px;
  position: relative;
}
.education--item .title--category span {
  font-size: 1.125rem;
  text-transform: uppercase;
}
.education--item .title--category:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 9px;
  background-color: #3f8242;
  background-color: var(--category-bg-color);
}
.education--item--wrap {
  background-color: #fff;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 2);
  gap: calc(var(--pad) * 2);
  padding: calc(.938rem * 2);
  padding: calc(var(--pad) * 2);
}
@media all and (min-width: 57.5em) {
  .education--item--wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.education--item--wrap .article {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media all and (min-width: 40em) {
  .education--item--wrap .program {
    min-width: 45%;
  }
}
.education--item--wrap .program--title {
  color: #21414a;
  color: var(--title-color);
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.education--item--wrap .program--list li {
  border-top: 1px solid #e6ded1;
  border-top: 1px solid var(--border-color);
  min-height: 30px;
  padding-bottom: 3px;
  padding-top: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .938rem;
  gap: var(--gap);
  font-size: 0.875rem;
}
.education--item--wrap .program--list li > *:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.education--item--wrap .program--list li > *:last-child {
  margin-left: auto;
  text-align: right;
}
.education--item--wrap .program--list li .day {
  display: block;
  width: 22px;
  text-align: center;
}
.education--item--wrap .program .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}
.education--category-list .education--item {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0;
}
.education--category-list .education--item:first-child .education--item--wrap {
  padding-top: 0;
}
.education--category-list .education--item .education--item--wrap {
  padding-right: 10px;
  padding-left: 10px;
  gap: calc(.938rem * 2 + 15px);
  gap: calc(var(--pad) * 2 + 15px);
  padding-top: 0;
}
@media all and (min-width: 40em) {
  .education--category-list .education--item .education--item--wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media all and (min-width: 40em) {
  .education--category-list .education--item .article,
  .education--category-list .education--item .program {
    width: 50%;
    min-width: 0;
  }
}
.education--category-list .education--item .program--title, .education--category-list .education--item .program--list li {
  font-size: 0.9375rem;
}
.education--category-list .education--item .program--list {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
}
.education--category-list .education--item .program--list li {
  min-height: 40px;
}
.education--list--item {
  background-color: #fff;
  background-color: var(--white);
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  color: #21414a;
  color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 1);
  gap: calc(var(--gap) * 1);
  min-height: 140px;
  padding-bottom: .938rem;
  padding-bottom: var(--pad);
  padding-top: .938rem;
  padding-top: var(--pad);
  padding-left: calc(.938rem * 2);
  padding-left: calc(var(--pad) * 2);
  padding-right: 20px;
  position: relative;
}
@media all and (min-width: 40em) {
  .education--list--item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.education--list--item .title {
  text-transform: uppercase;
}
.education--list--item .title--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.education--list--item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 9px;
  background-color: #3f8242;
  background-color: var(--category-bg-color);
}
.education--list--item .btn {
  margin-top: 0;
}
.education--program--select .duration {
  color: #21414a;
  color: var(--primary-color);
}
.education--program--select .thom-form__column {
  padding-top: 0;
  padding-bottom: 0;
}
.education--program--select .thom-form__select {
  --form-element-bg-color: var(--white);
}
.education--program-detail .registration-end {
  font-size: 1.125rem;
}
.education--program-detail .col-2 {
  gap: 40px;
}
.education--program-detail .col-2 .program--text {
  width: 100%;
  max-width: none;
  gap: .938rem;
  gap: var(--gap);
}
.education--program-detail .col-2 .program--text ol:not([class]) li:last-child {
  margin-bottom: 0;
}
.education--program-detail .col-2 .program {
  gap: 12px;
}
@media all and (min-width: 40em) {
  .education--program-detail .col-2 .program {
    max-width: 270px;
  }
}
.education--program-detail .col-2 .program--title {
  color: #21414a;
  color: var(--title-color);
  font-size: 0.9375rem;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.education--program-detail .col-2 .program--list {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
}
.education--program-detail .col-2 .program--list li {
  border-top: 1px solid #e6ded1;
  border-top: 1px solid var(--border-color);
  min-height: 40px;
  padding-bottom: 3px;
  padding-top: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .938rem;
  gap: var(--gap);
  font-size: 0.9375rem;
}
.education--program-detail .col-2 .program--list li > *:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.education--program-detail .col-2 .program--list li > *:last-child {
  margin-left: auto;
  text-align: right;
}
.education--program-detail .col-2 .program--list li .day {
  display: block;
  width: 22px;
  text-align: center;
}
.education--program-detail .col-2 .program .downloads--list {
  padding-top: 0;
}
.education--program-detail .col-2 .program .downloads--list li {
  border-bottom: 0;
}
.education--program-detail .col-2 .program .downloads--list li .downloads--item--wrap {
  padding: 0;
}
.education--program-detail .col-2 .program .downloads--list li .lock {
  margin-right: 0;
}

.accademy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media all and (min-width: 40em) {
  .accademy {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 920px !important;
  }
  .accademy > * {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
.accademy .image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  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;
  aspect-ratio: 10/12;
}
.accademy .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px;
}
.accademy .text .title {
  margin-bottom: 20px;
}
.accademy .text p {
  margin-bottom: calc(.938rem * 2);
  margin-bottom: calc(var(--pad) * 2);
}

.gallery {
  overflow: hidden;
}
.gallery--list {
  margin-left: -5px;
  margin-right: -5px;
}
.gallery--item {
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
  position: relative;
}
@media all and (min-width: 40em) {
  .gallery--item {
    width: 50%;
  }
}
.gallery--item--image {
  position: relative;
}

.hero {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.hero > .container {
  position: relative;
}
.hero--banner {
  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;
  gap: 25px;
  padding-bottom: calc(.938rem * 4);
  padding-bottom: calc(var(--pad) * 4);
  padding-top: 70px;
  min-height: 280px;
}
@media all and (min-width: 40em) {
  .hero--banner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 50px;
    padding-left: calc(.938rem * 2);
    padding-left: calc(var(--pad) * 2);
    padding-right: calc(.938rem * 2);
    padding-right: calc(var(--pad) * 2);
    min-height: 330px;
  }
}
@media all and (min-width: 57.5em) {
  .hero--banner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.hero--banner--image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  width: 80px;
}
@media all and (min-width: 40em) {
  .hero--banner--image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 190px;
            flex: 0 0 190px;
    width: 190px;
  }
}
.hero--banner--image img {
  width: auto;
}
.hero--banner--space {
  display: none;
}
@media all and (min-width: 57.5em) {
  .hero--banner--space {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 190px;
            flex: 0 0 190px;
    width: 190px;
  }
}
.hero--banner--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .938rem;
  gap: var(--gap);
  width: 100%;
}
.hero--banner--text--inner {
  max-width: 60rem;
}
.hero--banner--title {
  margin-bottom: .938rem;
  margin-bottom: var(--pad);
}
.hero--banner--subtitle {
  font-size: 1.125rem;
  font-weight: 600;
}
.hero--banner--education {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .938rem;
  gap: var(--gap);
}
@media all and (min-width: 40em) {
  .hero--banner--education {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1200px;
  }
}
.hero--banner--education .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .938rem;
  gap: var(--gap);
}
.hero--banner--logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -ms-flex-item-align: center;
      align-self: center;
  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;
}
.hero--banner--logo img {
  max-height: 65px;
  width: auto;
}
@media all and (min-width: 40em) {
  .hero--banner--logo img {
    max-height: 90px;
  }
}
.hero--highlights {
  color: #fff;
  color: var(--white);
  position: relative;
  isolation: isolate;
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .hero--highlights {
    padding-bottom: calc(.938rem * 2);
    padding-bottom: calc(var(--pad) * 2);
  }
}
.hero--highlights::after {
  background-color: #fff;
  background-color: var(--bg-color);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  z-index: -1;
}
@media all and (min-width: 40em) {
  .hero--highlights::after {
    content: "";
  }
}
.hero--highlights--title {
  font-size: clamp(1.25rem, 1.2173rem + 0.1538vw, 1.375rem);
}
.hero--highlights--title.show-s {
  margin-bottom: calc(.938rem * 2);
  margin-bottom: calc(var(--pad) * 2);
}
.hero--highlights--slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 2);
  gap: calc(var(--gap) * 2);
}
@media all and (min-width: 40em) {
  .hero--highlights--slider {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .hero--highlights--slider > * {
    width: 50%;
    max-width: 50%;
    overflow: hidden;
  }
}
@media all and (min-width: 57.5em) {
  .hero--highlights--slider {
    gap: calc(.938rem * 4);
    gap: calc(var(--gap) * 4);
  }
}
.hero--highlights--imageSlider {
  --swiper-pagination-bottom: 40px;
  --swiper-pagination-bullet-horizontal-gap: 0;
  --swiper-pagination-bullet-border-radius: 0;
  --swiper-pagination-color: var(--white);
  --swiper-pagination-bullet-inactive-color: var(--white);
}
.hero--highlights--imageSlider .swiper-pagination {
  padding-right: 40px;
  padding-right: var(--swiper-pagination-bottom);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 6px;
}
.hero--highlights--imageSlider .swiper-pagination .swiper-pagination-bullet {
  opacity: 0.2;
  width: 50px;
  height: 6px;
}
.hero--highlights--imageSlider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.hero--highlights--imageSlider .swiper {
  aspect-ratio: 4/3;
}
.hero--highlights--imageSlider .swiper .swiper-slide {
  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;
  height: auto;
  overflow: hidden;
}
.hero--highlights--imageSlider .swiper img {
  min-height: 100%;
  min-width: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (min-width: 40em) {
  .hero--highlights--textSlider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: .938rem;
    padding-top: var(--pad);
    padding-bottom: 110px;
  }
}
@media all and (min-width: 40em) {
  .hero--highlights--textSlider {
    padding-top: calc(.938rem * 4);
    padding-top: calc(var(--pad) * 4);
  }
}
.hero--highlights--textSlider .swiper {
  height: 100%;
  margin: 0;
}
.hero--highlights--textSlider .swiper .swiper-slide {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}
.hero--highlights--textSlider .swiper .swiper-slide > div {
  margin-top: auto;
}
.hero--highlights--textSlider .swiper .swiper-slide .data {
  font-weight: 600;
}
.hero--highlights--textSlider .swiper .swiper-slide .title {
  font-size: clamp(1.75rem, 1.6192rem + 0.6154vw, 2.25rem);
  margin-top: 10px;
  margin-bottom: calc(.938rem * 2);
  margin-bottom: calc(var(--pad) * 2);
  max-width: 600px;
}
.hero--highlights--textSlider .swiper .swiper-slide .btn {
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.hero--search .hero--banner {
  padding-bottom: 30px;
  padding-top: 30px;
  min-height: initial;
}
@media all and (min-width: 40em) {
  .hero--search .hero--banner {
    min-height: initial;
  }
}
.hero--search .hero--banner--label {
  font-size: 1.0625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero--search .hero--banner--label:before {
  margin-top: 0;
}
.hero--search .hero--banner--subtitle {
  font-size: 0.9375rem;
}

.homePrimarySection {
  padding-top: 60px;
  padding-bottom: 110px;
}
.homePrimarySection .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 4);
  gap: calc(var(--gap) * 4);
}
@media all and (min-width: 40em) {
  .homePrimarySection .inner {
    gap: calc(.938rem * 2);
    gap: calc(var(--gap) * 2);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .homePrimarySection .inner > * {
    width: 50%;
    max-width: 50%;
    overflow: hidden;
  }
}
@media all and (min-width: 57.5em) {
  .homePrimarySection .inner {
    gap: calc(.938rem * 4);
    gap: calc(var(--gap) * 4);
  }
}
.homePrimarySection .brands--intro {
  margin-bottom: calc(.938rem * 4);
  margin-bottom: calc(var(--pad) * 4);
  padding-left: calc(.938rem * 1);
  padding-left: calc(var(--pad) * 1);
  padding-right: calc(.938rem * 1);
  padding-right: calc(var(--pad) * 1);
}
@media all and (min-width: 40em) {
  .homePrimarySection .brands--intro {
    padding-left: calc(.938rem * 2);
    padding-left: calc(var(--pad) * 2);
    padding-right: calc(.938rem * 2);
    padding-right: calc(var(--pad) * 2);
  }
}
@media all and (min-width: 57.5em) {
  .homePrimarySection .brands--intro {
    padding-right: calc(.938rem * 4);
    padding-right: calc(var(--pad) * 4);
  }
}
.homePrimarySection .brands .accordion--list .accordion--item {
  position: relative;
}
.homePrimarySection .brands .accordion--list .accordion--item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  bottom: 1px;
  width: 9px;
  background-color: #3f8242;
  background-color: var(--category-bg-color);
}
.homePrimarySection .brands .accordion--list .accordion--item .accordion--title {
  border: 1px solid #e6ded1;
  border: 1px solid var(--border-color);
  min-height: 90px;
  padding-left: 40px;
  padding-right: 30px;
  text-transform: uppercase;
  font-size: 1.125rem;
}
.homePrimarySection .brands .accordion--list .accordion--item:not(:first-child) {
  margin-top: -1px;
}
.homePrimarySection .brands .accordion--list .accordion--item .accordion--content {
  border-left: 1px solid #e6ded1;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid #e6ded1;
  border-right: 1px solid var(--border-color);
}
.homePrimarySection .brands .accordion--list .accordion--item .accordion--content .brands--list {
  margin-left: -1px;
  margin-right: -1px;
  margin-bottom: -1px;
}
@media all and (min-width: 40em) and (max-width: 57.4375em) {
  .homePrimarySection .brands .accordion--list .accordion--item .accordion--content .brands--list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.homePrimarySection .brands .accordion--list .accordion--item.active .accordion--content {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
}
.homePrimarySection .home-services--intro {
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media all and (min-width: 40em) {
  .homePrimarySection .home-services--intro {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.homePrimarySection .home-services--list {
  --border-color: rgba(255, 255, 255, .2);
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-top: 1px solid var(--border-color);
}
.homePrimarySection .home-services--list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 5px;
  padding-bottom: 5px;
  min-height: 50px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid var(--border-color);
}
@media all and (min-width: 40em) {
  .homePrimarySection .home-services--list li {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.homePrimarySection .home-services--list li a {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
@media (hover: hover) {
  .hover-btn:hover .homePrimarySection .home-services--list li a, .homePrimarySection .home-services--list li a:hover {
    color: hsl(from currentColor h s calc(l - 20));
  }
}
.homePrimarySection .home-services--btn-wrap {
  padding-left: 35px;
  padding-right: 35px;
  padding-bottom: 40px;
}
@media all and (min-width: 40em) {
  .homePrimarySection .home-services--btn-wrap {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.homeSecondarySection {
  padding-top: 110px;
  padding-bottom: 110px;
}
.homeSecondarySection .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 4);
  gap: calc(var(--gap) * 4);
}
@media all and (min-width: 57.5em) {
  .homeSecondarySection .inner {
    gap: calc(.938rem * 4);
    gap: calc(var(--gap) * 4);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media all and (min-width: 57.5em) {
  .homeSecondarySection--container {
    width: 62%;
  }
}
@media all and (min-width: 57.5em) {
  .homeSecondarySection--aside {
    width: 38%;
  }
}
.homeSecondarySection--aside--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 90px;
}
@media all and (min-width: 40em) and (max-width: 57.4375em) {
  .homeSecondarySection--aside .education--wrap .education--item--wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: calc(.938rem * 2);
    gap: calc(var(--pad) * 2);
  }
}
.homeSecondarySection .news {
  margin-top: calc(.938rem * 4);
  margin-top: calc(var(--pad) * 4);
  padding-bottom: 1px;
  padding-top: 50px;
  padding-left: calc(.938rem * 2);
  padding-left: calc(var(--pad) * 2);
  padding-right: calc(.938rem * 2);
  padding-right: calc(var(--pad) * 2);
}
.homeSecondarySection .news--wrap > *:last-child {
  border-bottom: 0;
}

@media all and (min-width: 57.5em) {
  .documentation--banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .documentation--banner > * {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
.documentation--banner .image {
  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;
  overflow: hidden;
}
.documentation--banner .image img {
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.documentation--banner .text {
  border: 1px solid #e6ded1;
  border: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .938rem;
  gap: var(--gap);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: calc(.938rem * 2);
  padding: calc(var(--pad) * 2);
}
@media all and (min-width: 57.5em) {
  .documentation--banner .text {
    aspect-ratio: 1/1;
  }
}
.documentation--banner .text .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: .938rem;
  margin-top: var(--gap);
}

.legno4 {
  position: relative;
  isolation: isolate;
}
.legno4--intro {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 50px;
  color: #fff;
  color: var(--white);
  margin-bottom: 60px;
}
.legno4--intro .title {
  color: #fff;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 50px;
}
.legno4--intro .subtitle {
  font-size: clamp(1.125rem, 1.0596rem + 0.3077vw, 1.375rem);
  margin-bottom: 25px;
}
.legno4--nav {
  padding: 50px calc(.938rem * 2);
  padding: 50px calc(var(--pad) * 2);
  padding-top: 0;
}
.legno4--nav .title {
  margin-bottom: 10px;
}
.legno4--menu li {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
}
.legno4--menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  padding: 0 10px;
  font-size: 1.125rem;
  text-transform: uppercase;
}
.legno4--space {
  height: 50px;
}
@media all and (min-width: 57.5em) {
  .legno4--space {
    height: 200px;
  }
}
.legno4--preview {
  background-color: #fff;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  padding-bottom: 50px;
  padding-top: 50px;
  padding-left: calc(.938rem * 2);
  padding-left: calc(var(--pad) * 2);
  padding-right: calc(.938rem * 2);
  padding-right: calc(var(--pad) * 2);
}
.legno4--preview--logo img {
  width: auto;
  height: 70px;
}
.legno4--preview--list--item:not(:last-child) {
  border-bottom: 2px solid #e6ded1;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.legno4--preview--list--item .sign {
  color: #21414a;
  color: var(--primary-color);
}
.legno4--preview--list--item p {
  margin-top: 30px;
}
.legno4--preview--list--item p + p {
  margin-top: 20px;
}
.legno4--preview--list--item--big {
  padding-top: 10px !important;
  padding-bottom: 50px !important;
}
@media (hover: hover) {
  .legno4--preview--list--item a {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .hover-btn:hover .legno4--preview--list--item a, .legno4--preview--list--item a:hover {
    color: hsl(from currentColor h s calc(l - 10));
  }
}
.legno4--list {
  padding: 50px calc(.938rem * 2);
  padding: 50px calc(var(--pad) * 2);
}

.links {
  padding-left: 8px;
  padding-right: 8px;
}
.links--list {
  padding-top: .938rem;
  padding-top: var(--pad);
}
@media all and (min-width: 40em) {
  .links--list--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: calc(.938rem * 2);
       -moz-column-gap: calc(.938rem * 2);
            column-gap: calc(.938rem * 2);
    -webkit-column-gap: calc(var(--pad) * 2);
       -moz-column-gap: calc(var(--pad) * 2);
            column-gap: calc(var(--pad) * 2);
  }
}
.links--item {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
}
.links--item:not(:last-child) {
  margin-bottom: .938rem;
  margin-bottom: var(--pad);
}
.links--item--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: calc(.938rem * 2);
  gap: calc(var(--pad) * 2);
  line-height: 1;
  padding-bottom: .938rem;
  padding-bottom: var(--pad);
  position: relative;
}
.links--item--ico svg {
  width: auto;
}
.links--item--title {
  margin-bottom: 5px;
}
.links--item--fileName {
  color: #21414a;
  color: var(--primary-color);
  font-size: 0.875rem;
}
.links--item .lock {
  position: absolute;
  right: 0;
  top: 3px;
}
.links--item .lock svg {
  width: auto;
  height: 20px;
}
@media (hover: hover) {
  .links--item a {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .links--item a:hover {
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
}

.login-section .container {
  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: calc(100svh - 80px);
  min-height: calc(100svh - var(--header-height));
  padding-top: calc(.938rem * 4);
  padding-top: calc(var(--pad) * 4);
  padding-bottom: calc(.938rem * 4);
  padding-bottom: calc(var(--pad) * 4);
}
@media all and (min-width: 40em) and (max-width: 57.4375em) {
  .login-section .container {
    max-width: 80%;
  }
}
.login-section .login--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 4);
  gap: calc(var(--pad) * 4);
  width: 100%;
}
@media all and (min-width: 57.5em) {
  .login-section .login--wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .login-section .login--wrap > * {
    width: 50%;
    min-width: 50%;
  }
}
.login-section .login--form {
  background-color: #fff;
  background-color: var(--white);
  padding: clamp(.938rem, 3.241vw + .208rem, 2.5rem);
  padding: var(--grid-gap);
  padding-top: calc(.938rem * 2);
  padding-top: calc(var(--pad) * 2);
}
@media all and (min-width: 40em) {
  .login-section .login--form {
    padding: 40px calc(.938rem * 4);
    padding: 40px calc(var(--pad) * 4);
  }
}
.login-section .login--form .title {
  margin-bottom: calc(.938rem * 1);
  margin-bottom: calc(var(--pad) * 1);
}
.login-section .login--form .thom-form__column {
  gap: .938rem;
  gap: var(--gap);
  padding-top: .938rem;
  padding-top: var(--pad);
  padding-bottom: .938rem;
  padding-bottom: var(--pad);
}
.login-section .login--form .thom-form__checkbox {
  padding-left: 0;
}
.login-section .login--form .thom-form__checkbox--label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: normal;
  gap: 10px;
  font-size: 1rem;
}
.login-section .login--form .thom-form__checkbox--fake {
  margin-top: 0;
}
.login-section .login--text {
  color: #fff;
  color: var(--white);
}
.login-section .login--text .title {
  color: inherit;
  margin-bottom: 5px;
}
.login-section .login--text p {
  margin-bottom: 40px;
}
.login-section .toggle-password-visibility {
  border: 1px solid #cfc1ab;
  border: 1px solid var(--form-element-border-color);
  border-radius: 9px;
  border-radius: var(--form-element-border-radius);
  background-color: #fff;
  background-color: var(--white);
  height: undefined;
  height: var(--input-h);
  width: 60px;
  min-width: 60px;
  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;
  color: #cfc1ab;
  color: var(--icons-color);
}
.login-section .toggle-password-visibility #eye-slash {
  display: block;
}
.login-section .toggle-password-visibility #eye {
  display: none;
}
.login-section .toggle-password-visibility.visible {
  border-color: currentColor;
  color: #7b808f;
  color: var(--icons-hover-color);
}
.login-section .toggle-password-visibility.visible #eye-slash {
  display: none;
}
.login-section .toggle-password-visibility.visible #eye {
  display: block;
}
@media (hover: hover) {
  .login-section .toggle-password-visibility {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .login-section .toggle-password-visibility:hover {
    border-color: currentColor;
    color: #7b808f;
    color: var(--icons-hover-color);
  }
}

.media-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(.938rem * 2) .938rem;
  gap: calc(var(--gap) * 2) var(--gap);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.media-categories--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .938rem;
  gap: var(--gap);
}
.media-categories--item .image {
  margin-bottom: 10px;
}
.media-categories--item .text {
  height: 100%;
  padding: 0 10px;
}
.media-categories--item .text p {
  margin-bottom: 25px;
}
.media-categories--item .text .btn {
  margin-top: auto;
}
.media--filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .938rem;
  gap: var(--gap);
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 30px;
  padding-top: 20px;
}
@media all and (min-width: 40em) {
  .media--filters {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: calc(.938rem * 2);
       -moz-column-gap: calc(.938rem * 2);
            column-gap: calc(.938rem * 2);
    -webkit-column-gap: calc(var(--gap) * 2);
       -moz-column-gap: calc(var(--gap) * 2);
            column-gap: calc(var(--gap) * 2);
  }
}
.media--filters--label {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  text-transform: uppercase;
}
@media all and (min-width: 40em) {
  .media--filters--item {
    width: calc(50% - .938rem);
    width: calc(50% - var(--gap));
  }
}
.media-press-releases {
  overflow: hidden;
}
.media-press-releases--item {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  padding-top: .938rem;
  padding-top: var(--pad);
  padding-bottom: calc(.938rem * 1.5);
  padding-bottom: calc(var(--pad) * 1.5);
  padding-left: 8px;
  padding-right: .938rem;
  padding-right: var(--pad);
  position: relative;
}
.media-press-releases--item .data {
  color: #21414a;
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 8px;
  padding-left: 32px;
}
.media-press-releases--item .download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  line-height: 1;
}
.media-press-releases--item .download--ico {
  margin-top: 3px;
}
.media-press-releases--item .download--ico svg {
  width: 20px;
}
.media-press-releases--item .download--title {
  color: #21414a;
  color: var(--primary-color);
  margin-bottom: 5px;
}
.media-press-releases--item .download--fileName {
  color: #21414a;
  color: var(--primary-color);
  font-size: 0.875rem;
}
@media (hover: hover) {
  .media-press-releases--item .download {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .media-press-releases--item .download:hover {
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
}
.media-materials--list {
  padding-top: 30px;
  margin-left: calc(-1 * .938rem);
  margin-left: calc(-1 * var(--pad));
  margin-right: calc(-1 * .938rem);
  margin-right: calc(-1 * var(--pad));
}
.media-materials--list--item {
  width: 100%;
  margin-bottom: 50px;
  padding-left: .938rem;
  padding-left: var(--pad);
  padding-right: .938rem;
  padding-right: var(--pad);
}
@media all and (min-width: 40em) {
  .media-materials--list--item {
    width: 50%;
  }
}
.media-materials--list--item--image img {
  max-width: 280px;
}
.media-materials--list--item--desc {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.media-materials--list--item--desc .data {
  color: #21414a;
  color: var(--primary-color);
}
.media-materials--list--item--desc .title {
  margin-bottom: 25px;
}
.media-materials--list--item--desc .downloads--list {
  padding-top: calc(.938rem * 2);
  padding-top: calc(var(--pad) * 2);
}

.members--list .members--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media all and (min-width: 40em) {
  .members--list .members--item {
    gap: 20px;
  }
}
.members--list .members--item:not(:first-child) {
  margin-top: -1px;
}
@media all and (min-width: 40em) {
  .members--item {
    min-height: 100px;
  }
}
.members--item--logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
}
@media all and (min-width: 40em) {
  .members--item--logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
  }
}
.members--item--logo img {
  border: 1px solid #e6ded1;
  border: 1px solid var(--border-color);
}
.members--item--logo a {
  display: block;
}
.members--item--desc {
  width: 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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  padding-top: calc(.938rem * 1);
  padding-top: calc(var(--pad) * 1);
  padding-bottom: calc(.938rem * 1);
  padding-bottom: calc(var(--pad) * 1);
}
@media all and (min-width: 40em) {
  .members--item--desc {
    padding-top: calc(.938rem * 2);
    padding-top: calc(var(--pad) * 2);
    padding-bottom: calc(.938rem * 2);
    padding-bottom: calc(var(--pad) * 2);
    padding-right: calc(.938rem * 2);
    padding-right: calc(var(--pad) * 2);
  }
}
.members--item--desc p {
  font-size: clamp(0.875rem, 0.826rem + 0.2308vw, 1.0625rem);
}

.news {
  position: relative;
  isolation: isolate;
}
.news--wrapper .hero--banner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.news--bg:after {
  content: "";
  height: 400px;
  background-color: #f2eee7;
  background-color: var(--secondary-bg-color);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}
.news--intro {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 50px;
  color: #fff;
  color: var(--white);
  margin-top: 60px;
}
.news--intro .title {
  color: #fff;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 50px;
}
.news--intro .subtitle {
  font-size: clamp(1.125rem, 1.0596rem + 0.3077vw, 1.375rem);
  margin-bottom: 25px;
}
.news--nav {
  padding: 50px calc(.938rem * 2);
  padding: 50px calc(var(--pad) * 2);
}
.news--nav .title {
  margin-bottom: 10px;
}
.news--menu li {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
}
.news--menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  padding: 0 10px;
  font-size: 1.125rem;
  text-transform: uppercase;
}
.news--space {
  height: 200px;
}
.news--preview {
  background-color: #fff;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  padding-bottom: 50px;
  padding-top: 50px;
  padding-left: calc(.938rem * 2);
  padding-left: calc(var(--pad) * 2);
  padding-right: calc(.938rem * 2);
  padding-right: calc(var(--pad) * 2);
}
.news--preview--logo img {
  width: auto;
  height: 70px;
}
.news--preview--list--item:not(:last-child) {
  border-bottom: 2px solid #e6ded1;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.news--preview--list--item .sign {
  color: #21414a;
  color: var(--primary-color);
}
.news--preview--list--item p {
  margin-top: 30px;
}
.news--preview--list--item p + p {
  margin-top: 20px;
}
.news--preview--list--item--big {
  padding-top: 10px !important;
  padding-bottom: 50px !important;
}
@media (hover: hover) {
  .news--preview--list--item a {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .hover-btn:hover .news--preview--list--item a, .news--preview--list--item a:hover {
    color: hsl(from currentColor h s calc(l - 10));
  }
}
.news--list {
  padding: 50px calc(.938rem * 2);
  padding: 50px calc(var(--pad) * 2);
}

.organizationChart {
  isolation: isolate;
  margin-left: calc(-1 * .938rem);
  margin-left: calc(-1 * var(--pad));
  margin-right: calc(-1 * .938rem);
  margin-right: calc(-1 * var(--pad));
}
@media all and (min-width: 40em) {
  .organizationChart {
    padding: .938rem;
    padding: var(--pad);
    margin-left: 0;
    margin-right: 0;
  }
}
.organizationChart--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  position: relative;
}
.organizationChart--item:not(.first-level) {
  padding-left: 15px;
}
@media all and (min-width: 40em) {
  .organizationChart--item:not(.first-level) {
    padding-left: 70px;
  }
}
.organizationChart--item .organizationChart--item .organizationChart--item--title:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: #a89273;
  top: 50%;
  left: -10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (min-width: 40em) {
  .organizationChart--item .organizationChart--item .organizationChart--item--title:after {
    width: 48px;
    left: -49px;
  }
}
.organizationChart--item .organizationChart--item:after {
  content: "";
  position: absolute;
  width: 1px;
  background-color: #a89273;
  left: 5px;
  z-index: 1;
}
@media all and (min-width: 40em) {
  .organizationChart--item .organizationChart--item:after {
    left: 21px;
  }
}
.organizationChart--item .organizationChart--item:not(:last-child):after {
  top: -20px;
  bottom: -20px;
}
.organizationChart--item .organizationChart--item:last-child:after {
  top: -25px;
  bottom: auto;
  height: 50px;
}
.organizationChart--item--wrap {
  max-width: 280px;
  position: relative;
  z-index: 2;
}
@media all and (min-width: 40em) {
  .organizationChart--item--wrap {
    min-width: 280px;
    max-width: 320px;
  }
}
@media all and (min-width: 57.5em) {
  .organizationChart--item--wrap {
    min-width: 380px;
    max-width: 440px;
  }
}
.organizationChart--item--title {
  --title-color: #21414a;
  --title-color: var(--primary-color);
  min-height: 50px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: .938rem;
  padding-left: var(--pad);
  padding-right: .938rem;
  padding-right: var(--pad);
  position: relative;
  color: #fff;
  color: var(--white);
  background-color: #21414a;
  background-color: var(--title-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(0.9375rem, 0.9048rem + 0.1538vw, 1.0625rem);
  line-height: 1.15;
}
.organizationChart--item--list li {
  min-height: 50px;
  padding-top: .938rem;
  padding-top: var(--pad);
  padding-bottom: .938rem;
  padding-bottom: var(--pad);
  padding-left: .938rem;
  padding-left: var(--pad);
  padding-right: .938rem;
  padding-right: var(--pad);
  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;
  background-color: #fff;
  background-color: var(--white);
  font-size: 0.9375rem;
  line-height: 1.2;
}
.organizationChart--item--list li:not(:last-child) {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
}
.organizationChart--item--list li span {
  font-size: 0.875rem;
}

.page-msg {
  height: 100svh;
  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-position: center;
  background-size: cover;
}
.page-msg--content {
  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;
  text-align: center;
  gap: 40px;
  padding: .938rem;
  padding: var(--pad);
  max-width: 80%;
}
@media all and (min-width: 40em) {
  .page-msg--image {
    max-width: 90%;
  }
}
.page-msg--text {
  color: #fff;
  color: var(--white);
}
@media all and (min-width: 40em) {
  .page-msg--text {
    max-width: 70%;
  }
}
.page-msg--text .title {
  color: #fff;
  color: var(--white);
  margin-bottom: 10px;
}
.page-msg--buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .938rem;
  gap: var(--gap);
  margin-top: 20px;
}
@media all and (min-width: 40em) {
  .page-msg--buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.projects {
  overflow: hidden;
}
.projects--filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .938rem;
  gap: var(--gap);
  padding-top: 20px;
}
@media all and (min-width: 40em) {
  .projects--filters {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: calc(.938rem * 2);
       -moz-column-gap: calc(.938rem * 2);
            column-gap: calc(.938rem * 2);
    -webkit-column-gap: calc(var(--gap) * 2);
       -moz-column-gap: calc(var(--gap) * 2);
            column-gap: calc(var(--gap) * 2);
  }
}
.projects--filters--label {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  text-transform: uppercase;
}
@media all and (min-width: 40em) {
  .projects--filters--item {
    width: calc(50% - .938rem);
    width: calc(50% - var(--gap));
  }
}
.projects--list {
  margin-left: calc(-1 * .938rem);
  margin-left: calc(-1 * var(--pad));
  margin-right: calc(-1 * .938rem);
  margin-right: calc(-1 * var(--pad));
}
.projects--item {
  width: 100%;
  padding-top: 40px;
  padding-left: calc(.938rem);
  padding-left: calc(var(--pad));
  padding-right: calc(.938rem);
  padding-right: calc(var(--pad));
  position: relative;
}
@media all and (min-width: 40em) {
  .projects--item {
    width: 50%;
  }
}
.projects--item .status {
  --status-color: #fff;
  --status-color: var(--white);
  --status-bg-color: #3f8242;
  --status-bg-color: var(--secondary-color);
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 0.625rem;
  text-transform: uppercase;
  color: #fff;
  color: var(--status-color);
  pointer-events: none;
  width: 100%;
  max-width: 200px;
}
@media all and (min-width: 40em) {
  .projects--item .status {
    max-width: 300px;
  }
}
.projects--item .status > span {
  background-color: #3f8242;
  background-color: var(--status-bg-color);
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px 10px;
}
.projects--item--image {
  position: relative;
}
.projects--item--image img {
  border: 1px solid #e6ded1;
  border: 1px solid var(--border-color);
  max-width: 200px;
}
@media all and (min-width: 40em) {
  .projects--item--image img {
    max-width: 300px;
  }
}
.projects--item--desc {
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
}
.projects--item--desc .data {
  color: #21414a;
  color: var(--primary-color);
}
.projects--item--desc .title {
  margin-bottom: .938rem;
  margin-bottom: var(--pad);
}
.projects--item--desc .btn,
.projects--item--desc .downloads {
  margin-top: 30px;
}
.projects--item--desc .downloads--item:last-child {
  border-bottom: 0;
}

.project--intro--image {
  margin-bottom: calc(.938rem * 3);
  margin-bottom: calc(var(--pad) * 3);
  margin-top: -200px;
}
@media all and (min-width: 40em) {
  .project--intro--image {
    margin-top: -280px;
  }
}
.project--intro--image img {
  border: 1px solid #e6ded1;
  border: 1px solid var(--border-color);
  max-width: 200px;
}
@media all and (min-width: 40em) {
  .project--intro--image img {
    max-width: 300px;
  }
}
.project--intro .subtitle {
  font-size: 1.125rem;
  color: #21414a;
  color: var(--primary-color);
}
.project--intro .status {
  --status-color: #fff;
  --status-color: var(--white);
  --status-bg-color: #3f8242;
  --status-bg-color: var(--secondary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 0.625rem;
  text-transform: uppercase;
  color: #fff;
  color: var(--status-color);
}
.project--intro .status > span {
  background-color: #3f8242;
  background-color: var(--status-bg-color);
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px 10px;
}

.search--list .item {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  padding-top: .938rem;
  padding-top: var(--pad);
  padding-bottom: 20px;
  padding-right: 20px;
}
.search--list .item--section {
  color: #21414a;
  color: var(--primary-color);
  font-size: 0.9375rem;
  text-transform: uppercase;
}
.search--list .item--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 10px;
}
@media all and (min-width: 40em) {
  .search--list .item--inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .search--list .item--inner > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.search--list .item p {
  font-size: 0.9375rem;
}
.search--list .item .cta a {
  font-size: 0.9375rem;
  text-decoration: underline;
}

.services {
  overflow: hidden;
}
.services--list {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-column-gap: .938rem;
     -moz-column-gap: .938rem;
          column-gap: .938rem;
  -webkit-column-gap: var(--gap);
     -moz-column-gap: var(--gap);
          column-gap: var(--gap);
  row-gap: calc(.938rem * 4);
  row-gap: calc(var(--gap) * 4);
  position: relative;
}
@media all and (min-width: 40em) {
  .services--list {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (min-width: 57.5em) {
  .services--list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.services--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.services--item--image {
  aspect-ratio: 1/1;
  background-color: #fff;
  background-color: var(--white);
}
.services--item--desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 2);
  gap: calc(var(--pad) * 2);
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  height: 100%;
}
.services--item--desc .btn {
  margin-top: auto;
}

.service--dett {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 2);
  gap: calc(var(--pad) * 2);
}
@media all and (min-width: 40em) {
  .service--dett {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 50px;
  }
}
.service--dett--aside {
  width: 250px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 250px;
          flex: 0 0 250px;
  margin-top: -90px;
}
@media all and (min-width: 57.5em) {
  .service--dett--aside {
    width: 350px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 350px;
            flex: 0 0 350px;
    margin-top: -110px;
  }
}
.service--dett--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
.service--dett--container > * {
  max-width: 860px;
}
.service--dett--logo {
  aspect-ratio: 1/1;
  background-color: #fff;
  background-color: var(--white);
}

.documentation--search {
  padding: 20px 0;
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
}
.documentation--search .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  position: relative;
  max-width: 700px;
}
.documentation--search--input {
  width: 100%;
  height: 50px;
  border: 1px solid #e6ded1;
  border: 1px solid var(--border-color);
  border-radius: 25px;
  background-color: #fff !important;
  background-color: var(--white) !important;
  margin: 0;
  padding-left: 26px;
  padding-right: 56px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.documentation--search--input:focus {
  outline: none;
}
.documentation--search--input:focus::-webkit-input-placeholder {
  color: #d9d9d9;
}
.documentation--search--input:focus::-moz-placeholder {
  color: #d9d9d9;
}
.documentation--search--input:focus:-ms-input-placeholder {
  color: #d9d9d9;
}
.documentation--search--input:focus::-ms-input-placeholder {
  color: #d9d9d9;
}
.documentation--search--input:focus::placeholder {
  color: #d9d9d9;
}
.documentation--search--input:-webkit-autofill {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.documentation--search--input:autofill {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.documentation--search--input:-internal-autofill-selected {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.documentation--search--input:-webkit-autofill:hover {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.documentation--search--input:-webkit-autofill:focus {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.documentation--search--input:-webkit-autofill:active {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.documentation--search--button {
  color: #cfc1ab;
  color: var(--icons-color, var(--icons-color));
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.documentation--search--button svg {
  width: 20px;
  height: 20px;
}
@media (hover: hover) {
  .documentation--search--button {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .documentation--search--button:hover {
    color: hsl(from #cfc1ab h s calc(l - 10));
    color: hsl(from var(--icons-color, var(--icons-color)) h s calc(l - 10));
  }
}
.documentation--search .ais-SearchBox .ais-SearchBox-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  position: relative;
  max-width: 700px;
}
.documentation--search .ais-SearchBox .ais-SearchBox-input {
  width: 100%;
  height: 50px;
  border: 1px solid #e6ded1;
  border: 1px solid var(--border-color);
  border-radius: 25px;
  background-color: #fff !important;
  background-color: var(--white) !important;
  margin: 0;
  padding-left: 26px;
  padding-right: 56px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.documentation--search .ais-SearchBox .ais-SearchBox-input:focus {
  outline: none;
}
.documentation--search .ais-SearchBox .ais-SearchBox-input:focus::-webkit-input-placeholder {
  color: #d9d9d9;
}
.documentation--search .ais-SearchBox .ais-SearchBox-input:focus::-moz-placeholder {
  color: #d9d9d9;
}
.documentation--search .ais-SearchBox .ais-SearchBox-input:focus:-ms-input-placeholder {
  color: #d9d9d9;
}
.documentation--search .ais-SearchBox .ais-SearchBox-input:focus::-ms-input-placeholder {
  color: #d9d9d9;
}
.documentation--search .ais-SearchBox .ais-SearchBox-input:focus::placeholder {
  color: #d9d9d9;
}
.documentation--search .ais-SearchBox .ais-SearchBox-input:-webkit-autofill {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.documentation--search .ais-SearchBox .ais-SearchBox-input:autofill {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.documentation--search .ais-SearchBox .ais-SearchBox-input:-internal-autofill-selected {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.documentation--search .ais-SearchBox .ais-SearchBox-input:-webkit-autofill:hover {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.documentation--search .ais-SearchBox .ais-SearchBox-input:-webkit-autofill:focus {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.documentation--search .ais-SearchBox .ais-SearchBox-input:-webkit-autofill:active {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.documentation--search .ais-SearchBox .ais-SearchBox-submit {
  color: #cfc1ab;
  color: var(--icons-color, var(--icons-color));
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.documentation--search .ais-SearchBox .ais-SearchBox-submit svg {
  width: 20px;
  height: 20px;
}
@media (hover: hover) {
  .documentation--search .ais-SearchBox .ais-SearchBox-submit {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .documentation--search .ais-SearchBox .ais-SearchBox-submit:hover {
    color: hsl(from #cfc1ab h s calc(l - 10));
    color: hsl(from var(--icons-color, var(--icons-color)) h s calc(l - 10));
  }
}
.documentation--counter {
  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;
  gap: .938rem;
  gap: var(--gap);
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  color: #21414a;
  color: var(--primary-color);
  font-size: 1.0625rem;
  padding: .938rem 0;
  padding: var(--pad) 0;
}
.documentation--counter .btn {
  --btn-height: 40px;
  margin: 0;
}
@media all and (min-width: 57.5em) {
  .documentation--counter .btn {
    display: none;
  }
}
.documentation--active-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: .938rem;
  gap: var(--gap);
}
.documentation--active-filters--item {
  background-color: #284e59;
  border-radius: 3px;
  color: #fff;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  line-height: 1.2;
  font-size: 0.75rem;
  padding: 10px;
}
.documentation--active-filters--item strong {
  font-weight: 500;
}
.documentation--active-filters--item .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .938rem;
  gap: var(--gap);
}
.documentation--active-filters--item .delete {
  color: #fff;
  color: var(--white);
  width: 10px;
}
@media (hover: hover) {
  .documentation--active-filters--item .delete {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .documentation--active-filters--item .delete:hover {
    color: hsl(from currentColor h s calc(l - 10));
  }
}
.documentation--active-filters--resume {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
}
@media (hover: hover) {
  .documentation--active-filters--resume {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .documentation--active-filters--resume:hover {
    color: hsl(from currentColor h s calc(l - 10));
  }
}
.documentation--active-filters--resume button {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
}
.documentation--active-filters--resume button.ais-ClearRefinements-button--disabled {
  display: none;
}
.documentation--active-filters .ais-CurrentRefinements-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: .938rem;
  gap: var(--gap);
}
.documentation--active-filters .ais-CurrentRefinements-list .ais-CurrentRefinements-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  line-height: 1.2;
}
.documentation--active-filters .ais-CurrentRefinements-list .delete {
  font-weight: 700;
}
.documentation--results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(.938rem * 2);
  gap: calc(var(--gap) * 2);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.documentation--results--aside {
  isolation: isolate;
}
@media all and (min-width: 18.75em) and (max-width: 57.4375em) {
  .documentation--results--aside {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: none;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    z-index: 10;
  }
}
@media all and (min-width: 57.5em) {
  .documentation--results--aside {
    width: 320px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 320px;
            flex: 0 0 320px;
    display: block;
  }
}
@media all and (min-width: 18.75em) and (max-width: 57.4375em) {
  .documentation--results--aside .nav--filters {
    position: relative;
    background-color: #fff;
    background-color: var(--white);
    padding-top: .938rem;
    padding-top: var(--pad);
    padding-left: .938rem;
    padding-left: var(--pad);
    padding-right: .938rem;
    padding-right: var(--pad);
    min-height: 100svh;
    max-width: 400px;
    width: 90%;
    max-height: 100%;
    overflow: auto;
    -webkit-transition: all 0.3s linear, -webkit-transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 0.3s linear, -webkit-transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 0.3s linear, transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 0.3s linear, transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
}
.documentation--results--aside .backdrop {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  pointer-events: none;
  z-index: -1;
}
.documentation--results--aside.active {
  opacity: 1;
  pointer-events: all;
}
.documentation--results--aside.active .nav--filters {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.documentation--results--aside.active .backdrop {
  opacity: 1;
  pointer-events: all;
}
.documentation--results .filter--category {
  margin-bottom: calc(.938rem * 2);
  margin-bottom: calc(var(--gap) * 2);
}
.documentation--results .filter--category--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 6px;
  min-height: 50px;
  border-bottom: 2px solid #21414a;
  border-bottom: 2px solid var(--primary-color);
}
.documentation--results .filter--category .thom-form__label {
  margin-bottom: 10px;
}
.documentation--results .filter--category .ais-RefinementList-item--selected .filter--item__checkbox--fake:after {
  opacity: 1;
}
.documentation--results .filter--category .ais-RefinementList .ais-RefinementList-showMore {
  margin-top: 20px;
  font-weight: 700;
  color: #21414a;
  color: var(--primary-color);
  padding-left: 30px;
}
.documentation--results .filter--category .ais-RefinementList .ais-RefinementList-showMore.ais-RefinementList-showMore--disabled {
  display: none;
}
.documentation--results .filter--item {
  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;
  gap: .938rem;
  gap: var(--pad);
  padding: 5px 6px;
  min-height: 50px;
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
}
.documentation--results .filter--item > * {
  width: 100%;
}
.documentation--results .filter--item__checkbox {
  --checkbox-size: 14px;
  --checkbox-border-radius: 3px;
  --checkbox-point-size: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  isolation: isolate;
  width: 100%;
}
.documentation--results .filter--item__checkbox--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
}
.documentation--results .filter--item__checkbox--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
  font-size: 15px;
  color: #494949;
  color: var(--text-color);
  width: 100%;
}
.documentation--results .filter--item__checkbox--original {
  border: 0;
  display: block;
  height: undefined;
  height: var(--checkbox-size);
  width: undefined;
  width: var(--checkbox-size);
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  z-index: 10;
}
.documentation--results .filter--item__checkbox--fake {
  height: undefined;
  height: var(--checkbox-size);
  width: undefined;
  width: var(--checkbox-size);
  position: relative;
  -webkit-box-flex: undefined;
      -ms-flex: undefined;
          flex: undefined;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--checkbox-size);
          flex: 0 0 var(--checkbox-size);
}
.documentation--results .filter--item__checkbox--fake:before {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid #cfc1ab;
  border: 1px solid var(--form-element-border-color);
  border-radius: undefined;
  border-radius: var(--checkbox-border-radius);
  background-color: #fff;
  background-color: var(--white);
  z-index: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.documentation--results .filter--item__checkbox--fake:after {
  content: "";
  background-color: #cfc1ab;
  background-color: var(--form-element-border-color);
  border-radius: undefined;
  border-radius: calc(var(--checkbox-border-radius) / 2);
  height: undefined;
  height: var(--checkbox-point-size);
  width: undefined;
  width: var(--checkbox-point-size);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
  opacity: 0;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  z-index: 1;
}
.documentation--results .filter--item__checkbox .filter--item__checkbox--original:checked ~ .filter--item__checkbox--fake:after {
  opacity: 1;
}
.documentation--results .filter--item__counter {
  background-color: #62af31;
  border-radius: 3px;
  color: #fff;
  color: var(--white);
  font-size: 0.75rem;
  width: auto;
  min-width: 30px;
  height: 24px;
  padding: 0 8px;
  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;
  text-align: center;
}
.documentation--results .filter--text-search {
  position: relative;
}
.documentation--results .filter--text-search .button {
  color: #cfc1ab;
  color: var(--icons-color, var(--icons-color));
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.documentation--results .filter--text-search .button svg {
  width: 20px;
  height: 20px;
}
@media (hover: hover) {
  .documentation--results .filter--text-search .button {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .documentation--results .filter--text-search .button:hover {
    color: hsl(from #cfc1ab h s calc(l - 10));
    color: hsl(from var(--icons-color, var(--icons-color)) h s calc(l - 10));
  }
}
.documentation--results--container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px;
  max-width: 920px;
}
.documentation--results .ais-Hits-list .ais-Hits-item:not(:last-child) {
  margin-bottom: 20px;
}
.documentation--list--item {
  background-color: #fff;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 2);
  gap: calc(var(--gap) * 2);
  padding: calc(.938rem * 2);
  padding: calc(var(--gap) * 2);
}
.documentation--list--item:not(:last-child) {
  margin-bottom: 20px;
}
@media all and (min-width: 40em) {
  .documentation--list--item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 40px;
  }
}
.documentation--list--item .downloads--list .downloads--item:last-child {
  border-bottom: 0;
}
.documentation--list--item .downloads--list .downloads--item:last-child .downloads--item--wrap {
  padding-bottom: 0;
}
.documentation--list--item .downloads--list .downloads--item--wrap {
  padding-left: 0;
  padding-right: 0;
}
.documentation--list--item .downloads--list .lock {
  margin-right: 0;
}
@media all and (min-width: 40em) {
  .documentation--list--item__image {
    width: 210px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 210px;
            flex: 0 0 210px;
  }
}
.documentation--list--item__image img {
  width: 100%;
  max-width: 210px;
}
.documentation--list--item__desc {
  width: 100%;
}
.documentation--list--item__desc p {
  margin-bottom: 10px;
}
.documentation--list--item .title--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.documentation--list--item .title--wrap .subtitle {
  line-height: 1.5;
}
.documentation--list--item__details {
  font-size: 0.9375rem;
  margin-bottom: .938rem;
  margin-bottom: var(--pad);
  padding-bottom: calc(.938rem / 2);
  padding-bottom: calc(var(--pad) / 2);
}
@media all and (min-width: 40em) {
  .documentation--list--item__details {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: calc(.938rem * 2);
       -moz-column-gap: calc(.938rem * 2);
            column-gap: calc(.938rem * 2);
    -webkit-column-gap: calc(var(--pad) * 2);
       -moz-column-gap: calc(var(--pad) * 2);
            column-gap: calc(var(--pad) * 2);
  }
}
.documentation--list--item__details > div {
  padding-top: calc(.938rem / 2);
  padding-top: calc(var(--pad) / 2);
  padding-bottom: calc(.938rem / 2);
  padding-bottom: calc(var(--pad) / 2);
}
.documentation--list--item__details > div.type {
  -webkit-column-span: all;
     -moz-column-span: all;
          column-span: all;
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  padding-top: 0;
}
.documentation--list--item__tags {
  padding-top: 10px;
}
.documentation--list--item__tags--title {
  color: #21414a;
  color: var(--primary-color);
  font-size: 0.9375rem;
  text-transform: uppercase;
}
.documentation--list--item__tags .tags {
  padding-top: 10px;
}
.documentation--list--item__tags:not(:last-child) {
  margin-bottom: 10px;
}
.documentation--tabs--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1px;
  padding-left: 0;
  padding-right: 0;
}
.documentation--tabs--item {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  isolation: isolate;
  border-bottom: 1px solid #f2eee7;
  border-bottom: 1px solid var(--secondary-bg-color);
  color: #494949;
  color: var(--text-color);
  font-size: 1.125rem;
  height: 90px;
  min-width: 300px;
  padding-left: 20px;
  padding-right: .938rem;
  padding-right: var(--pad);
  text-transform: uppercase;
  cursor: pointer;
}
@media all and (min-width: 57.5em) {
  .documentation--tabs--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.documentation--tabs--item:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
  background-color: var(--white);
  opacity: 0.5;
  z-index: -1;
}
.documentation--tabs--item span {
  color: inherit;
  line-height: normal;
}
@media (hover: hover) {
  .documentation--tabs--item:after {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .documentation--tabs--item:hover:after {
    background-color: #cfc1ab;
    background-color: var(--icons-color);
    opacity: 0.2;
  }
}
.documentation--tabs--item.active {
  border-color: #fff;
  border-color: var(--white);
  color: #21414a;
  color: var(--primary-color);
  pointer-events: none;
}
.documentation--tabs--item.active:after {
  opacity: 1;
}
.documentation--tabs--select {
  display: block;
  background-color: #fff;
  background-color: var(--white);
  height: 90px;
  border: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 1px;
}
@media all and (min-width: 57.5em) {
  .documentation--tabs--select {
    display: none;
  }
}
.documentation--tabs--select:focus {
  outline: none;
  -webkit-filter: drop-shadow(0 0 0 hsl(from #21414a h s l/0.05));
          filter: drop-shadow(0 0 0 hsl(from #21414a h s l/0.05));
  -webkit-filter: drop-shadow(0 0 0 hsl(from var(--primary-color) h s l/0.05));
          filter: drop-shadow(0 0 0 hsl(from var(--primary-color) h s l/0.05));
}
.documentation--tabs--select:focus::-webkit-input-placeholder {
  color: #d9d9d9;
}
.documentation--tabs--select:focus::-moz-placeholder {
  color: #d9d9d9;
}
.documentation--tabs--select:focus:-ms-input-placeholder {
  color: #d9d9d9;
}
.documentation--tabs--select:focus::-ms-input-placeholder {
  color: #d9d9d9;
}
.documentation--tabs--select:focus::placeholder {
  color: #d9d9d9;
}
.documentation--list-companies {
  border: 1px solid #e6ded1;
  border: 1px solid var(--border-color);
}
.documentation--list-companies--item {
  display: block;
  padding: .938rem 20px;
  padding: var(--pad) 20px;
  background-color: #fff;
  background-color: var(--white);
  width: 100%;
}
@media all and (min-width: 40em) {
  .documentation--list-companies--item {
    padding-left: calc(.938rem * 2);
    padding-left: calc(var(--pad) * 2);
    padding-right: calc(.938rem * 2);
    padding-right: calc(var(--pad) * 2);
  }
}
.documentation--list-companies--item:not(:last-child) {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
}
.documentation--list-companies--item .title {
  font-size: 1.0625rem;
  text-transform: uppercase;
}
.documentation--list-companies--item p {
  font-size: 0.9375rem;
}
@media (hover: hover) {
  .documentation--list-companies--item {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .documentation--list-companies--item[onclick]:hover {
    background-color: #f2eee7;
    background-color: var(--secondary-bg-color);
  }
  .documentation--list-companies--item[href]:hover {
    background-color: #f2eee7;
    background-color: var(--secondary-bg-color);
  }
}
.documentation--list-companies.items-two-columns .documentation--list-companies--item {
  padding-top: calc(.938rem * 2);
  padding-top: calc(var(--pad) * 2);
  padding-bottom: 40px;
}
@media all and (min-width: 40em) {
  .documentation--list-companies.items-two-columns .documentation--list-companies--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: .938rem;
    gap: var(--gap);
    padding-right: 20px;
  }
  .documentation--list-companies.items-two-columns .documentation--list-companies--item .documentation--list-companies--item__desc {
    width: 35%;
    min-width: 240px;
    max-width: 290px;
  }
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .documentation--list-companies.items-two-columns .documentation--list-companies--item .documentation--list-companies--item__desc {
    margin-bottom: 40px;
  }
}
.documentation--list-companies.items-two-columns .documentation--list-companies--item .title {
  min-height: 50px;
  margin-bottom: 10px;
}
.documentation--list-companies .list-probes {
  width: 100%;
}
.documentation--list-companies .list-probes .item {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: calc(.938rem * 2);
  gap: calc(var(--gap) * 2);
  padding-bottom: 6px;
  padding-top: 6px;
}
.documentation--list-companies .list-probes .item span {
  width: 100%;
}
.documentation--list-companies .list-probes .item span:first-child {
  font-size: 0.875rem;
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .documentation--list-companies .list-probes .item span:first-child {
    width: 60%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
}
.documentation--list-companies .list-probes .item span:last-child {
  font-size: 0.8125rem;
  text-align: right;
}
@media all and (min-width: 40em) {
  .documentation--list-companies .list-probes .item span:last-child {
    width: 160px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
  }
}

.search--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 2);
  gap: calc(var(--gap) * 2);
  position: relative;
}

#storesSearch {
  position: relative;
}
#storesSearch .loader {
  position: absolute;
  padding: .938rem;
  padding: var(--pad);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#storesSearch .loader .brand svg {
  width: 100px;
  -webkit-animation: col 3s linear infinite;
          animation: col 3s linear infinite;
}

.stores--wrap {
  border: 1px solid #f2eee7;
  border: 1px solid var(--secondary-bg-color);
}
@media all and (min-width: 40em) {
  .stores--wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 800px;
    max-height: calc(100svh - 80px * 2);
    max-height: calc(100svh - var(--header-height) * 2);
    overflow: hidden;
  }
  .stores--wrap > div:first-child {
    max-height: 100%;
    width: 250px;
    min-width: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
  }
  .stores--wrap > div:last-child {
    max-height: 100%;
    width: 100%;
  }
}
.stores--wrap .storesSearchResultsEmpty {
  display: none;
  margin-bottom: 30px;
}
.stores--wrap .storesSearchResults {
  display: block;
}
@media all and (min-width: 40em) {
  .stores--wrap .storesSearchResults {
    overflow: hidden;
    height: 100%;
  }
}
@media all and (min-width: 40em) {
  .stores--wrap .storesSearchResults .scroller {
    height: 100%;
    overflow: hidden;
  }
}
.stores--wrap .storesSearchResults .scroller .scrollbar-track-y {
  background-color: transparent;
  right: 3px !important;
  width: 10px;
}
.stores--wrap .storesSearchResults .scroller .scrollbar-track-y .scrollbar-thumb {
  left: auto;
  right: 0;
  width: 10px;
  border-radius: 5px;
}
.stores--wrap .country--list--title {
  background-color: #3f8242;
  background-color: var(--secondary-color);
  border-bottom: 1px solid #f2eee7;
  border-bottom: 1px solid var(--secondary-bg-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  color: #fff;
  color: var(--white);
  line-height: normal;
}
.stores--wrap .store {
  border-bottom: 1px solid #f2eee7;
  border-bottom: 1px solid var(--secondary-bg-color);
}
.stores--wrap .store .infowindow--title {
  background-color: #fff;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  line-height: normal;
}
.stores--wrap .store .infowindow--txt {
  display: none;
  font-size: 12px;
  width: 40%;
  padding-right: calc(.938rem * 2);
  padding-right: calc(var(--pad) * 2);
}
.stores--wrap .store .infowindow .links a {
  display: block;
  word-wrap: break-word;
}
.stores--wrap .store.selected .infowindow--title {
  background-color: #f2eee7;
  background-color: var(--secondary-bg-color);
}
.stores--wrap .store.active .infowindow--title {
  background-color: #f2eee7;
  background-color: var(--secondary-bg-color);
}
.stores .search--listeners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .938rem;
  gap: var(--pad);
  margin-bottom: calc(.938rem * 2);
  margin-bottom: calc(var(--pad) * 2);
}
@media (min-width: 1100px) {
  .stores .search--listeners {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.stores .storesSearchAutocomplete {
  border: 1px solid #000;
  border: 1px solid var(--black);
  border-radius: 5px;
  border-radius: var(--radius);
  height: 45px;
  padding-left: .938rem;
  padding-left: var(--pad);
  padding-right: calc(.938rem * 2 + 13px);
  padding-right: calc(var(--pad) * 2 + 13px);
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cg%3E%3Ccircle cx='5.41667' cy='5.41683' r='4.66667' transform='rotate(-90 5.41667 5.41683)' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M12.9987 13L9.20703 9.20833' stroke='black' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E");
  background-position: calc(100% - .938rem) center;
  background-position: calc(100% - var(--pad)) center;
  background-size: 13px;
  background-repeat: no-repeat;
}
.stores .storesSearchDistance {
  border: 1px solid #000;
  border: 1px solid var(--black);
  border-radius: 5px;
  border-radius: var(--radius);
  height: 45px;
  padding-left: .938rem;
  padding-left: var(--pad);
  background-image: url("data:image/svg+xml,%3Csvg width='31' height='16' viewBox='0 0 31 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L15.5 15L30 1' stroke='currentColor'/%3E%3C/svg%3E%0A");
  background-color: #fff;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-position: calc(100% - .938rem);
  background-position: calc(100% - var(--pad));
  background-size: 10px 10px;
  padding-right: calc(.938rem + 20px);
  padding-right: calc(var(--pad) + 20px);
  width: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.stores .storesSearchMap {
  position: relative;
  display: none;
}
@media all and (min-width: 40em) {
  .stores .storesSearchMap {
    display: block;
    width: 100%;
    height: 100%;
  }
}
.stores .storesSearchMap .map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.timeline {
  --card-border-radius: 12px;
  --line-color: var(--icons-color);
  --line-progress-color: var(--secondary-color);
  --point-color: var(--icons-color);
  --point-active-color: var(--secondary-color);
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-right: 10px;
  padding-top: 20px;
  isolation: isolate;
}
.timeline--article {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 80px;
  padding-left: .938rem;
  padding-left: var(--pad);
  padding-right: .938rem;
  padding-right: var(--pad);
}
@media all and (min-width: 40em) {
  .timeline--article {
    padding-right: 40px;
    padding-left: 40px;
  }
}
.timeline * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (min-width: 40em) {
  .timeline {
    padding-right: 0;
  }
}
.timeline-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.timeline-item:first-child .timeline-item__line {
  display: none;
}
.timeline-item + .timeline-item {
  margin-top: 50px;
}
@media all and (min-width: 40em) {
  .timeline-item + .timeline-item {
    margin-top: -76px;
  }
}
@media all and (min-width: 40em) {
  .timeline-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .timeline-item:nth-child(odd) .timeline-item__card-arrow {
    left: auto;
    right: 0;
  }
}
.timeline-item__card {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-left: 10px;
  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;
  isolation: isolate;
  -webkit-filter: drop-shadow(0 0 12px rgba(111, 84, 52, 0.1215686275));
          filter: drop-shadow(0 0 12px rgba(111, 84, 52, 0.1215686275));
}
@media all and (min-width: 40em) {
  .timeline-item__card {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    margin-left: 0;
  }
}
.timeline-item__card-arrow {
  position: absolute;
  z-index: -1;
  background-color: #fff;
  background-color: var(--white);
  width: 13px;
  height: 13px;
  left: 0;
  bottom: 36.5px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  margin-left: -6.5px;
  margin-right: -6.5px;
}
@media all and (min-width: 40em) {
  .timeline-item__card-arrow {
    width: 18px;
    height: 18px;
    margin-left: -8px;
    margin-right: -8px;
  }
}
.timeline-item__card-inner {
  background-color: #fff;
  border-radius: undefined;
  border-radius: var(--card-border-radius);
  overflow: hidden;
}
.timeline-item__card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
}
@media all and (min-width: 40em) {
  .timeline-item__card-content {
    padding: 40px;
  }
}
.timeline-item__card-data {
  color: #21414a;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
}
.timeline-item__card-title {
  margin-bottom: 5px;
}
.timeline-item__card-desc {
  font-size: 0.875rem;
}
.timeline-item__card-button {
  display: block;
  color: #7f6e5d;
  font-weight: bold;
  margin-top: 30px;
  text-decoration: underline;
}
@media (hover: hover) {
  .timeline-item__card-button {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .timeline-item__card-button:hover {
    color: #acaa00;
  }
}
.timeline-item__point {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  margin-right: 10px;
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
}
@media all and (min-width: 40em) {
  .timeline-item__point {
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.timeline-item__point-content {
  height: 46px;
  width: 46px;
  min-width: 10px;
  min-height: 10px;
  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;
  border-radius: 50%;
  background-color: undefined;
  background-color: var(--point-color);
  color: #fff;
  color: var(--white);
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.timeline-item__point img {
  pointer-events: none;
  width: 14px;
  height: auto;
}
.timeline-item__meta {
  display: none;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media all and (min-width: 40em) {
  .timeline-item__meta {
    display: block;
  }
}
.timeline-item__line {
  position: absolute;
  width: 2px;
  left: 22px;
  background-color: undefined;
  background-color: var(--line-color);
  top: -103px;
  bottom: 53px;
  z-index: 0;
}
.timeline-item__line .progress {
  background-color: undefined;
  background-color: var(--line-progress-color);
  width: 100%;
}
@media all and (min-width: 40em) {
  .timeline-item__line {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 23px;
    bottom: 53px;
  }
}
.timeline-item.is-active .timeline-item__point-content {
  background-color: undefined;
  background-color: var(--point-active-color);
}

@media all and (min-width: 40em) {
  .timeline__img--hidden,
  .timeline__content--hidden {
    visibility: hidden;
  }
  .timeline__img--bounce-in {
    -webkit-animation: cd-bounce-1 0.6s;
            animation: cd-bounce-1 0.6s;
  }
  .timeline__content--bounce-in {
    -webkit-animation: cd-bounce-2 0.6s;
            animation: cd-bounce-2 0.6s;
  }
  .timeline__block:nth-child(even) .timeline__content--bounce-in {
    -webkit-animation-name: cd-bounce-2-inverse;
            animation-name: cd-bounce-2-inverse;
  }
}
@-webkit-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.workers {
  font-size: 1.0625rem;
}
@media all and (min-width: 40em) {
  .workers--wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
  .workers--wrap > * {
    width: 50%;
  }
  .workers--wrap .workers--list {
    -webkit-column-count: auto;
       -moz-column-count: auto;
            column-count: auto;
  }
}
.workers--title {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.workers--list:not(:last-child) {
  border-bottom: 1px solid #e6ded1;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media all and (min-width: 40em) {
  .workers--list {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
.workers--list .workers--item {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
.workers--list .workers--item:not(:last-child) {
  margin-bottom: 10px;
}
.workers--list .workers--item--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.workers--list .workers--item--ico {
  color: #cfc1ab;
  color: var(--icons-color);
}
.workers--list .workers--item--ico svg {
  width: 22px;
}
@media (hover: hover) {
  .workers--list .workers--item a {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .workers--list .workers--item a:hover {
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
}

/**
 * Buttons
 */
:root {
  --btn-height: 30px;
  --btn-padding: 18px;
  --btn-radius: calc(var(--btn-height) / 2);
  --btn-font-size: rem(10);
  --btn-border-size: 2px;
  --btn-color: var(--primary-color);
  --btn-bg-color: var(--white);
  --btn-hover-color: var(--white);
  --btn-hover-bg-color: var(--primary-color);
}

.btn {
  background-color: #fff;
  background-color: var(--btn-bg-color);
  border: 2px solid currentColor;
  border: var(--btn-border-size) solid currentColor;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #21414a;
  color: var(--btn-color);
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-size: rem(10);
  font-size: var(--btn-font-size);
  font-weight: 500;
  height: 30px;
  height: var(--btn-height);
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  padding: 0 18px;
  padding: 0 var(--btn-padding);
  border-radius: calc(30px / 2);
  border-radius: var(--btn-radius);
  white-space: nowrap;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.btn:focus {
  outline: 0;
  text-decoration: none;
}
@media (hover: hover) {
  .hover-btn:hover .btn {
    background-color: #21414a;
    background-color: var(--btn-hover-bg-color);
    color: #fff;
    color: var(--btn-hover-color);
    border-color: #3f8242;
    border-color: var(--secondary-color);
  }
  .btn:hover {
    background-color: #21414a;
    background-color: var(--btn-hover-bg-color);
    color: #fff;
    color: var(--btn-hover-color);
    border-color: #3f8242;
    border-color: var(--secondary-color);
  }
}
.btn.selected {
  background-color: #21414a;
  background-color: var(--btn-hover-bg-color);
  color: #fff;
  color: var(--btn-hover-color);
  border-color: #3f8242;
  border-color: var(--secondary-color);
  pointer-events: none;
}
.btn--secondary {
  --btn-height: 50px;
  --btn-padding: 24px;
  --btn-font-size: rem(16);
  --btn-bg-color: var(--secondary-color);
  --btn-color: var(--white);
  --btn-border-size: 0;
  --btn-radius: calc(var(--btn-height) / 2);
  --btn-hover-bg-color: hsl(from var(--btn-bg-color) h s calc(l - 10));
}
.btn--iconsColor {
  --btn-height: 50px;
  --btn-padding: 24px;
  --btn-font-size: rem(16);
  --btn-bg-color: var(--icons-color);
  --btn-color: var(--white);
  --btn-border-size: 0;
  --btn-radius: calc(var(--btn-height) / 2);
  --btn-hover-bg-color: hsl(from var(--btn-bg-color) h s calc(l - 10));
}

.btn--howToJoin {
  --title-color: #fff;
  --title-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  height: 100px;
  padding: 0 .938rem;
  padding: 0 var(--pad);
  background-color: #3f8242;
  background-color: var(--secondary-color);
  color: #fff;
  color: var(--white);
}
@media all and (min-width: 40em) {
  .btn--howToJoin {
    padding: 0 calc(.938rem * 2);
    padding: 0 calc(var(--pad) * 2);
  }
}
.btn--howToJoin svg {
  width: 28px;
  height: 28px;
}
.btn--howToJoin--text {
  white-space: nowrap;
  padding-right: 10px;
  line-height: normal;
}
.btn--howToJoin--text span {
  display: block;
  text-transform: uppercase;
}
@media (hover: hover) {
  .btn--howToJoin {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .btn--howToJoin:hover {
    background-color: hsl(from #3f8242 h s calc(l - 10));
    background-color: hsl(from var(--secondary-color) h s calc(l - 10));
  }
}

.btn-gallery,
.btn-video {
  cursor: pointer;
}

/*!
 * Mmenu Light
 * mmenujs.com/mmenu-light
 *
 * Copyright (c) Fred Heusschen
 * www.frebsite.nl
 *
 * License: CC-BY-4.0
 * http://creativecommons.org/licenses/by/4.0/
 */
:root {
  --mm-ocd-width: 80%;
  --mm-ocd-min-width: 200px;
  --mm-ocd-max-width: 440px ;
}

body.mm-ocd-opened {
  overflow-y: hidden;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.mm-ocd {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 100%;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  background: rgba(0, 0, 0, 0);
  -webkit-transition-property: bottom, background-color;
  transition-property: bottom, background-color;
  -webkit-transition-duration: 0s, 0.3s;
  transition-duration: 0s, 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-delay: 0.45s, 0.15s;
  transition-delay: 0.45s, 0.15s;
}

.mm-ocd--open {
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.mm-ocd__content {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 80%;
  width: var(--mm-ocd-width);
  min-width: 200px;
  min-width: var(--mm-ocd-min-width);
  max-width: 440px;
  max-width: var(--mm-ocd-max-width);
  background: #fff;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.mm-ocd--left .mm-ocd__content {
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.mm-ocd--right .mm-ocd__content {
  right: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.mm-ocd--open .mm-ocd__content {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-ocd__backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(100% - 440px, 100% - 80%, 100% - 200px);
  width: clamp(100% - var(--mm-ocd-max-width), 100% - var(--mm-ocd-width), 100% - var(--mm-ocd-min-width));
  background: rgba(3, 2, 1, 0);
}

.mm-ocd--left .mm-ocd__backdrop {
  right: 0;
}

.mm-ocd--right .mm-ocd__backdrop {
  left: 0;
}

.mm-spn,
.mm-spn a,
.mm-spn li,
.mm-spn span,
.mm-spn ul {
  display: block;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --mm-spn-item-height: 50px;
  --mm-spn-item-indent: 20px;
  --mm-spn-line-height: 24px;
  --mm-spn-panel-offset: 30% ;
}

.mm-spn {
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.mm-spn ul {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  left: 100%;
  bottom: 0;
  z-index: 2;
  width: calc(100% + 30%);
  width: calc(100% + var(--mm-spn-panel-offset));
  padding-right: 30%;
  padding-right: var(--mm-spn-panel-offset);
  line-height: 24px;
  line-height: var(--mm-spn-line-height);
  overflow: visible;
  overflow-y: auto;
  background: inherit;
  -webkit-transition: left 0.3s ease 0s;
  transition: left 0.3s ease 0s;
  cursor: default;
}

.mm-spn ul:after {
  content: "";
  display: block;
  height: 80px;
  height: var(--mm-spn-item-height);
}

.mm-spn > ul {
  left: 0;
}

.mm-spn ul.mm-spn--open {
  left: 0;
}

.mm-spn ul.mm-spn--parent {
  left: calc(-1 * 30%);
  left: calc(-1 * var(--mm-spn-panel-offset));
  overflow: visible;
}

.mm-spn li {
  position: relative;
  background: inherit;
  cursor: pointer;
}

.mm-spn li:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(80px / 2);
  top: calc(var(--mm-spn-item-height) / 2);
  right: calc(80px / 2);
  right: calc(var(--mm-spn-item-height) / 2);
  z-index: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg) translate(0, -50%);
  transform: rotate(45deg) translate(0, -50%);
  opacity: 0.4;
}

.mm-spn li:after {
  content: "";
  display: block;
  margin-left: 30px;
  margin-left: var(--mm-spn-item-indent);
  border-top: 1px solid;
  opacity: 0.15;
}

.mm-spn a {
  position: relative;
  z-index: 1;
  padding: calc((80px - 24px) / 2) 30px;
  padding: calc((var(--mm-spn-item-height) - var(--mm-spn-line-height)) / 2) var(--mm-spn-item-indent);
}

.mm-spn span {
  position: relative;
  z-index: 1;
  padding: calc((80px - 24px) / 2) 30px;
  padding: calc((var(--mm-spn-item-height) - var(--mm-spn-line-height)) / 2) var(--mm-spn-item-indent);
}

.mm-spn a {
  background: inherit;
  color: inherit;
  text-decoration: none;
}

.mm-spn a:not(:last-child) {
  width: calc(100% - 80px);
  width: calc(100% - var(--mm-spn-item-height));
}

.mm-spn a:not(:last-child):after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-right: 1px solid;
  opacity: 0.15;
}

.mm-spn span {
  background: 0 0;
}

.mm-spn.mm-spn--navbar {
  cursor: pointer;
}

.mm-spn.mm-spn--navbar:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(80px / 2);
  top: calc(var(--mm-spn-item-height) / 2);
  left: 30px;
  left: var(--mm-spn-item-indent);
  width: 10px;
  height: 10px;
  margin-top: 2px;
  border-top: 2px solid;
  border-left: 2px solid;
  -webkit-transform: rotate(-45deg) translate(50%, -50%);
  transform: rotate(-45deg) translate(50%, -50%);
  opacity: 0.4;
}

.mm-spn.mm-spn--navbar.mm-spn--main {
  cursor: default;
}

.mm-spn.mm-spn--navbar.mm-spn--main:before {
  content: none;
  display: none;
}

.mm-spn.mm-spn--navbar:after {
  content: attr(data-mm-spn-title);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  height: var(--mm-spn-item-height);
  padding: 0 calc(30px * 2);
  padding: 0 calc(var(--mm-spn-item-indent) * 2);
  line-height: 80px;
  line-height: var(--mm-spn-item-height);
  opacity: 0.4;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mm-spn.mm-spn--navbar.mm-spn--main:after {
  padding-left: 30px;
  padding-left: var(--mm-spn-item-indent);
}

.mm-spn.mm-spn--navbar ul {
  top: calc(80px + 1px);
  top: calc(var(--mm-spn-item-height) + 1px);
}

.mm-spn.mm-spn--navbar ul:before {
  content: "";
  display: block;
  position: fixed;
  top: inherit;
  z-index: 2;
  width: 100%;
  border-top: 1px solid currentColor;
  opacity: 0.15;
}

.mm-spn.mm-spn--light {
  color: #444;
  background: #f3f3f3;
}

.mm-spn.mm-spn--dark {
  color: #ddd;
  background: #333;
}

.mm-spn.mm-spn--vertical {
  overflow-y: auto;
}

.mm-spn.mm-spn--vertical ul {
  width: 100%;
  padding-right: 0;
  position: static;
}

.mm-spn.mm-spn--vertical ul ul {
  display: none;
  padding-left: 30px;
  padding-left: var(--mm-spn-item-indent);
}

.mm-spn.mm-spn--vertical ul ul:after {
  height: calc(80px / 2);
  height: calc(var(--mm-spn-item-height) / 2);
}

.mm-spn.mm-spn--vertical ul.mm-spn--open {
  display: block;
}

.mm-spn.mm-spn--vertical li.mm-spn--open:before {
  -webkit-transform: rotate(135deg) translate(-50%, 0);
  transform: rotate(135deg) translate(-50%, 0);
}

.mm-spn.mm-spn--vertical ul ul li:last-child:after {
  content: none;
  display: none;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 100%;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  background: rgba(0, 0, 0, 0);
  -webkit-transition-property: bottom, background-color;
  transition-property: bottom, background-color;
  -webkit-transition-duration: 0s, 0.3s;
          transition-duration: 0s, 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-delay: 0.45s, 0.15s;
          transition-delay: 0.45s, 0.15s;
  isolation: isolate;
}
.drawer--content {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  min-width: 200px;
  max-width: 320px;
  max-width: var(--menu-mobile-width);
  background: #fff;
  background: var(--white);
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
@media all and (min-width: 40em) {
  .drawer--content {
    width: 80%;
    max-width: 440px;
    max-width: var(--menu-width);
  }
}
.drawer--backdrop {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  background: rgba(3, 2, 1, 0);
}
.drawer--user {
  height: 80px;
  height: var(--header-height, 80px);
  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;
  gap: 10px;
  padding-left: 10px;
  padding-right: 15px;
}
@media all and (min-width: 40em) {
  .drawer--user {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.drawer--user--button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #cfc1ab;
  color: var(--icons-color);
  overflow: hidden;
}
.drawer--user--button .ico {
  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: 38px;
  height: 38px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38px;
          flex: 0 0 38px;
}
@media all and (min-width: 40em) {
  .drawer--user--button .ico {
    width: 48px;
    height: 48px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48px;
            flex: 0 0 48px;
  }
}
.drawer--user--button svg {
  display: block;
  width: 30px;
  height: 30px;
}
@media all and (min-width: 40em) {
  .drawer--user--button svg {
    width: 38px;
    height: 38px;
  }
}
.drawer--user--button span {
  color: #21414a;
  color: var(--primary-color);
  font-size: 0.875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media all and (min-width: 40em) {
  .drawer--user--button span {
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .drawer--user--button {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .drawer--user--button:hover {
    color: hsl(from #cfc1ab h s calc(l - 10));
    color: hsl(from var(--icons-color) h s calc(l - 10));
  }
  .drawer--user--button:hover span {
    color: hsl(from #21414a h s calc(l - 10));
    color: hsl(from var(--primary-color) h s calc(l - 10));
  }
}
.drawer--user .logout {
  color: #21414a;
  color: var(--primary-color);
  font-size: 0.875rem;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media all and (min-width: 40em) {
  .drawer--user .logout {
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .drawer--user .logout:hover {
    color: hsl(from #21414a h s calc(l - 10));
    color: hsl(from var(--primary-color) h s calc(l - 10));
  }
}
.drawer-is-open .drawer {
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.drawer-is-open .drawer .drawer--content {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.main-nav {
  background-color: #3f8242 !important;
  background-color: var(--menu-bg-color) !important;
  color: #fff !important;
  color: var(--menu-link-color) !important;
}
.main-nav.mm-spn--navbar:before {
  opacity: 1 !important;
  z-index: 1;
}
.main-nav.mm-spn--navbar:after {
  background-color: #21414a;
  background-color: var(--menu-title-bg-color);
  color: #fff;
  color: var(--menu-title-color);
  font-size: 24px;
  font-family: "Baloo Thambi 2", system-ui;
  font-weight: 700;
  text-align: left !important;
  opacity: 1 !important;
}
.main-nav ul {
  top: calc(80px) !important;
  top: calc(var(--mm-spn-item-height)) !important;
}
.main-nav .main-menu {
  --title-color: #fff;
  --title-color: var(--white);
  max-height: calc(100vh - 80px * 2);
  max-height: calc(100vh - var(--header-height) * 2);
}
.main-nav .main-menu:before {
  border-color: #4ea052 !important;
  border-color: var(--menu-border-color) !important;
  opacity: 1 !important;
}
.main-nav .main-menu--item::before {
  content: "";
  opacity: 1 !important;
  top: 0;
  right: 1px;
  border: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.851' height='15' viewBox='0 0 8.851 15'%3E%3Cpath d='M4385.6,191.647l-1.351-1.352,6.148-6.148L4384.251,178l1.351-1.352,7.5,7.5Z' transform='translate(-4384.251 -176.647)' fill='%23fff'/%3E%3C/svg%3E%0A");
  background-size: 10px 15px;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: auto;
  aspect-ratio: 1/1;
  -webkit-transform: rotate(0deg) translate(0, 0);
          transform: rotate(0deg) translate(0, 0);
}
.main-nav .main-menu--item:after {
  border-color: #4ea052 !important;
  border-color: var(--menu-border-color) !important;
  opacity: 1 !important;
  margin-left: 0 !important;
}
.main-nav .main-menu--item a {
  font-size: 1.0625rem;
  padding-top: 15px;
  padding-bottom: 15px;
}
.main-nav .main-menu--item a:not(:last-child) {
  width: calc(100% - 56px);
}
.main-nav .main-menu--item a:not(:last-child):after {
  border-color: #4ea052 !important;
  border-color: var(--menu-border-color) !important;
  opacity: 1;
}
.main-nav .main-menu--item a span {
  display: block;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}
.main-nav .main-menu--item a.selected {
  background-color: hsl(from #3f8242 h s calc(l - 5));
  background-color: hsl(from var(--secondary-color) h s calc(l - 5));
}
@media (hover: hover) {
  .main-nav .main-menu--item a {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .main-nav .main-menu--item a:not(.selected):hover {
    background-color: hsl(from #3f8242 h s calc(l - 5));
    background-color: hsl(from var(--secondary-color) h s calc(l - 5));
  }
}
.main-nav .main-menu--item--primary > a {
  text-transform: uppercase;
}
.main-nav .main-menu--item--primary a span:before {
  content: "•";
  position: absolute;
  left: -10px;
  top: 0;
}
.main-nav .main-menu--item > ul li a {
  text-transform: uppercase;
}

/**
 * Footer
 */
.footer {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.footer--main-nav {
  background-color: #fff;
  background-color: var(--footer-bg-color);
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
.footer--main-nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 4);
  gap: calc(var(--gap) * 4);
}
.footer--main-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: calc(.938rem * 2);
     -moz-column-gap: calc(.938rem * 2);
          column-gap: calc(.938rem * 2);
  -webkit-column-gap: calc(var(--gap) * 2);
     -moz-column-gap: calc(var(--gap) * 2);
          column-gap: calc(var(--gap) * 2);
  row-gap: calc(.938rem * 4);
  row-gap: calc(var(--gap) * 4);
}
@media all and (min-width: 40em) {
  .footer--main-menu {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.footer--main-menu a {
  display: block;
  font-size: 0.8125rem;
}
@media (hover: hover) {
  .footer--main-menu a {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .footer--main-menu a:hover {
    color: hsl(from currentColor h s calc(l - 10));
  }
}
.footer--main-menu a.selected {
  color: hsl(from currentColor h s calc(l - 10));
  text-decoration: underline;
}
.footer--main-menu > li > a {
  font-size: 1rem;
  margin-bottom: .938rem;
  margin-bottom: var(--pad);
  text-transform: uppercase;
}
.footer--main-menu > li > ul {
  padding: 0;
  margin: 0;
}
.footer--main-menu > li > ul a {
  padding-top: 5px;
  padding-bottom: 5px;
}
.footer .social--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.footer .social a {
  display: block;
  color: #cfc1ab;
  color: var(--icons-color);
}
@media (hover: hover) {
  .footer .social a {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .footer .social a:hover {
    color: hsl(from #cfc1ab h s calc(l - 10));
    color: hsl(from var(--icons-color) h s calc(l - 10));
  }
}
.footer .social svg {
  height: 50px;
  width: 50px;
  fill: currentColor;
}
.footer--info {
  border-top: 2px solid #f2eee7;
  border-top: 2px solid var(--footer-border-color);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer--info .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 4);
  gap: calc(var(--gap) * 4);
}
@media all and (min-width: 40em) {
  .footer--info .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: calc(.938rem * 2);
       -moz-column-gap: calc(.938rem * 2);
            column-gap: calc(.938rem * 2);
    -webkit-column-gap: calc(var(--gap) * 2);
       -moz-column-gap: calc(var(--gap) * 2);
            column-gap: calc(var(--gap) * 2);
  }
}
.footer--info .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(.938rem * 2);
  gap: calc(var(--pad) * 2);
}
.footer--info .address p {
  font-size: 0.8125rem;
}
.footer--info .address p a {
  color: #3f8242;
  color: var(--secondary-color);
  text-decoration: none;
}
@media (hover: hover) {
  .footer--info .address p a {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .footer--info .address p a:hover {
    text-decoration: underline;
  }
}
.footer--info .certificate p {
  font-size: 0.8125rem;
  margin-bottom: calc(.938rem * 2);
  margin-bottom: calc(var(--pad) * 2);
}
.footer--info .certificate--logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.footer--secondary-nav {
  background-color: #3f8242;
  background-color: var(--footer-secondary-nav-bg-color);
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
}
.footer--secondary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(.938rem);
  gap: calc(var(--gap));
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer--secondary-menu a {
  display: block;
  color: #fff;
  color: var(--footer-secondary-menu-link-color);
  font-size: 0.8125rem;
  font-weight: 500;
}
@media (hover: hover) {
  .footer--secondary-menu a {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .footer--secondary-menu a:hover {
    opacity: 0.7;
  }
}
.footer--bottom {
  background-color: #21414a;
  background-color: var(--footer-bottom-bg-color);
  color: #fff;
  color: var(--footer-bottom-color);
  font-size: 0.8125rem;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  height: 200px;
}
.drawer-is-open .footer {
  -webkit-transform: translate3d(320px, 0, 0);
          transform: translate3d(320px, 0, 0);
  -webkit-transform: translate3d(var(--menu-mobile-width), 0, 0);
          transform: translate3d(var(--menu-mobile-width), 0, 0);
}
@media all and (min-width: 40em) {
  .drawer-is-open .footer {
    -webkit-transform: translate3d(440px, 0, 0);
            transform: translate3d(440px, 0, 0);
    -webkit-transform: translate3d(var(--menu-width), 0, 0);
            transform: translate3d(var(--menu-width), 0, 0);
  }
}

/**
 * HEADER
 */
/**
 * Accordion
 */
/* var for close btn */
.iw-wrapper {
  display: none;
  position: absolute;
  text-align: left;
  z-index: -100;
  width: 280px;
  bottom: calc(100% + 15px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.1));
}
.iw-wrapper.in {
  display: block;
  z-index: 200;
}
.iw-wrapper::after {
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 100%;
  border-right: solid 11px transparent;
  border-left: solid 11px transparent;
  border-top: solid 11px white;
}
.iw-content {
  background-color: #fff !important;
  background-color: var(--white) !important;
  -webkit-filter: drop-shadow(0 0 1px #f2eee7);
          filter: drop-shadow(0 0 1px #f2eee7);
  -webkit-filter: drop-shadow(0 0 1px var(--secondary-bg-color));
          filter: drop-shadow(0 0 1px var(--secondary-bg-color));
  padding: .938rem 24px;
  padding: var(--pad) 24px;
  position: relative;
  font-family: "Nunito Sans", sans-serif, -apple-system, blinkmacsystemfont, "Segoe UI", "Helvetica Neue", arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.iw-content:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid #fff;
  border-top: 10px solid var(--white);
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
}
.iw-content .type {
  background-color: rgba(#000, 0.4);
  background-color: rgba(var(--black), 0.4);
  color: #fff;
  color: var(--white);
  font-size: 11px;
  margin-left: -15px;
  margin-top: -20px;
  margin-bottom: 10px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 70%;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  text-transform: uppercase;
  font-weight: 500;
}
.iw-content .infowindow--title {
  font-size: 22px;
  color: #21414a;
  color: var(--title-color);
  font-family: "Baloo Thambi 2", system-ui;
  font-weight: 600;
  line-height: 1.2;
  display: block;
  padding-right: 30px;
  margin-bottom: 5px;
}
.iw-content .infowindow--txt p {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.5;
}
.iw-content .infowindow--txt .cta {
  display: block;
  font-size: 15px;
  color: #21414a;
  color: var(--primary-color);
  text-align: right;
}
.iw-close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  font-size: 0;
  position: absolute;
  right: .938rem;
  right: var(--gap);
  text-indent: -9999px;
  top: .938rem;
  top: var(--gap);
  z-index: 100;
  width: 12px;
  height: 12px;
  pointer-events: all;
}
.iw-close:focus {
  outline: none;
}
.iw-close span {
  background: none;
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  opacity: 1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 12px;
}
.iw-close span:before, .iw-close span:after {
  background-color: #dcd2c1;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}
.iw-close span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.iw-close span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (hover: hover) {
  .iw-close:hover span {
    opacity: 0.8;
  }
}

.map .storeInfoWindow {
  position: relative;
}
.map .storeInfoWindow .icon {
  background-repeat: no-repeat;
  background-size: contain;
  width: 48px;
  height: 48px;
}
.map .storeInfoWindow.active .iw-wrapper {
  display: block;
  pointer-events: none;
}
.map .storeInfoWindow.active .links {
  pointer-events: all;
}
.map .storeInfoWindow.active .infowindow--txt {
  pointer-events: all;
}
.map .storeInfoWindow:not(.active) .icon.bounce {
  -webkit-animation: bounce 0.5s;
          animation: bounce 0.5s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.05, 1, 0.5);
          animation-timing-function: cubic-bezier(0.5, 0.05, 1, 0.5);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }
}

@keyframes bounce {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }
}
.pagination {
  --pagination-button-bg-color: transparent;
  --pagination-button-border-color: transparent;
  --pagination-button-border-radius: 9px;
  --pagination-button-hover-color: var(--primary-color);
  --pagination-button-active-bg-color: var(--secondary-bg-color);
  --pagination-button-active-border-color: var(--primary-color);
  --pagination-button-active-color: var(--primary-color);
  --pagination-button-h: 30px;
  --pagination-button-w: 40px;
  --pagination-button-color: var(--icons-color);
  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;
}
.pagination--page {
  border: undefined;
  border: 2px solid var(--pagination-button-border-color);
  border-radius: undefined;
  border-radius: var(--pagination-button-border-radius);
  background-color: undefined;
  background-color: var(--pagination-button-bg-color);
  height: undefined;
  height: var(--pagination-button-h);
  width: undefined;
  width: var(--pagination-button-w);
  min-width: undefined;
  min-width: var(--pagination-button-w);
  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;
  color: undefined;
  color: var(--pagination-button-color);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
}
@media all and (min-width: 40em){
  .pagination--page{
  min-width: 50px;
  min-width: var(--pagination-button-w);
  }
}
@media all and (min-width: 40em){
  .pagination--page{
  width: 50px;
  width: var(--pagination-button-w);
  }
}
@media all and (min-width: 40em){
  .pagination--page{
  height: 40px;
  height: var(--pagination-button-h);
  }
}
@media all and (min-width: 40em) {
  .pagination--page {
    --pagination-button-h: 40px;
    --pagination-button-w: 50px;
    font-size: 0.9375rem;
  }
}
.pagination--page.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.pagination--page.active {
  border-color: currentColor;
  color: undefined;
  color: var(--pagination-button-active-color);
  cursor: default;
}
@media (hover: hover) {
  .pagination--page {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .pagination--page:hover:not(.active) {
    color: undefined;
    color: var(--pagination-button-hover-color);
  }
}
.pagination .ais-Pagination--noRefinement {
  display: none;
}

.pre-footer {
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.pre-footer .divider {
  background-color: #3f8242;
  background-color: var(--secondary-color);
  height: calc(.938rem * 2);
  height: calc(var(--pad) * 2);
}
.drawer-is-open .pre-footer {
  -webkit-transform: translate3d(320px, 0, 0);
          transform: translate3d(320px, 0, 0);
  -webkit-transform: translate3d(var(--menu-mobile-width), 0, 0);
          transform: translate3d(var(--menu-mobile-width), 0, 0);
}
@media all and (min-width: 40em) {
  .drawer-is-open .pre-footer {
    -webkit-transform: translate3d(440px, 0, 0);
            transform: translate3d(440px, 0, 0);
    -webkit-transform: translate3d(var(--menu-width), 0, 0);
            transform: translate3d(var(--menu-width), 0, 0);
  }
}

/**
 * Clearfix
 */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/**
 * Text Alignment
 */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

/**
 * Visibility
 */
.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto; /* new - was 1px */
  margin: 0; /* new - was -1px */
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap; /* 1 */
}

@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .hide-s {
    display: none !important;
  }
}

.show-s {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media all and (min-width: 40em) {
  .show-s {
    display: none !important;
  }
}

.show-m-down {
  display: none;
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .show-m-down {
    display: block;
  }
}

@media all and (min-width: 18.75em) and (max-width: 57.4375em) {
  .hide-m-down {
    display: none !important;
  }
}

/**
 * Navbar
 */
.header {
  --header--pad__lr: 15px;
  background-color: #fff;
  background-color: var(--header-bg-color, var(--white));
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  isolation: isolate;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  z-index: 1;
}
.header.out {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.header.pin {
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header.hidden {
  opacity: 0;
  pointer-events: none;
}
.drawer-is-open .header {
  -webkit-transform: translate3d(320px, 0, 0);
          transform: translate3d(320px, 0, 0);
  -webkit-transform: translate3d(var(--menu-mobile-width), 0, 0);
          transform: translate3d(var(--menu-mobile-width), 0, 0);
}
@media all and (min-width: 40em) {
  .drawer-is-open .header {
    -webkit-transform: translate3d(440px, 0, 0);
            transform: translate3d(440px, 0, 0);
    -webkit-transform: translate3d(var(--menu-width), 0, 0);
            transform: translate3d(var(--menu-width), 0, 0);
  }
}
.drawer-is-open .header.pin {
  -webkit-transform: translate3d(320px, 0, 0);
          transform: translate3d(320px, 0, 0);
  -webkit-transform: translate3d(var(--menu-mobile-width), 0, 0);
          transform: translate3d(var(--menu-mobile-width), 0, 0);
}
@media all and (min-width: 40em) {
  .drawer-is-open .header.pin {
    -webkit-transform: translate3d(440px, 0, 0);
            transform: translate3d(440px, 0, 0);
    -webkit-transform: translate3d(var(--menu-width), 0, 0);
            transform: translate3d(var(--menu-width), 0, 0);
  }
}
.header--space {
  height: 80px;
  height: var(--header-height, 80px);
}

.navbar {
  background-color: #fff;
  background-color: var(--header-bg-color, var(--white));
  height: 80px;
  height: var(--header-height, 80px);
}
.navbar .container {
  height: 100%;
}
.navbar .inner {
  height: 100%;
  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: 13px;
}
@media all and (min-width: 40em) {
  .navbar .inner {
    gap: 30px;
  }
}
@media all and (min-width: 57.5em) {
  .navbar .inner {
    gap: 80px;
    padding-left: .938rem;
    padding-left: var(--pad);
    padding-right: .938rem;
    padding-right: var(--pad);
  }
}
.navbar--sx, .navbar--dx {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar--sx {
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
}
@media all and (min-width: 40em) {
  .navbar--sx {
    width: auto;
    margin-right: auto;
    gap: 10px;
  }
}
.navbar--dx {
  gap: 14px;
}
@media all and (min-width: 40em) {
  .navbar--dx {
    margin-left: auto;
    gap: 20px;
  }
}
.navbar--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 1100px) {
  .navbar--center {
    width: 100%;
    height: 100%;
    position: relative;
  }
}
.navbar--center .search-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: calc(80px + 15px);
  padding-top: calc(var(--header-height, 80px) + 15px);
  padding-left: calc(.938rem * 2);
  padding-left: calc(var(--pad) * 2);
  padding-right: calc(.938rem * 2);
  padding-right: calc(var(--pad) * 2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 14000;
  width: 100%;
  isolation: isolate;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 1100px) {
  .navbar--center .search-modal {
    opacity: 1;
    pointer-events: all;
    height: 100%;
  }
}
.navbar--center .search-modal--backdrop {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  pointer-events: none;
  z-index: -1;
}
.navbar--center .search-modal.active {
  opacity: 1;
  pointer-events: all;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.navbar--center .search-modal.active .search-modal--backdrop {
  opacity: 1;
  pointer-events: all;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
@media screen and (min-width: 1100px) {
  .navbar--center .search-modal {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }
}
.navbar--center .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  position: relative;
  width: 100%;
  max-width: 700px;
}
.navbar--center .search--input {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 25px;
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  margin: 0;
  padding-left: 26px;
  padding-right: 56px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.navbar--center .search--input:focus {
  outline: none;
}
.navbar--center .search--input:focus::-webkit-input-placeholder {
  color: #d9d9d9;
}
.navbar--center .search--input:focus::-moz-placeholder {
  color: #d9d9d9;
}
.navbar--center .search--input:focus:-ms-input-placeholder {
  color: #d9d9d9;
}
.navbar--center .search--input:focus::-ms-input-placeholder {
  color: #d9d9d9;
}
.navbar--center .search--input:focus::placeholder {
  color: #d9d9d9;
}
.navbar--center .search--input:-webkit-autofill {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.navbar--center .search--input:autofill {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.navbar--center .search--input:-internal-autofill-selected {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.navbar--center .search--input:-webkit-autofill:hover {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.navbar--center .search--input:-webkit-autofill:focus {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.navbar--center .search--input:-webkit-autofill:active {
  background-color: #f2eee7 !important;
  background-color: var(--secondary-bg-color) !important;
  color: #494949 !important;
  color: var(--text-color) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #494949;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px #f2eee7;
          box-shadow: inset 0 0 20px 20px #f2eee7;
  -webkit-box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
          box-shadow: inset 0 0 20px 20px var(--secondary-bg-color);
}
.navbar--center .search--button {
  color: #cfc1ab;
  color: var(--icons-color, var(--icons-color));
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.navbar--center .search--button svg {
  width: 20px;
  height: 20px;
}
@media (hover: hover) {
  .navbar--center .search--button {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .navbar--center .search--button:hover {
    color: hsl(from #cfc1ab h s calc(l - 10));
    color: hsl(from var(--icons-color, var(--icons-color)) h s calc(l - 10));
  }
}
.navbar--brand {
  --brand-h: 32px;
  position: relative;
  z-index: 5;
}
@media all and (min-width: 40em) {
  .navbar--brand {
    --brand-h: 42px;
  }
}
.navbar--brand img {
  height: calc(32px + 15px);
  height: calc(var(--brand-h) + 15px);
  width: auto;
  max-width: none;
}
@media all and (min-width: 40em){
  .navbar--brand img{
  height: calc(42px + 15px);
  height: calc(var(--brand-h) + 15px);
  }
}
@media all and (min-width: 40em) {
  .navbar--brand img {
    height: calc(42px + 10px);
    height: calc(var(--brand-h) + 10px);
  }
  @media all and (min-width: 40em){
    .navbar--brand img{
    height: calc(42px + 10px);
    height: calc(var(--brand-h) + 10px);
    }
  }
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .navbar--brand svg {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}
.navbar--brand--text {
  display: none;
}
.navbar .btn--howToJoin {
  height: 100%;
  font-size: 14px;
}
@media all and (min-width: 40em) {
  .navbar .btn--howToJoin {
    padding: 0 calc(.938rem + 5px);
    padding: 0 calc(var(--pad) + 5px);
  }
}
.navbar .btn--howToJoin .title {
  font-size: 16px;
}
.navbar .toggler--search--button {
  display: block;
  color: #cfc1ab;
  color: var(--icons-color, var(--icons-color));
  cursor: pointer;
}
@media screen and (min-width: 1100px) {
  .navbar .toggler--search--button {
    display: none;
  }
}
.navbar .toggler--search--button svg {
  width: 30px;
  height: 30px;
}
@media all and (min-width: 40em) {
  .navbar .toggler--search--button svg {
    width: 34px;
    height: 34px;
  }
}
.navbar--user {
  color: #cfc1ab;
  color: var(--icons-color, var(--icons-color));
}
.navbar--user--button {
  display: block;
}
.navbar--user--button .ico {
  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: 38px;
  height: 38px;
}
@media all and (min-width: 40em) {
  .navbar--user--button .ico {
    width: 48px;
    height: 48px;
  }
}
.navbar--user svg {
  display: block;
  width: 30px;
  height: 30px;
}
@media all and (min-width: 40em) {
  .navbar--user svg {
    width: 38px;
    height: 38px;
  }
}
@media (hover: hover) {
  .navbar--user {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .navbar--user:hover {
    color: hsl(from #cfc1ab h s calc(l - 10));
    color: hsl(from var(--icons-color, var(--icons-color)) h s calc(l - 10));
  }
}
.navbar .toggler {
  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;
  position: relative;
  width: 54px;
  aspect-ratio: 1/1;
  color: #cfc1ab;
  color: var(--icons-color, var(--icons-color));
  cursor: pointer;
  z-index: 12010;
  margin-left: -15px;
}
.navbar .toggler:focus {
  outline: none;
}
.navbar .toggler--line {
  display: block;
  position: relative;
  background-color: currentColor;
  height: 3px;
  width: 24px;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.navbar .toggler--line:before, .navbar .toggler--line:after {
  content: "";
  background-color: currentColor;
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.navbar .toggler--line:before {
  top: -7px;
}
.navbar .toggler--line:after {
  top: 7px;
}
@media (hover: hover) {
  .navbar .toggler {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .navbar .toggler:hover {
    color: hsl(from #cfc1ab h s calc(l - 10));
    color: hsl(from var(--icons-color, var(--icons-color)) h s calc(l - 10));
  }
}

/**
 * Shame file
 *
 * This is a place for hacky, nasty code that should be replaced
 * and moved to the correct partial. Ideally, this is empty.
 */
/*
  Sass Techniques
  CSS Snippets
*/
/*
 * Compiles to:
 * .MyComponent {}
 * .MyComponent__child {}
 * .MyComponent--theme .MyComponent__child {}
 * .MyComponent--reversed {}
 * .MyComponent--reversed .MyComponent__child {}
*/
/*# sourceMappingURL=style.css.map */
