@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.
 */
@font-face {
  font-family: "Monument Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/MonumentGrotesk/ABCMonumentGrotesk-Bold.woff2) format("woff2"), url(../fonts/MonumentGrotesk/ABCMonumentGrotesk-Bold.woff) format("woff");
}
@font-face {
  font-family: "Monument Grotesk";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/MonumentGrotesk/ABCMonumentGrotesk-BoldItalic.woff2) format("woff2"), url(../fonts/MonumentGrotesk/ABCMonumentGrotesk-BoldItalic.woff) format("woff");
}
:root {
  /* colors */
  /* grid */ /* navbar */
}

/**
 * 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;
  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 {
  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(43, 46, 56, 0.9); /* 1 */
  -webkit-animation: fade-in 200ms both;
          animation: fade-in 200ms both;
}

/**
   * 1. Vertically and horizontally center the dialog in the page.
   * 2. Make sure the dialog sits on top of the overlay.
   * 3. Make sure the dialog has an opaque background.
   */
.dialog-content {
  margin: auto; /* 1 */
  z-index: 2; /* 2 */
  position: relative; /* 2 */
  background-color: #fff; /* 3 */
  -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%;
  padding-left: 30px;
  padding-top: 30px;
  padding-bottom: 50px;
  padding-right: 0;
}
@media all and (min-width: 40em) {
  .dialog-content {
    max-width: 600px;
    width: 90%;
    padding-left: 50px;
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.dialog-content.alert-dialog {
  padding: 50px calc(15px * 2);
  width: calc(100% - 15px * 2);
  max-width: 450px;
}
.dialog-content.alert-dialog .dialog-text {
  padding-right: 0;
}
.dialog-content .buttons--wrap {
  margin-top: calc(15px * 2);
  margin-bottom: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dialog-content .buttons--wrap .scroller {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dialog-content .buttons--wrap .scroll-content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.dialog-content .dialog-text {
  max-height: 100%;
  padding-right: 50px;
}
.dialog-content h1,
.dialog-content .title {
  font-size: 16px;
}

@-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: 50px;
  height: 50px;
  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: 20px;
}

#privacy-dialog .dialog-content {
  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;
  height: 100vh;
  padding-top: 65px;
}
@media all and (min-width: 40em) {
  #privacy-dialog .dialog-content {
    max-height: 90vh;
    padding-top: 80px;
  }
}
#privacy-dialog .dialog-wrap {
  height: 100%;
  overflow: hidden;
}

#newsletter-dialog {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#newsletter-dialog .dialog-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}
#newsletter-dialog .dialog-close {
  right: 15px;
  top: 15px;
  color: #fff;
  width: 25px;
  height: 20px;
  z-index: 10;
}
@media all and (min-width: 40em) {
  #newsletter-dialog .dialog-close {
    width: 30px;
    height: 30px;
  }
}
#newsletter-dialog .dialog-close svg {
  height: 30px;
}
#newsletter-dialog .dialog-close:before {
  content: "";
  background-color: #fff;
  width: 25px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
}
#newsletter-dialog .dialog-close:after {
  content: "";
  background-color: #fff;
  width: 25px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
}
@media all and (min-width: 40em) {
  #newsletter-dialog .dialog-close:before, #newsletter-dialog .dialog-close:after {
    width: 40px;
  }
}
#newsletter-dialog .dialog-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
#newsletter-dialog .dialog-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
#newsletter-dialog .dialog-content {
  max-width: none;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  margin-bottom: 0;
  padding: 0;
}
@media all and (min-width: 40em) {
  #newsletter-dialog .dialog-content {
    max-height: 100%;
    height: auto;
  }
}
#newsletter-dialog .dialog-content .scrollbar-track-y {
  right: 0 !important;
}
#newsletter-dialog .dialog-wrap {
  overflow: auto;
}
@media all and (min-width: 40em) {
  #newsletter-dialog .dialog-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
#newsletter-dialog .dialog-text {
  padding: 15px;
}
@media all and (min-width: 40em) {
  #newsletter-dialog .dialog-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
  }
  #newsletter-dialog .dialog-text .thom-form {
    margin-top: auto;
  }
}
#newsletter-dialog .dialog-text > p {
  font-size: clamp(1.25rem, 1.1713rem + 0.3704vw, 1.5rem);
  margin-bottom: calc(clamp(.938rem, 3.241vw + .208rem, 3.125rem) * 2);
}
#newsletter-dialog .dialog-image {
  max-height: 250px;
  overflow: hidden;
}
@media all and (min-width: 40em) {
  #newsletter-dialog .dialog-image {
    max-height: none;
    width: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
    position: relative;
    isolation: isolate;
  }
}
#newsletter-dialog .dialog-image img {
  max-width: none;
  height: 101%;
  width: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (min-width: 40em) {
  #newsletter-dialog .dialog-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
  }
}

#alert-dialog {
  z-index: 2010;
}

/**
 * Document defaults (html, body)
 */
html,
body {
  font-family: "Monument Grotesk", sans-serif, -apple-system, blinkmacsystemfont, "Segoe UI", "Helvetica Neue", arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.1;
}

html {
  background-color: #fff;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a,
button {
  line-height: normal;
}
a p,
button p {
  line-height: 1.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: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  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--loader .brand svg {
  width: 100px;
}
.thom-form.loading .thom-form--loader {
  opacity: 1;
  pointer-events: all;
}
.thom-form.loading .thom-form--loader .brand svg {
  -webkit-animation: col 3s linear infinite;
          animation: col 3s linear infinite;
}
.thom-form-response {
  position: relative;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.thom-form-response.is-hidden {
  opacity: 0;
}
.thom-form__row {
  text-align: left;
}
@media all and (min-width: 40em) {
  .thom-form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
  }
  .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 {
  border-bottom: 1px solid #000;
  margin: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
@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;
}
.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.aligh-h-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .thom-form__column--full {
    width: calc(100% - 0px);
  }
  .thom-form__column--w-10 {
    width: calc(10% - 7.5px);
  }
  .thom-form__column--w-20 {
    width: calc(20% - 7.5px);
  }
  .thom-form__column.w-25 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .thom-form__column--w-30 {
    width: calc(30% - 7.5px);
  }
  .thom-form__column--w-1-3 {
    width: calc(33.3333333333% - 7.5px);
  }
  .thom-form__column.w-40 {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
  .thom-form__column.w-45 {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
  .thom-form__column.w-50 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .thom-form__column--w-60 {
    width: calc(60% - 7.5px);
  }
  .thom-form__column--w-70 {
    width: calc(70% - 7.5px);
  }
  .thom-form__column--w-80 {
    width: calc(80% - 7.5px);
  }
}
.thom-form .has-danger {
  color: #de2b2b;
}
.thom-form .has-danger .form-control {
  color: #de2b2b;
}
.thom-form .has-danger .form-control::-webkit-input-placeholder {
  color: #de2b2b;
}
.thom-form .has-danger .form-control::-moz-placeholder {
  color: #de2b2b;
}
.thom-form .has-danger .form-control:-ms-input-placeholder {
  color: #de2b2b;
}
.thom-form .has-danger .form-control::-ms-input-placeholder {
  color: #de2b2b;
}
.thom-form .has-danger .form-control::placeholder {
  color: #de2b2b;
}
.thom-form .has-danger .thom-form__checkcont__customcheckbox:before {
  border-color: #de2b2b;
}
.thom-form .has-danger .pristine-error {
  display: none !important;
}
.thom-form__label {
  display: block;
  font-size: 16px;
  text-align: left;
  margin-bottom: 15px;
}
.thom-form__input-text {
  background-color: #fff;
  border: 0;
  border-radius: 0;
  color: #000;
  display: block;
  font-size: 16px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: normal;
  padding: 0;
}
.thom-form__input-textarea {
  background-color: #fff;
  border: 0;
  border-radius: 0;
  color: #000;
  display: block;
  font-size: 16px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: normal;
  padding: 0;
}
.thom-form__select {
  background-color: #fff;
  border: 0;
  border-radius: 0;
  color: #000;
  display: block;
  font-size: 16px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: normal;
  padding: 0;
}
.thom-form__input-text::-webkit-input-placeholder {
  color: #000;
}
.thom-form__input-text::-moz-placeholder {
  color: #000;
}
.thom-form__input-text:-ms-input-placeholder {
  color: #000;
}
.thom-form__input-text::-ms-input-placeholder {
  color: #000;
}
.thom-form__input-text::placeholder {
  color: #000;
}
.thom-form__input-textarea::-webkit-input-placeholder {
  color: #000;
}
.thom-form__input-textarea::-moz-placeholder {
  color: #000;
}
.thom-form__input-textarea:-ms-input-placeholder {
  color: #000;
}
.thom-form__input-textarea::-ms-input-placeholder {
  color: #000;
}
.thom-form__input-textarea::placeholder {
  color: #000;
}
.thom-form__select::-webkit-input-placeholder {
  color: #000;
}
.thom-form__select::-moz-placeholder {
  color: #000;
}
.thom-form__select:-ms-input-placeholder {
  color: #000;
}
.thom-form__select::-ms-input-placeholder {
  color: #000;
}
.thom-form__select::placeholder {
  color: #000;
}
.thom-form__input-text:focus, .thom-form__input-textarea:focus, .thom-form__select:focus {
  outline: none;
}
.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:-webkit-autofill {
  background-color: #fff !important;
  color: #000 !important;
}
.thom-form__input-text:autofill {
  background-color: #fff !important;
  color: #000 !important;
}
.thom-form__input-textarea:-webkit-autofill {
  background-color: #fff !important;
  color: #000 !important;
}
.thom-form__input-textarea:autofill {
  background-color: #fff !important;
  color: #000 !important;
}
.thom-form__select:-webkit-autofill {
  background-color: #fff !important;
  color: #000 !important;
}
.thom-form__select:autofill {
  background-color: #fff !important;
  color: #000 !important;
}
.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-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff 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-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff 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-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff 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-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff 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-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff 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-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff 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-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff 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-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff 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-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff 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-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff 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-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff 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-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff 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;
  color: rgba(#000, 0.7);
}
.thom-form input:read-only {
  background-color: #fff;
  color: rgba(#000, 0.7);
}
.thom-form textarea:-moz-read-only {
  background-color: #fff;
  color: rgba(#000, 0.7);
}
.thom-form textarea:read-only {
  background-color: #fff;
  color: rgba(#000, 0.7);
}
.thom-form__select[multiple] {
  background: none;
  height: auto;
  padding-top: 10px;
}
.thom-form__input-textarea {
  height: 200px;
  resize: none;
}
.thom-form__select {
  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-repeat: no-repeat;
  background-position: 100%;
  background-size: 21px 11px;
  padding-right: 36px;
}
.thom-form .select:after {
  background-image: undefined !important;
  width: 60px;
}
.thom-form__submit {
  display: block;
  background-color: transparent;
  border: 1px solid currentColor;
  color: #000;
  cursor: pointer;
  height: 40px !important;
  padding: 0 calc(15px * 2);
  text-align: center;
  width: auto;
  margin-right: auto;
  margin-top: calc(15px * 2);
}
@media all and (min-width: 40em) {
  .thom-form__submit {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
}
.thom-form__checkgroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media all and (min-width: 40em) {
  .thom-form__checkgroup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.thom-form__checkgroup .thom-form__checkcont {
  margin: 0;
}
.thom-form__checkgroup .thom-form__checkcont label {
  font-size: 16px;
}
.thom-form__checkgroup .thom-form__checkcont .thom-form__label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.thom-form__checkgroup .thom-form__checkcont__customcheckbox {
  margin-top: 0;
}
.thom-form__checkgroup.btnStyle {
  padding-bottom: calc(15px * 2);
}
@media all and (min-width: 40em) {
  .thom-form__checkgroup.btnStyle {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.thom-form__checkgroup.btnStyle .thom-form__checkcont {
  margin: 0;
}
.thom-form__checkgroup.btnStyle .thom-form__checkcont label {
  font-size: 14px;
}
.thom-form__checkgroup.btnStyle .thom-form__checkcont__label {
  z-index: 10;
}
.thom-form__checkgroup.btnStyle .thom-form__checkcont .thom-form__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  height: 40px;
  padding: 0 calc(15px);
  position: relative;
}
@media all and (min-width: 40em) {
  .thom-form__checkgroup.btnStyle .thom-form__checkcont .thom-form__label {
    padding: 0 calc(15px * 2);
  }
}
.thom-form__checkgroup.btnStyle .thom-form__checkcont__customcheckbox {
  position: absolute;
  border-radius: 5px;
  border: 0;
  margin-top: 0;
  width: 100%;
  height: 100%;
}
.thom-form__checkgroup.btnStyle .thom-form__checkcont__customcheckbox:before {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.thom-form__checkgroup.btnStyle .thom-form__checkcont__customcheckbox:after {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.thom-form__checkgroup.btnStyle .thom-form__checkcont .thom-form__checkcont__checkbox:checked ~ .thom-form__checkcont__label {
  color: #fff;
}
.thom-form__checkcont {
  display: block;
  position: relative;
}
.thom-form__checkcont:last-child {
  margin-bottom: 0;
}
.thom-form__checkcont label {
  line-height: normal;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  font-size: 12px;
  text-transform: none;
  width: auto;
}
.thom-form__checkcont__label {
  color: #000;
  margin: 0;
  padding: 0 10px;
  position: relative;
}
.thom-form__checkcont__label a {
  padding: 0;
  text-decoration: none;
}
.thom-form__checkcont__checkbox {
  border: 0;
  display: block;
  height: 16px;
  width: 16px;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  z-index: 10;
}
.thom-form__checkcont__customcheckbox {
  height: 16px;
  position: relative;
  width: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
}
.thom-form__checkcont__customcheckbox:before {
  content: "";
  position: absolute;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: #fff;
  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__checkcont__customcheckbox:after {
  content: "";
  background-color: #000;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  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__checkcont__customcheckbox.radio {
  border-radius: 50rem;
}
.thom-form__checkcont__customcheckbox.radio:after {
  border-radius: 50rem;
}
.thom-form__checkcont__checkbox:checked ~ .thom-form__checkcont__customcheckbox:after {
  opacity: 1;
}
.thom-form-selectfile {
  display: block;
  position: relative;
}
.thom-form-selectfile > span {
  display: block;
}
.thom-form-selectfile__input_file {
  background-color: #fff;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.thom-form-selectfile__label {
  border-bottom: 2px solid #000;
  color: #000;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 40px;
  margin-top: 0;
  width: 100%;
  padding: 0 4px;
  font-size: 0.75rem;
}
@media all and (min-width: 40em) {
  .thom-form-selectfile__label {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
}
.thom-form-selectfile i {
  position: relative;
  width: 2vw;
}
.thom-form-selectfile i:before {
  content: "";
  background-color: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.thom-form-selectfile i:after {
  content: "";
  background-color: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.thom-form-selectfile i.icon-plus {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.thom-form-selectfile i.icon-plus:before {
  width: 0.2vw;
  height: 2vw;
}
.thom-form-selectfile i.icon-plus:after {
  width: 2vw;
  height: 0.2vw;
}
.thom-form-selectfile .ico img {
  width: 12px;
}
.thom-form-selectfile:focus .thom-form-selectfile__label {
  color: #000;
}
@media (hover: hover) {
  .thom-form-selectfile:hover .thom-form-selectfile__label {
    color: #000;
  }
}
.thom-form .input-validation-error {
  background-color: #de2b2b;
  border-color: #de2b2b;
}
.thom-form__checkcont__checkbox.input-validation-error ~ .thom-form__checkcont__label {
  color: #de2b2b;
}
.thom-form__checkcont__checkbox.input-validation-error ~ .thom-form__checkcont__label a {
  color: #de2b2b;
}
.thom-form__checkcont__checkbox.input-validation-error ~ .thom-form__checkcont__customcheckbox {
  border-color: #de2b2b;
}
.thom-form__recaptchaCont {
  margin-bottom: calc(clamp(.938rem, 3.241vw + .208rem, 3.125rem) * 2);
  overflow: hidden;
}
@media all and (min-width: 40em) {
  .thom-form__recaptchaCont {
    margin-bottom: calc(clamp(.938rem, 3.241vw + .208rem, 3.125rem));
  }
}
.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, 3.125rem) / 2);
  padding: 0 calc(clamp(.938rem, 3.241vw + .208rem, 3.125rem) / 2);
  width: 100%;
}
.thom-form__error {
  display: block;
  clear: both;
  margin-left: auto;
  margin-right: auto;
  color: #de2b2b;
  margin-bottom: 20px;
  padding: 0;
}
.thom-form__error::after {
  display: block;
  clear: both;
  content: "";
}
.thom-form .inv-recaptcha-holder {
  position: relative;
  margin-top: 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 {
  margin: 0 auto;
  position: relative;
}

.max-w {
  max-width: calc(87.5rem + clamp(.938rem, 3.241vw + .208rem, 3.125rem) * 2);
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.max-w-s {
  max-width: calc(60rem + clamp(.938rem, 3.241vw + .208rem, 3.125rem) * 2);
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 40em){
  .max-w-s{
  padding-right: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
  }
}
@media all and (min-width: 40em){
  .max-w-s{
  padding-left: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
  }
}
.max-w-xs {
  max-width: calc(53.75rem + clamp(.938rem, 3.241vw + .208rem, 3.125rem) * 2);
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 40em){
  .max-w-xs{
  padding-right: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
  }
}
@media all and (min-width: 40em){
  .max-w-xs{
  padding-left: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
  }
}
.max-w-xxs {
  max-width: calc(40rem + clamp(.938rem, 3.241vw + .208rem, 3.125rem) * 2);
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 40em){
  .max-w-xxs{
  padding-right: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
  }
}
@media all and (min-width: 40em){
  .max-w-xxs{
  padding-left: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
  }
}
.max-w-md {
  max-width: calc(68.75rem + clamp(.938rem, 3.241vw + .208rem, 3.125rem) * 2);
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 40em){
  .max-w-md{
  padding-right: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
  }
}
@media all and (min-width: 40em){
  .max-w-md{
  padding-left: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
  }
}
.max-w-l {
  max-width: calc(80rem);
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
  padding-right: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
}
.max-w-xl {
  max-width: 102.5rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 40em){
  .max-w-xl{
  padding-right: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
  }
}
@media all and (min-width: 40em){
  .max-w-xl{
  padding-left: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
  }
}
.max-w-xxl {
  max-width: 115rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 40em){
  .max-w-xxl{
  padding-right: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
  }
}
@media all and (min-width: 40em){
  .max-w-xxl{
  padding-left: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
  }
}
@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;
}

@media all and (min-width: 40em) {
  .sticky {
    position: sticky;
    top: calc(80px + clamp(.938rem, 3.241vw + .208rem, 3.125rem) / 2);
  }
}
@media all and (min-width: 57.5em) {
  .sticky {
    top: calc(90px + clamp(.938rem, 3.241vw + .208rem, 3.125rem) / 2);
  }
}

.text-uppercase {
  text-transform: uppercase;
}

@media all and (min-width: 40em) {
  .flex-medium-up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.flex-h-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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 {
  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 {
  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-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;
}

.lg-backdrop {
  background-color: #fff !important;
}

/**
 * Links
 */
a {
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
@media (hover: hover) {
  a {
    -webkit-transition: color 0.35s ease-in-out;
    transition: color 0.35s ease-in-out;
  }
  a:hover {
    color: #10069f !important;
    mix-blend-mode: normal !important;
  }
}

.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,
.paragraph {
  line-height: 1.1;
}
p.xxl,
.paragraph.xxl {
  font-size: clamp(1.5rem, 1.0278rem + 2.2222vw, 3rem) !important;
}
p a,
.paragraph a {
  text-decoration: underline;
}

.text {
  line-height: 1.1;
}

/**
 * Social
 */
.social {
  display: block;
}
.social--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/**
 * Spinner
 * https://cssloaders.github.io/
 */
.loader {
  position: absolute;
  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: #fff;
  opacity: 0;
  -webkit-transition: all 0.35s 0.35s linear;
  transition: all 0.35s 0.35s linear;
}
.loader.show {
  opacity: 1;
}
.loader.show .brand svg {
  -webkit-animation: col 3s linear infinite;
          animation: col 3s linear infinite;
}
.loader .brand svg {
  width: 100px;
}

.spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid black;
  border-right: 3px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}

@-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;
}

.section--text {
  padding: 15px;
}
.section--text > *:not:last-child {
  margin-bottom: clamp(2.8125rem, 1.7099rem + 5.1887vw, 6.25rem);
}
.section--text p {
  font-size: clamp(1rem, 0.8396rem + 0.7547vw, 1.5rem);
}

.section-intro {
  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(15px * 2);
  padding: calc(15px * 2) 15px;
  padding-top: clamp(11.25rem, 1.8772rem + 1.7544vw, 12.5rem);
}
@media all and (min-width: 40em) {
  .section-intro:not(.full) {
    -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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section-intro:not(.full) > * {
    width: 50%;
  }
  .section-intro:not(.full) > *.text {
    max-width: 750px;
  }
}
.section-intro.no-p-b {
  padding-bottom: 0;
}
.section-intro h1 {
  font-size: 16px;
  text-transform: uppercase;
}
@media all and (min-width: 40em) {
  .section-intro .buttons--wrap {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media all and (min-width: 40em) {
  .section-intro .col-with-pad {
    padding-left: clamp(1rem, 7.237vw - 1.02rem, 5.313rem);
    padding-right: clamp(1rem, 7.237vw - 1.02rem, 5.313rem);
    margin-left: 150px;
    max-width: 900px;
    width: auto;
  }
}
.section-intro .text--flex .title {
  margin-bottom: calc(15px * 2);
}
@media all and (min-width: 57.5em) {
  .section-intro .text--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(1rem, 7.237vw - 1.02rem, 5.313rem);
    max-width: 0 !important;
    width: 100%;
  }
  .section-intro .text--flex > * {
    white-space: nowrap;
  }
  .section-intro .text--flex .title {
    width: 150px;
    min-width: 150px;
  }
}

.buttons--wrap {
  margin-bottom: 15px;
}
.buttons--wrap > * {
  white-space: nowrap;
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .buttons--wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    white-space: nowrap;
    margin-left: calc(-1 * 15px);
    margin-right: calc(-1 * 15px);
    position: relative;
    overflow: hidden;
    padding: 1px 0;
  }
  .buttons--wrap::before {
    content: "";
    position: absolute;
    left: -2px;
    top: -2px;
    bottom: -2px;
    width: calc(15px + 2px);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(35%, #fff), to(rgba(255, 255, 255, 0)));
    background-image: linear-gradient(90deg, #fff 35%, rgba(255, 255, 255, 0));
    z-index: 1;
    pointer-events: none;
  }
  .buttons--wrap::after {
    content: "";
    position: absolute;
    right: -2px;
    top: -2px;
    bottom: -2px;
    width: calc(15px + 2px);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(85%, #fff));
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 85%);
    z-index: 1;
    pointer-events: none;
  }
}
.buttons--wrap .label {
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .buttons--wrap .label {
    padding-left: 15px;
  }
}
.buttons--wrap .scroller {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.buttons--wrap .scroller > * {
  white-space: nowrap;
}
@media all and (min-width: 40em) {
  .buttons--wrap .scroller {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .buttons--wrap .scroller {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    white-space: nowrap;
    overflow: auto;
    padding-right: 15px;
  }
}
.buttons--wrap .scroller .scrollbar-track,
.buttons--wrap .scroller .scrollbar-thumb {
  background-color: transparent !important;
}
.buttons--wrap .scroller .scroll-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .buttons--wrap .scroller .scroll-content {
    width: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    white-space: nowrap;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.section--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section--flex > * {
  width: 50%;
}
.section--flex.flex__m {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section--flex.flex__m > * {
  width: 100%;
}
@media all and (min-width: 40em) {
  .section--flex.flex__m {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .section--flex.flex__m > * {
    width: 50%;
  }
}
.section--flex .image {
  aspect-ratio: 4/5;
  overflow: hidden;
  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;
}
.section--flex .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section--flex .text {
  padding: calc(15px * 2);
}
.section--flex .text p {
  font-size: clamp(1rem, 0.8396rem + 0.7547vw, 1.5rem);
}

.section h2 {
  font-size: 16px;
  padding: 15px;
}

.breadcrumbs {
  padding: 15px;
  font-size: 12px;
}
.breadcrumbs *:not(span)::after {
  content: " → ";
}

.pad-t__xl {
  padding-top: clamp(2.8125rem, 1.7099rem + 5.1887vw, 6.25rem);
}

.pad-t__xxl {
  padding-top: clamp(5rem, 3.5967rem + 6.6038vw, 9.375rem);
}

.pad-t__mega {
  padding-top: clamp(7.5rem, 5.2948rem + 1.3774vw, 14.375rem);
}

.pad-t__l {
  padding-top: clamp(2.5rem, 2.2049rem + 1.3889vw, 3.4375rem);
}

.pad-b__l {
  padding-bottom: clamp(2.5rem, 2.2049rem + 1.3889vw, 3.4375rem);
}

.pad-b__xl {
  padding-bottom: clamp(2.8125rem, 1.7099rem + 5.1887vw, 6.25rem);
}

.pad-b__xxl {
  padding-bottom: clamp(5.625rem, 3.761rem + 8.7719vw, 11.875rem);
}

.scrollbar-track {
  background-color: #fff !important;
  border-radius: 4px;
  pointer-events: none;
}

.scrollbar-track-y {
  right: 21px !important;
}

.scrollbar-thumb {
  background-color: #000 !important;
}

.grecaptcha-badge {
  z-index: 2000;
}
.grecaptcha-badge.hide {
  visibility: hidden;
}

.accordion--list {
  border-top: 1px solid #000;
}
.accordion--item {
  border-bottom: 1px solid #000;
  pointer-events: none;
}
.accordion--item.active {
  pointer-events: all;
}
.accordion--item.active .accordion--title:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.accordion--item.active .accordion--content {
  padding-top: 20px;
  padding-bottom: calc(15px * 2);
  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: #10069f;
  }
}
.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(15px * 2);
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  pointer-events: all;
}
.accordion--title:after {
  content: "";
  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-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: -webkit-transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@media all and (min-width: 40em) {
  .accordion--title:after {
    width: 30px;
    height: 15px;
  }
}
.accordion--content {
  height: 0;
  overflow: hidden;
  will-change: height;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  opacity: 0;
}

.finishes--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: calc(-1 * 15px / 2);
  margin-right: calc(-1 * 15px / 2);
}
.finishes--list .item {
  font-size: 12px;
  padding: 15px calc(15px / 2);
  width: 50%;
}
@media all and (min-width: 40em) {
  .finishes--list .item {
    width: 16.6666666667%;
  }
}
.finishes--list .item .image {
  margin-bottom: 5px;
}
@media all and (min-width: 40em) {
  .finishes--list .item .image {
    margin-bottom: 10px;
  }
}
@media all and (min-width: 40em) {
  .finishes .scroller {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
}

.reserved .downloads--list {
  border-top: 0;
}
@media all and (min-width: 40em) {
  .reserved .downloads--list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 0 calc(15px * 2);
  }
}
.reserved .downloads--list .downloads--item {
  border-top: 1px solid;
  border-color: #000;
  margin-bottom: -1px;
  margin-left: 0;
  margin-right: 0;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (min-width: 40em) {
  .reserved .downloads--list .downloads--item {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.reserved .downloads--list .downloads--item > * {
  padding-left: 0;
  padding-right: 0;
}
@media all and (min-width: 40em) {
  .reserved .downloads--list .downloads--item > * {
    width: auto;
  }
}
.reserved .filterable--buttons {
  margin-bottom: calc(15px * 2);
}
@media all and (min-width: 40em) {
  .reserved .filterable--buttons .scroller {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.downloads--wrap {
  padding-left: 15px;
  padding-right: 15px;
}
.downloads--wrap h2 {
  text-align: center;
  font-size: 16px;
  margin-bottom: calc(15px * 2);
}
.downloads--list {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 1px;
  overflow: hidden;
}
@media all and (min-width: 57.5em) {
  .downloads--list.press .downloads--item > *:first-child {
    min-width: 33.3333333333%;
  }
}
.downloads--item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: calc(-1 * 15px / 2);
  margin-right: calc(-1 * 15px / 2);
  position: relative;
}
.downloads--item > * {
  padding-left: calc(15px / 2);
  padding-right: calc(15px / 2);
  width: 50%;
}
.downloads--item .buttons--wrap {
  margin-bottom: 0;
}
.downloads--item .buttons--wrap .btn {
  height: 30px;
  font-size: 12px;
  padding: 0 15px;
}
@media all and (min-width: 57.5em) {
  .downloads--item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .downloads--item > * {
    width: 100%;
  }
}
.downloads--item .type {
  text-transform: uppercase;
}
.downloads--item .status {
  color: rgba(0, 0, 0, 0.2);
}

.open-gallery {
  position: relative;
  cursor: pointer;
}
.open-gallery .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
}

.fadeIn {
  opacity: 0;
}

.pageTransition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  height: 100vh;
  overflow: hidden;
  z-index: 10000;
  pointer-events: all;
  isolation: isolate;
  opacity: 1;
  -webkit-transform: all 0.35s ease-in-out;
          transform: all 0.35s ease-in-out;
}
.pageTransition .blu-screen {
  position: absolute;
  background-color: #10069f;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  z-index: 5;
  pointer-events: none;
}
.pageTransition .white-screen {
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  z-index: 10;
  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;
  pointer-events: none;
}
.pageTransition .white-screen .pageTransitionLoader {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  margin: 15px auto;
  position: relative;
  color: #10069f;
  left: -100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: shadowRolling 2s linear infinite;
          animation: shadowRolling 2s linear infinite;
}
@-webkit-keyframes shadowRolling {
  0% {
    -webkit-box-shadow: 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0);
            box-shadow: 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0);
  }
  12% {
    -webkit-box-shadow: 100px 0 #10069f, 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0);
            box-shadow: 100px 0 #10069f, 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0);
  }
  25% {
    -webkit-box-shadow: 110px 0 #10069f, 100px 0 #10069f, 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0);
            box-shadow: 110px 0 #10069f, 100px 0 #10069f, 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0);
  }
  36% {
    -webkit-box-shadow: 120px 0 #10069f, 110px 0 #10069f, 100px 0 #10069f, 0 0 rgba(16, 16, 159, 0);
            box-shadow: 120px 0 #10069f, 110px 0 #10069f, 100px 0 #10069f, 0 0 rgba(16, 16, 159, 0);
  }
  50% {
    -webkit-box-shadow: 130px 0 #10069f, 120px 0 #10069f, 110px 0 #10069f, 100px 0 #10069f;
            box-shadow: 130px 0 #10069f, 120px 0 #10069f, 110px 0 #10069f, 100px 0 #10069f;
  }
  62% {
    -webkit-box-shadow: 200px 0 rgba(16, 16, 159, 0), 130px 0 #10069f, 120px 0 #10069f, 110px 0 #10069f;
            box-shadow: 200px 0 rgba(16, 16, 159, 0), 130px 0 #10069f, 120px 0 #10069f, 110px 0 #10069f;
  }
  75% {
    -webkit-box-shadow: 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 130px 0 #10069f, 120px 0 #10069f;
            box-shadow: 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 130px 0 #10069f, 120px 0 #10069f;
  }
  87% {
    -webkit-box-shadow: 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 130px 0 #10069f;
            box-shadow: 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 130px 0 #10069f;
  }
  100% {
    -webkit-box-shadow: 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0);
            box-shadow: 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0);
  }
}
@keyframes shadowRolling {
  0% {
    -webkit-box-shadow: 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0);
            box-shadow: 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0);
  }
  12% {
    -webkit-box-shadow: 100px 0 #10069f, 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0);
            box-shadow: 100px 0 #10069f, 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0);
  }
  25% {
    -webkit-box-shadow: 110px 0 #10069f, 100px 0 #10069f, 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0);
            box-shadow: 110px 0 #10069f, 100px 0 #10069f, 0 0 rgba(16, 16, 159, 0), 0 0 rgba(16, 16, 159, 0);
  }
  36% {
    -webkit-box-shadow: 120px 0 #10069f, 110px 0 #10069f, 100px 0 #10069f, 0 0 rgba(16, 16, 159, 0);
            box-shadow: 120px 0 #10069f, 110px 0 #10069f, 100px 0 #10069f, 0 0 rgba(16, 16, 159, 0);
  }
  50% {
    -webkit-box-shadow: 130px 0 #10069f, 120px 0 #10069f, 110px 0 #10069f, 100px 0 #10069f;
            box-shadow: 130px 0 #10069f, 120px 0 #10069f, 110px 0 #10069f, 100px 0 #10069f;
  }
  62% {
    -webkit-box-shadow: 200px 0 rgba(16, 16, 159, 0), 130px 0 #10069f, 120px 0 #10069f, 110px 0 #10069f;
            box-shadow: 200px 0 rgba(16, 16, 159, 0), 130px 0 #10069f, 120px 0 #10069f, 110px 0 #10069f;
  }
  75% {
    -webkit-box-shadow: 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 130px 0 #10069f, 120px 0 #10069f;
            box-shadow: 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 130px 0 #10069f, 120px 0 #10069f;
  }
  87% {
    -webkit-box-shadow: 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 130px 0 #10069f;
            box-shadow: 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 130px 0 #10069f;
  }
  100% {
    -webkit-box-shadow: 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0);
            box-shadow: 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0), 200px 0 rgba(16, 16, 159, 0);
  }
}

@-webkit-keyframes bblFadInOut {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 2.5em 0 -1.3em;
            box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    -webkit-box-shadow: 0 2.5em 0 0;
            box-shadow: 0 2.5em 0 0;
  }
}

@keyframes bblFadInOut {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 2.5em 0 -1.3em;
            box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    -webkit-box-shadow: 0 2.5em 0 0;
            box-shadow: 0 2.5em 0 0;
  }
}
.carousel {
  background-color: #fff;
  position: relative;
}
.carousel-wrap {
  z-index: 0;
}
@media all and (min-width: 40em) {
  .carousel-wrap.swiper-initialized .carousel-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.carousel-wrap.swiper-initialized .carousel-number {
  display: block;
}
.carousel-cell {
  width: 100%;
}
.carousel-cell img {
  display: block;
  z-index: -1;
}
.carousel-arrows {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 20;
  isolation: isolate;
  cursor: none;
  mix-blend-mode: exclusion;
}
@media all and (min-width: 40em) {
  .carousel-arrows {
    display: none;
  }
}
.carousel-arrows .cursor-follower {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  color: #fff;
}
.carousel-arrows .arrow {
  color: #fff;
  width: 50%;
}
.carousel-number {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  z-index: 20;
  color: #fff;
  mix-blend-mode: exclusion;
}

.swiper-lazy-preloader {
  border-left-color: #000 !important;
  border-right-color: #000 !important;
  border-bottom-color: #000 !important;
}

.catalogues h2 {
  text-align: center;
  font-size: 16px;
  margin-bottom: calc(15px * 2);
}
.catalogues--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.catalogues--list li {
  width: 100%;
}
@media all and (min-width: 40em) {
  .catalogues--list li {
    width: 33.3333333333%;
  }
}
.catalogues--list li a {
  display: block;
  position: relative;
  isolation: isolate;
  background: linear-gradient(211deg, rgba(217, 217, 217, .47) 10.12%, rgba(217, 217, 217, .03) 94.71%);
}
.catalogues--list li .image {
  aspect-ratio: 4/5;
  overflow: hidden;
  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;
}
.catalogues--list li img {
  display: block;
  max-width: 60%;
  position: relative;
  mix-blend-mode: multiply;
}
.catalogues--list li .name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  z-index: 30;
  color: #000;
}

.company--hero {
  position: relative;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  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;
}
.company--hero img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company--hero--text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #fff;
}
.company--hero h1 {
  font-size: clamp(1rem, 0.8396rem + 0.7547vw, 1.5rem);
}
.company--hero p {
  font-size: clamp(1rem, 0.8396rem + 0.7547vw, 1.5rem);
}
.company .section--flex > * > * {
  position: sticky;
  top: 15px;
}
.company .section--flex .text {
  padding: 15px;
}
.company .section--flex .text h2 {
  font-size: 14px;
}
.company .section--flex .text p {
  margin-bottom: calc(15px * 2);
  padding-right: calc(clamp(.938rem, 3.241vw + .208rem, 3.125rem) * 2);
}
.contact--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px;
}
@media all and (min-width: 57.5em) {
  .contact--wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(1rem, 7.237vw - 1.02rem, 5.313rem);
  }
  .contact--wrap > * {
    white-space: nowrap;
  }
  .contact--wrap .contact--brand {
    width: 150px;
    min-width: 150px;
  }
  .contact--wrap .contact--form {
    margin-left: auto;
    width: 100%;
    max-width: 700px;
  }
}
@media all and (min-width: 57.5em) {
  .contact--wrap p {
    margin-bottom: calc(15px * 2);
  }
}
.contact--wrap p a {
  text-decoration: none;
}
@media all and (min-width: 18.75em) and (max-width: 57.4375em) {
  .contact--form {
    margin-top: calc(15px * 3);
  }
  .contact--form p {
    margin-bottom: calc(15px * 2);
  }
}

.designer--hero {
  position: relative;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  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;
}
.designer--hero img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.designer--hero--header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  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;
}
.designer--hero h1 {
  font-size: clamp(1rem, 0.8396rem + 0.7547vw, 1.5rem);
}

.designers {
  padding-left: 15px;
  padding-right: 15px;
}
.designers--list {
  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: calc(15px * 2);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  counter-reset: menucounter;
}
.designers--item {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: block;
  position: relative;
}
@media all and (min-width: 57.5em) {
  .designers--item {
    padding-left: clamp(1rem, 7.237vw - 1.02rem, 5.313rem);
  }
}
.designers--item .text {
  position: relative;
  cursor: pointer;
  display: block;
  overflow: hidden;
  font-size: clamp(1.625rem, 0.6226rem + 4.717vw, 4.75rem);
  line-height: 1.05;
}
@media all and (min-width: 57.5em) {
  .designers--item .text {
    padding-left: 150px;
  }
}
.designers--item .text .inner {
  text-transform: capitalize;
}
.designers--item .letter {
  display: none;
  position: absolute;
  left: 0;
  top: 5px;
  color: #000;
}
@media all and (min-width: 57.5em) {
  .designers--item .letter {
    display: block;
  }
}
.designers--item .hover-reveal {
  position: fixed;
  z-index: -2;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/5;
  pointer-events: none;
  opacity: 0;
}
.designers--item .hover-reveal__inner {
  overflow: hidden;
  width: 100%;
  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;
  -webkit-filter: blur(40px);
          filter: blur(40px);
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.designers--item .hover-reveal__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.faq {
  padding-bottom: calc(clamp(.938rem, 3.241vw + .208rem, 3.125rem) * 3);
  padding-top: calc(clamp(.938rem, 3.241vw + .208rem, 3.125rem) * 2);
}
@media all and (min-width: 40em) {
  .faq {
    padding-bottom: calc(clamp(.938rem, 3.241vw + .208rem, 3.125rem) * 2.5);
  }
}
@media all and (min-width: 57.5em) {
  .faq {
    padding-bottom: calc(clamp(.938rem, 3.241vw + .208rem, 3.125rem) * 2);
  }
}
.faq h3 {
  margin-bottom: 40px;
}
.faq--list .item {
  border-bottom: undefined;
  overflow: hidden;
  cursor: pointer;
}
.faq--list .item:first-child {
  border-top: undefined;
}
.faq--list .item .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 65px;
  padding-left: 15px;
  padding-right: 65px;
  position: relative;
  margin-bottom: 0;
}
@media all and (min-width: 40em){
  .faq--list .item .title{
  padding-right: 85px;
  }
}
@media all and (min-width: 40em){
  .faq--list .item .title{
  height: 85px;
  }
}
@media all and (min-width: 40em) {
  .faq--list .item .title {
    padding-left: 30px;
  }
}
.faq--list .item .title:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 11.5' fill='%23AA0303'%3E%3Cpath class='st0' d='M10.5,11.5c-0.3,0-0.5-0.1-0.7-0.3L0.3,1.7c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l8.8,8.8l8.8-8.8 c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4l-9.5,9.5C11,11.4,10.8,11.5,10.5,11.5z'/%3E%3C/svg%3E");
  background-size: content;
  background-position: center;
  background-repeat: no-repeat;
  width: 12px;
  height: 6px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: -webkit-transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@media all and (min-width: 40em) {
  .faq--list .item .title:after {
    right: 40px;
  }
}
.faq--list .item .cont {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  will-change: max-height;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  opacity: 0;
}
@media all and (min-width: 40em) {
  .faq--list .item .cont {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.faq--list .item.active .title:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq--list .item.active .cont {
  padding-bottom: 30px;
  margin-bottom: 30px;
  opacity: 1;
}

.home-carousel {
  background-color: #fff;
  height: 100svh;
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 0 !important;
}
.home-carousel .flickity-viewport,
.home-carousel .flickity-slider {
  height: 100% !important;
}
.home-carousel .carousel,
.home-carousel .carousel-wrap {
  height: 100% !important;
  position: relative;
}
.home-carousel .carousel-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #fff;
}
.home-carousel .carousel-cell {
  height: 100%;
  width: 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;
  overflow: hidden;
  isolation: isolate;
  background-color: #fff;
}
.home-carousel .carousel-cell picture {
  height: 100%;
  width: 100%;
}
.home-carousel .carousel-cell img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: -1;
}
.home-carousel .carousel-cell .text {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  text-align: center;
  color: #fff;
  padding-left: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
  padding-right: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
  z-index: 5;
  display: none;
}
.home-carousel .carousel-cell .text a {
  color: #fff;
  opacity: 0.6;
}
.home-carousel .carousel-title {
  position: absolute;
  left: 0;
  bottom: 15px;
  height: 15px;
  width: 100%;
  z-index: 20;
  padding: 0 15px;
}
.home-carousel .carousel-title .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-align: left;
  line-height: normal;
  font-size: clamp(1rem, 0.8396rem + 0.7547vw, 1.5rem);
  color: #fff;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 15px;
  bottom: 50%;
}
.home-carousel .carousel-title .text.selected {
  opacity: 1;
  pointer-events: all;
}
.home-carousel .carousel-title .text a {
  color: #fff;
  opacity: 0.6;
  line-height: normal;
}
.home-carousel .carousel-title .text a:hover {
  opacity: 1;
}
.home-carousel .carousel-nav {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 30 !important;
  padding: 0 15px;
}
.home-carousel .carousel-nav--cells {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
@media all and (min-width: 40em) {
  .home-carousel .carousel-nav--cells {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 15px;
  }
}
.home-carousel .carousel-nav--cells button {
  color: #fff;
  position: relative;
  width: 100%;
  height: calc(15px * 1.5);
  border-radius: 0;
  background-color: transparent;
  overflow: hidden;
}
.home-carousel .carousel-nav--cells button:before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 15px;
  left: 0;
  background-color: #fff;
  opacity: 0.5;
  -webkit-transition: all 0.35s linear;
  transition: all 0.35s linear;
  pointer-events: none;
}
.home-carousel .carousel-nav--cells button .progress {
  z-index: 1;
  height: 2px;
  position: absolute;
  bottom: 15px;
  left: 0;
  background-color: #fff;
  width: 0;
}
@media (hover: hover) {
  .home-carousel .carousel-nav--cells button:hover:not(.is-selected):before {
    opacity: 0.7;
  }
}
.home-carousel .carousel-nav--cells button.is-selected {
  pointer-events: none;
}
.home-carousel .carousel-arrows {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 20;
  isolation: isolate;
  cursor: none;
  mix-blend-mode: exclusion;
}
@media all and (min-width: 40em) {
  .home-carousel .carousel-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.home-carousel .carousel-arrows .cursor-follower {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  color: #fff;
}
.home-carousel .carousel-arrows .arrow {
  color: #fff;
  width: 50%;
}
.home-carousel .carousel-arrows:hover .cursor {
  opacity: 1;
}

.home-company {
  padding-bottom: calc(clamp(.938rem, 3.241vw + .208rem, 3.125rem) * 3);
  padding-top: calc(clamp(.938rem, 3.241vw + .208rem, 3.125rem) * 2);
  margin-bottom: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
}
@media all and (min-width: 40em) {
  .home-company {
    padding-bottom: calc(clamp(.938rem, 3.241vw + .208rem, 3.125rem) * 2);
    padding-top: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
  }
}
@media all and (min-width: 40em) {
  .home-company .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.home-company .inner .text {
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 80px;
}
@media all and (min-width: 40em) {
  .home-company .inner .text {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 50px;
  }
}
@media all and (min-width: 57.5em) {
  .home-company .inner .text {
    -ms-flex-preferred-size: 42%;
        flex-basis: 42%;
  }
}
.home-company .inner .text .label {
  color: #000;
  margin-bottom: 5px;
}
@media all and (min-width: 40em) {
  .home-company .inner .text .label {
    font-size: 20px;
  }
}
.home-company .inner .text h1 {
  margin-bottom: 10px;
}
.home-company .inner .text p {
  margin-bottom: 20px;
}
.home-company .inner .text ol {
  margin-bottom: 20px;
}
.home-company .inner .text ol li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
  line-height: normal;
}
.home-company .inner .text ol li:before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23c21b17' viewBox='0 0 28 28'%3E%3Cpath d='M9.5,23.5c-0.3,0-0.5-0.1-0.7-0.3l-7.5-7.5c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l6.8,6.8L25.3,5.2 c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4L10.2,23.2C10,23.4,9.7,23.5,9.5,23.5z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 16px;
}
.home-company .inner .text .btn {
  margin-top: 30px;
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .home-company .inner .text .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.home-company .inner .images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -5px;
  margin-right: -5px;
}
@media all and (min-width: 40em) {
  .home-company .inner .images {
    -ms-flex-preferred-size: 52%;
        flex-basis: 52%;
    margin-left: -8px;
    margin-right: -8px;
  }
}
@media all and (min-width: 57.5em) {
  .home-company .inner .images {
    -ms-flex-preferred-size: 58%;
        flex-basis: 58%;
  }
}
.home-company .inner .images .image {
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 3/5;
  position: relative;
}
@media all and (min-width: 40em) {
  .home-company .inner .images .image {
    margin-left: 8px;
    margin-right: 8px;
  }
}
.home-company .inner .images .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -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);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.home-company .inner .images .small {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}
.home-company .inner .images .big {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}
@media (hover: hover) {
  .home-company .inner .images:hover img {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
  }
}

.login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (min-width: 40em) {
  .login--col {
    width: 50%;
  }
}
.login--col h1 {
  font-size: 16px;
  margin-bottom: 15px;
}
.login--col h2 {
  font-size: 16px;
  margin-bottom: 15px;
}
.login--action {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  text-align: center;
}
.login--action.no-b {
  border: 0;
}
.login--form {
  max-width: 460px;
  margin: 0 auto;
}
.login--form .recovery-btn {
  font-size: 14px;
}
.login .registration--form {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 950px;
}

.news--hero {
  position: relative;
  width: 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;
}
.news--hero--header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  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;
  color: #fff;
}
.news--hero h1 {
  font-size: clamp(1rem, 0.8396rem + 0.7547vw, 1.5rem);
}

.news h2 {
  font-size: clamp(1rem, 0.8396rem + 0.7547vw, 1.25rem);
  padding: 15px;
}
.news--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news--list li {
  margin-bottom: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
}
@media all and (min-width: 40em) {
  .news--list li {
    width: 33.3333333333%;
  }
}
.news--list a {
  display: block;
  position: relative;
  isolation: isolate;
}
.news--list .image {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.news--list img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: -1;
}
.news--list .text {
  padding-top: 10px;
  padding-bottom: calc(15px * 2);
  padding-left: 15px;
  padding-right: 15px;
}

.product .loader {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
}
.product--hero {
  position: relative;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  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: #fafafa;
}
.product--hero .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 15;
  mix-blend-mode: multiply;
}
.product--hero img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product--hero--header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  z-index: 20;
}
@media all and (min-width: 40em) {
  .product--hero--header {
    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;
  }
}
.product--hero h1,
.product--hero .designer {
  font-size: clamp(1rem, 0.8396rem + 0.7547vw, 1.5rem);
}
.product--information {
  padding-left: 15px;
  padding-right: 15px;
}
.product--information h2 {
  text-align: center;
  margin-bottom: calc(15px * 2);
  font-size: clamp(1rem, 0.8882rem + 0.5263vw, 1.375rem);
}
.product--information .info {
  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;
}
@media all and (min-width: 40em) {
  .product--information .info {
    -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;
  }
  .product--information .info > * {
    width: 50%;
  }
}
@media all and (min-width: 40em) {
  .product--information .info img {
    max-width: 75%;
  }
}
@media all and (min-width: 57.5em) {
  .product--information .info img {
    max-width: 85%;
  }
}
.product--information .size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: calc(-1 * 15px / 2);
  margin-right: calc(-1 * 15px / 2);
}
.product--information .size .item {
  padding-left: calc(15px / 2);
  padding-right: calc(15px / 2);
  width: 50%;
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .product--information .size .item {
    padding-top: calc(15px / 2);
    padding-bottom: calc(15px / 2);
  }
  .product--information .size .item .text {
    font-size: 12px;
  }
}
@media all and (min-width: 40em) {
  .product--information .size .item {
    width: 16.6666666667%;
  }
}
.product--information .size .image {
  width: auto;
  max-width: 100%;
  border-bottom: 1px solid #000;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.product--information .designer {
  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(15px / 2);
}
@media all and (min-width: 40em) {
  .product--information .designer {
    -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;
    gap: 15px;
  }
  .product--information .designer > * {
    width: 50%;
  }
}
.product--information .designer img {
  width: auto;
  max-width: 100%;
}
@media all and (min-width: 40em) {
  .product--information .designer img {
    max-width: 75%;
  }
}
@media all and (min-width: 57.5em) {
  .product--information .designer img {
    max-width: calc(66.6666666667% - 15px);
  }
}
.product--configurator {
  padding-left: 15px;
  padding-right: 15px;
}
.product--configurator h2 {
  text-align: center;
  margin-bottom: calc(15px * 2);
  font-size: clamp(1rem, 0.8882rem + 0.5263vw, 1.375rem);
}
.product--configurator--wrap {
  position: relative;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  isolation: isolate;
}
.product--configurator--wrap.cookie-accepted .scrolling-propagation .cta {
  pointer-events: all;
  opacity: 1;
}
.product--configurator--wrap.cookie-accepted .cookie-alert {
  pointer-events: none;
  opacity: 0;
}
.product--configurator--wrap.active {
  pointer-events: all;
  cursor: default;
}
.product--configurator--wrap.active .scrolling-propagation {
  pointer-events: none;
}
.product--configurator--wrap.active .scrolling-propagation .image {
  pointer-events: none;
  opacity: 0;
}
.product--configurator--wrap.active .scrolling-propagation .cta {
  pointer-events: none;
  opacity: 0;
}
@media all and (min-width: 40em) {
  .product--configurator--wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.product--configurator--wrap .scrolling-propagation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background-color: transparent;
  opacity: 1;
  isolation: isolate;
}
.product--configurator--wrap .scrolling-propagation .image {
  position: absolute;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  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;
}
.product--configurator--wrap .scrolling-propagation .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none !important;
}
.product--configurator--wrap .scrolling-propagation .cookie-alert {
  overflow: hidden;
  position: absolute;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
}
.product--configurator--wrap .scrolling-propagation .cookie-alert p {
  max-width: 500px;
  margin: 0 auto;
}
.product--configurator--wrap .scrolling-propagation .cta,
.product--configurator--wrap .scrolling-propagation .cta--blank {
  overflow: hidden;
  position: absolute;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 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;
  cursor: pointer;
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .product--configurator--wrap .scrolling-propagation .cta {
    display: none;
  }
}
@media all and (min-width: 40em) {
  .product--configurator--wrap .scrolling-propagation .cta--blank {
    display: none;
  }
}
.product--configurator--wrap .iframe-content {
  display: block;
  width: 100%;
  overflow-x: hidden;
  max-height: 90svh;
}
.product--configurator--wrap .iframe-content:before {
  content: "";
  float: left;
  position: relative;
  padding-top: 56.25%;
}
.product--configurator--wrap .iframe-content:after {
  content: " ";
  display: table;
  clear: left;
}
.product--configurator--wrap .iframe-content > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
}
.product--configurator--wrap .iframe-content .cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product--configurator--wrap .iframe-content iframe {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.collections h2 {
  padding: 0 15px;
  margin-bottom: 15px;
  font-size: clamp(1rem, 0.8396rem + 0.7547vw, 1.25rem);
  text-align: center;
}
.collections--btn {
  padding: 15px;
}
.collections--btn a {
  display: block;
  font-size: clamp(1rem, 0.8396rem + 0.7547vw, 1.25rem);
  text-align: center;
}
.collections--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.collections--list li {
  width: 100%;
}
@media all and (min-width: 40em) {
  .collections--list li {
    width: 50%;
  }
}
.collections--list a {
  display: block;
  position: relative;
  isolation: isolate;
}
.collections--list .image {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.collections--list img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: -1;
}
.collections--list .name {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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;
  padding: 15px;
  text-align: center;
  font-size: clamp(2.25rem, 2.0263rem + 1.0526vw, 3rem);
  color: #fff;
  mix-blend-mode: exclusion;
}

.products--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.products--list li {
  width: 100%;
}
@media all and (min-width: 40em) {
  .products--list li {
    width: 33.3333333333%;
  }
}
.products--list li a {
  display: block;
  position: relative;
  isolation: isolate;
}
.products--list li .image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: linear-gradient(211deg, rgba(217, 217, 217, .47) 10.12%, rgba(217, 217, 217, .03) 94.71%);
}
.products--list li .image .over {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  z-index: 20;
}
.products--list li .image > img {
  z-index: 1;
}
.products--list li img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: -1;
}
.products--list li .name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  z-index: 30;
  color: #000;
  mix-blend-mode: exclusion;
}
@media (hover: hover) {
  .products--list li:hover .image .over {
    opacity: 1;
  }
  .products--list li:hover .name {
    color: #fff;
  }
}

.project--hero {
  position: relative;
  width: 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;
}
.project--hero--header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  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;
  color: #fff;
}
.project--hero h1 {
  font-size: clamp(1rem, 0.8396rem + 0.7547vw, 1.5rem);
}
.project--information {
  padding-left: 15px;
  padding-right: 15px;
}
.project--information h2 {
  font-size: 22px;
  text-align: center;
  margin-bottom: calc(15px * 2);
}
.project--information .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
}
@media all and (min-width: 40em) {
  .project--information .info {
    -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;
  }
  .project--information .info > * {
    width: 45%;
  }
}
.project--information .size {
  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;
}
@media all and (min-width: 40em) {
  .project--information .size {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.project--information .size .item {
  width: 100%;
}
.project--information .size .image {
  width: auto;
  max-width: 100%;
  border-bottom: 1px solid #000;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.project--information .designer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
}
@media all and (min-width: 40em) {
  .project--information .designer {
    -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;
  }
  .project--information .designer > * {
    width: 45%;
  }
}
.project--information .designer img {
  width: auto;
  max-width: 100%;
}
.project--credits {
  padding: calc(15px * 2) 15px;
}
@media all and (min-width: 40em) {
  .project--credits .inner {
    max-width: 33.3333333333%;
  }
}
.project--credits .inner > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 3px;
}
.project--credits .inner > div > span {
  width: 50%;
}

.projects--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.projects--list li {
  width: 100%;
  margin-bottom: clamp(.938rem, 3.241vw + .208rem, 3.125rem);
}
@media all and (min-width: 40em) {
  .projects--list li {
    width: 33.3333333333%;
  }
}
.projects--list li a {
  display: block;
}
.projects--list li .image {
  aspect-ratio: 4/5;
  overflow: hidden;
  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;
}
.projects--list li .image img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.projects--list li .text {
  padding-top: 10px;
  padding-bottom: calc(15px * 2);
  padding-left: 15px;
  padding-right: 15px;
}

#storesSearch {
  position: relative;
}
#storesSearch .loader {
  padding: 15px;
  -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 {
  padding: 15px;
}
@media all and (min-width: 40em) {
  .stores--wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    aspect-ratio: 144/55;
    overflow: hidden;
  }
  .stores--wrap > div:first-child {
    max-height: 100%;
    width: 40%;
    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: 60%;
  }
}
.stores--wrap .storesSearchResults {
  display: none;
  overflow: hidden;
  height: calc(100% - 45px - 15px * 2);
}
@media all and (min-width: 40em) {
  .stores--wrap .storesSearchResults {
    display: block;
  }
}
.stores--wrap .storesSearchResults .scroller {
  height: 100%;
  overflow: hidden;
}
.stores--wrap .storesSearchResults .scroller .scrollbar-track-y {
  background-color: #fff;
  right: 0 !important;
  width: 20px;
}
.stores--wrap .storesSearchResults .scroller .scrollbar-track-y .scrollbar-thumb {
  left: auto;
  right: 0;
}
.stores--wrap .store {
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
  padding-top: 15px;
}
.stores--wrap .store:first-child {
  border-top: 1px solid #000;
  margin-top: 1px;
}
.stores--wrap .store .infowindow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.stores--wrap .store .infowindow .title {
  width: 60%;
}
.stores--wrap .store .infowindow .txt {
  font-size: 12px;
  width: 40%;
  padding-right: calc(15px * 2);
}
.stores--wrap .store .infowindow .links a {
  display: block;
  word-wrap: break-word;
}
.stores--wrap .store.selected {
  color: #10069f;
}
.stores--wrap .store.active {
  color: #10069f;
}
.stores .storesSearchAutocomplete {
  border: 1px solid #000;
  border-radius: 5px;
  height: 45px;
  padding-left: 15px;
  padding-right: calc(15px * 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% - 15px) center;
  background-size: 13px;
  background-repeat: no-repeat;
  margin-bottom: calc(15px * 2);
}
.stores .storesSearchMap {
  position: relative;
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .stores .storesSearchMap {
    aspect-ratio: 4/5;
    margin-left: calc(-1 * 15px);
    margin-right: calc(-1 * 15px);
  }
}
@media all and (min-width: 40em) {
  .stores .storesSearchMap {
    width: 100%;
    height: 100%;
  }
}
.stores .storesSearchMap .map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.agents {
  padding-left: 15px;
  padding-right: 15px;
}
.agents--wrap {
  padding: 15px 0;
  border-top: 1px solid #000;
}
.agents h2 {
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: calc(15px * 2);
}
.agents .filterable--buttons {
  margin-bottom: calc(15px * 2);
}
@media all and (min-width: 40em) {
  .agents .filterable--buttons .scroller {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.agents--list li {
  border-bottom: 1px solid #000;
  padding-bottom: calc(15px * 2);
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(15px * 2);
}
.agents--list li:first-child {
  border-top: 1px solid #000;
}
.agents--list li > * {
  width: calc(50% - 15px * 2);
}
@media all and (min-width: 57.5em) {
  .agents--list li {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: clamp(2.8125rem, 1.7099rem + 5.1887vw, 6.25rem) calc(15px * 2);
    padding-bottom: calc(15px * 3);
  }
  .agents--list li > * {
    width: 100%;
  }
}

/**
 * Buttons
 */
.btn {
  background-color: #fff;
  border: 1px solid currentColor;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  height: 40px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  padding: 0 calc(15px * 2);
  border-radius: 5px;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.btn span {
  -webkit-transition: all 0.35s ease-in-out, color 0.1s linear;
  transition: all 0.35s ease-in-out, color 0.1s linear;
}
.btn:focus {
  outline: 0;
  text-decoration: none;
}
@media (hover: hover) {
  .hover-btn:hover .btn {
    background-color: #10069f;
    color: #fff !important;
    border-color: #10069f;
  }
  .btn:hover {
    background-color: #10069f;
    color: #fff !important;
    border-color: #10069f;
  }
}
.btn.selected {
  background-color: #10069f;
  color: #fff;
  border-color: #10069f;
  pointer-events: none;
}

.btn-gallery,
.btn-video {
  cursor: pointer;
}

/**
 * Footer
 */
.footer {
  padding-bottom: 15px;
  font-size: 12px;
  line-height: 1.3;
}
.footer a {
  line-height: 1.3;
  text-decoration: none !important;
}
.footer .label {
  margin-bottom: 15px;
}
.footer--newsletter {
  border-top: 1px solid #000;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: clamp(2.8125rem, 1.7099rem + 8.1887vw, 8.25rem);
  width: 100%;
}
.footer--newsletter p {
  font-size: clamp(1.375rem, 1.3356rem + 0.1852vw, 1.5rem);
}
@media (hover: hover) {
  .footer--newsletter {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .footer--newsletter:hover {
    background-color: #10069f;
    color: #fff;
  }
}
.footer--top {
  border-top: 1px solid #000;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(15px * 2);
}
@media all and (min-width: 57.5em) {
  .footer--top {
    gap: clamp(2.8125rem, 1.7099rem + 5.1887vw, 6.25rem) calc(15px * 2);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.footer--top > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4em;
}
.footer--top > div .links a {
  display: block;
}
@media all and (min-width: 18.75em) and (max-width: 39.9375em) {
  .footer--top > div > div {
    width: 50%;
  }
}
@media all and (min-width: 40em) and (max-width: 57.4375em) {
  .footer--top > div {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-left: calc(-1 * 15px);
    margin-right: calc(-1 * 15px);
    gap: 0;
  }
  .footer--top > div > div {
    width: 33.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media all and (min-width: 57.5em) {
  .footer--top > div {
    padding-right: 6em;
  }
}
.footer--social {
  grid-area: social;
  line-height: 1.1;
}
.footer--social a {
  line-height: 1.1;
}
@media all and (min-width: 18.75em) and (max-width: 57.4375em) {
  .footer--social {
    -ms-flex-item-align: end;
        align-self: end;
  }
  .footer--social .label {
    display: none;
  }
}
.footer--links {
  grid-area: links;
  position: relative;
}
@media all and (min-width: 18.75em) and (max-width: 57.4375em) {
  .footer--links {
    padding-top: 15px;
  }
  .footer--links:before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(-1 * 15px);
    right: calc(-1 * 15px);
    height: 1px;
    background-color: #000;
  }
}
.footer--links a:not(:last-child) {
  margin-right: 10px;
}

/**
 * HEADER
 */
/**
 * Headings
 */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.title-font,
.title {
  line-height: 1;
  margin-top: 0;
}
@media all and (min-width: 40em) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  .title-font,
  .title {
    line-height: 1.1;
  }
}

h1,
.h1 {
  font-size: clamp(3rem, 0.185vw + 2.958rem, 3.125rem);
}

h2,
.h2 {
  font-size: clamp(1.5rem, 0.185vw + 1.458rem, 1.625rem);
}

h3,
.h3 {
  font-size: clamp(1rem, 0.185vw + 0.958rem, 1.125rem);
}

h4,
.h4 {
  font-size: 14px;
}

h5,
.h5 {
  font-size: clamp(0.75rem, 0.185vw + 0.708rem, 0.875rem);
}

h6,
.h6 {
  font-size: 13px;
}

/**
 * Accordion
 */
/* var for close btn */
.iw-wrapper {
  display: none;
  position: absolute;
  text-align: left;
  z-index: -100;
  width: 220px;
  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;
  padding: 10px;
  border-radius: 5px;
  position: relative;
  font-family: "Monument Grotesk", 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-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
}
.iw-content .type {
  background-color: rgba(#000, 0.4);
  color: #fff;
  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 .title {
  font-size: 12px;
  display: block;
  padding-right: 30px;
  margin-bottom: 35px;
}
.iw-content .links a {
  display: block;
  pointer-events: all;
}
.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: 10px;
  text-indent: -9999px;
  top: 10px;
  z-index: 100;
  width: 10px;
  height: 10px;
  pointer-events: all;
}
.iw-close:focus {
  outline: none;
}
.iw-close span {
  background: none;
  display: block;
  height: 1px;
  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: 10px;
}
.iw-close span:before {
  background-color: #000;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
.iw-close span:after {
  background-color: #000;
  content: "";
  display: block;
  height: 1px;
  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 {
  width: 24px;
  height: 24px;
}
.map .storeInfoWindow.active .iw-wrapper {
  display: block;
  pointer-events: none;
}
.map .storeInfoWindow:not(.active) .icon.bounce img {
  -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);
  }
}
/**
 * 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;
  }
}

.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;
  }
}

/**
 * Thom Dropdown
 */
.thom-dropdown {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  position: relative;
  text-align: left;
  z-index: 0;
  /* @include mappy-query(extrabreak) {
        max-width: 250px;
    } */
}
.thom-dropdown .label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0.75px solid currentColor;
  border-radius: 5px;
  color: currentColor;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 20px;
  line-height: normal;
  font-size: 12px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
  width: 100%;
}
.thom-dropdown.is-open {
  overflow: visible;
  z-index: 50;
}
.thom-dropdown.is-open .label {
  background: rgba(#fff, 0.3);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.thom-dropdown.is-open .options {
  visibility: visible;
  opacity: 1;
}
.thom-dropdown .options {
  background: #fff;
  border: 0.75px solid currentColor;
  border-top: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  right: 0;
  position: absolute;
  top: calc(100% - 5px);
  min-width: 100%;
  width: auto;
  visibility: hidden;
  z-index: 10;
  opacity: 0;
  -webkit-filter: drop-shadow(0 1.6rem 0.8rem rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 1.6rem 0.8rem rgba(0, 0, 0, 0.3));
  padding-bottom: 10px;
  padding-top: 10px;
}
.thom-dropdown .options .scroller {
  display: block;
  overflow: auto;
}
.thom-dropdown .options--item {
  cursor: pointer;
  color: #000;
  display: block;
  padding: 5px 15px;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.thom-dropdown .options--item.selected {
  pointer-events: none;
  cursor: default;
  color: #10069f !important;
  text-decoration: underline;
}
.thom-dropdown .mCSB_scrollTools {
  width: 24px;
}
.thom-dropdown .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #10069f;
}
.thom-dropdown .mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}
.thom-dropdown .mCSB_inside > .mCSB_container {
  margin-right: 34px;
}

/**
 * Navbar
 */
.header {
  height: auto;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 0 15px;
  -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);
  isolation: isolate;
}
.header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
  z-index: -1;
}
.header:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  z-index: -2;
}
.header.white {
  color: #fff;
}

.navbar {
  height: 50px;
}
@media all and (min-width: 40em) {
  .navbar {
    height: 50px;
  }
}
.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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 13px;
}
@media all and (min-width: 40em) {
  .navbar .inner {
    gap: 20px;
  }
}
.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;
  gap: clamp(1rem, 7.237vw - 1.02rem, 5.313rem);
}
.navbar--sx {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media all and (min-width: 40em) {
  .navbar--sx {
    width: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.navbar--brand {
  position: relative;
  z-index: 5;
}
.navbar--brand svg {
  height: auto;
  width: 150px;
}
@media all and (min-width: 40em){
  .navbar--brand svg{
  width: 150px;
  }
}
@media (hover: hover) {
  .navbar--brand:hover {
    color: currentColor !important;
  }
}
.navbar--menu {
  height: 100%;
}
.navbar--menu > li {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar--menu > li a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 10;
}
.navbar--menu .search svg {
  height: 14px;
  stroke-width: 1;
  width: auto;
}
@media all and (min-width: 40em) {
  .navbar--menu .search svg {
    height: 13px;
    stroke-width: 1.5;
  }
}
.navbar--menu .submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  top: 100%;
  opacity: 0;
  padding: calc(15px * 2) 15px;
  left: 0;
  right: 0;
  background-color: #fff;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  pointer-events: none;
  z-index: -1;
}
.navbar--menu .submenu li {
  white-space: nowrap;
}
.navbar--menu .submenu .search--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: 15px;
}
.navbar--menu .submenu .search--input {
  width: 100%;
  border: 0;
  background-color: transparent;
  color: #000;
  font-size: 32px;
  margin: 0;
}
.navbar--menu .submenu .search--input::-webkit-input-placeholder {
  color: #000 !important;
}
.navbar--menu .submenu .search--input::-moz-placeholder {
  color: #000 !important;
}
.navbar--menu .submenu .search--input:-ms-input-placeholder {
  color: #000 !important;
}
.navbar--menu .submenu .search--input::-ms-input-placeholder {
  color: #000 !important;
}
.navbar--menu .submenu .search--input::placeholder {
  color: #000 !important;
}
.navbar--menu .submenu--preview {
  display: none;
  margin-right: clamp(1.875rem - 10px, 7.237vw - 1.02rem - 10px, 5.313rem - 10px);
  position: relative;
  isolation: isolate;
}
@media (hover: hover) {
  .navbar--menu .submenu--preview {
    display: block;
    width: 100%;
    max-width: 160px;
    aspect-ratio: 4/5;
  }
}
.navbar--menu .submenu--preview .layer {
  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: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}
.navbar--menu .submenu--preview .layer--default {
  opacity: 1;
  z-index: 10;
  mix-blend-mode: multiply;
}
.navbar--menu .submenu--preview .layer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  mix-blend-mode: multiply;
  background: linear-gradient(211deg, rgba(217, 217, 217, .47) 10.12%, rgba(217, 217, 217, .03) 94.71%);
  opacity: 1;
}
.navbar--menu .submenu--preview .layer img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.navbar--menu .submenu .banners {
  display: none;
  gap: 15px;
  margin-left: auto;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media all and (min-width: 40em) {
  .navbar--menu .submenu .banners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.navbar--menu .submenu .banners .banner {
  display: block;
  position: relative;
  width: 28.5714285714%;
  max-width: 350px;
}
.navbar--menu .submenu .banners .banner .image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.navbar--menu .submenu .banners .banner .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.navbar--menu .submenu .banners .banner .label {
  color: #000;
  font-size: 12px;
  padding: calc(15px / 3) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media all and (min-width: 57.5em) {
  .navbar--menu .submenu .banners .banner .label {
    font-size: 16px;
    padding: calc(15px / 2) 0;
  }
}
.navbar--menu .submenu .banners .banner .label .default span {
  color: lightgrey;
}
.navbar--menu .submenu .banners .banner .label .over span {
  color: #10069f;
}
.navbar--menu .submenu.show {
  opacity: 1;
  pointer-events: all;
}
.navbar--menu .thom-dropdown .options {
  border-color: #fff;
}
.navbar--menu .thom-dropdown .options--item {
  color: #000;
}
.navbar .menu--main > li {
  display: none;
}
.navbar .menu--main > li.search-menu-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media all and (min-width: 40em) {
  .navbar .menu--main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(0.9375rem, 0.7511rem + 0.8772vw, 1.5625rem);
  }
  .navbar .menu--main > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.navbar .menu--secondary {
  display: none;
}
@media (min-width: 1100px) {
  .navbar .menu--secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(0.9375rem, 0.7511rem + 0.8772vw, 1.5625rem);
  }
}
.navbar .toggler {
  display: block;
  position: relative;
  width: 19px;
  height: 12px;
  cursor: pointer;
  z-index: 12010;
}
@media (min-width: 1100px) {
  .navbar .toggler {
    display: none;
  }
}
.navbar .toggler:focus {
  outline: none;
}
.navbar .toggler--line {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: currentColor;
  height: 1px;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.navbar .toggler--line:before, .navbar .toggler--line:after {
  content: "";
  background-color: currentColor;
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
.navbar .toggler--line:before {
  top: -6px;
}
.navbar .toggler--line:after {
  top: 6px;
}
.navbar .nav {
  background-color: #fff;
  color: #000;
  opacity: 0;
  visibility: hidden;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  margin: 0 auto;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: auto;
  padding-left: 0;
  padding-right: 0;
  z-index: 5;
}
.navbar .nav .multi-menu {
  overflow-y: auto !important;
}
.navbar .nav ul {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background-color: #fff;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.navbar .nav ul:first-child > li:first-child {
  margin-top: 50px;
}
.navbar .nav ul ul {
  display: none;
  left: 100%;
}
.navbar .nav ul[data-level="2"] {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.navbar .nav ul[data-level="2"].active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.navbar .nav ul[data-level="1"] {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  min-height: 100svh;
}
.navbar .nav ul[data-level="1"] .lang {
  margin-top: auto;
  padding-bottom: 15px;
}
.navbar .nav--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0 15px;
}
.navbar .nav--item a {
  display: block;
  position: relative;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  line-height: normal;
}
.navbar .nav--item a.js-menu-back-btn {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: calc(15px * 2);
}
.navbar .nav--item a.js-menu-back-btn:before {
  content: "";
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='11' viewBox='0 0 7 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 1L1 5.5L6 10' stroke='currentColor'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  width: 7px;
  height: 11px;
  margin-right: 8px;
}
.navbar .nav--item .multi-menu-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: rotate(180deg) translateY(-50%);
          transform: rotate(180deg) translateY(-50%);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='11' viewBox='0 0 7 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 1L1 5.5L6 10' stroke='currentColor'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}
.navbar .nav--item--login {
  margin-bottom: calc(15px * 3);
}
.navbar .nav--item.lang {
  gap: 15px;
}
.navbar .nav--item.lang a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header.hovered:not(.out) {
  color: #000;
}
.header.hovered:not(.out)::before {
  opacity: 1;
}
@media (hover: hover) {
  .header.hovered:not(.out) .navbar--menu li:hover .submenu {
    opacity: 1;
    pointer-events: all;
  }
}
.header.out {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.header.pin {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (hover: none) {
  .header.submenu--opened {
    color: #000;
  }
  .header.submenu--opened::before {
    opacity: 1;
  }
}
.header.submenu--opened:after {
  opacity: 1;
  pointer-events: all;
}

body.navbar--opened .header {
  z-index: 1000;
}
body.navbar--opened .navbar .nav {
  visibility: visible;
  opacity: 1;
}
body.navbar--opened .navbar--sx {
  opacity: 0;
  pointer-events: none;
}
body.navbar--opened .navbar .toggler {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
body.navbar--opened .navbar .toggler--line {
  background: transparent !important;
  color: #000;
}
body.navbar--opened .navbar .toggler--line:before {
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
          transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
body.navbar--opened .navbar .toggler--line:after {
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
          transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

/**
 * 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 */
