/*!****************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/css/main.scss ***!
  \****************************************************************************************************************************************/
/**
 * Main CSS file.
 *
 * @file        		main.scss
 * @description 		Entry point for all project styles.
 */
/**
 * Reset.
 *
 * @description 	CSS resets.
 */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
  list-style: none;
  margin: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
ul,
ol,
dd {
  margin: 0;
}

/* Unset default fonts so they inherit from their parent and not browser defaults */
h1,
h2,
h3,
h4,
p {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-family: inherit;
  font-style: inherit;
  text-transform: inherit;
  font-weight: inherit;
}

/* Set core root defaults */
html {
  scroll-behavior: auto;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*
Remove underline and colour from links
They will be added back on in WYSIWYG
*/
a {
  text-decoration: none;
  color: inherit;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

th {
  font-weight: inherit;
}

address {
  font-style: inherit;
}

fieldset {
  padding: 0;
  border: 0;
}

button {
  display: inline-block;
  background-color: unset;
  border: none;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  text-transform: inherit;
  color: inherit;
}

select {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  outline: none;
  font-size: inherit;
  color: inherit;
  width: 100%;
  cursor: pointer;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/**
 * Config.
 *
 * @description 	Project setup, variables etc.
 */
/**
	BREAKPOINT VARIABLES

	Below variables get combined with $breakpoints to update at each breakpoint.
	Variables are generated e.g. bon-cols, which value changes depending on the breakpoint.
*/
/**
	SPACING

	Helper function available to use below values, e.g:
	margin: get-spacing(xxxs, mobile);
*/
/**
	COLORS

	Below are outputted automatically as CSS variables, e.g. --bon-color-black.
	Helper function available to grab values, e.g. get-color('black').
*/
/**
	FONTS

	Below are outputted automatically as CSS variables, e.g. --bon-font-mono.
	Helper mixin available to set font-family (mixin needed over function due to the values), e.g:
	@include get-font-family(mono);
*/
/**
 * Fonts.
 *
 * @description 	Font family definitions.
 */
@font-face {
  font-family: "ABCMono";
  src: url(fonts/ABCMono-Regular.woff2) format("woff2"), url(fonts/ABCMono-Regular.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Radial-Regular";
  src: url(fonts/Radial-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Radial-RegularItalic";
  src: url(fonts/Radial-RegularItalic.woff) format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Garamond-Regular";
  src: url(fonts/AGaramondPro-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Garamond-SemiBold";
  src: url(fonts/AGaramondPro-Semibold.woff) format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Garamond-SemiBold-Italic";
  src: url(fonts/AGaramondPro-SemiboldItalic.woff) format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
/**
 * Spacing Functions.
 *
 */
/* ==========================================================================
	Variable Spacing (v-spacing)
	Use with values set in _config.scss
 ========================================================================== */
/**
 * Checks if the given value is a CSS variable.
 *
 * @param $value  The value to check.
 * @return        Boolean indicating if the value is a CSS variable.
 */
/**
   * Calculates a linear value between CSS variables.
   *
   * @param $mobile-size   The size at the mobile breakpoint as a CSS variable.
   * @param $desktop-size  The size at the desktop breakpoint as a CSS variable.
   * @return               The calculated CSS value.
   */
/**
   * Calculates a linear value between given values.
   *
   * @param $mobile-size   The size at the mobile breakpoint.
   * @param $desktop-size  The size at the desktop breakpoint.
   * @return               The calculated CSS value.
   */
/**
   * Get spacing values from $bon-spacing-variables.
   *
   * @param $size          Spacing size (none|xxxs|xxs...etc...)
   * @param $desktop-size  Device (mobile|desktop)
   * @return               The calculated CSS value.
   */
/**
 * Units Functions.
 *
 */
/**
	* Converts a target value to an em unit based on tracking.
	*
	* @param $target    The target value.
	* @return           The converted value in em.
	*/
/**
    * Strips the unit from a number.
    *
    * @param $num       The number to strip the unit from.
    * @return           The number without the unit.
    */
/**
	* Calculates line-height relative to a base font size.
	*
	* @param $value     The line-height value.
	* @param $base      The base font size.
	* @return           The calculated line-height.
	*/
/**
 * Variable Functions.
 *
 */
/**
 * Retrieves variables from a variable array.
 *
 * @param $variables   Reference to the variable array.
 * @param $type        The name of the nested variable array.
 * @param $size        The nested variable to retrieve.
 * @return             The value of the specified variable.
 */
/**
 * Z Index Functions.
 *
 */
/**
	* Dynamically assigns z-index values to elements.
	*
	* @param $name      The name of the z-index variable.
	* @return           The calculated z-index value or null if not found.
	*/
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
/**
 * Button Mixins.
 *
 */
/**
 * Form Mixins.
 * 
 */
/**
 * Grid Mixins.
 * 
 */
/**
* Applies the basic grid layout.
*/
/**
 * Image Mixins.
 * 
 */
/**
 * Lenis Mixins.
 * 
 */
/* ============================================================================================================
	Line Height Crop (lhCrop)
	Removes the additional line height from top of text - https://codyhouse.co/blog/post/line-height-crop
	Use to make sure the top of your text lines up with other elements along side it.
	Enter a unitless line height (same as the type line hight)
============================================================================================================= */
/**
 * List Mixins.
 *
 */
/**
 * Spacing/Sizing Mixins.
 *
 */
/**
 	* Responsive spacing helper, used to generate linears sizes for css variables.
	* @param $field: The CSS property to apply spacing to.
   	* @param $mobile-size: smallest value
	* @param $desktop-size: largest value
   */
/**
   * The main responsive spacing helper, used to generate variable type sizing.
   * Can be used for a variety of CSS properties, e.g. margins/paddings etc.
   *
   * @param $field         The CSS property to apply spacing to.
   * @param $mobile-size   The size at the mobile breakpoint. Passed in as either a variable containing a size (e.g. 16px) or a variable declaration (--variable-name).
   * @param $desktop-size  The size at the desktop breakpoint. Passed in as either a variable containing a size (e.g. 16px) or a variable declaration (--variable-name).
   */
/** ===============
TEMP PLACEMENT
=============== **/
.u-o {
  opacity: 0;
  will-change: opacity;
  transition: opacity 1s ease calc(var(--index) * 0.04s);
}
.u-o.in-view {
  opacity: 1;
}

h2.u-y .parent {
  overflow: hidden;
  padding: 0 5px;
  vertical-align: bottom;
}
h2.u-y .child {
  will-change: transform;
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--index) * 0.04s);
  transform: translate3d(0, 110%, 0);
}
h2.u-y.in-view .child {
  transform: translateZ(0);
}

p.u-y .parent {
  overflow: hidden;
  vertical-align: bottom;
}
p.u-y .child {
  will-change: transform;
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--index) * 0.04s);
  transform: translate3d(0, 110%, 0);
}
p.u-y.in-view .child {
  transform: translateZ(0);
}

h2.u-y-fast .parent {
  padding: 0 5px;
}

.u-y-fast .parent {
  overflow: hidden;
  vertical-align: bottom;
}
.u-y-fast .child {
  will-change: transform;
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--index) * 0.012s);
  transform: translate3d(0, 110%, 0);
}
.u-y-fast.in-view .child {
  transform: translateZ(0);
}

.u-y-o {
  will-change: opacity;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.u-y-o.in-view {
  opacity: 1;
}

.u-y-basic {
  overflow: hidden;
}
.u-y-basic h2 {
  will-change: transform;
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--index) * 0.04s);
  transform: translate3d(0, 110%, 0);
}
.u-y-basic.in-view h2 {
  transform: translateZ(0);
}

/**
 * Type Mixins.
 *
 */
/**
* Helper to get font family from $bon-fonts variable (_config.scss)
*/
/**
* The main responsive typography helper, used to generate variable type sizing.
*
* @param $min-font-size   The minimum font size.
* @param $max-font-size   The maximum font size.
* @param $line-height     The line-height (optional).
*/
/** ================
	RADIAL
================ **/
/** ================
	GARAMOND
================ **/
/**
 * Variables Mixins.
 *
 */
/**
* Loops through variables from the variable array and outputs CSS variables.
*
* @param $value       The value to get.
* @param $variables   Reference to the variable array.
*/
/**
* Retrieves CSS variables based on the specified breakpoint.
*
* @param $breakpoint  The media query breakpoint.
* @param $variables   Reference to the variable array.
*/
/**
 * Base.
 *
 * @description Base styles for the project.
 */
:root {
  --bon-cols: 6;
  --bon-gutter: 20px;
}
@media (min-width: 1024px) {
  :root {
    --bon-cols: 12;
    --bon-gutter: 30px;
  }
}
@media (min-width: 1440px) {
  :root {
    --bon-cols: 12;
    --bon-gutter: 40px;
  }
}
:root {
  --bon-color-c-black: #000;
  --bon-color-c-white: #fff;
  --bon-color-c-off-black: #1e1e1e;
  --bon-color-c-light-grey: #e5e5e5;
  --bon-color-c-green: #3c7e47;
  --bon-color-c-grey: #808080;
}
:root {
  --bon-font-mono: ABCMono, monospace;
  --bon-font-radialRegular: Radial-Regular, sans-serif;
  --bon-font-radialRegularItalic: Radial-RegularItalic, sans-serif;
  --bon-font-garamondRegular: Garamond-Regular, serif;
  --bon-font-garamondSemiItalic: Garamond-SemiBold-Italic, serif;
  --bon-font-garamondSemiBold: Garamond-SemiBold, serif;
}

body {
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1.3888888889;
  --line-height: 1.3888888889;
}
body {
  font-size: calc(0.0014492754 * 100vw + 15.3913043478px);
}
@media (min-width: 1801px) {
  body {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  body {
    font-size: 16px;
  }
}
body[data-s-has-smooth-scroll="1"] html.lenis {
  height: auto;
}
body[data-s-has-smooth-scroll="1"] .lenis.lenis-smooth {
  scroll-behavior: auto;
}
body[data-s-has-smooth-scroll="1"] .lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
body[data-s-has-smooth-scroll="1"] .lenis.lenis-stopped {
  overflow: hidden;
}
body[data-s-has-smooth-scroll="1"] .lenis.lenis-scrolling iframe {
  pointer-events: none;
}
body.is-locked {
  width: 100%;
  overflow: hidden;
}
body[data-s-hide-page-content="1"] [data-transition=wrapper] {
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: fixed;
}
body[data-s-hide-page-content="1"] .s-Navigation {
  transform: translateY(0%) !important;
}

/**
 * Spacing.
 *
 * @description Spacing data-attribute helpers and utility classes.
 */
/**

	SPACING HELPERS:

	Spacing variables used to generate section paddings/margins etc.
	Used in the creation of the default variables (see _base.scss),
	as well as the spacing data attribute CSS in base/_config.scss

	They initially get passed into any Section that has a setting that
	begins with 'Spacing'. (see class-Base.php).

	However we need to generate the defaults (0) for each here,
	in the case that either mobile or desktop is set, but the other isn't.

	Flow:
	1. Sections may have Settings that begin with 'Spacing', e.g. 'Spacing Margin Top Mobile'.
	2. These get passed as CSS variables into the Section, e.g. --spacing-margin-top-mobile: [value]
	3. They're used in base/_spacing.scss to generate margins/paddings based on the values.
*/
* {
  --spacing-height-mobile: 0;
  --spacing-height-desktop: 0;
  --spacing-margin-top-mobile: 0;
  --spacing-margin-top-desktop: 0;
  --spacing-margin-bottom-mobile: 0;
  --spacing-margin-bottom-desktop: 0;
  --spacing-padding-top-mobile: 0;
  --spacing-padding-top-desktop: 0;
  --spacing-padding-bottom-mobile: 0;
  --spacing-padding-bottom-desktop: 0;
}
*[data-s-spacing-height-mobile] {
  height: calc(var(--spacing-height-mobile) * 1px + (var(--spacing-height-desktop) - var(--spacing-height-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  *[data-s-spacing-height-mobile] {
    height: calc(var(--spacing-height-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  *[data-s-spacing-height-mobile] {
    height: calc(var(--spacing-height-mobile) * 1px);
  }
}
*[data-s-spacing-height-desktop] {
  height: calc(var(--spacing-height-mobile) * 1px + (var(--spacing-height-desktop) - var(--spacing-height-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  *[data-s-spacing-height-desktop] {
    height: calc(var(--spacing-height-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  *[data-s-spacing-height-desktop] {
    height: calc(var(--spacing-height-mobile) * 1px);
  }
}
*[data-s-spacing-margin-top-mobile] {
  margin-top: calc(var(--spacing-margin-top-mobile) * 1px + (var(--spacing-margin-top-desktop) - var(--spacing-margin-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  *[data-s-spacing-margin-top-mobile] {
    margin-top: calc(var(--spacing-margin-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  *[data-s-spacing-margin-top-mobile] {
    margin-top: calc(var(--spacing-margin-top-mobile) * 1px);
  }
}
*[data-s-spacing-margin-top-desktop] {
  margin-top: calc(var(--spacing-margin-top-mobile) * 1px + (var(--spacing-margin-top-desktop) - var(--spacing-margin-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  *[data-s-spacing-margin-top-desktop] {
    margin-top: calc(var(--spacing-margin-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  *[data-s-spacing-margin-top-desktop] {
    margin-top: calc(var(--spacing-margin-top-mobile) * 1px);
  }
}
*[data-s-spacing-margin-bottom-mobile] {
  margin-bottom: calc(var(--spacing-margin-bottom-mobile) * 1px + (var(--spacing-margin-bottom-desktop) - var(--spacing-margin-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  *[data-s-spacing-margin-bottom-mobile] {
    margin-bottom: calc(var(--spacing-margin-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  *[data-s-spacing-margin-bottom-mobile] {
    margin-bottom: calc(var(--spacing-margin-bottom-mobile) * 1px);
  }
}
*[data-s-spacing-margin-bottom-desktop] {
  margin-bottom: calc(var(--spacing-margin-bottom-mobile) * 1px + (var(--spacing-margin-bottom-desktop) - var(--spacing-margin-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  *[data-s-spacing-margin-bottom-desktop] {
    margin-bottom: calc(var(--spacing-margin-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  *[data-s-spacing-margin-bottom-desktop] {
    margin-bottom: calc(var(--spacing-margin-bottom-mobile) * 1px);
  }
}
*[data-s-spacing-padding-top-mobile] {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  *[data-s-spacing-padding-top-mobile] {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  *[data-s-spacing-padding-top-mobile] {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
*[data-s-spacing-padding-top-desktop] {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  *[data-s-spacing-padding-top-desktop] {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  *[data-s-spacing-padding-top-desktop] {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
*[data-s-spacing-padding-bottom-mobile] {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  *[data-s-spacing-padding-bottom-mobile] {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  *[data-s-spacing-padding-bottom-mobile] {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
*[data-s-spacing-padding-bottom-desktop] {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  *[data-s-spacing-padding-bottom-desktop] {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  *[data-s-spacing-padding-bottom-desktop] {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}

html body .u-mb-xxxs {
  margin-bottom: calc(0.0007246377 * 100vw + 0.6956521739px);
}
@media (min-width: 1801px) {
  html body .u-mb-xxxs {
    margin-bottom: 2px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-xxxs {
    margin-bottom: 1px;
  }
}
html body .u-mb-xxxs > * {
  margin-bottom: calc(0.0007246377 * 100vw + 0.6956521739px);
}
@media (min-width: 1801px) {
  html body .u-mb-xxxs > * {
    margin-bottom: 2px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-xxxs > * {
    margin-bottom: 1px;
  }
}

html body .u-mb-xxs {
  margin-bottom: calc(0.0014492754 * 100vw + 1.3913043478px);
}
@media (min-width: 1801px) {
  html body .u-mb-xxs {
    margin-bottom: 4px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-xxs {
    margin-bottom: 2px;
  }
}
html body .u-mb-xxs > * {
  margin-bottom: calc(0.0014492754 * 100vw + 1.3913043478px);
}
@media (min-width: 1801px) {
  html body .u-mb-xxs > * {
    margin-bottom: 4px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-xxs > * {
    margin-bottom: 2px;
  }
}

html body .u-mb-xs {
  margin-bottom: calc(0.0014492754 * 100vw + 7.3913043478px);
}
@media (min-width: 1801px) {
  html body .u-mb-xs {
    margin-bottom: 10px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-xs {
    margin-bottom: 8px;
  }
}
html body .u-mb-xs > * {
  margin-bottom: calc(0.0014492754 * 100vw + 7.3913043478px);
}
@media (min-width: 1801px) {
  html body .u-mb-xs > * {
    margin-bottom: 10px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-xs > * {
    margin-bottom: 8px;
  }
}

html body .u-mb-sm {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  html body .u-mb-sm {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-sm {
    margin-bottom: 16px;
  }
}
html body .u-mb-sm > * {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  html body .u-mb-sm > * {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-sm > * {
    margin-bottom: 16px;
  }
}

html body .u-mb-md {
  margin-bottom: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  html body .u-mb-md {
    margin-bottom: 60px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-md {
    margin-bottom: 20px;
  }
}
html body .u-mb-md > * {
  margin-bottom: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  html body .u-mb-md > * {
    margin-bottom: 60px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-md > * {
    margin-bottom: 20px;
  }
}

html body .u-mb-lg {
  margin-bottom: calc(0.0144927536 * 100vw + 53.9130434783px);
}
@media (min-width: 1801px) {
  html body .u-mb-lg {
    margin-bottom: 80px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-lg {
    margin-bottom: 60px;
  }
}
html body .u-mb-lg > * {
  margin-bottom: calc(0.0144927536 * 100vw + 53.9130434783px);
}
@media (min-width: 1801px) {
  html body .u-mb-lg > * {
    margin-bottom: 80px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-lg > * {
    margin-bottom: 60px;
  }
}

html body .u-mb-xl {
  margin-bottom: calc(0.0217391304 * 100vw + 60.8695652174px);
}
@media (min-width: 1801px) {
  html body .u-mb-xl {
    margin-bottom: 100px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-xl {
    margin-bottom: 70px;
  }
}
html body .u-mb-xl > * {
  margin-bottom: calc(0.0217391304 * 100vw + 60.8695652174px);
}
@media (min-width: 1801px) {
  html body .u-mb-xl > * {
    margin-bottom: 100px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-xl > * {
    margin-bottom: 70px;
  }
}

html body .u-mb-2xl {
  margin-bottom: calc(0.0362318841 * 100vw + 84.7826086957px);
}
@media (min-width: 1801px) {
  html body .u-mb-2xl {
    margin-bottom: 150px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-2xl {
    margin-bottom: 100px;
  }
}
html body .u-mb-2xl > * {
  margin-bottom: calc(0.0362318841 * 100vw + 84.7826086957px);
}
@media (min-width: 1801px) {
  html body .u-mb-2xl > * {
    margin-bottom: 150px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-2xl > * {
    margin-bottom: 100px;
  }
}

html body .u-mb-3xl {
  margin-bottom: calc(0.0217391304 * 100vw + 160.8695652174px);
}
@media (min-width: 1801px) {
  html body .u-mb-3xl {
    margin-bottom: 200px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-3xl {
    margin-bottom: 170px;
  }
}
html body .u-mb-3xl > * {
  margin-bottom: calc(0.0217391304 * 100vw + 160.8695652174px);
}
@media (min-width: 1801px) {
  html body .u-mb-3xl > * {
    margin-bottom: 200px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-3xl > * {
    margin-bottom: 170px;
  }
}

html body .u-mb-4xl {
  margin-bottom: calc(0.0144927536 * 100vw + 213.9130434783px);
}
@media (min-width: 1801px) {
  html body .u-mb-4xl {
    margin-bottom: 240px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-4xl {
    margin-bottom: 220px;
  }
}
html body .u-mb-4xl > * {
  margin-bottom: calc(0.0144927536 * 100vw + 213.9130434783px);
}
@media (min-width: 1801px) {
  html body .u-mb-4xl > * {
    margin-bottom: 240px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-4xl > * {
    margin-bottom: 220px;
  }
}

html body .u-mb-5xl {
  margin-bottom: calc(0.0217391304 * 100vw + 260.8695652174px);
}
@media (min-width: 1801px) {
  html body .u-mb-5xl {
    margin-bottom: 300px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-5xl {
    margin-bottom: 270px;
  }
}
html body .u-mb-5xl > * {
  margin-bottom: calc(0.0217391304 * 100vw + 260.8695652174px);
}
@media (min-width: 1801px) {
  html body .u-mb-5xl > * {
    margin-bottom: 300px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-5xl > * {
    margin-bottom: 270px;
  }
}

html body .u-mb-0 {
  margin-bottom: 0;
}
html body .u-mb-0 > :last-child {
  margin-bottom: 0;
}

/**
 * Type.
 *
 * @description Typography helper classes for wrapping in TinyMCE.
 */
.ft-serif-h1 {
  background-color: red;
}

.ft-sans-h2 {
  background-color: orange;
}

.ft-sans-p {
  background-color: green;
}

.ft-serif-p {
  background-color: yellow;
}

/**
 * Buttons.
 *
 * @description 	Global button class declarations.
 */
.cc-window {
  z-index: 3 !important;
}
.cc-window .cc-slider {
  background-color: #c0c0c0;
}
.cc-window input:checked + .cc-slider {
  background-color: #000000 !important;
}

/**
 * Forms.
 *
 * @description 	Global form styles.
 */
/**
 * Lists.
 *
 * @description 	Global list styles.
 */
.c-Accordion {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-Accordion__body {
  overflow: hidden;
  height: 0;
}
.c-Accordion__body__inner {
  padding-top: calc(0 * 100vw + 10px);
}
@media (min-width: 1801px) {
  .c-Accordion__body__inner {
    padding-top: 10px;
  }
}
@media (max-width: 420px) {
  .c-Accordion__body__inner {
    padding-top: 10px;
  }
}
.c-Accordion__body__inner {
  padding-bottom: calc(0.0072463768 * 100vw + 46.9565217391px);
}
@media (min-width: 1801px) {
  .c-Accordion__body__inner {
    padding-bottom: 60px;
  }
}
@media (max-width: 420px) {
  .c-Accordion__body__inner {
    padding-bottom: 50px;
  }
}
.c-Accordion .btn-arrow {
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-Accordion.open .btn-arrow {
  transform: rotate(180deg);
}
.c-Accordion.open button {
  background-color: #fff;
  color: #1e1e1e;
}
@media (hover: hover) {
  .c-Accordion.open button:hover {
    border: 1px solid #3c7e47;
    background-color: #3c7e47;
    color: #fff;
  }
}
.c-Accordion button {
  position: relative;
  display: flex;
  justify-content: center;
  width: 215px;
  border: 1px solid;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 30px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.3s ease;
}
.c-Accordion button {
  padding-left: calc(0.0072463768 * 100vw + 16.9565217391px);
}
@media (min-width: 1801px) {
  .c-Accordion button {
    padding-left: 30px;
  }
}
@media (max-width: 420px) {
  .c-Accordion button {
    padding-left: 20px;
  }
}
.c-Accordion button {
  padding-right: calc(0.0072463768 * 100vw + 16.9565217391px);
}
@media (min-width: 1801px) {
  .c-Accordion button {
    padding-right: 30px;
  }
}
@media (max-width: 420px) {
  .c-Accordion button {
    padding-right: 20px;
  }
}
.c-Accordion button {
  padding-top: calc(0.0014492754 * 100vw + 11.3913043478px);
}
@media (min-width: 1801px) {
  .c-Accordion button {
    padding-top: 14px;
  }
}
@media (max-width: 420px) {
  .c-Accordion button {
    padding-top: 12px;
  }
}
.c-Accordion button {
  padding-bottom: calc(0.0014492754 * 100vw + 11.3913043478px);
}
@media (min-width: 1801px) {
  .c-Accordion button {
    padding-bottom: 14px;
  }
}
@media (max-width: 420px) {
  .c-Accordion button {
    padding-bottom: 12px;
  }
}
.c-Accordion button > span {
  display: inline-block;
  overflow: hidden;
}
.c-Accordion button > span span {
  position: relative;
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.025, 0.9, 0.45, 1);
}
.c-Accordion button > span span::after {
  content: attr(data-txt);
  position: absolute;
  top: 100%;
  left: 0;
}
.c-Accordion button > span {
  display: flex;
  overflow: hidden;
  width: 100%;
}
@media (hover: hover) {
  .c-Accordion button:hover .btn-mask {
    transform: translateY(-100%);
  }
  .c-Accordion button:hover {
    background-color: #3c7e47;
  }
}
.c-Accordion button .btn-mask {
  flex: 1;
}
.c-Accordion button .btn-mask::after {
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.c-AccordionItem {
  border-bottom: 1px solid currentColor;
}
.c-AccordionItem h4 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1;
  --line-height: 1;
}
.c-AccordionItem h4 {
  font-size: calc(0.0072463768 * 100vw + 16.9565217391px);
}
@media (min-width: 1801px) {
  .c-AccordionItem h4 {
    font-size: 30px;
  }
}
@media (max-width: 420px) {
  .c-AccordionItem h4 {
    font-size: 20px;
  }
}
.c-AccordionItem__title, .c-AccordionItem__toggle {
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-AccordionItem__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}
.c-AccordionItem__header {
  padding-top: calc(0.0144927536 * 100vw + 13.9130434783px);
}
@media (min-width: 1801px) {
  .c-AccordionItem__header {
    padding-top: 40px;
  }
}
@media (max-width: 420px) {
  .c-AccordionItem__header {
    padding-top: 20px;
  }
}
.c-AccordionItem__header {
  padding-bottom: calc(0.0144927536 * 100vw + 13.9130434783px);
}
@media (min-width: 1801px) {
  .c-AccordionItem__header {
    padding-bottom: 40px;
  }
}
@media (max-width: 420px) {
  .c-AccordionItem__header {
    padding-bottom: 20px;
  }
}
@media (hover: hover) {
  .c-AccordionItem__header:hover {
    color: #3c7e47;
  }
  .c-AccordionItem__header:hover .c-AccordionItem__title {
    transform: translateX(20px);
  }
}
.c-AccordionItem__body {
  overflow: hidden;
  height: 0;
}
.c-AccordionItem__body {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.c-AccordionItem__body__inner {
  grid-column: 1/-1;
}
.c-AccordionItem__body__inner {
  padding-top: calc(0.0072463768 * 100vw + 26.9565217391px);
}
@media (min-width: 1801px) {
  .c-AccordionItem__body__inner {
    padding-top: 40px;
  }
}
@media (max-width: 420px) {
  .c-AccordionItem__body__inner {
    padding-top: 30px;
  }
}
.c-AccordionItem__body__inner {
  padding-bottom: calc(0.0072463768 * 100vw + 26.9565217391px);
}
@media (min-width: 1801px) {
  .c-AccordionItem__body__inner {
    padding-bottom: 40px;
  }
}
@media (max-width: 420px) {
  .c-AccordionItem__body__inner {
    padding-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .c-AccordionItem__body__inner {
    grid-column: 7/-1;
  }
}
@media (min-width: 1440px) {
  .c-AccordionItem__body__inner {
    grid-column: 7/-1;
  }
}
.c-AccordionItem__toggle {
  width: 36px;
  height: 36px;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
}
.c-AccordionItem__toggle span {
  position: absolute;
  top: 50%;
  right: calc(-50% - 1px);
  transform: translate(-50%, -50%);
  height: 2px;
  width: inherit;
  background-color: currentColor;
  display: inline-block;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-AccordionItem__toggle span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
.c-AccordionItem.active .c-AccordionItem__toggle span:first-child, .c-AccordionItem.active .c-AccordionItem__toggle span:last-child {
  transform: translate(-50%, -50%) rotate(180deg);
}

.c-Button {
  display: flex;
  align-items: center;
  border: 1px solid;
  color: currentColor;
  position: relative;
  text-transform: uppercase;
  border-radius: 30px;
  justify-content: center;
  width: 100%;
  transition: color 0.2s ease;
}
.c-Button {
  padding-left: calc(0.0072463768 * 100vw + 16.9565217391px);
}
@media (min-width: 1801px) {
  .c-Button {
    padding-left: 30px;
  }
}
@media (max-width: 420px) {
  .c-Button {
    padding-left: 20px;
  }
}
.c-Button {
  padding-right: calc(0.0072463768 * 100vw + 16.9565217391px);
}
@media (min-width: 1801px) {
  .c-Button {
    padding-right: 30px;
  }
}
@media (max-width: 420px) {
  .c-Button {
    padding-right: 20px;
  }
}
.c-Button {
  padding-top: calc(0.0014492754 * 100vw + 13.3913043478px);
}
@media (min-width: 1801px) {
  .c-Button {
    padding-top: 16px;
  }
}
@media (max-width: 420px) {
  .c-Button {
    padding-top: 14px;
  }
}
.c-Button {
  padding-bottom: calc(0.0014492754 * 100vw + 13.3913043478px);
}
@media (min-width: 1801px) {
  .c-Button {
    padding-bottom: 16px;
  }
}
@media (max-width: 420px) {
  .c-Button {
    padding-bottom: 14px;
  }
}
.c-Button > span {
  display: inline-block;
  overflow: hidden;
}
.c-Button > span span {
  position: relative;
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.025, 0.9, 0.45, 1);
}
.c-Button > span span::after {
  content: attr(data-txt);
  position: absolute;
  top: 100%;
  left: 0;
}
.c-Button > span {
  width: 100%;
  text-align: center;
}
@media (hover: hover) {
  .c-Button:hover .btn-mask {
    transform: translateY(-100%);
  }
  .c-Button:hover {
    color: #3c7e47;
  }
}
.c-Button.no-url {
  cursor: default;
  pointer-events: none;
}
@media (hover: hover) {
  .c-Button.no-url:hover .btn-mask {
    transform: none;
  }
  .c-Button.no-url:hover {
    color: currentColor;
  }
}

.c-Dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}
.c-Dropdown__trigger {
  display: flex;
  align-items: center;
  border: 1px solid;
  color: currentColor;
  position: relative;
  text-transform: uppercase;
  border-radius: 30px;
  justify-content: center;
  width: 100%;
  transition: color 0.2s ease;
  position: relative;
  cursor: pointer;
  justify-content: space-between;
  letter-spacing: 2px;
  padding-top: 14px;
  padding-bottom: 14px;
  min-width: 220px;
}
.c-Dropdown__trigger {
  padding-left: calc(0.0072463768 * 100vw + 16.9565217391px);
}
@media (min-width: 1801px) {
  .c-Dropdown__trigger {
    padding-left: 30px;
  }
}
@media (max-width: 420px) {
  .c-Dropdown__trigger {
    padding-left: 20px;
  }
}
.c-Dropdown__trigger {
  padding-right: calc(0.0072463768 * 100vw + 16.9565217391px);
}
@media (min-width: 1801px) {
  .c-Dropdown__trigger {
    padding-right: 30px;
  }
}
@media (max-width: 420px) {
  .c-Dropdown__trigger {
    padding-right: 20px;
  }
}
.c-Dropdown__trigger {
  padding-top: calc(0.0014492754 * 100vw + 13.3913043478px);
}
@media (min-width: 1801px) {
  .c-Dropdown__trigger {
    padding-top: 16px;
  }
}
@media (max-width: 420px) {
  .c-Dropdown__trigger {
    padding-top: 14px;
  }
}
.c-Dropdown__trigger {
  padding-bottom: calc(0.0014492754 * 100vw + 13.3913043478px);
}
@media (min-width: 1801px) {
  .c-Dropdown__trigger {
    padding-bottom: 16px;
  }
}
@media (max-width: 420px) {
  .c-Dropdown__trigger {
    padding-bottom: 14px;
  }
}
.c-Dropdown__trigger > span {
  display: inline-block;
  overflow: hidden;
}
.c-Dropdown__trigger > span span {
  position: relative;
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.025, 0.9, 0.45, 1);
}
.c-Dropdown__trigger > span span::after {
  content: attr(data-txt);
  position: absolute;
  top: 100%;
  left: 0;
}
.c-Dropdown__trigger > span {
  width: 100%;
  text-align: center;
}
@media (hover: hover) {
  .c-Dropdown__trigger:hover .btn-mask {
    transform: translateY(-100%);
  }
  .c-Dropdown__trigger:hover {
    color: #3c7e47;
  }
}
.c-Dropdown .btn-arrow {
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  flex-shrink: 0;
  margin-left: 8px;
}
.c-Dropdown__content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 6px;
  background: #fff;
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 1000;
  overflow: hidden;
}
.c-Dropdown__list {
  list-style: none;
  margin: 0;
  padding: 6px 7px;
}
.c-Dropdown__item {
  margin: 0;
  font-size: 16px;
  text-align: right;
  border-radius: 6px;
}
.c-Dropdown__link {
  display: block;
  padding: 10px 25px;
  color: #333;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border-radius: 11px;
}
.c-Dropdown__link:hover {
  background: #eee;
}
.c-Dropdown__link:focus {
  outline: 2px solid #007cba;
  outline-offset: -2px;
}
.c-Dropdown__empty {
  display: block;
  padding: 8px 14px;
  color: #666;
  font-style: italic;
}
.c-Dropdown.is-open .btn-arrow {
  transform: rotate(180deg);
}
.c-Dropdown.is-open .c-Dropdown__content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dark-theme .c-Dropdown .c-Dropdown__content {
  background: #1a1a1a;
  border-color: #333;
}
.dark-theme .c-Dropdown .c-Dropdown__link {
  color: #fff;
}
.dark-theme .c-Dropdown .c-Dropdown__link:hover {
  background: #333;
}
.dark-theme .c-Dropdown .c-Dropdown__empty {
  color: #999;
}

.c-Image {
  --lazy-load-transition: opacity 0.8s;
  aspect-ratio: var(--desktop-ar);
  position: relative;
}
.c-Image[data-s-lazy-load-calc="1"] .lazyload,
.c-Image[data-s-lazy-load-calc="1"] .lazyloading {
  opacity: 0;
}
.c-Image[data-s-lazy-load-calc="1"] .lazyloaded {
  opacity: 1;
  transition: var(--lazy-load-transition);
}
.c-Image picture {
  padding-bottom: var(--pad);
  height: 0;
}
.c-Image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-Menu {
  background-color: #1e1e1e;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translate(100%, 0);
  height: 100%;
  z-index: 2;
  color: #fff;
  padding-top: 100px;
}
.c-Menu {
  padding-left: calc(0.0036231884 * 100vw + 18.4782608696px);
}
@media (min-width: 1801px) {
  .c-Menu {
    padding-left: 25px;
  }
}
@media (max-width: 420px) {
  .c-Menu {
    padding-left: 20px;
  }
}
.c-Menu {
  padding-right: calc(0.0036231884 * 100vw + 18.4782608696px);
}
@media (min-width: 1801px) {
  .c-Menu {
    padding-right: 25px;
  }
}
@media (max-width: 420px) {
  .c-Menu {
    padding-right: 20px;
  }
}
.c-Menu {
  transition: transform 0.5s ease;
}
.c-Menu__navigation {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}
.c-Menu__navigation ul {
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}
.c-Menu__navigation ul a {
  letter-spacing: 2px;
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1;
  --line-height: 1;
}
.c-Menu__navigation ul a {
  font-size: calc(0.0043478261 * 100vw + 22.1739130435px);
}
@media (min-width: 1801px) {
  .c-Menu__navigation ul a {
    font-size: 30px;
  }
}
@media (max-width: 420px) {
  .c-Menu__navigation ul a {
    font-size: 24px;
  }
}
.c-Menu__navigation {
  margin-bottom: calc(0.0217391304 * 100vw + 40.8695652174px);
}
@media (min-width: 1801px) {
  .c-Menu__navigation {
    margin-bottom: 80px;
  }
}
@media (max-width: 420px) {
  .c-Menu__navigation {
    margin-bottom: 50px;
  }
}
.c-Menu .c-Button {
  width: fit-content;
  line-height: 1;
  --line-height: 1;
}
.c-Menu .c-Button {
  font-size: calc(0.0014492754 * 100vw + 17.3913043478px);
}
@media (min-width: 1801px) {
  .c-Menu .c-Button {
    font-size: 20px;
  }
}
@media (max-width: 420px) {
  .c-Menu .c-Button {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .c-Menu {
    display: none;
  }
}
.c-Menu.is-active {
  transform: translate(0, 0);
}

.c-Menu__navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-Menu__navigation li {
  border-bottom: 1px solid currentColor;
  position: relative;
}

.c-Menu__navigation .menu-item-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 32px 0;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.c-Menu__navigation .menu-item-inner a {
  color: inherit;
  text-decoration: none;
  flex: 1;
  font-weight: 500;
  font-size: 22.6px;
  transition: none;
}

.c-Menu__navigation .has-children > .menu-item-inner > a {
  flex: 1;
}

.c-Menu__navigation .accordion-toggle {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 1em;
  position: relative;
  flex-shrink: 0;
}

.c-Menu__navigation .accordion-toggle::before,
.c-Menu__navigation .accordion-toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.2s;
}

.c-Menu__navigation .accordion-toggle::before {
  top: 11px;
  left: 0px;
  width: 24px;
  height: 2px;
}

.c-Menu__navigation .accordion-toggle::after {
  left: 11px;
  top: 0px;
  width: 2px;
  height: 24px;
}

.c-Menu__navigation .open > .menu-item-inner .accordion-toggle::after {
  transform: scaleY(0); /* Hide vertical bar for minus */
}

.c-Menu__navigation .sub-menu {
  padding-left: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-wrap: no-wrap;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  justify-content: flex-start;
  transition: max-height 0.4s ease;
}

.c-Menu__navigation .open > .sub-menu {
  max-height: 300px;
}

.c-Menu__navigation .sub-menu li {
  width: 51%;
  border: none;
  box-sizing: border-box;
}
.c-Menu__navigation .sub-menu li:last-child {
  padding-bottom: 30px;
}

.c-Menu__navigation .sub-menu .menu-item-inner {
  padding: 0;
  justify-content: flex-start;
}

.c-Menu__navigation li:not(.has-children) .accordion-toggle {
  display: none;
}

.c-Menu__navigation a:hover,
.c-Menu__navigation a:focus {
  color: inherit;
  text-decoration: none;
  background: none;
  transition: none;
}

.c-SliderItem {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1/1;
}
.c-SliderItem__media {
  width: 100%;
  transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-SliderItem svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 70px));
  z-index: 1;
  height: auto;
  width: clamp(140px, 40%, 200px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (min-width: 1024px) {
  .c-SliderItem svg {
    width: clamp(160px, 50%, 200px);
  }
}
.c-SliderItem a {
  border-radius: 50px;
  display: block;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.c-SliderItem a {
  padding-left: calc(0.0217391304 * 100vw + 10.8695652174px);
}
@media (min-width: 1801px) {
  .c-SliderItem a {
    padding-left: 50px;
  }
}
@media (max-width: 420px) {
  .c-SliderItem a {
    padding-left: 20px;
  }
}
.c-SliderItem a {
  padding-right: calc(0.0217391304 * 100vw + 10.8695652174px);
}
@media (min-width: 1801px) {
  .c-SliderItem a {
    padding-right: 50px;
  }
}
@media (max-width: 420px) {
  .c-SliderItem a {
    padding-right: 20px;
  }
}
.c-SliderItem a {
  transition: color 0.4s ease;
}
@media (hover: hover) {
  .c-SliderItem a:hover {
    color: #fff;
  }
  .c-SliderItem a:hover .c-SliderItem__cover {
    opacity: 1;
  }
  .c-SliderItem a:hover .c-SliderItem__title {
    transform: translateY(-20px);
  }
  .c-SliderItem a:hover .c-SliderItem__media {
    transform: scale(1.15);
  }
  .c-SliderItem a:hover svg {
    opacity: 1;
  }
}
.c-SliderItem__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3c7e47;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease;
}
.c-SliderItem__title {
  position: relative;
  will-change: transform;
  z-index: 1;
}
.c-SliderItem__title {
  margin-bottom: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .c-SliderItem__title {
    margin-bottom: 80px;
  }
}
@media (max-width: 420px) {
  .c-SliderItem__title {
    margin-bottom: 20px;
  }
}
.c-SliderItem__title {
  transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-SliderItem h3 {
  text-align: center;
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.c-SliderItem h3 {
  font-size: calc(0.0072463768 * 100vw + 61.9565217391px);
}
@media (min-width: 1801px) {
  .c-SliderItem h3 {
    font-size: 75px;
  }
}
@media (max-width: 420px) {
  .c-SliderItem h3 {
    font-size: 65px;
  }
}
.c-SliderItem.moving {
  z-index: 0;
}

.wp-editor h1 {
  margin-top: calc(0.0144927536 * 100vw + 53.9130434783px);
}
@media (min-width: 1801px) {
  .wp-editor h1 {
    margin-top: 80px;
  }
}
@media (max-width: 420px) {
  .wp-editor h1 {
    margin-top: 60px;
  }
}
.wp-editor h1 {
  margin-bottom: calc(0.0144927536 * 100vw + 53.9130434783px);
}
@media (min-width: 1801px) {
  .wp-editor h1 {
    margin-bottom: 80px;
  }
}
@media (max-width: 420px) {
  .wp-editor h1 {
    margin-bottom: 60px;
  }
}
.wp-editor h1 > * {
  margin-top: calc(0.0144927536 * 100vw + 53.9130434783px);
}
@media (min-width: 1801px) {
  .wp-editor h1 > * {
    margin-top: 80px;
  }
}
@media (max-width: 420px) {
  .wp-editor h1 > * {
    margin-top: 60px;
  }
}
.wp-editor h1 > * {
  margin-bottom: calc(0.0144927536 * 100vw + 53.9130434783px);
}
@media (min-width: 1801px) {
  .wp-editor h1 > * {
    margin-bottom: 80px;
  }
}
@media (max-width: 420px) {
  .wp-editor h1 > * {
    margin-bottom: 60px;
  }
}
.wp-editor h2 {
  margin-top: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  .wp-editor h2 {
    margin-top: 60px;
  }
}
@media (max-width: 420px) {
  .wp-editor h2 {
    margin-top: 20px;
  }
}
.wp-editor h2 {
  margin-bottom: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  .wp-editor h2 {
    margin-bottom: 60px;
  }
}
@media (max-width: 420px) {
  .wp-editor h2 {
    margin-bottom: 20px;
  }
}
.wp-editor h2 > * {
  margin-top: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  .wp-editor h2 > * {
    margin-top: 60px;
  }
}
@media (max-width: 420px) {
  .wp-editor h2 > * {
    margin-top: 20px;
  }
}
.wp-editor h2 > * {
  margin-bottom: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  .wp-editor h2 > * {
    margin-bottom: 60px;
  }
}
@media (max-width: 420px) {
  .wp-editor h2 > * {
    margin-bottom: 20px;
  }
}
.wp-editor h3 {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor h3 {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor h3 {
    margin-top: 16px;
  }
}
.wp-editor h3 {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor h3 {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor h3 {
    margin-bottom: 16px;
  }
}
.wp-editor h3 > * {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor h3 > * {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor h3 > * {
    margin-top: 16px;
  }
}
.wp-editor h3 > * {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor h3 > * {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor h3 > * {
    margin-bottom: 16px;
  }
}
.wp-editor h4 {
  margin-top: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  .wp-editor h4 {
    margin-top: 60px;
  }
}
@media (max-width: 420px) {
  .wp-editor h4 {
    margin-top: 20px;
  }
}
.wp-editor h4 {
  margin-bottom: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  .wp-editor h4 {
    margin-bottom: 60px;
  }
}
@media (max-width: 420px) {
  .wp-editor h4 {
    margin-bottom: 20px;
  }
}
.wp-editor h4 > * {
  margin-top: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  .wp-editor h4 > * {
    margin-top: 60px;
  }
}
@media (max-width: 420px) {
  .wp-editor h4 > * {
    margin-top: 20px;
  }
}
.wp-editor h4 > * {
  margin-bottom: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  .wp-editor h4 > * {
    margin-bottom: 60px;
  }
}
@media (max-width: 420px) {
  .wp-editor h4 > * {
    margin-bottom: 20px;
  }
}
.wp-editor h5 {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor h5 {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor h5 {
    margin-top: 16px;
  }
}
.wp-editor h5 {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor h5 {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor h5 {
    margin-bottom: 16px;
  }
}
.wp-editor h5 > * {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor h5 > * {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor h5 > * {
    margin-top: 16px;
  }
}
.wp-editor h5 > * {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor h5 > * {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor h5 > * {
    margin-bottom: 16px;
  }
}
.wp-editor h6 {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor h6 {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor h6 {
    margin-top: 16px;
  }
}
.wp-editor h6 {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor h6 {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor h6 {
    margin-bottom: 16px;
  }
}
.wp-editor h6 > * {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor h6 > * {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor h6 > * {
    margin-top: 16px;
  }
}
.wp-editor h6 > * {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor h6 > * {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor h6 > * {
    margin-bottom: 16px;
  }
}
.wp-editor p {
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1.3888888889;
  --line-height: 1.3888888889;
}
.wp-editor p {
  font-size: calc(0.0014492754 * 100vw + 15.3913043478px);
}
@media (min-width: 1801px) {
  .wp-editor p {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  .wp-editor p {
    font-size: 16px;
  }
}
.wp-editor p {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor p {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor p {
    margin-top: 16px;
  }
}
.wp-editor p {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor p {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor p {
    margin-bottom: 16px;
  }
}
.wp-editor p > * {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor p > * {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor p > * {
    margin-top: 16px;
  }
}
.wp-editor p > * {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor p > * {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor p > * {
    margin-bottom: 16px;
  }
}
.wp-editor ul,
.wp-editor ol {
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1.3888888889;
  --line-height: 1.3888888889;
}
.wp-editor ul,
.wp-editor ol {
  font-size: calc(0.0014492754 * 100vw + 15.3913043478px);
}
@media (min-width: 1801px) {
  .wp-editor ul,
  .wp-editor ol {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  .wp-editor ul,
  .wp-editor ol {
    font-size: 16px;
  }
}
.wp-editor ul {
  list-style: disc;
}
.wp-editor ul li {
  margin-left: 20px;
}
.wp-editor ul li:before {
  text-align: center;
  display: inline-block;
}
.wp-editor ul li {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor ul li {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor ul li {
    margin-top: 16px;
  }
}
.wp-editor ul li {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor ul li {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor ul li {
    margin-bottom: 16px;
  }
}
.wp-editor ul li > * {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor ul li > * {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor ul li > * {
    margin-top: 16px;
  }
}
.wp-editor ul li > * {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor ul li > * {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor ul li > * {
    margin-bottom: 16px;
  }
}
.wp-editor ul > :first-child {
  margin-top: 0 !important;
}
.wp-editor ul > :first-child > :first-child {
  margin-top: 0;
}
.wp-editor ul > :last-child {
  margin-bottom: 0 !important;
}
.wp-editor ul > :last-child > :last-child {
  margin-bottom: 0 !important;
}
.wp-editor ol {
  list-style: none;
}
.wp-editor ol li {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--bon-gutter);
  text-align: right;
}
.wp-editor ol li > div {
  margin-top: 0 !important;
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--bon-gutter);
}
.wp-editor ol li strong {
  grid-column: 1/span 2;
  font-weight: inherit;
  margin: 0 !important;
  text-align: left;
}
.wp-editor ol li {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor ol li {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor ol li {
    margin-top: 16px;
  }
}
.wp-editor ol li {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor ol li {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor ol li {
    margin-bottom: 16px;
  }
}
.wp-editor ol li > * {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor ol li > * {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor ol li > * {
    margin-top: 16px;
  }
}
.wp-editor ol li > * {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .wp-editor ol li > * {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .wp-editor ol li > * {
    margin-bottom: 16px;
  }
}
.wp-editor a {
  text-decoration: underline;
}
.wp-editor div:first-of-type > * {
  margin-top: 0;
}
.wp-editor > :first-child {
  margin-top: 0 !important;
}
.wp-editor > :first-child > :first-child {
  margin-top: 0;
}
.wp-editor > :last-child {
  margin-bottom: 0 !important;
}
.wp-editor > :last-child > :last-child {
  margin-bottom: 0 !important;
}

.c-Text h1 {
  margin-top: calc(0.0144927536 * 100vw + 53.9130434783px);
}
@media (min-width: 1801px) {
  .c-Text h1 {
    margin-top: 80px;
  }
}
@media (max-width: 420px) {
  .c-Text h1 {
    margin-top: 60px;
  }
}
.c-Text h1 {
  margin-bottom: calc(0.0144927536 * 100vw + 53.9130434783px);
}
@media (min-width: 1801px) {
  .c-Text h1 {
    margin-bottom: 80px;
  }
}
@media (max-width: 420px) {
  .c-Text h1 {
    margin-bottom: 60px;
  }
}
.c-Text h1 > * {
  margin-top: calc(0.0144927536 * 100vw + 53.9130434783px);
}
@media (min-width: 1801px) {
  .c-Text h1 > * {
    margin-top: 80px;
  }
}
@media (max-width: 420px) {
  .c-Text h1 > * {
    margin-top: 60px;
  }
}
.c-Text h1 > * {
  margin-bottom: calc(0.0144927536 * 100vw + 53.9130434783px);
}
@media (min-width: 1801px) {
  .c-Text h1 > * {
    margin-bottom: 80px;
  }
}
@media (max-width: 420px) {
  .c-Text h1 > * {
    margin-bottom: 60px;
  }
}
.c-Text h2 {
  margin-top: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  .c-Text h2 {
    margin-top: 60px;
  }
}
@media (max-width: 420px) {
  .c-Text h2 {
    margin-top: 20px;
  }
}
.c-Text h2 {
  margin-bottom: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  .c-Text h2 {
    margin-bottom: 60px;
  }
}
@media (max-width: 420px) {
  .c-Text h2 {
    margin-bottom: 20px;
  }
}
.c-Text h2 > * {
  margin-top: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  .c-Text h2 > * {
    margin-top: 60px;
  }
}
@media (max-width: 420px) {
  .c-Text h2 > * {
    margin-top: 20px;
  }
}
.c-Text h2 > * {
  margin-bottom: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  .c-Text h2 > * {
    margin-bottom: 60px;
  }
}
@media (max-width: 420px) {
  .c-Text h2 > * {
    margin-bottom: 20px;
  }
}
.c-Text h3 {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text h3 {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text h3 {
    margin-top: 16px;
  }
}
.c-Text h3 {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text h3 {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text h3 {
    margin-bottom: 16px;
  }
}
.c-Text h3 > * {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text h3 > * {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text h3 > * {
    margin-top: 16px;
  }
}
.c-Text h3 > * {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text h3 > * {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text h3 > * {
    margin-bottom: 16px;
  }
}
.c-Text h4 {
  margin-top: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  .c-Text h4 {
    margin-top: 60px;
  }
}
@media (max-width: 420px) {
  .c-Text h4 {
    margin-top: 20px;
  }
}
.c-Text h4 {
  margin-bottom: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  .c-Text h4 {
    margin-bottom: 60px;
  }
}
@media (max-width: 420px) {
  .c-Text h4 {
    margin-bottom: 20px;
  }
}
.c-Text h4 > * {
  margin-top: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  .c-Text h4 > * {
    margin-top: 60px;
  }
}
@media (max-width: 420px) {
  .c-Text h4 > * {
    margin-top: 20px;
  }
}
.c-Text h4 > * {
  margin-bottom: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  .c-Text h4 > * {
    margin-bottom: 60px;
  }
}
@media (max-width: 420px) {
  .c-Text h4 > * {
    margin-bottom: 20px;
  }
}
.c-Text h5 {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text h5 {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text h5 {
    margin-top: 16px;
  }
}
.c-Text h5 {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text h5 {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text h5 {
    margin-bottom: 16px;
  }
}
.c-Text h5 > * {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text h5 > * {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text h5 > * {
    margin-top: 16px;
  }
}
.c-Text h5 > * {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text h5 > * {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text h5 > * {
    margin-bottom: 16px;
  }
}
.c-Text h6 {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text h6 {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text h6 {
    margin-top: 16px;
  }
}
.c-Text h6 {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text h6 {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text h6 {
    margin-bottom: 16px;
  }
}
.c-Text h6 > * {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text h6 > * {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text h6 > * {
    margin-top: 16px;
  }
}
.c-Text h6 > * {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text h6 > * {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text h6 > * {
    margin-bottom: 16px;
  }
}
.c-Text p {
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1.3888888889;
  --line-height: 1.3888888889;
}
.c-Text p {
  font-size: calc(0.0014492754 * 100vw + 15.3913043478px);
}
@media (min-width: 1801px) {
  .c-Text p {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  .c-Text p {
    font-size: 16px;
  }
}
.c-Text p {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text p {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text p {
    margin-top: 16px;
  }
}
.c-Text p {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text p {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text p {
    margin-bottom: 16px;
  }
}
.c-Text p > * {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text p > * {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text p > * {
    margin-top: 16px;
  }
}
.c-Text p > * {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text p > * {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text p > * {
    margin-bottom: 16px;
  }
}
.c-Text ul,
.c-Text ol {
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1.3888888889;
  --line-height: 1.3888888889;
}
.c-Text ul,
.c-Text ol {
  font-size: calc(0.0014492754 * 100vw + 15.3913043478px);
}
@media (min-width: 1801px) {
  .c-Text ul,
  .c-Text ol {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  .c-Text ul,
  .c-Text ol {
    font-size: 16px;
  }
}
.c-Text ul {
  list-style: disc;
}
.c-Text ul li {
  margin-left: 20px;
}
.c-Text ul li:before {
  text-align: center;
  display: inline-block;
}
.c-Text ul li {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text ul li {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text ul li {
    margin-top: 16px;
  }
}
.c-Text ul li {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text ul li {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text ul li {
    margin-bottom: 16px;
  }
}
.c-Text ul li > * {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text ul li > * {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text ul li > * {
    margin-top: 16px;
  }
}
.c-Text ul li > * {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text ul li > * {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text ul li > * {
    margin-bottom: 16px;
  }
}
.c-Text ul > :first-child {
  margin-top: 0 !important;
}
.c-Text ul > :first-child > :first-child {
  margin-top: 0;
}
.c-Text ul > :last-child {
  margin-bottom: 0 !important;
}
.c-Text ul > :last-child > :last-child {
  margin-bottom: 0 !important;
}
.c-Text ol {
  list-style: none;
}
.c-Text ol li {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--bon-gutter);
  text-align: right;
}
.c-Text ol li > div {
  margin-top: 0 !important;
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--bon-gutter);
}
.c-Text ol li strong {
  grid-column: 1/span 2;
  font-weight: inherit;
  margin: 0 !important;
  text-align: left;
}
.c-Text ol li {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text ol li {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text ol li {
    margin-top: 16px;
  }
}
.c-Text ol li {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text ol li {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text ol li {
    margin-bottom: 16px;
  }
}
.c-Text ol li > * {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text ol li > * {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text ol li > * {
    margin-top: 16px;
  }
}
.c-Text ol li > * {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .c-Text ol li > * {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .c-Text ol li > * {
    margin-bottom: 16px;
  }
}
.c-Text a {
  text-decoration: underline;
}
.c-Text div:first-of-type > * {
  margin-top: 0;
}
.c-Text > :first-child {
  margin-top: 0 !important;
}
.c-Text > :first-child > :first-child {
  margin-top: 0;
}
.c-Text > :last-child {
  margin-bottom: 0 !important;
}
.c-Text > :last-child > :last-child {
  margin-bottom: 0 !important;
}
.c-Text {
  height: fit-content;
}
.c-Text h1 {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.c-Text h1 {
  font-size: calc(0.0688405797 * 100vw + 26.0869565217px);
}
@media (min-width: 1801px) {
  .c-Text h1 {
    font-size: 150px;
  }
}
@media (max-width: 420px) {
  .c-Text h1 {
    font-size: 55px;
  }
}
.c-Text h2 {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 0.9;
  --line-height: 0.9;
}
.c-Text h2 {
  font-size: calc(0.0326086957 * 100vw + 41.3043478261px);
}
@media (min-width: 1801px) {
  .c-Text h2 {
    font-size: 100px;
  }
}
@media (max-width: 420px) {
  .c-Text h2 {
    font-size: 55px;
  }
}
.c-Text h3 {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 0.9;
  --line-height: 0.9;
}
.c-Text h3 {
  font-size: calc(0.0326086957 * 100vw + 41.3043478261px);
}
@media (min-width: 1801px) {
  .c-Text h3 {
    font-size: 100px;
  }
}
@media (max-width: 420px) {
  .c-Text h3 {
    font-size: 55px;
  }
}
.c-Text h4 {
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1.3888888889;
  --line-height: 1.3888888889;
}
.c-Text h4 {
  font-size: calc(0.0014492754 * 100vw + 15.3913043478px);
}
@media (min-width: 1801px) {
  .c-Text h4 {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  .c-Text h4 {
    font-size: 16px;
  }
}
.c-Text h6 {
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1.3888888889;
  --line-height: 1.3888888889;
}
.c-Text h6 {
  font-size: calc(0.0014492754 * 100vw + 15.3913043478px);
}
@media (min-width: 1801px) {
  .c-Text h6 {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  .c-Text h6 {
    font-size: 16px;
  }
}
.c-Text p {
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1.3888888889;
  --line-height: 1.3888888889;
}
.c-Text p {
  font-size: calc(0.0014492754 * 100vw + 15.3913043478px);
}
@media (min-width: 1801px) {
  .c-Text p {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  .c-Text p {
    font-size: 16px;
  }
}
.c-Text a {
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .c-Text a:hover {
    color: #3c7e47;
  }
}
.c-Text__content h1,
.c-Text__content h2,
.c-Text__content h3,
.c-Text__content h4,
.c-Text__content ol {
  width: 100%;
}
.c-Text__content h5 {
  width: 100%;
}
.c-Text__content p {
  width: 100%;
}

html body#tinymce h1 {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
html body#tinymce h1 {
  font-size: calc(0.0688405797 * 100vw + 26.0869565217px);
}
@media (min-width: 1801px) {
  html body#tinymce h1 {
    font-size: 150px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h1 {
    font-size: 55px;
  }
}
html body#tinymce h1 {
  margin-top: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  html body#tinymce h1 {
    margin-top: 60px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h1 {
    margin-top: 20px;
  }
}
html body#tinymce h1 {
  margin-bottom: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  html body#tinymce h1 {
    margin-bottom: 60px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h1 {
    margin-bottom: 20px;
  }
}
html body#tinymce h1 > * {
  margin-top: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  html body#tinymce h1 > * {
    margin-top: 60px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h1 > * {
    margin-top: 20px;
  }
}
html body#tinymce h1 > * {
  margin-bottom: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  html body#tinymce h1 > * {
    margin-bottom: 60px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h1 > * {
    margin-bottom: 20px;
  }
}
html body#tinymce h2 {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
html body#tinymce h2 {
  font-size: calc(0.0688405797 * 100vw + 26.0869565217px);
}
@media (min-width: 1801px) {
  html body#tinymce h2 {
    font-size: 150px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h2 {
    font-size: 55px;
  }
}
html body#tinymce h2 {
  margin-top: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  html body#tinymce h2 {
    margin-top: 60px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h2 {
    margin-top: 20px;
  }
}
html body#tinymce h2 {
  margin-bottom: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  html body#tinymce h2 {
    margin-bottom: 60px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h2 {
    margin-bottom: 20px;
  }
}
html body#tinymce h2 > * {
  margin-top: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  html body#tinymce h2 > * {
    margin-top: 60px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h2 > * {
    margin-top: 20px;
  }
}
html body#tinymce h2 > * {
  margin-bottom: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  html body#tinymce h2 > * {
    margin-bottom: 60px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h2 > * {
    margin-bottom: 20px;
  }
}
html body#tinymce h3 {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
html body#tinymce h3 {
  font-size: calc(0.0253623188 * 100vw + 54.347826087px);
}
@media (min-width: 1801px) {
  html body#tinymce h3 {
    font-size: 100px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h3 {
    font-size: 65px;
  }
}
html body#tinymce h3 {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  html body#tinymce h3 {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h3 {
    margin-top: 16px;
  }
}
html body#tinymce h3 {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  html body#tinymce h3 {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h3 {
    margin-bottom: 16px;
  }
}
html body#tinymce h3 > * {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  html body#tinymce h3 > * {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h3 > * {
    margin-top: 16px;
  }
}
html body#tinymce h3 > * {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  html body#tinymce h3 > * {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h3 > * {
    margin-bottom: 16px;
  }
}
html body#tinymce h4 {
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1.3888888889;
  --line-height: 1.3888888889;
}
html body#tinymce h4 {
  font-size: calc(0.0014492754 * 100vw + 15.3913043478px);
}
@media (min-width: 1801px) {
  html body#tinymce h4 {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h4 {
    font-size: 16px;
  }
}
html body#tinymce h4 {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  html body#tinymce h4 {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h4 {
    margin-top: 16px;
  }
}
html body#tinymce h4 {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  html body#tinymce h4 {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h4 {
    margin-bottom: 16px;
  }
}
html body#tinymce h4 > * {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  html body#tinymce h4 > * {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h4 > * {
    margin-top: 16px;
  }
}
html body#tinymce h4 > * {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  html body#tinymce h4 > * {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  html body#tinymce h4 > * {
    margin-bottom: 16px;
  }
}
html body#tinymce p {
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1.3888888889;
  --line-height: 1.3888888889;
}
html body#tinymce p {
  font-size: calc(0.0014492754 * 100vw + 15.3913043478px);
}
@media (min-width: 1801px) {
  html body#tinymce p {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  html body#tinymce p {
    font-size: 16px;
  }
}
html body#tinymce p {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  html body#tinymce p {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  html body#tinymce p {
    margin-top: 16px;
  }
}
html body#tinymce p {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  html body#tinymce p {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  html body#tinymce p {
    margin-bottom: 16px;
  }
}
html body#tinymce p > * {
  margin-top: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  html body#tinymce p > * {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  html body#tinymce p > * {
    margin-top: 16px;
  }
}
html body#tinymce p > * {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  html body#tinymce p > * {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  html body#tinymce p > * {
    margin-bottom: 16px;
  }
}

html body .u-mb-xxxs {
  margin-bottom: calc(0.0007246377 * 100vw + 0.6956521739px);
}
@media (min-width: 1801px) {
  html body .u-mb-xxxs {
    margin-bottom: 2px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-xxxs {
    margin-bottom: 1px;
  }
}
html body .u-mb-xxxs > * {
  margin-bottom: calc(0.0007246377 * 100vw + 0.6956521739px);
}
@media (min-width: 1801px) {
  html body .u-mb-xxxs > * {
    margin-bottom: 2px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-xxxs > * {
    margin-bottom: 1px;
  }
}

html body .u-mb-xxs {
  margin-bottom: calc(0.0014492754 * 100vw + 1.3913043478px);
}
@media (min-width: 1801px) {
  html body .u-mb-xxs {
    margin-bottom: 4px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-xxs {
    margin-bottom: 2px;
  }
}
html body .u-mb-xxs > * {
  margin-bottom: calc(0.0014492754 * 100vw + 1.3913043478px);
}
@media (min-width: 1801px) {
  html body .u-mb-xxs > * {
    margin-bottom: 4px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-xxs > * {
    margin-bottom: 2px;
  }
}

html body .u-mb-xs {
  margin-bottom: calc(0.0014492754 * 100vw + 7.3913043478px);
}
@media (min-width: 1801px) {
  html body .u-mb-xs {
    margin-bottom: 10px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-xs {
    margin-bottom: 8px;
  }
}
html body .u-mb-xs > * {
  margin-bottom: calc(0.0014492754 * 100vw + 7.3913043478px);
}
@media (min-width: 1801px) {
  html body .u-mb-xs > * {
    margin-bottom: 10px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-xs > * {
    margin-bottom: 8px;
  }
}

html body .u-mb-sm {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  html body .u-mb-sm {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-sm {
    margin-bottom: 16px;
  }
}
html body .u-mb-sm > * {
  margin-bottom: calc(0.0028985507 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  html body .u-mb-sm > * {
    margin-bottom: 20px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-sm > * {
    margin-bottom: 16px;
  }
}

html body .u-mb-md {
  margin-bottom: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  html body .u-mb-md {
    margin-bottom: 60px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-md {
    margin-bottom: 20px;
  }
}
html body .u-mb-md > * {
  margin-bottom: calc(0.0289855072 * 100vw + 7.8260869565px);
}
@media (min-width: 1801px) {
  html body .u-mb-md > * {
    margin-bottom: 60px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-md > * {
    margin-bottom: 20px;
  }
}

html body .u-mb-lg {
  margin-bottom: calc(0.0144927536 * 100vw + 53.9130434783px);
}
@media (min-width: 1801px) {
  html body .u-mb-lg {
    margin-bottom: 80px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-lg {
    margin-bottom: 60px;
  }
}
html body .u-mb-lg > * {
  margin-bottom: calc(0.0144927536 * 100vw + 53.9130434783px);
}
@media (min-width: 1801px) {
  html body .u-mb-lg > * {
    margin-bottom: 80px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-lg > * {
    margin-bottom: 60px;
  }
}

html body .u-mb-xl {
  margin-bottom: calc(0.0217391304 * 100vw + 60.8695652174px);
}
@media (min-width: 1801px) {
  html body .u-mb-xl {
    margin-bottom: 100px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-xl {
    margin-bottom: 70px;
  }
}
html body .u-mb-xl > * {
  margin-bottom: calc(0.0217391304 * 100vw + 60.8695652174px);
}
@media (min-width: 1801px) {
  html body .u-mb-xl > * {
    margin-bottom: 100px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-xl > * {
    margin-bottom: 70px;
  }
}

html body .u-mb-2xl {
  margin-bottom: calc(0.0362318841 * 100vw + 84.7826086957px);
}
@media (min-width: 1801px) {
  html body .u-mb-2xl {
    margin-bottom: 150px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-2xl {
    margin-bottom: 100px;
  }
}
html body .u-mb-2xl > * {
  margin-bottom: calc(0.0362318841 * 100vw + 84.7826086957px);
}
@media (min-width: 1801px) {
  html body .u-mb-2xl > * {
    margin-bottom: 150px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-2xl > * {
    margin-bottom: 100px;
  }
}

html body .u-mb-3xl {
  margin-bottom: calc(0.0217391304 * 100vw + 160.8695652174px);
}
@media (min-width: 1801px) {
  html body .u-mb-3xl {
    margin-bottom: 200px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-3xl {
    margin-bottom: 170px;
  }
}
html body .u-mb-3xl > * {
  margin-bottom: calc(0.0217391304 * 100vw + 160.8695652174px);
}
@media (min-width: 1801px) {
  html body .u-mb-3xl > * {
    margin-bottom: 200px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-3xl > * {
    margin-bottom: 170px;
  }
}

html body .u-mb-4xl {
  margin-bottom: calc(0.0144927536 * 100vw + 213.9130434783px);
}
@media (min-width: 1801px) {
  html body .u-mb-4xl {
    margin-bottom: 240px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-4xl {
    margin-bottom: 220px;
  }
}
html body .u-mb-4xl > * {
  margin-bottom: calc(0.0144927536 * 100vw + 213.9130434783px);
}
@media (min-width: 1801px) {
  html body .u-mb-4xl > * {
    margin-bottom: 240px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-4xl > * {
    margin-bottom: 220px;
  }
}

html body .u-mb-5xl {
  margin-bottom: calc(0.0217391304 * 100vw + 260.8695652174px);
}
@media (min-width: 1801px) {
  html body .u-mb-5xl {
    margin-bottom: 300px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-5xl {
    margin-bottom: 270px;
  }
}
html body .u-mb-5xl > * {
  margin-bottom: calc(0.0217391304 * 100vw + 260.8695652174px);
}
@media (min-width: 1801px) {
  html body .u-mb-5xl > * {
    margin-bottom: 300px;
  }
}
@media (max-width: 420px) {
  html body .u-mb-5xl > * {
    margin-bottom: 270px;
  }
}

html body .u-mb-0 {
  margin-bottom: 0;
}
html body .u-mb-0 > :last-child {
  margin-bottom: 0;
}

.c-Video {
  position: relative;
  overflow: hidden;
  height: inherit;
}
.c-Video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.c-Video__control-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.c-Video__control-play svg {
  height: auto;
}
.c-Video__control-play svg {
  width: calc(0.0942028986 * 100vw + 30.4347826087px);
}
@media (min-width: 1801px) {
  .c-Video__control-play svg {
    width: 200px;
  }
}
@media (max-width: 420px) {
  .c-Video__control-play svg {
    width: 70px;
  }
}
.c-Video__control-play svg {
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-Video__control-play svg circle,
.c-Video__control-play svg path {
  stroke-width: calc(-0.0014492754 * 100vw + 4.6086956522px);
}
@media (min-width: 1801px) {
  .c-Video__control-play svg circle,
  .c-Video__control-play svg path {
    stroke-width: 2px;
  }
}
@media (max-width: 420px) {
  .c-Video__control-play svg circle,
  .c-Video__control-play svg path {
    stroke-width: 4px;
  }
}
@media (hover: hover) {
  .c-Video:hover .c-Video__control-play svg {
    transform: scale(1.1);
  }
}
.c-Video.is-loaded .c-Video__control-play {
  display: none;
}
.c-Video.is-loaded video {
  cursor: auto;
}

body:not([data-s-has-page-transition="1"]) .e-PageTransition {
  display: none;
}

.e-PageTransition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e1e1e;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: opacity;
}
.e-PageTransition__loader {
  width: 200px;
}

.s-Accordions {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
}
.s-Accordions {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-Accordions {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-Accordions {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-Accordions {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-Accordions {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-Accordions {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-Accordions {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-Accordions {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-Accordions {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-Accordions {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-Accordions {
    padding-left: 20px;
  }
}
.s-Accordions {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-Accordions {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-Accordions {
    padding-right: 20px;
  }
}
.s-Accordions__header {
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.s-Accordions__header {
  padding-top: calc(0.0362318841 * 100vw + 34.7826086957px);
}
@media (min-width: 1801px) {
  .s-Accordions__header {
    padding-top: 100px;
  }
}
@media (max-width: 420px) {
  .s-Accordions__header {
    padding-top: 50px;
  }
}
.s-Accordions__header {
  padding-bottom: calc(0.0362318841 * 100vw + 34.7826086957px);
}
@media (min-width: 1801px) {
  .s-Accordions__header {
    padding-bottom: 100px;
  }
}
@media (max-width: 420px) {
  .s-Accordions__header {
    padding-bottom: 50px;
  }
}
.s-Accordions__title {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.s-Accordions__title {
  font-size: calc(0.0217391304 * 100vw + 35.8695652174px);
}
@media (min-width: 1801px) {
  .s-Accordions__title {
    font-size: 75px;
  }
}
@media (max-width: 420px) {
  .s-Accordions__title {
    font-size: 45px;
  }
}
.s-Accordions__header, .s-Accordions__items {
  grid-column: 1/-1;
}
@media (min-width: 1440px) {
  .s-Accordions__header, .s-Accordions__items {
    grid-column: 2/-2;
  }
}

.s-Awards {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: 0 80px;
}
.s-Awards {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-Awards {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-Awards {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-Awards {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-Awards {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-Awards {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-Awards {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-Awards__wrapper {
  overflow: hidden;
}
.s-Awards__wrapper {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-Awards__wrapper {
  row-gap: calc(0.0217391304 * 100vw + 40.8695652174px);
}
@media (min-width: 1801px) {
  .s-Awards__wrapper {
    row-gap: 80px;
  }
}
@media (max-width: 420px) {
  .s-Awards__wrapper {
    row-gap: 50px;
  }
}
.s-Awards__slider {
  display: flex;
  position: relative;
  gap: var(--bon-gutter);
  grid-column: 1/-1;
  height: 100%;
  width: 100%;
  opacity: 0;
}
@media (min-width: 1024px) {
  .s-Awards__slider {
    grid-column: 5/-1;
  }
}
@media (min-width: 1440px) {
  .s-Awards__slider {
    grid-column: 4/-1;
  }
}
.s-Awards__slider:focus-visible {
  outline: none;
}
.s-Awards__slider:focus {
  outline: none;
}
.s-Awards__slide {
  position: absolute;
  width: unset;
  will-change: transform;
  aspect-ratio: 4/3;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .s-Awards__slide {
    width: 33.2%;
  }
}
@media (min-width: 1024px) {
  .s-Awards__slide {
    width: calc((100vw - 160px) / 5);
  }
}
.s-Awards__slide img {
  transition: transform 0.3s ease;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.s-Awards .flickity-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.s-Awards .flickity-viewport:focus-visible {
  outline: none;
}
.s-Awards .flickity-viewport:focus {
  outline: none;
}
.s-Awards .flickity-slider {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  will-change: transform;
}
.s-Awards .flickity-slider:focus-visible {
  outline: none;
}
.s-Awards .flickity-slider:focus {
  outline: none;
}
.s-Awards .flickity-button {
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
  position: absolute;
}
.s-Awards .flickity-button:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}
@media (min-width: 1024px) {
  .s-Awards .flickity-button:after {
    width: 30px;
    height: 30px;
  }
}
.s-Awards .flickity-button.previous {
  left: -20px;
}
.s-Awards .flickity-button.next {
  right: -20px;
}
.s-Awards .flickity-button-icon {
  display: none;
}
.s-Awards .flickity-button.previous::after {
  transform: rotate(-135deg);
}
.s-Awards .flickity-button[disabled] {
  opacity: 0;
  pointer-events: none;
}

.s-Awards__slide.is-animate {
  opacity: 1;
}

div.s-Awards *, .s-Awards * {
  border: none !important;
}

.desktop .s-Awards__slide a:hover img {
  transform: scale(0.96);
}

.s-Awards__review {
  font-family: Garamond-Regular, serif;
  font-size: 20px;
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .s-Awards__review {
    font-size: 22px;
  }
}

.s-Awards__button {
  font-size: 16px;
  margin-top: 20px;
  display: inline-block;
  position: relative;
}
.s-Awards__button::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.s-Awards__button:hover::before {
  transform: scaleX(1);
}
@media (min-width: 1024px) {
  .s-Awards__button {
    font-size: 20px;
  }
}

.has-reviews .s-Awards__slide {
  width: calc((100vw - 80px) / 1);
}

@media all and (min-width: 1023px) {
  .has-reviews .flickity-viewport {
    position: relative;
    height: auto !important;
    transition: none !important;
  }
  .has-reviews .flickity-slider {
    position: relative;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    transform: none !important;
    gap: 40px 0px;
    transition: none !important;
  }
  .has-reviews .s-Awards__slide {
    width: calc((100vw - 160px) / 2);
    position: relative;
    transform: none !important;
    transition: none !important;
  }
  .has-reviews .flickity-button {
    opacity: 0;
    pointer-events: none;
  }
}
@media all and (min-width: 1300px) {
  .has-reviews .flickity-slider {
    grid-template-columns: repeat(3, 1fr);
  }
  .has-reviews .s-Awards__slide {
    width: calc((100vw - 160px) / 3);
  }
}
@media all and (min-width: 2000px) {
  .has-reviews .s-Awards__slider {
    width: 1840px;
    margin: 0 auto;
  }
  .has-reviews .s-Awards__slide {
    width: 613.3333333333px;
  }
}
@media all and (max-width: 1024px) {
  .s-Awards__slide img {
    opacity: 1 !important;
    max-width: 210px;
    object-fit: contain;
    object-position: center center;
    position: absolute;
    transform: translateX(-50%) !important;
    left: 50%;
  }
  .s-Awards.has-reviews {
    padding-right: 40px;
    padding-left: 40px;
  }
  .has-reviews .s-Awards__slide img {
    position: relative !important;
  }
  .has-reviews .s-Awards__slide {
    aspect-ratio: unset;
  }
}
@media all and (max-width: 600px) {
  .has-reviews .s-Awards__slider .flickity-button {
    opacity: 0;
    pointer-events: none;
  }
}
.s-DownloadRepeater {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
}
.s-DownloadRepeater {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-DownloadRepeater {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-DownloadRepeater {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-DownloadRepeater {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-DownloadRepeater {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-DownloadRepeater {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-DownloadRepeater {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-DownloadRepeater {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-DownloadRepeater {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-DownloadRepeater {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-DownloadRepeater {
    padding-left: 20px;
  }
}
.s-DownloadRepeater {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-DownloadRepeater {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-DownloadRepeater {
    padding-right: 20px;
  }
}
.s-DownloadRepeater__links {
  grid-column: 1/-1;
  position: relative;
}
@media (min-width: 1024px) {
  .s-DownloadRepeater__links {
    grid-column: 3/-3;
  }
}
.s-DownloadRepeater__link {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: color 0.3s ease;
}
.s-DownloadRepeater__link {
  padding-top: calc(0.0036231884 * 100vw + 18.4782608696px);
}
@media (min-width: 1801px) {
  .s-DownloadRepeater__link {
    padding-top: 25px;
  }
}
@media (max-width: 420px) {
  .s-DownloadRepeater__link {
    padding-top: 20px;
  }
}
.s-DownloadRepeater__link {
  padding-bottom: calc(0.0036231884 * 100vw + 18.4782608696px);
}
@media (min-width: 1801px) {
  .s-DownloadRepeater__link {
    padding-bottom: 25px;
  }
}
@media (max-width: 420px) {
  .s-DownloadRepeater__link {
    padding-bottom: 20px;
  }
}
@media (hover: hover) {
  .s-DownloadRepeater__link:hover {
    color: #3c7e47;
  }
  .s-DownloadRepeater__link:hover .s-DownloadRepeater__link__title {
    transform: translateX(20px);
  }
  .s-DownloadRepeater__link:hover .s-DownloadRepeater__link__icon {
    transform: translateX(-20px);
  }
}
.s-DownloadRepeater__fx {
  background-color: #1e1e1e;
  height: 1px;
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  will-change: transform;
}
.s-DownloadRepeater__fx:last-of-type {
  top: unset;
  bottom: 0;
}
.s-DownloadRepeater__link__title, .s-DownloadRepeater__link__icon {
  position: relative;
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.s-DownloadRepeater__link__title {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.s-DownloadRepeater__link__title {
  font-size: calc(0.0217391304 * 100vw + 35.8695652174px);
}
@media (min-width: 1801px) {
  .s-DownloadRepeater__link__title {
    font-size: 75px;
  }
}
@media (max-width: 420px) {
  .s-DownloadRepeater__link__title {
    font-size: 45px;
  }
}
.s-DownloadRepeater__link__icon {
  display: flex;
}
.s-DownloadRepeater__link__icon svg {
  height: auto;
}
.s-DownloadRepeater__link__icon svg {
  width: calc(0.018115942 * 100vw + 37.3913043478px);
}
@media (min-width: 1801px) {
  .s-DownloadRepeater__link__icon svg {
    width: 70px;
  }
}
@media (max-width: 420px) {
  .s-DownloadRepeater__link__icon svg {
    width: 45px;
  }
}
.s-DownloadRepeater__link__icon svg path {
  transition: fill 0.3s ease;
}

.s-DraggableSequence {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
}
.s-DraggableSequence {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-DraggableSequence {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-DraggableSequence {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-DraggableSequence {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-DraggableSequence {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-DraggableSequence {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-DraggableSequence {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-DraggableSequence {
  position: relative;
  height: 100vw;
  width: 100%;
}
@media (min-width: 1024px) {
  .s-DraggableSequence {
    height: clamp(700px, 90vh, 1100px);
  }
}
.s-DraggableSequence canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  max-width: 1100px;
  margin: auto;
}
@media (min-width: 1024px) {
  .s-DraggableSequence canvas {
    width: 1100px;
    height: 1100px;
  }
}
.s-DraggableSequence canvas {
  padding-left: calc(0 * 100vw + 40px);
}
@media (min-width: 1801px) {
  .s-DraggableSequence canvas {
    padding-left: 40px;
  }
}
@media (max-width: 420px) {
  .s-DraggableSequence canvas {
    padding-left: 40px;
  }
}
.s-DraggableSequence canvas {
  padding-right: calc(0 * 100vw + 40px);
}
@media (min-width: 1801px) {
  .s-DraggableSequence canvas {
    padding-right: 40px;
  }
}
@media (max-width: 420px) {
  .s-DraggableSequence canvas {
    padding-right: 40px;
  }
}
.s-DraggableSequence__drag-hint {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 50%;
  border: solid 1px #fff;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  transition: opacity 0.3s ease;
}
.s-DraggableSequence__drag-hint {
  width: calc(0.0724637681 * 100vw + 69.5652173913px);
}
@media (min-width: 1801px) {
  .s-DraggableSequence__drag-hint {
    width: 200px;
  }
}
@media (max-width: 420px) {
  .s-DraggableSequence__drag-hint {
    width: 100px;
  }
}
.s-DraggableSequence__drag-hint p {
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  letter-spacing: 2px;
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1;
  --line-height: 1;
  font-size: 14px;
}
.s-DraggableSequence__drag-hint.hidden {
  opacity: 0;
}

.touchscreen .s-DraggableSequence__drag-hint {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.s-ErrorSection {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
}
.s-ErrorSection {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-ErrorSection {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-ErrorSection {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-ErrorSection {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-ErrorSection {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-ErrorSection {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-ErrorSection {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-ErrorSection {
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.s-ErrorSection a {
  width: fit-content;
}
.s-ErrorSection__ticker {
  --gap: 40px;
  --speed: 30s;
  width: 100%;
  display: flex;
  user-select: none;
}
@media (min-width: 1024px) {
  .s-ErrorSection__ticker {
    --gap: 80px;
  }
}
.s-ErrorSection__ticker {
  margin-bottom: calc(0.0362318841 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .s-ErrorSection__ticker {
    margin-bottom: 80px;
  }
}
@media (max-width: 420px) {
  .s-ErrorSection__ticker {
    margin-bottom: 30px;
  }
}
.s-ErrorSection__ticker__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: var(--gap);
  animation: ticker var(--speed) linear infinite;
}
.s-ErrorSection__ticker__content:not(:last-of-type) {
  margin-right: var(--gap);
}

.s-Featured {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: 80px;
  text-align: center;
  gap: 40px;
}
.s-Featured {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-Featured {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-Featured {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-Featured {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-Featured {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-Featured {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-Featured {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-Featured {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-Featured {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-Featured {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-Featured {
    padding-left: 20px;
  }
}
.s-Featured {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-Featured {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-Featured {
    padding-right: 20px;
  }
}
.s-Featured__title {
  grid-column: 1/-1;
}
@media (min-width: 1024px) {
  .s-Featured__title {
    grid-column: 1/-1;
  }
}
.s-Featured__title h2 {
  font-style: normal;
  font-family: Garamond-Regular, serif;
  font-size: clamp(0px, 5.6vw + 26px, 120px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.s-Featured__grid {
  grid-column: 1/-1;
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .s-Featured__grid {
    gap: 80px;
  }
}
.s-Featured__item {
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}
.s-Featured__item img {
  width: 95%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform 0.3s ease;
  max-height: 80px;
  min-width: 90px;
  max-width: 130px;
  padding-left: 2.5%;
}
@media (min-width: 1024px) {
  .s-Featured__item img {
    max-height: 200px;
    max-width: 250px;
  }
}
.s-Featured__link {
  display: block;
  text-decoration: none;
  width: 100%;
  height: 100%;
}
.s-Featured__link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.s-Featured__link:hover img {
  transform: scale(1.05);
}
.s-Featured .parent {
  overflow: hidden;
  padding: 0 5px;
  vertical-align: bottom;
}
.s-Featured .child {
  will-change: transform;
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--index) * 0.04s);
  transform: translate3d(0, 110%, 0);
}
.s-Featured.in-view .child {
  transform: translateZ(0);
}

.s-Footer {
  background-color: #1e1e1e;
  letter-spacing: 2px;
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1;
  --line-height: 1;
  font-size: 14px;
}
.s-Footer {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-Footer__content {
  grid-column: 1/-2;
  row-gap: 50px;
  color: #fff;
}
.s-Footer__content {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-Footer__content {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-Footer__content {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-Footer__content {
    padding-left: 20px;
  }
}
.s-Footer__content {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-Footer__content {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-Footer__content {
    padding-right: 20px;
  }
}
.s-Footer__content {
  padding-top: calc(-0.0217391304 * 100vw + 109.1304347826px);
}
@media (min-width: 1801px) {
  .s-Footer__content {
    padding-top: 70px;
  }
}
@media (max-width: 420px) {
  .s-Footer__content {
    padding-top: 100px;
  }
}
.s-Footer__content {
  padding-bottom: calc(0.0144927536 * 100vw + 43.9130434783px);
}
@media (min-width: 1801px) {
  .s-Footer__content {
    padding-bottom: 70px;
  }
}
@media (max-width: 420px) {
  .s-Footer__content {
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .s-Footer__content {
    grid-column: 1/-1;
  }
}
.s-Footer__content svg {
  width: 100%;
  height: auto;
}
.s-Footer__sub-footer {
  grid-column: 1/-1;
  background-color: #e5e5e5;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
}
.s-Footer__sub-footer {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-Footer__sub-footer {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-Footer__sub-footer {
    padding-left: 20px;
  }
}
.s-Footer__sub-footer {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-Footer__sub-footer {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-Footer__sub-footer {
    padding-right: 20px;
  }
}
.s-Footer__sub-footer {
  padding-top: calc(0 * 100vw + 20px);
}
@media (min-width: 1801px) {
  .s-Footer__sub-footer {
    padding-top: 20px;
  }
}
@media (max-width: 420px) {
  .s-Footer__sub-footer {
    padding-top: 20px;
  }
}
.s-Footer__sub-footer {
  padding-bottom: calc(0 * 100vw + 20px);
}
@media (min-width: 1801px) {
  .s-Footer__sub-footer {
    padding-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .s-Footer__sub-footer {
    padding-bottom: 20px;
  }
}
@media (max-width: 1023px) {
  .s-Footer__sub-footer {
    flex-direction: column-reverse;
    align-items: center;
    row-gap: 16px;
  }
}
.s-Footer__sub-footer__menu ul {
  display: flex;
}
.s-Footer__sub-footer__menu ul a {
  display: inline-block;
  overflow: hidden;
}
.s-Footer__sub-footer__menu ul a span {
  position: relative;
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.025, 0.9, 0.45, 1);
}
.s-Footer__sub-footer__menu ul a span::after {
  content: attr(data-txt);
  position: absolute;
  top: 100%;
  left: 0;
}
@media (hover: hover) {
  .s-Footer__sub-footer__menu ul a:hover span {
    transform: translateY(-100%);
  }
}
.s-Footer__sub-footer__menu ul li:not(:last-of-type) {
  margin-right: calc(0.0072463768 * 100vw + 16.9565217391px);
}
@media (min-width: 1801px) {
  .s-Footer__sub-footer__menu ul li:not(:last-of-type) {
    margin-right: 30px;
  }
}
@media (max-width: 420px) {
  .s-Footer__sub-footer__menu ul li:not(:last-of-type) {
    margin-right: 20px;
  }
}
@media (min-width: 1024px) {
  .s-Footer__sub-footer__menu ul li {
    text-align: center;
  }
}
.s-Footer__content__left {
  grid-column: span 6;
}
@media (min-width: 768px) {
  .s-Footer__content__left {
    grid-column: span 3;
  }
}
@media (min-width: 1024px) {
  .s-Footer__content__left {
    grid-column: span 5;
  }
}
@media (min-width: 1440px) {
  .s-Footer__content__left {
    grid-column: span 9;
  }
}
.s-Footer__content__left svg {
  max-width: 700px;
}
.s-Footer__content__right {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .s-Footer__content__right {
    grid-column: 1/span 3;
  }
}
@media (min-width: 1024px) {
  .s-Footer__content__right {
    grid-column: 9/-1;
  }
}
@media (min-width: 1440px) {
  .s-Footer__content__right {
    grid-column: 10/-1;
  }
}
.s-Footer__content__right__links {
  display: flex;
}
.s-Footer__content__right__links {
  margin-top: calc(-0.0144927536 * 100vw + 56.0869565217px);
}
@media (min-width: 1801px) {
  .s-Footer__content__right__links {
    margin-top: 30px;
  }
}
@media (max-width: 420px) {
  .s-Footer__content__right__links {
    margin-top: 50px;
  }
}

.s-Form {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
  /** ==========
  	CF7 OVERIDES 
  ========== **/
}
.s-Form {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-Form {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-Form {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-Form {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-Form {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-Form {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-Form {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-Form {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-Form {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-Form {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-Form {
    padding-left: 20px;
  }
}
.s-Form {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-Form {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-Form {
    padding-right: 20px;
  }
}
.s-Form {
  row-gap: calc(0.0144927536 * 100vw + 23.9130434783px);
}
@media (min-width: 1801px) {
  .s-Form {
    row-gap: 50px;
  }
}
@media (max-width: 420px) {
  .s-Form {
    row-gap: 30px;
  }
}
.s-Form {
  overflow: hidden;
}
.s-Form {
  background-color: #3c7e47;
  color: #fff;
  align-items: center;
}
.s-Form__form-wrapper {
  position: relative;
  border: 1px solid;
  border-radius: 70px;
  display: flex;
  align-items: center;
}
.s-Form__form-wrapper p,
.s-Form__form-wrapper input {
  margin: 0 !important;
}
.s-Form__form-wrapper input:-webkit-autofill,
.s-Form__form-wrapper input:-webkit-autofill:hover,
.s-Form__form-wrapper input:-webkit-autofill:focus,
.s-Form__form-wrapper input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px rgba(255, 255, 255, 0);
  letter-spacing: -2px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.s-Form__form-wrapper input:-webkit-autofill,
.s-Form__form-wrapper input:-webkit-autofill:hover,
.s-Form__form-wrapper input:-webkit-autofill:focus,
.s-Form__form-wrapper input:-webkit-autofill:active {
  font-size: calc(0.0144927536 * 100vw + 23.9130434783px);
}
@media (min-width: 1801px) {
  .s-Form__form-wrapper input:-webkit-autofill,
  .s-Form__form-wrapper input:-webkit-autofill:hover,
  .s-Form__form-wrapper input:-webkit-autofill:focus,
  .s-Form__form-wrapper input:-webkit-autofill:active {
    font-size: 50px;
  }
}
@media (max-width: 420px) {
  .s-Form__form-wrapper input:-webkit-autofill,
  .s-Form__form-wrapper input:-webkit-autofill:hover,
  .s-Form__form-wrapper input:-webkit-autofill:focus,
  .s-Form__form-wrapper input:-webkit-autofill:active {
    font-size: 30px;
  }
}
.s-Form__form-wrapper input {
  background-color: transparent;
  border: none;
  outline: none;
  pointer-events: all !important;
  color: inherit !important;
  letter-spacing: -2px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.s-Form__form-wrapper input {
  font-size: calc(0.0144927536 * 100vw + 23.9130434783px);
}
@media (min-width: 1801px) {
  .s-Form__form-wrapper input {
    font-size: 50px;
  }
}
@media (max-width: 420px) {
  .s-Form__form-wrapper input {
    font-size: 30px;
  }
}
.s-Form__form-wrapper input[type=submit] {
  cursor: pointer;
}
.s-Form__form-wrapper ::placeholder {
  color: rgb(255, 255, 255);
  opacity: 1; /* Firefox */
}
.s-Form__form-wrapper ::-ms-input-placeholder {
  color: rgb(255, 255, 255);
}
.s-Form__form-wrapper p {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.s-Form__form-wrapper__input {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.s-Form__form-wrapper__input * {
  height: 100%;
}
.s-Form__form-wrapper__input p {
  display: flex;
  justify-content: space-between;
  flex: 1;
}
.s-Form__form-wrapper__input__submit {
  padding-right: calc(0.0217391304 * 100vw + 10.8695652174px);
}
@media (min-width: 1801px) {
  .s-Form__form-wrapper__input__submit {
    padding-right: 50px;
  }
}
@media (max-width: 420px) {
  .s-Form__form-wrapper__input__submit {
    padding-right: 20px;
  }
}
.s-Form__form-wrapper__input__submit {
  width: calc(0.0144927536 * 100vw + 67.9130434783px);
}
@media (min-width: 1801px) {
  .s-Form__form-wrapper__input__submit {
    width: 94px;
  }
}
@media (max-width: 420px) {
  .s-Form__form-wrapper__input__submit {
    width: 74px;
  }
}
.s-Form__form-wrapper__input__submit p {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMzUiIHZpZXdCb3g9IjAgMCA0MCAzNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zNi4xODkyIDE2LjczOTNMMjAuOTY5NiAxLjUxOTU5TDIyLjAzMDIgMC40NTg5MjlMMzkuMDYwNSAxNy40ODkzTDIyLjAzMDIgMzQuNTE5NkwyMC45Njk2IDMzLjQ1ODlMMzYuMTg5MiAxOC4yMzkzTC0wLjAwMDExMzAxOCAxOC4yMzkzTC0wLjAwMDExMjg4NyAxNi43MzkzTDM2LjE4OTIgMTYuNzM5M1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=);
  background-repeat: no-repeat;
  background-position: right;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (hover: hover) {
  .s-Form__form-wrapper__input__submit:hover p {
    transform: translateX(20px);
  }
}
.s-Form__title, .s-Form__form {
  grid-column: 1/-1;
}
@media (min-width: 1200px) {
  .s-Form__title, .s-Form__form {
    grid-column: span 6;
  }
}
.s-Form__title h2 {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.s-Form__title h2 {
  font-size: calc(0.0072463768 * 100vw + 61.9565217391px);
}
@media (min-width: 1801px) {
  .s-Form__title h2 {
    font-size: 75px;
  }
}
@media (max-width: 420px) {
  .s-Form__title h2 {
    font-size: 65px;
  }
}
.s-Form .wpcf7-response-output {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: center;
  margin-top: 20px !important;
}
.s-Form .wpcf7-form-control-wrap {
  margin: 0 !important;
}
.s-Form .wpcf7-spinner {
  display: none;
}
.s-Form .wpcf7-not-valid-tip {
  display: none;
}
.s-Form .wpcf7-form-control-wrap {
  width: 100%;
}
.s-Form .wpcf7-form-control-wrap input {
  height: 100%;
  width: 100%;
  border-radius: 70px;
}
.s-Form .wpcf7-form-control-wrap input {
  padding-top: calc(0.0072463768 * 100vw + 6.9565217391px);
}
@media (min-width: 1801px) {
  .s-Form .wpcf7-form-control-wrap input {
    padding-top: 20px;
  }
}
@media (max-width: 420px) {
  .s-Form .wpcf7-form-control-wrap input {
    padding-top: 10px;
  }
}
.s-Form .wpcf7-form-control-wrap input {
  padding-bottom: calc(0.0072463768 * 100vw + 6.9565217391px);
}
@media (min-width: 1801px) {
  .s-Form .wpcf7-form-control-wrap input {
    padding-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .s-Form .wpcf7-form-control-wrap input {
    padding-bottom: 10px;
  }
}
.s-Form .wpcf7-form-control-wrap input {
  padding-left: calc(0.0217391304 * 100vw + 10.8695652174px);
}
@media (min-width: 1801px) {
  .s-Form .wpcf7-form-control-wrap input {
    padding-left: 50px;
  }
}
@media (max-width: 420px) {
  .s-Form .wpcf7-form-control-wrap input {
    padding-left: 20px;
  }
}
.s-Form .wpcf7-submit {
  opacity: 0;
}

.s-FullwidthImage {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
}
.s-FullwidthImage {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-FullwidthImage {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-FullwidthImage {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-FullwidthImage {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-FullwidthImage {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-FullwidthImage {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-FullwidthImage {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-FullwidthImage__desktop {
  display: none;
}
@media (min-width: 1024px) {
  .s-FullwidthImage__desktop {
    display: block;
  }
}
.s-FullwidthImage__mobile {
  display: block;
}
@media (min-width: 1024px) {
  .s-FullwidthImage__mobile {
    display: none;
  }
}

.s-HeroSlider {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
}
.s-HeroSlider {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-HeroSlider {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-HeroSlider {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-HeroSlider {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-HeroSlider {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-HeroSlider {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-HeroSlider {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-HeroSlider {
  padding-top: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-HeroSlider {
    padding-top: 80px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider {
    padding-top: 20px;
  }
}
.s-HeroSlider {
  padding-bottom: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-HeroSlider {
    padding-bottom: 80px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider {
    padding-bottom: 20px;
  }
}
.s-HeroSlider {
  position: relative;
  align-content: flex-end;
  overflow: hidden;
}
.s-HeroSlider__logo {
  position: absolute;
  bottom: 0;
  width: 70%;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.s-HeroSlider__logo {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__logo {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__logo {
    padding-left: 20px;
  }
}
.s-HeroSlider__logo {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__logo {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__logo {
    padding-right: 20px;
  }
}
.s-HeroSlider__logo svg {
  width: 100%;
  height: auto;
}
@media (min-width: 1024px) {
  .s-HeroSlider__logo svg {
    margin-bottom: calc(0.0507246377 * 100vw + 8.6956521739px);
  }
}
@media (min-width: 1024px) and (min-width: 1801px) {
  .s-HeroSlider__logo svg {
    margin-bottom: 100px;
  }
}
@media (min-width: 1024px) and (max-width: 420px) {
  .s-HeroSlider__logo svg {
    margin-bottom: 30px;
  }
}
@media (max-width: 1023px) {
  .s-HeroSlider__logo {
    width: 140%;
  }
}
.s-HeroSlider__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  will-change: transform;
}
.s-HeroSlider__slider {
  position: relative;
  flex: 1;
}
.s-HeroSlider__slider__cells {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.s-HeroSlider__slider__cell {
  top: 0;
  position: absolute;
  width: 140%;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: all;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .s-HeroSlider__slider__cell {
    width: 100%;
  }
}
.s-HeroSlider__slider__cell {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-HeroSlider__slider__cell {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__slider__cell {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__slider__cell {
    padding-left: 20px;
  }
}
.s-HeroSlider__slider__cell {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__slider__cell {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__slider__cell {
    padding-right: 20px;
  }
}
.s-HeroSlider__cell__title, .s-HeroSlider__cell__content {
  display: flex;
  height: 100%;
  grid-column: 1/-1;
}
.s-HeroSlider__cell__title {
  align-items: flex-end;
  order: 2;
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.s-HeroSlider__cell__title {
  font-size: calc(0.0253623188 * 100vw + 54.347826087px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__cell__title {
    font-size: 100px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__cell__title {
    font-size: 65px;
  }
}
.s-HeroSlider__cell__title {
  margin-bottom: calc(0.0072463768 * 100vw + 16.9565217391px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__cell__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__cell__title {
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .s-HeroSlider__cell__title {
    grid-column: 1/span 5;
    order: 1;
  }
}
@media (min-width: 1440px) {
  .s-HeroSlider__cell__title {
    grid-column: 1/span 4;
  }
}
.s-HeroSlider__cell__content {
  justify-content: space-between;
  flex-direction: column;
  order: 1;
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 0.9;
  --line-height: 0.9;
}
.s-HeroSlider__cell__content {
  font-size: calc(0.0362318841 * 100vw + 34.7826086957px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__cell__content {
    font-size: 100px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__cell__content {
    font-size: 50px;
  }
}
@media (min-width: 1024px) {
  .s-HeroSlider__cell__content {
    grid-column: 6/-1;
    order: 2;
  }
}
@media (min-width: 1440px) {
  .s-HeroSlider__cell__content {
    grid-column: 5/-1;
  }
}
.s-HeroSlider__cell__content__desc {
  display: flex;
  height: 100%;
}
.s-HeroSlider__cell__content__desc {
  padding-top: calc(0 * 100vw + 80px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__cell__content__desc {
    padding-top: 80px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__cell__content__desc {
    padding-top: 80px;
  }
}
@media (min-width: 1024px) {
  .s-HeroSlider__cell__content__desc {
    justify-content: flex-end;
  }
}
.s-HeroSlider__controls {
  width: 100%;
  grid-column: 1/-1;
  height: fit-content;
}
@media (min-width: 1024px) {
  .s-HeroSlider__controls {
    grid-column: 1/span 4;
  }
}
.s-HeroSlider__controls__buttons {
  display: flex;
  pointer-events: all;
}
.s-HeroSlider__controls button {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 30px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.s-HeroSlider__controls button {
  padding-left: calc(0 * 100vw + 36px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__controls button {
    padding-left: 36px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__controls button {
    padding-left: 36px;
  }
}
.s-HeroSlider__controls button {
  padding-right: calc(0 * 100vw + 36px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__controls button {
    padding-right: 36px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__controls button {
    padding-right: 36px;
  }
}
.s-HeroSlider__controls button {
  padding-top: calc(0 * 100vw + 6px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__controls button {
    padding-top: 6px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__controls button {
    padding-top: 6px;
  }
}
.s-HeroSlider__controls button {
  padding-bottom: calc(0 * 100vw + 6px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__controls button {
    padding-bottom: 6px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__controls button {
    padding-bottom: 6px;
  }
}
.s-HeroSlider__controls button svg {
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (hover: hover) {
  .s-HeroSlider__controls button:hover {
    background-color: #3c7e47;
    color: #fff;
  }
  .s-HeroSlider__controls button:hover svg {
    transform: translateX(-10px);
  }
}
.s-HeroSlider__controls button:last-of-type {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 30px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.s-HeroSlider__controls button:last-of-type {
  padding-left: calc(0 * 100vw + 36px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__controls button:last-of-type {
    padding-left: 36px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__controls button:last-of-type {
    padding-left: 36px;
  }
}
.s-HeroSlider__controls button:last-of-type {
  padding-right: calc(0 * 100vw + 36px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__controls button:last-of-type {
    padding-right: 36px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__controls button:last-of-type {
    padding-right: 36px;
  }
}
.s-HeroSlider__controls button:last-of-type {
  padding-top: calc(0 * 100vw + 6px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__controls button:last-of-type {
    padding-top: 6px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__controls button:last-of-type {
    padding-top: 6px;
  }
}
.s-HeroSlider__controls button:last-of-type {
  padding-bottom: calc(0 * 100vw + 6px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__controls button:last-of-type {
    padding-bottom: 6px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__controls button:last-of-type {
    padding-bottom: 6px;
  }
}
.s-HeroSlider__controls button:last-of-type svg {
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (hover: hover) {
  .s-HeroSlider__controls button:last-of-type:hover {
    background-color: #3c7e47;
    color: #fff;
  }
  .s-HeroSlider__controls button:last-of-type:hover svg {
    transform: translateX(10px);
  }
}
.s-HeroSlider__controls {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__controls {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__controls {
    padding-left: 20px;
  }
}
.s-HeroSlider__controls {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-HeroSlider__controls {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-HeroSlider__controls {
    padding-right: 20px;
  }
}
.s-HeroSlider .c-Image {
  aspect-ratio: unset;
}
.s-HeroSlider .c-Image picture {
  padding-bottom: unset;
  height: auto;
}
.s-HeroSlider .c-Image img {
  position: relative;
}
@media (max-width: 1023px) {
  .s-HeroSlider .c-Image {
    height: 100%;
    align-items: center;
    display: flex;
    flex: 1;
  }
}
.s-HeroSlider .flickity-viewport {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
}
.s-HeroSlider .flickity-viewport:focus-visible {
  outline: none;
}
.s-HeroSlider .flickity-viewport:focus {
  outline: none;
}
.s-HeroSlider .flickity-slider:focus-visible {
  outline: none;
}
.s-HeroSlider .flickity-slider:focus {
  outline: none;
}
.s-HeroSlider .flickity-enabled:focus {
  outline: none;
}
.s-HeroSlider .flickity-slider {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.desktop .s-HeroSlider {
  height: 100vh;
}

.touchscreen .s-HeroSlider {
  height: calc(var(--vh, 1vh) * 100);
}

.s-HeroTitle {
  text-align: center;
  gap: 40px;
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
}
.s-HeroTitle {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-HeroTitle {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-HeroTitle {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-HeroTitle {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-HeroTitle {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-HeroTitle {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-HeroTitle {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-HeroTitle {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-HeroTitle {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-HeroTitle {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-HeroTitle {
    padding-left: 20px;
  }
}
.s-HeroTitle {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-HeroTitle {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-HeroTitle {
    padding-right: 20px;
  }
}
@media (min-width: 1024px) {
  .s-HeroTitle {
    gap: 60px;
  }
}
.s-HeroTitle__title {
  grid-column: 1/-1;
}
@media (min-width: 1024px) {
  .s-HeroTitle__title {
    grid-column: 1/-1;
  }
}
.s-HeroTitle__subtext {
  grid-column: 1/-1;
  opacity: 0;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .s-HeroTitle__subtext {
    grid-column: 2/-2;
  }
}
.s-HeroTitle p {
  font-family: Garamond-Regular, serif;
  font-size: 20px;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .s-HeroTitle p {
    font-size: 28px;
    letter-spacing: -1px;
  }
}
.s-HeroTitle h1 {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.s-HeroTitle h1 {
  font-size: calc(0.0688405797 * 100vw + 26.0869565217px);
}
@media (min-width: 1801px) {
  .s-HeroTitle h1 {
    font-size: 150px;
  }
}
@media (max-width: 420px) {
  .s-HeroTitle h1 {
    font-size: 55px;
  }
}
.s-HeroTitle .parent {
  overflow: hidden;
  padding: 0 5px;
  vertical-align: bottom;
}
.s-HeroTitle .child {
  will-change: transform;
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--index) * 0.04s);
  transform: translate3d(0, 110%, 0);
}
.s-HeroTitle.in-view .child {
  transform: translateZ(0);
}

.s-LargeTitle {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.s-LargeTitle {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-LargeTitle {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-LargeTitle {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-LargeTitle {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-LargeTitle {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-LargeTitle {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-LargeTitle {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-LargeTitle {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-LargeTitle {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-LargeTitle {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-LargeTitle {
    padding-left: 20px;
  }
}
.s-LargeTitle {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-LargeTitle {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-LargeTitle {
    padding-right: 20px;
  }
}
.s-LargeTitle.has-video {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .s-LargeTitle.has-video {
    aspect-ratio: 2/1;
  }
}
.s-LargeTitle.navigation-margin {
  margin-top: 65px;
}
.s-LargeTitle__background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.s-LargeTitle__background-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.s-LargeTitle__background-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.s-LargeTitle__title {
  text-align: center;
  grid-column: 1/-1;
  max-width: 1300px;
  margin-left: auto !important;
  margin-right: auto !important;
  position: relative;
  z-index: 2;
}
@media (min-width: 1440px) {
  .s-LargeTitle__title {
    grid-column: 2/-2;
  }
}
.s-LargeTitle__title h2 {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.s-LargeTitle__title h2 {
  font-size: calc(0.0688405797 * 100vw + 26.0869565217px);
}
@media (min-width: 1801px) {
  .s-LargeTitle__title h2 {
    font-size: 150px;
  }
}
@media (max-width: 420px) {
  .s-LargeTitle__title h2 {
    font-size: 55px;
  }
}
.s-LargeTitle__title p.u-y:first-of-type {
  margin-top: calc(0.0144927536 * 100vw + 33.9130434783px);
}
@media (min-width: 1801px) {
  .s-LargeTitle__title p.u-y:first-of-type {
    margin-top: 60px;
  }
}
@media (max-width: 420px) {
  .s-LargeTitle__title p.u-y:first-of-type {
    margin-top: 40px;
  }
}
.s-LargeTitle__title p {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 420px;
}
.s-LargeTitle:has(.s-LargeTitle__title p__background-video) .s-LargeTitle__title p {
  color: #fff;
}
.s-LargeTitle h2 .parent {
  margin-right: -5px !important;
}
.s-LargeTitle__logo {
  grid-column: 1/-1;
  text-align: center;
  position: relative;
  z-index: 2;
}
.s-LargeTitle__logo svg {
  height: auto;
}
.s-LargeTitle__logo svg {
  width: calc(0.0434782609 * 100vw + 181.7391304348px);
}
@media (min-width: 1801px) {
  .s-LargeTitle__logo svg {
    width: 260px;
  }
}
@media (max-width: 420px) {
  .s-LargeTitle__logo svg {
    width: 200px;
  }
}
.s-LargeTitle:has(.s-LargeTitle__logo svg path__background-video) .s-LargeTitle__logo svg path {
  fill: #fff;
}
.s-LargeTitle__logo {
  margin-top: calc(0.0072463768 * 100vw + 36.9565217391px);
}
@media (min-width: 1801px) {
  .s-LargeTitle__logo {
    margin-top: 50px;
  }
}
@media (max-width: 420px) {
  .s-LargeTitle__logo {
    margin-top: 40px;
  }
}
.s-LargeTitle .c-Text * {
  margin: 0;
}

.s-NavBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background-color: #1e1e1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  letter-spacing: 2px;
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1;
  --line-height: 1;
  font-size: 14px;
}
.s-NavBar {
  padding-left: calc(0.0036231884 * 100vw + 18.4782608696px);
}
@media (min-width: 1801px) {
  .s-NavBar {
    padding-left: 25px;
  }
}
@media (max-width: 420px) {
  .s-NavBar {
    padding-left: 20px;
  }
}
.s-NavBar {
  padding-right: calc(0.0036231884 * 100vw + 18.4782608696px);
}
@media (min-width: 1801px) {
  .s-NavBar {
    padding-right: 25px;
  }
}
@media (max-width: 420px) {
  .s-NavBar {
    padding-right: 20px;
  }
}
.s-NavBar {
  padding-top: calc(0.0014492754 * 100vw + 9.3913043478px);
}
@media (min-width: 1801px) {
  .s-NavBar {
    padding-top: 12px;
  }
}
@media (max-width: 420px) {
  .s-NavBar {
    padding-top: 10px;
  }
}
.s-NavBar {
  padding-bottom: calc(0.0014492754 * 100vw + 9.3913043478px);
}
@media (min-width: 1801px) {
  .s-NavBar {
    padding-bottom: 12px;
  }
}
@media (max-width: 420px) {
  .s-NavBar {
    padding-bottom: 10px;
  }
}
.s-NavBar__logo a {
  display: block;
}
.s-NavBar__navigation ul {
  display: flex;
  text-transform: uppercase;
}
.s-NavBar__navigation ul li {
  margin-left: calc(0.0072463768 * 100vw + 16.9565217391px);
}
@media (min-width: 1801px) {
  .s-NavBar__navigation ul li {
    margin-left: 30px;
  }
}
@media (max-width: 420px) {
  .s-NavBar__navigation ul li {
    margin-left: 20px;
  }
}
.s-NavBar__navigation ul li {
  margin-right: calc(0.0072463768 * 100vw + 16.9565217391px);
}
@media (min-width: 1801px) {
  .s-NavBar__navigation ul li {
    margin-right: 30px;
  }
}
@media (max-width: 420px) {
  .s-NavBar__navigation ul li {
    margin-right: 20px;
  }
}
.s-NavBar__navigation ul a {
  display: inline-block;
  overflow: hidden;
}
.s-NavBar__navigation ul a span {
  position: relative;
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.025, 0.9, 0.45, 1);
}
.s-NavBar__navigation ul a span::after {
  content: attr(data-txt);
  position: absolute;
  top: 100%;
  left: 0;
}
@media (hover: hover) {
  .s-NavBar__navigation ul a:hover span {
    transform: translateY(-100%);
  }
}
.s-NavBar__toggle {
  display: none;
}
.s-NavBar__burger {
  width: 38px;
  height: 30px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
}
.s-NavBar__burger.is-active .s-NavBar__burger__slice:nth-child(1) {
  transform: rotate(-45deg) translate(-10px, 8px);
}
.s-NavBar__burger.is-active .s-NavBar__burger__slice:nth-child(2) {
  transform: translateX(calc(100% + 2px));
}
.s-NavBar__burger.is-active .s-NavBar__burger__slice:nth-child(3) {
  transform: rotate(45deg) translate(-10px, -8px);
}
.s-NavBar__burger__slice {
  width: 100%;
  height: 4px;
  background-color: currentColor;
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.s-NavBar.is-hidden {
  transform: translateY(-110%) !important;
}
@media (max-width: 1023px) {
  .s-NavBar .s-NavBar__link,
  .s-NavBar .s-NavBar__navigation,
  .s-NavBar .logo-text {
    display: none;
  }
  .s-NavBar .s-NavBar__toggle {
    display: flex;
  }
}

[data-s-hide-logomark="1"] .s-NavBar .logo-text {
  display: none;
}

.s-Navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background-color: #1e1e1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  letter-spacing: 2px;
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1;
  --line-height: 1;
  font-size: 14px;
}
.s-Navigation {
  padding-left: calc(0.0036231884 * 100vw + 18.4782608696px);
}
@media (min-width: 1801px) {
  .s-Navigation {
    padding-left: 25px;
  }
}
@media (max-width: 420px) {
  .s-Navigation {
    padding-left: 20px;
  }
}
.s-Navigation {
  padding-right: calc(0.0036231884 * 100vw + 18.4782608696px);
}
@media (min-width: 1801px) {
  .s-Navigation {
    padding-right: 25px;
  }
}
@media (max-width: 420px) {
  .s-Navigation {
    padding-right: 20px;
  }
}
.s-Navigation {
  padding-top: calc(0.0014492754 * 100vw + 9.3913043478px);
}
@media (min-width: 1801px) {
  .s-Navigation {
    padding-top: 12px;
  }
}
@media (max-width: 420px) {
  .s-Navigation {
    padding-top: 10px;
  }
}
.s-Navigation {
  padding-bottom: calc(0.0014492754 * 100vw + 9.3913043478px);
}
@media (min-width: 1801px) {
  .s-Navigation {
    padding-bottom: 12px;
  }
}
@media (max-width: 420px) {
  .s-Navigation {
    padding-bottom: 10px;
  }
}
.s-Navigation__logo a {
  display: block;
}
.s-Navigation__navigation ul {
  display: flex;
  text-transform: uppercase;
}
.s-Navigation__navigation ul li {
  margin-left: calc(0.0072463768 * 100vw + 16.9565217391px);
}
@media (min-width: 1801px) {
  .s-Navigation__navigation ul li {
    margin-left: 30px;
  }
}
@media (max-width: 420px) {
  .s-Navigation__navigation ul li {
    margin-left: 20px;
  }
}
.s-Navigation__navigation ul li {
  margin-right: calc(0.0072463768 * 100vw + 16.9565217391px);
}
@media (min-width: 1801px) {
  .s-Navigation__navigation ul li {
    margin-right: 30px;
  }
}
@media (max-width: 420px) {
  .s-Navigation__navigation ul li {
    margin-right: 20px;
  }
}
.s-Navigation__navigation ul a {
  display: inline-block;
  overflow: hidden;
}
.s-Navigation__navigation ul a span {
  position: relative;
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.025, 0.9, 0.45, 1);
}
.s-Navigation__navigation ul a span::after {
  content: attr(data-txt);
  position: absolute;
  top: 100%;
  left: 0;
}
@media (hover: hover) {
  .s-Navigation__navigation ul a:hover span {
    transform: translateY(-100%);
  }
}
.s-Navigation__toggle {
  display: none;
  overflow: hidden;
  padding: 2px 0;
}
.s-Navigation__burger {
  width: 38px;
  height: 30px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  will-change: transform;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.s-Navigation__burger.is-active {
  transform: rotate(-180deg);
  transition: transform 1.2s 0.15s cubic-bezier(0.19, 1, 0.22, 1);
}
.s-Navigation__burger.is-active .s-Navigation__burger__slice {
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.s-Navigation__burger.is-active .s-Navigation__burger__slice:nth-child(1) {
  transform: translate(0px, 13px);
}
.s-Navigation__burger.is-active .s-Navigation__burger__slice:nth-child(2) {
  display: none;
}
.s-Navigation__burger.is-active .s-Navigation__burger__slice:nth-child(3) {
  transform: translate(0px, -13px);
}
.s-Navigation__burger__slice {
  width: 100%;
  height: 4px;
  background-color: currentColor;
  will-change: transform;
  transition: transform 1s 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.s-Navigation.is-hidden {
  transform: translateY(-110%) !important;
}
@media (max-width: 1299px) {
  .s-Navigation .s-Navigation__link,
  .s-Navigation .s-Navigation__navigation,
  .s-Navigation .logo-text {
    display: none;
  }
  .s-Navigation .s-Navigation__toggle {
    display: flex;
  }
}

[data-s-hide-logomark="1"] .s-Navigation .logo-text {
  display: none;
}

@media (max-width: 1199px) {
  .s-Navigation__navigation ul li {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.s-PinnedScroller {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
}
.s-PinnedScroller {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-PinnedScroller {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-PinnedScroller {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-PinnedScroller {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-PinnedScroller {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-PinnedScroller {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-PinnedScroller {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-PinnedScroller {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-PinnedScroller {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-PinnedScroller {
    padding-left: 20px;
  }
}
.s-PinnedScroller {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-PinnedScroller {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-PinnedScroller {
    padding-right: 20px;
  }
}
.s-PinnedScroller {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}
.s-PinnedScroller__detail {
  display: flex;
  align-items: center;
}
.s-PinnedScroller__detail p {
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1;
  --line-height: 1;
}
.s-PinnedScroller__detail p {
  font-size: calc(0.0014492754 * 100vw + 11.3913043478px);
}
@media (min-width: 1801px) {
  .s-PinnedScroller__detail p {
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  .s-PinnedScroller__detail p {
    font-size: 12px;
  }
}
.s-PinnedScroller__detail svg {
  margin-right: 10px;
  height: 10px;
  width: auto;
}
.s-PinnedScroller__detail p,
.s-PinnedScroller__detail svg {
  will-change: transform;
}
.s-PinnedScroller__detail span {
  overflow: hidden;
}
.s-PinnedScroller__detail span p,
.s-PinnedScroller__detail span svg {
  transform: translateX(-100%);
}
.s-PinnedScroller__title {
  grid-column: 1/-1;
  text-align: center;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.s-PinnedScroller__title h2 {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.s-PinnedScroller__title h2 {
  font-size: calc(0.1557971014 * 100vw + 19.5652173913px);
}
@media (min-width: 1801px) {
  .s-PinnedScroller__title h2 {
    font-size: 300px;
  }
}
@media (max-width: 420px) {
  .s-PinnedScroller__title h2 {
    font-size: 85px;
  }
}
.s-PinnedScroller__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 1024px) {
  .s-PinnedScroller__canvas {
    transform: translateY(50%);
  }
}
@media (max-width: 1023px) {
  .s-PinnedScroller__canvas {
    opacity: 0;
    transition: opacity 0.5s ease;
  }
}
.s-PinnedScroller__canvas canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  max-width: 1100px;
  margin: auto;
}
.s-PinnedScroller .parent {
  overflow: hidden;
  padding: 0 5px;
  vertical-align: bottom;
}
.s-PinnedScroller .child {
  will-change: transform;
  transform: translate3d(0, 110%, 0);
}
.s-PinnedScroller .s-PinnedScroller__detail p,
.s-PinnedScroller .s-PinnedScroller__detail svg,
.s-PinnedScroller .child {
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--index) * 0.05s);
}
.s-PinnedScroller.in-view .s-PinnedScroller__detail p,
.s-PinnedScroller.in-view .s-PinnedScroller__detail svg {
  transform: translateZ(0);
}
.s-PinnedScroller.in-view .child {
  transform: translateZ(0);
}
.s-PinnedScroller.canvas-ready .s-PinnedScroller__canvas {
  opacity: 1;
}

.s-ProductHero {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  background-color: #e5e5e5;
  color: #1e1e1e;
}
.s-ProductHero {
  padding-top: calc(0.0217391304 * 100vw + 30.8695652174px);
}
@media (min-width: 1801px) {
  .s-ProductHero {
    padding-top: 70px;
  }
}
@media (max-width: 420px) {
  .s-ProductHero {
    padding-top: 40px;
  }
}
.s-ProductHero {
  padding-bottom: calc(0.0217391304 * 100vw + 30.8695652174px);
}
@media (min-width: 1801px) {
  .s-ProductHero {
    padding-bottom: 70px;
  }
}
@media (max-width: 420px) {
  .s-ProductHero {
    padding-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .s-ProductHero {
    padding-top: calc(0.0289855072 * 100vw + 127.8260869565px);
  }
}
@media (min-width: 1024px) and (min-width: 1801px) {
  .s-ProductHero {
    padding-top: 180px;
  }
}
@media (min-width: 1024px) and (max-width: 420px) {
  .s-ProductHero {
    padding-top: 140px;
  }
}
@media (min-width: 1024px) {
  .s-ProductHero {
    padding-bottom: calc(0.0217391304 * 100vw + 30.8695652174px);
  }
}
@media (min-width: 1024px) and (min-width: 1801px) {
  .s-ProductHero {
    padding-bottom: 70px;
  }
}
@media (min-width: 1024px) and (max-width: 420px) {
  .s-ProductHero {
    padding-bottom: 40px;
  }
}
.s-ProductHero h1 {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.s-ProductHero h1 {
  font-size: calc(0.0869565217 * 100vw + 43.4782608696px);
}
@media (min-width: 1801px) {
  .s-ProductHero h1 {
    font-size: 200px;
  }
}
@media (max-width: 420px) {
  .s-ProductHero h1 {
    font-size: 80px;
  }
}
.s-ProductHero p {
  letter-spacing: -2px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.s-ProductHero p {
  font-size: calc(0.0108695652 * 100vw + 25.4347826087px);
}
@media (min-width: 1801px) {
  .s-ProductHero p {
    font-size: 45px;
  }
}
@media (max-width: 420px) {
  .s-ProductHero p {
    font-size: 30px;
  }
}
.s-ProductHero__fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e1e1e;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}
.s-ProductHero__links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 0 25px;
  width: 100%;
  flex-wrap: wrap;
}
.s-ProductHero__links .c-Button {
  width: fit-content;
}
.s-ProductHero__content {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .s-ProductHero__content {
    justify-content: center;
  }
}
.s-ProductHero__variant {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .s-ProductHero__variant {
    justify-content: center;
  }
}
.s-ProductHero__title {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.s-ProductHero__title, .s-ProductHero__media {
  margin-bottom: calc(0.0144927536 * 100vw + 13.9130434783px);
}
@media (min-width: 1801px) {
  .s-ProductHero__title, .s-ProductHero__media {
    margin-bottom: 40px;
  }
}
@media (max-width: 420px) {
  .s-ProductHero__title, .s-ProductHero__media {
    margin-bottom: 20px;
  }
}
.s-ProductHero__media {
  width: 100%;
  flex: 0.5;
}
.s-ProductHero__media {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-ProductHero__media {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-ProductHero__media {
    padding-left: 20px;
  }
}
.s-ProductHero__media {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-ProductHero__media {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-ProductHero__media {
    padding-right: 20px;
  }
}
@media (min-width: 1024px) {
  .s-ProductHero__media {
    flex: 1;
  }
}
.s-ProductHero .parent {
  overflow: hidden;
  padding: 0 5px;
  vertical-align: bottom;
  margin-right: -5px;
}
.s-ProductHero .child {
  will-change: transform;
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--index) * 0.07s);
  transform: translate3d(0, 110%, 0);
}
.s-ProductHero .c-Button, .s-ProductHero__media {
  opacity: 0;
  transition: opacity 1.8s ease calc(var(--index) * 0.07s);
}
.s-ProductHero.ready .child {
  transform: translateZ(0);
}
.s-ProductHero.ready .c-Button {
  opacity: 1;
}
.s-ProductHero.ready .s-ProductHero__media {
  opacity: 1;
}
.s-ProductHero .c-Image {
  height: 100%;
  aspect-ratio: unset !important;
}
.s-ProductHero .c-Image picture {
  padding-bottom: 0 !important;
  height: inherit;
}
.s-ProductHero .c-Image img {
  height: 100%;
  object-fit: scale-down;
  min-height: 220px;
}

.desktop .s-ProductHero {
  height: 100vh;
}

.touchscreen .s-ProductHero {
  height: calc(var(--vh, 1vh) * 100);
}

.s-ProductHero__toggle {
  --toggle-height: 32px;
  position: absolute;
  top: calc(90px + 1vw);
  right: 20px;
  display: flex;
  justify-content: flex-end;
  width: auto;
}
.s-ProductHero__toggle .toggle-switch {
  position: relative;
  background: #1e1e1e;
  border-radius: 999px;
  padding: 0;
  overflow: hidden;
  height: var(--toggle-height);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.s-ProductHero__toggle .toggle-switch.active-second {
  background: #e5e5e5;
}
.s-ProductHero__toggle .toggle-btn {
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  outline: none;
  line-height: var(--toggle-height);
  font-size: calc(var(--toggle-height) * 0.425);
  cursor: pointer;
  text-align: left;
  width: 100%;
  padding: 0px calc(var(--toggle-height) * 0.45);
  opacity: 0;
  top: 0;
  opacity: 0;
}
.s-ProductHero__toggle .toggle-btn:first-child {
  text-align: left;
  left: 0;
  color: #fff;
  padding-right: calc(var(--toggle-height) + 8px);
}
.s-ProductHero__toggle .toggle-btn:nth-child(2) {
  text-align: right;
  transform: translateY(-100%);
  right: 0;
  color: #1e1e1e;
  padding-left: calc(var(--toggle-height) + 8px);
}
.s-ProductHero__toggle .toggle-circle {
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: var(--toggle-height);
  height: var(--toggle-height);
  border-radius: 50%;
  z-index: 1;
  left: calc(100% - var(--toggle-height));
}
.s-ProductHero__toggle .toggle-circle:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: #808080;
  border-radius: 50%;
  background: #808080;
}
.s-ProductHero__toggle .toggle-btn:first-child {
  opacity: 1;
}
.s-ProductHero__toggle.second-active .toggle-btn:first-child {
  opacity: 0;
}
.s-ProductHero__toggle.second-active .toggle-btn:nth-child(2) {
  opacity: 1;
}
.s-ProductHero__toggle.second-active .toggle-circle {
  left: 0px;
}
@media (min-width: 1024px) {
  .s-ProductHero__toggle {
    right: 40px;
    --toggle-height: 40px;
  }
}

.s-ProductHero.inverted {
  background-color: #1e1e1e;
  color: #e5e5e5;
}

.s-ProductScroller {
  align-items: center;
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
}
.s-ProductScroller {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-ProductScroller {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-ProductScroller {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-ProductScroller {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-ProductScroller {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-ProductScroller {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-ProductScroller {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-ProductScroller {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-ProductScroller {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-ProductScroller {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-ProductScroller {
    padding-left: 20px;
  }
}
.s-ProductScroller {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-ProductScroller {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-ProductScroller {
    padding-right: 20px;
  }
}
.s-ProductScroller__content {
  grid-column: 1/-1;
  max-width: 450px;
}
.s-ProductScroller__content h2 {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.s-ProductScroller__content h2 {
  font-size: calc(0.0253623188 * 100vw + 54.347826087px);
}
@media (min-width: 1801px) {
  .s-ProductScroller__content h2 {
    font-size: 100px;
  }
}
@media (max-width: 420px) {
  .s-ProductScroller__content h2 {
    font-size: 65px;
  }
}
.s-ProductScroller__content ul {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1;
  --line-height: 1;
}
.s-ProductScroller__content ul {
  font-size: calc(0.0014492754 * 100vw + 11.3913043478px);
}
@media (min-width: 1801px) {
  .s-ProductScroller__content ul {
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  .s-ProductScroller__content ul {
    font-size: 12px;
  }
}
.s-ProductScroller__content li p {
  margin-top: 10px;
}
.s-ProductScroller__content svg {
  height: 35px;
  width: auto;
}
@media (min-width: 1024px) {
  .s-ProductScroller__content {
    grid-column: 1/span 4;
  }
}
@media (min-width: 1440px) {
  .s-ProductScroller__content {
    grid-column: 2/span 4;
  }
}
@media (max-width: 1023px) {
  .s-ProductScroller__content {
    order: 2;
  }
}
.s-ProductScroller__detail {
  display: flex;
  align-items: center;
}
.s-ProductScroller__detail p {
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
  line-height: 1;
  --line-height: 1;
}
.s-ProductScroller__detail p {
  font-size: calc(0.0014492754 * 100vw + 11.3913043478px);
}
@media (min-width: 1801px) {
  .s-ProductScroller__detail p {
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  .s-ProductScroller__detail p {
    font-size: 12px;
  }
}
.s-ProductScroller__detail svg {
  margin-right: 10px;
  height: 10px;
  width: auto;
}
.s-ProductScroller__detail, .s-ProductScroller__title, .s-ProductScroller__paragraph {
  margin-bottom: calc(0.0072463768 * 100vw + 36.9565217391px);
}
@media (min-width: 1801px) {
  .s-ProductScroller__detail, .s-ProductScroller__title, .s-ProductScroller__paragraph {
    margin-bottom: 50px;
  }
}
@media (max-width: 420px) {
  .s-ProductScroller__detail, .s-ProductScroller__title, .s-ProductScroller__paragraph {
    margin-bottom: 40px;
  }
}
.s-ProductScroller__scroller {
  grid-column: 1/-1;
  position: relative;
}
@media (min-width: 1024px) {
  .s-ProductScroller__scroller {
    grid-column: 6/-1;
  }
}
@media (max-width: 1023px) {
  .s-ProductScroller__scroller {
    order: 1;
  }
}
.s-ProductScroller canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  max-width: 1100px;
  margin: auto;
}
.s-ProductScroller .c-Text p > * {
  margin: 0 !important;
}
@media (max-width: 1023px) {
  .s-ProductScroller {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .s-ProductScroller .s-ProductScroller__content {
    padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
  }
}
@media (max-width: 1023px) and (min-width: 1801px) {
  .s-ProductScroller .s-ProductScroller__content {
    padding-left: 80px;
  }
}
@media (max-width: 1023px) and (max-width: 420px) {
  .s-ProductScroller .s-ProductScroller__content {
    padding-left: 20px;
  }
}
@media (max-width: 1023px) {
  .s-ProductScroller .s-ProductScroller__content {
    padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
  }
}
@media (max-width: 1023px) and (min-width: 1801px) {
  .s-ProductScroller .s-ProductScroller__content {
    padding-right: 80px;
  }
}
@media (max-width: 1023px) and (max-width: 420px) {
  .s-ProductScroller .s-ProductScroller__content {
    padding-right: 20px;
  }
}

.desktop .s-ProductScroller__scroller {
  height: 100vw;
}
@media (min-width: 1024px) {
  .desktop .s-ProductScroller__scroller {
    height: 100vh;
  }
}

.touchscreen .s-ProductScroller__scroller {
  height: calc(var(--vh, 1 vw) * 50);
}
@media (min-width: 768px) {
  .touchscreen .s-ProductScroller__scroller {
    height: calc(var(--vh, 1 vh) * 100);
  }
}

.s-ProductSlider {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
}
.s-ProductSlider {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-ProductSlider {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-ProductSlider {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-ProductSlider {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-ProductSlider {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-ProductSlider {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-ProductSlider {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-ProductSlider__wrapper {
  overflow: hidden;
}
.s-ProductSlider__wrapper {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-ProductSlider__wrapper {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-ProductSlider__wrapper {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-ProductSlider__wrapper {
    padding-left: 20px;
  }
}
.s-ProductSlider__wrapper {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-ProductSlider__wrapper {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-ProductSlider__wrapper {
    padding-right: 20px;
  }
}
.s-ProductSlider__wrapper {
  row-gap: calc(0.0217391304 * 100vw + 40.8695652174px);
}
@media (min-width: 1801px) {
  .s-ProductSlider__wrapper {
    row-gap: 80px;
  }
}
@media (max-width: 420px) {
  .s-ProductSlider__wrapper {
    row-gap: 50px;
  }
}
.s-ProductSlider__title {
  grid-column: 1/-1;
}
@media (min-width: 1024px) {
  .s-ProductSlider__title {
    grid-column: 1/span 4;
  }
}
@media (min-width: 1440px) {
  .s-ProductSlider__title {
    grid-column: 1/span 3;
  }
}
.s-ProductSlider__title h2 {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.s-ProductSlider__title h2 {
  font-size: calc(0.0253623188 * 100vw + 54.347826087px);
}
@media (min-width: 1801px) {
  .s-ProductSlider__title h2 {
    font-size: 100px;
  }
}
@media (max-width: 420px) {
  .s-ProductSlider__title h2 {
    font-size: 65px;
  }
}
.s-ProductSlider__controls {
  display: flex;
}
.s-ProductSlider__controls button {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 30px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.s-ProductSlider__controls button {
  padding-left: calc(0 * 100vw + 36px);
}
@media (min-width: 1801px) {
  .s-ProductSlider__controls button {
    padding-left: 36px;
  }
}
@media (max-width: 420px) {
  .s-ProductSlider__controls button {
    padding-left: 36px;
  }
}
.s-ProductSlider__controls button {
  padding-right: calc(0 * 100vw + 36px);
}
@media (min-width: 1801px) {
  .s-ProductSlider__controls button {
    padding-right: 36px;
  }
}
@media (max-width: 420px) {
  .s-ProductSlider__controls button {
    padding-right: 36px;
  }
}
.s-ProductSlider__controls button {
  padding-top: calc(0 * 100vw + 6px);
}
@media (min-width: 1801px) {
  .s-ProductSlider__controls button {
    padding-top: 6px;
  }
}
@media (max-width: 420px) {
  .s-ProductSlider__controls button {
    padding-top: 6px;
  }
}
.s-ProductSlider__controls button {
  padding-bottom: calc(0 * 100vw + 6px);
}
@media (min-width: 1801px) {
  .s-ProductSlider__controls button {
    padding-bottom: 6px;
  }
}
@media (max-width: 420px) {
  .s-ProductSlider__controls button {
    padding-bottom: 6px;
  }
}
.s-ProductSlider__controls button svg {
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (hover: hover) {
  .s-ProductSlider__controls button:hover {
    background-color: #3c7e47;
    color: #fff;
  }
  .s-ProductSlider__controls button:hover svg {
    transform: translateX(-10px);
  }
}
.s-ProductSlider__controls button:last-of-type {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 30px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.s-ProductSlider__controls button:last-of-type {
  padding-left: calc(0 * 100vw + 36px);
}
@media (min-width: 1801px) {
  .s-ProductSlider__controls button:last-of-type {
    padding-left: 36px;
  }
}
@media (max-width: 420px) {
  .s-ProductSlider__controls button:last-of-type {
    padding-left: 36px;
  }
}
.s-ProductSlider__controls button:last-of-type {
  padding-right: calc(0 * 100vw + 36px);
}
@media (min-width: 1801px) {
  .s-ProductSlider__controls button:last-of-type {
    padding-right: 36px;
  }
}
@media (max-width: 420px) {
  .s-ProductSlider__controls button:last-of-type {
    padding-right: 36px;
  }
}
.s-ProductSlider__controls button:last-of-type {
  padding-top: calc(0 * 100vw + 6px);
}
@media (min-width: 1801px) {
  .s-ProductSlider__controls button:last-of-type {
    padding-top: 6px;
  }
}
@media (max-width: 420px) {
  .s-ProductSlider__controls button:last-of-type {
    padding-top: 6px;
  }
}
.s-ProductSlider__controls button:last-of-type {
  padding-bottom: calc(0 * 100vw + 6px);
}
@media (min-width: 1801px) {
  .s-ProductSlider__controls button:last-of-type {
    padding-bottom: 6px;
  }
}
@media (max-width: 420px) {
  .s-ProductSlider__controls button:last-of-type {
    padding-bottom: 6px;
  }
}
.s-ProductSlider__controls button:last-of-type svg {
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (hover: hover) {
  .s-ProductSlider__controls button:last-of-type:hover {
    background-color: #3c7e47;
    color: #fff;
  }
  .s-ProductSlider__controls button:last-of-type:hover svg {
    transform: translateX(10px);
  }
}
.s-ProductSlider__controls--desktop {
  margin-top: calc(0.0362318841 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .s-ProductSlider__controls--desktop {
    margin-top: 80px;
  }
}
@media (max-width: 420px) {
  .s-ProductSlider__controls--desktop {
    margin-top: 30px;
  }
}
@media (max-width: 1023px) {
  .s-ProductSlider__controls--desktop {
    display: none;
  }
}
@media (min-width: 1024px) {
  .s-ProductSlider__controls--mobile {
    display: none;
  }
}
.s-ProductSlider__slider {
  width: fit-content;
  display: flex;
  gap: var(--bon-gutter);
  grid-column: 1/-1;
}
@media (min-width: 1024px) {
  .s-ProductSlider__slider {
    grid-column: 5/-1;
  }
}
@media (min-width: 1440px) {
  .s-ProductSlider__slider {
    grid-column: 4/-1;
  }
}
.s-ProductSlider .c-SliderItem {
  width: 80vw;
}
@media (min-width: 768px) {
  .s-ProductSlider .c-SliderItem {
    width: 39vw;
  }
}
@media (min-width: 1024px) {
  .s-ProductSlider .c-SliderItem {
    width: 38vw;
  }
}
@media (min-width: 1440px) {
  .s-ProductSlider .c-SliderItem {
    width: 27vw;
  }
}

.s-ProductSpec {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
}
.s-ProductSpec {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-ProductSpec {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-ProductSpec {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-ProductSpec {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-ProductSpec {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-ProductSpec {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-ProductSpec {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-ProductSpec {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-ProductSpec {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-ProductSpec {
    padding-left: 20px;
  }
}
.s-ProductSpec {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-ProductSpec {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-ProductSpec {
    padding-right: 20px;
  }
}
.s-ProductSpec__title {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-ProductSpec__title {
  margin-bottom: calc(0.0289855072 * 100vw + 47.8260869565px);
}
@media (min-width: 1801px) {
  .s-ProductSpec__title {
    margin-bottom: 100px;
  }
}
@media (max-width: 420px) {
  .s-ProductSpec__title {
    margin-bottom: 60px;
  }
}
.s-ProductSpec__title h2 {
  grid-column: 1/-1;
  text-align: center;
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.s-ProductSpec__title h2 {
  font-size: calc(0.0688405797 * 100vw + 26.0869565217px);
}
@media (min-width: 1801px) {
  .s-ProductSpec__title h2 {
    font-size: 150px;
  }
}
@media (max-width: 420px) {
  .s-ProductSpec__title h2 {
    font-size: 55px;
  }
}
.s-ProductSpec__content {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-ProductSpec__content {
  row-gap: calc(0.0072463768 * 100vw + 66.9565217391px);
}
@media (min-width: 1801px) {
  .s-ProductSpec__content {
    row-gap: 80px;
  }
}
@media (max-width: 420px) {
  .s-ProductSpec__content {
    row-gap: 70px;
  }
}
.s-ProductSpec__content {
  align-items: center;
}
.s-ProductSpec__content__diagrams {
  grid-column: 1/-1;
}
@media (min-width: 1024px) {
  .s-ProductSpec__content__diagrams {
    grid-column: 1/span 6;
  }
}
@media (min-width: 1440px) {
  .s-ProductSpec__content__diagrams {
    grid-column: 2/span 5;
  }
}
@media (max-width: 1023px) {
  .s-ProductSpec__content__diagrams {
    order: 2;
  }
}
.s-ProductSpec__content__diagrams svg {
  width: 100%;
  height: auto;
}
.s-ProductSpec__content__diagrams__back {
  margin-top: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-ProductSpec__content__diagrams__back {
    margin-top: 80px;
  }
}
@media (max-width: 420px) {
  .s-ProductSpec__content__diagrams__back {
    margin-top: 20px;
  }
}
.s-ProductSpec__content__text {
  grid-column: 1/-1;
}
@media (min-width: 1024px) {
  .s-ProductSpec__content__text {
    grid-column: 8/-1;
  }
}
@media (min-width: 1440px) {
  .s-ProductSpec__content__text {
    grid-column: 8/-2;
  }
}
@media (max-width: 1023px) {
  .s-ProductSpec__content__text {
    order: 1;
  }
}
.s-ProductSpec .c-Text__content > * {
  margin-bottom: calc(0.0072463768 * 100vw + 26.9565217391px);
}
@media (min-width: 1801px) {
  .s-ProductSpec .c-Text__content > * {
    margin-bottom: 40px;
  }
}
@media (max-width: 420px) {
  .s-ProductSpec .c-Text__content > * {
    margin-bottom: 30px;
  }
}

.s-Reviews {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: 80px;
  text-align: center;
  gap: 40px;
}
.s-Reviews {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-Reviews {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-Reviews {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-Reviews {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-Reviews {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-Reviews {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-Reviews {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-Reviews {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-Reviews {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-Reviews {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-Reviews {
    padding-left: 20px;
  }
}
.s-Reviews {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-Reviews {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-Reviews {
    padding-right: 20px;
  }
}
@media (min-width: 1024px) {
  .s-Reviews {
    gap: 60px;
  }
}
.s-Reviews__title {
  grid-column: 1/-1;
}
@media (min-width: 1024px) {
  .s-Reviews__title {
    grid-column: 1/-1;
  }
}
.s-Reviews__title h2 {
  font-style: normal;
  font-family: Garamond-Regular, serif;
  font-size: clamp(0px, 5.6vw + 26px, 120px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.s-Reviews__wrapper {
  overflow: hidden;
}
.s-Reviews__wrapper {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-Reviews__wrapper {
  row-gap: calc(0.0217391304 * 100vw + 40.8695652174px);
}
@media (min-width: 1801px) {
  .s-Reviews__wrapper {
    row-gap: 80px;
  }
}
@media (max-width: 420px) {
  .s-Reviews__wrapper {
    row-gap: 50px;
  }
}
.s-Reviews__slider {
  display: flex;
  position: relative;
  gap: var(--bon-gutter);
  grid-column: 1/-1;
  height: 100%;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  opacity: 0;
}
.s-Reviews__slide {
  position: absolute;
  width: unset;
  will-change: transform;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: none !important;
}
.s-Reviews__slide:focus {
  outline: none;
}
.s-Reviews__content {
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding-top: 10px;
  text-align: center;
}
@media (min-width: 1024px) {
  .s-Reviews__content {
    gap: 100px;
  }
}
.s-Reviews__content:focus-visible {
  outline: none;
}
.s-Reviews__content:focus {
  outline: none;
}
@media (min-width: 1024px) {
  .s-Reviews__content {
    padding-top: 40px;
    padding: 20px;
  }
}
.s-Reviews__text-wrapper {
  line-height: 1.3;
  flex-grow: 1;
  max-width: 780px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  font-size: 20px;
  letter-spacing: -0.01em;
  gap: 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .s-Reviews__text-wrapper {
    font-size: 30px;
    max-width: 600px;
  }
}
.s-Reviews__logo {
  margin-top: auto;
  width: auto;
  height: 80px;
  width: 250px;
  position: relative;
}
.s-Reviews__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  object-position: center center;
}
@media (min-width: 1024px) {
  .s-Reviews__logo {
    height: 100px;
  }
}
.s-Reviews__image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.s-Reviews__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-Reviews__name {
  font-style: normal;
  font-family: Garamond-SemiBold, serif;
}
.s-Reviews .flickity-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.s-Reviews .flickity-slider {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  will-change: transform;
  transform: none !important;
}
.s-Reviews .flickity-button {
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
  position: absolute;
}
.s-Reviews .flickity-button:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}
@media (min-width: 1024px) {
  .s-Reviews .flickity-button:after {
    width: 30px;
    height: 30px;
  }
}
.s-Reviews .flickity-button.previous {
  left: 0px;
}
.s-Reviews .flickity-button.next {
  right: 0px;
}
.s-Reviews .flickity-button-icon {
  display: none;
}
.s-Reviews .flickity-button.previous::after {
  transform: rotate(-135deg) translate(-5px, 5px);
}
.s-Reviews .flickity-button[disabled] {
  opacity: 0;
  pointer-events: none;
}
.s-Reviews .parent {
  overflow: hidden;
  padding: 0 5px;
  vertical-align: bottom;
}
.s-Reviews .child {
  will-change: transform;
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--index) * 0.04s);
  transform: translate3d(0, 110%, 0);
}
.s-Reviews.in-view .child {
  transform: translateZ(0);
}

.s-Reviews__slide.is-selected {
  opacity: 1;
  transition: opacity 0.3s ease 0.3s;
}

.s-Slider {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
}
.s-Slider {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-Slider {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-Slider {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-Slider {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-Slider {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-Slider {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-Slider {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-Slider__wrapper {
  overflow: hidden;
}
.s-Slider__wrapper {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-Slider__wrapper {
  row-gap: calc(0.0217391304 * 100vw + 40.8695652174px);
}
@media (min-width: 1801px) {
  .s-Slider__wrapper {
    row-gap: 80px;
  }
}
@media (max-width: 420px) {
  .s-Slider__wrapper {
    row-gap: 50px;
  }
}
.s-Slider__title {
  grid-column: 1/-1;
}
.s-Slider__title h2 {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.s-Slider__title h2 {
  font-size: calc(0.0253623188 * 100vw + 54.347826087px);
}
@media (min-width: 1801px) {
  .s-Slider__title h2 {
    font-size: 100px;
  }
}
@media (max-width: 420px) {
  .s-Slider__title h2 {
    font-size: 65px;
  }
}
@media (min-width: 1024px) {
  .s-Slider__title {
    grid-column: 1/span 4;
  }
}
@media (min-width: 1440px) {
  .s-Slider__title {
    grid-column: 1/span 3;
  }
}
.s-Slider__title {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-Slider__title {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-Slider__title {
    padding-left: 20px;
  }
}
.s-Slider__controls {
  display: flex;
}
.s-Slider__controls button {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 30px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.s-Slider__controls button {
  padding-left: calc(0 * 100vw + 36px);
}
@media (min-width: 1801px) {
  .s-Slider__controls button {
    padding-left: 36px;
  }
}
@media (max-width: 420px) {
  .s-Slider__controls button {
    padding-left: 36px;
  }
}
.s-Slider__controls button {
  padding-right: calc(0 * 100vw + 36px);
}
@media (min-width: 1801px) {
  .s-Slider__controls button {
    padding-right: 36px;
  }
}
@media (max-width: 420px) {
  .s-Slider__controls button {
    padding-right: 36px;
  }
}
.s-Slider__controls button {
  padding-top: calc(0 * 100vw + 6px);
}
@media (min-width: 1801px) {
  .s-Slider__controls button {
    padding-top: 6px;
  }
}
@media (max-width: 420px) {
  .s-Slider__controls button {
    padding-top: 6px;
  }
}
.s-Slider__controls button {
  padding-bottom: calc(0 * 100vw + 6px);
}
@media (min-width: 1801px) {
  .s-Slider__controls button {
    padding-bottom: 6px;
  }
}
@media (max-width: 420px) {
  .s-Slider__controls button {
    padding-bottom: 6px;
  }
}
.s-Slider__controls button svg {
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (hover: hover) {
  .s-Slider__controls button:hover {
    background-color: #3c7e47;
    color: #fff;
  }
  .s-Slider__controls button:hover svg {
    transform: translateX(-10px);
  }
}
.s-Slider__controls button:last-of-type {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 30px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.s-Slider__controls button:last-of-type {
  padding-left: calc(0 * 100vw + 36px);
}
@media (min-width: 1801px) {
  .s-Slider__controls button:last-of-type {
    padding-left: 36px;
  }
}
@media (max-width: 420px) {
  .s-Slider__controls button:last-of-type {
    padding-left: 36px;
  }
}
.s-Slider__controls button:last-of-type {
  padding-right: calc(0 * 100vw + 36px);
}
@media (min-width: 1801px) {
  .s-Slider__controls button:last-of-type {
    padding-right: 36px;
  }
}
@media (max-width: 420px) {
  .s-Slider__controls button:last-of-type {
    padding-right: 36px;
  }
}
.s-Slider__controls button:last-of-type {
  padding-top: calc(0 * 100vw + 6px);
}
@media (min-width: 1801px) {
  .s-Slider__controls button:last-of-type {
    padding-top: 6px;
  }
}
@media (max-width: 420px) {
  .s-Slider__controls button:last-of-type {
    padding-top: 6px;
  }
}
.s-Slider__controls button:last-of-type {
  padding-bottom: calc(0 * 100vw + 6px);
}
@media (min-width: 1801px) {
  .s-Slider__controls button:last-of-type {
    padding-bottom: 6px;
  }
}
@media (max-width: 420px) {
  .s-Slider__controls button:last-of-type {
    padding-bottom: 6px;
  }
}
.s-Slider__controls button:last-of-type svg {
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (hover: hover) {
  .s-Slider__controls button:last-of-type:hover {
    background-color: #3c7e47;
    color: #fff;
  }
  .s-Slider__controls button:last-of-type:hover svg {
    transform: translateX(10px);
  }
}
@media (max-width: 1023px) {
  .s-Slider__controls {
    padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
  }
}
@media (max-width: 1023px) and (min-width: 1801px) {
  .s-Slider__controls {
    padding-left: 80px;
  }
}
@media (max-width: 1023px) and (max-width: 420px) {
  .s-Slider__controls {
    padding-left: 20px;
  }
}
.s-Slider__controls--desktop {
  margin-top: calc(0.0362318841 * 100vw + 14.7826086957px);
}
@media (min-width: 1801px) {
  .s-Slider__controls--desktop {
    margin-top: 80px;
  }
}
@media (max-width: 420px) {
  .s-Slider__controls--desktop {
    margin-top: 30px;
  }
}
@media (max-width: 1023px) {
  .s-Slider__controls--desktop {
    display: none;
  }
}
@media (min-width: 1024px) {
  .s-Slider__controls--mobile {
    display: none;
  }
}
.s-Slider__slider {
  display: flex;
  position: relative;
  gap: var(--bon-gutter);
  grid-column: 1/-1;
  height: 100%;
  width: 100%;
}
@media (min-width: 1024px) {
  .s-Slider__slider {
    grid-column: 5/-1;
  }
}
@media (min-width: 1440px) {
  .s-Slider__slider {
    grid-column: 4/-1;
  }
}
@media (max-width: 1023px) {
  .s-Slider__slider {
    padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
  }
}
@media (max-width: 1023px) and (min-width: 1801px) {
  .s-Slider__slider {
    padding-left: 80px;
  }
}
@media (max-width: 1023px) and (max-width: 420px) {
  .s-Slider__slider {
    padding-left: 20px;
  }
}
.s-Slider .c-SliderItem {
  position: absolute;
  height: 80vw;
  width: unset;
  will-change: transform;
  margin-right: var(--bon-gutter);
}
@media (min-width: 768px) {
  .s-Slider .c-SliderItem {
    height: 39vw;
  }
}
@media (min-width: 1024px) {
  .s-Slider .c-SliderItem {
    height: 38vw;
  }
}
@media (min-width: 1440px) {
  .s-Slider .c-SliderItem {
    height: 27vw;
  }
}
.s-Slider .flickity-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.s-Slider .flickity-viewport:focus-visible {
  outline: none;
}
.s-Slider .flickity-viewport:focus {
  outline: none;
}
.s-Slider .flickity-slider {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  will-change: transform;
}
.s-Slider .flickity-slider:focus-visible {
  outline: none;
}
.s-Slider .flickity-slider:focus {
  outline: none;
}

.s-StoryBlock {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
}
.s-StoryBlock {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-StoryBlock {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-StoryBlock {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-StoryBlock {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-StoryBlock {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-StoryBlock {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-StoryBlock {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-StoryBlock {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-StoryBlock {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-StoryBlock {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-StoryBlock {
    padding-left: 20px;
  }
}
.s-StoryBlock {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-StoryBlock {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-StoryBlock {
    padding-right: 20px;
  }
}
.s-StoryBlock__titles {
  grid-column: 1/-1;
  text-align: center;
}
.s-StoryBlock__titles p {
  text-align: center;
  font-style: normal;
  font-family: Garamond-SemiBold-Italic, serif;
  line-height: 1.2;
  --line-height: 1.2;
}
.s-StoryBlock__titles p {
  font-size: calc(0.0144927536 * 100vw + 23.9130434783px);
}
@media (min-width: 1801px) {
  .s-StoryBlock__titles p {
    font-size: 50px;
  }
}
@media (max-width: 420px) {
  .s-StoryBlock__titles p {
    font-size: 30px;
  }
}
.s-StoryBlock__titles h2 {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-SemiBold, serif;
  line-height: 0.9;
  --line-height: 0.9;
}
.s-StoryBlock__titles h2 {
  font-size: calc(0.0362318841 * 100vw + 34.7826086957px);
}
@media (min-width: 1801px) {
  .s-StoryBlock__titles h2 {
    font-size: 100px;
  }
}
@media (max-width: 420px) {
  .s-StoryBlock__titles h2 {
    font-size: 50px;
  }
}
.s-StoryBlock__titles h2 {
  margin-bottom: calc(0.0144927536 * 100vw + 33.9130434783px);
}
@media (min-width: 1801px) {
  .s-StoryBlock__titles h2 {
    margin-bottom: 60px;
  }
}
@media (max-width: 420px) {
  .s-StoryBlock__titles h2 {
    margin-bottom: 40px;
  }
}
.s-StoryBlock__titles h2 {
  letter-spacing: 0px;
}
@media (min-width: 1024px) {
  .s-StoryBlock__titles {
    grid-column: 2/-2;
  }
}
.s-StoryBlock__titles {
  margin-bottom: calc(0.0072463768 * 100vw + 36.9565217391px);
}
@media (min-width: 1801px) {
  .s-StoryBlock__titles {
    margin-bottom: 50px;
  }
}
@media (max-width: 420px) {
  .s-StoryBlock__titles {
    margin-bottom: 40px;
  }
}
.s-StoryBlock .t-r-reg,
.s-StoryBlock .t-r-slanted,
.s-StoryBlock .t-h-reg {
  display: inline-block;
}
.s-StoryBlock .t-r-reg,
.s-StoryBlock .t-r-slanted,
.s-StoryBlock .t-h-reg {
  font-size: calc(0.0217391304 * 100vw + 30.8695652174px);
}
@media (min-width: 1801px) {
  .s-StoryBlock .t-r-reg,
  .s-StoryBlock .t-r-slanted,
  .s-StoryBlock .t-h-reg {
    font-size: 70px;
  }
}
@media (max-width: 420px) {
  .s-StoryBlock .t-r-reg,
  .s-StoryBlock .t-r-slanted,
  .s-StoryBlock .t-h-reg {
    font-size: 40px;
  }
}
.s-StoryBlock .t-r-reg {
  font-style: normal;
  font-family: Radial-Regular, sans-serif;
}
.s-StoryBlock .t-r-slanted {
  font-style: normal;
  font-family: Radial-RegularItalic, sans-serif;
}
.s-StoryBlock .t-r-slanted {
  transform: translateX(-5px);
}
.s-StoryBlock .t-h-reg {
  font-family: Helvetica, Arial, sans-serif;
}
.s-StoryBlock__accordion {
  grid-column: 1/-1;
  margin: auto;
  max-width: 980px;
}
@media (min-width: 1024px) {
  .s-StoryBlock__accordion {
    grid-column: 3/-3;
  }
}
.s-StoryBlock .c-Text {
  text-align: center;
}

.s-TextBlock {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
}
.s-TextBlock {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-TextBlock {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-TextBlock {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-TextBlock {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-TextBlock {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-TextBlock {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-TextBlock {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-TextBlock {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-TextBlock {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-TextBlock {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-TextBlock {
    padding-left: 20px;
  }
}
.s-TextBlock {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-TextBlock {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-TextBlock {
    padding-right: 20px;
  }
}
.s-TextBlock__content {
  grid-column: 1/-1;
  position: relative;
}
@media (min-width: 1024px) {
  .s-TextBlock__content {
    grid-column: 3/-3;
  }
}
.s-TextBlock .c-Text h1,
.s-TextBlock .c-Text h2,
.s-TextBlock .c-Text p {
  text-align: center;
}
.s-TextBlock .c-Text__content {
  width: 100%;
}
@media (min-width: 768px) {
  .s-TextBlock .c-Text__content {
    width: clamp(700px, 50vw, 1050px);
    margin: auto;
  }
}

.s-TextImage {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
}
.s-TextImage {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-TextImage {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-TextImage {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-TextImage {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-TextImage {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-TextImage {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-TextImage {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-TextImage__layouts__item__text {
  margin: 0 auto;
}
.s-TextImage__title {
  text-align: center;
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.s-TextImage__title {
  font-size: calc(0.0688405797 * 100vw + 26.0869565217px);
}
@media (min-width: 1801px) {
  .s-TextImage__title {
    font-size: 150px;
  }
}
@media (max-width: 420px) {
  .s-TextImage__title {
    font-size: 55px;
  }
}
.s-TextImage__title {
  margin-bottom: calc(0.0362318841 * 100vw + 34.7826086957px);
}
@media (min-width: 1801px) {
  .s-TextImage__title {
    margin-bottom: 100px;
  }
}
@media (max-width: 420px) {
  .s-TextImage__title {
    margin-bottom: 50px;
  }
}
.s-TextImage__layouts {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-TextImage__layouts {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-TextImage__layouts {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-TextImage__layouts {
    padding-left: 20px;
  }
}
.s-TextImage__layouts {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-TextImage__layouts {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-TextImage__layouts {
    padding-right: 20px;
  }
}
.s-TextImage__layouts {
  row-gap: calc(0.0144927536 * 100vw + 73.9130434783px);
}
@media (min-width: 1801px) {
  .s-TextImage__layouts {
    row-gap: 100px;
  }
}
@media (max-width: 420px) {
  .s-TextImage__layouts {
    row-gap: 80px;
  }
}
.s-TextImage__layouts__item {
  grid-column: 1/-1;
  align-items: center;
}
.s-TextImage__layouts__item {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-TextImage__layouts__item {
  row-gap: calc(0.0144927536 * 100vw + 23.9130434783px);
}
@media (min-width: 1801px) {
  .s-TextImage__layouts__item {
    row-gap: 50px;
  }
}
@media (max-width: 420px) {
  .s-TextImage__layouts__item {
    row-gap: 30px;
  }
}
.s-TextImage__stats__wrap {
  display: flex;
  align-items: top;
  gap: 10px;
  text-transform: uppercase;
  margin-top: 40px;
  max-width: 530px;
}
.s-TextImage__stats__wrap br {
  display: none;
}
@media (min-width: 768px) {
  .s-TextImage__stats__wrap br {
    display: block;
  }
}
.s-TextImage__stats__wrap__icon {
  margin-top: -3px;
}
.s-TextImage__layouts__item--text-left .s-TextImage__layouts__item__text,
.s-TextImage__layouts__item--text-left .s-TextImage__layouts__item__media {
  grid-column: 1/-1;
}
@media (min-width: 1024px) {
  .s-TextImage__layouts__item--text-left .s-TextImage__layouts__item__text {
    grid-column: 1/span 5;
    order: 1;
  }
  .s-TextImage__layouts__item--text-left .s-TextImage__layouts__item__media {
    grid-column: 6/-1;
    order: 2;
  }
}
@media (min-width: 1440px) {
  .s-TextImage__layouts__item--text-left .s-TextImage__layouts__item__text {
    grid-column: 2/span 4;
    order: 1;
  }
  .s-TextImage__layouts__item--text-left .s-TextImage__layouts__item__media {
    grid-column: 6/-1;
    order: 2;
    margin-left: 60px;
  }
}
.s-TextImage__layouts__item--text-right .s-TextImage__layouts__item__text,
.s-TextImage__layouts__item--text-right .s-TextImage__layouts__item__media {
  grid-column: 1/-1;
}
@media (min-width: 1024px) {
  .s-TextImage__layouts__item--text-right .s-TextImage__layouts__item__text {
    grid-column: 8/span 5;
  }
  .s-TextImage__layouts__item--text-right .s-TextImage__layouts__item__media {
    grid-column: 1/span 7;
  }
}
@media (min-width: 1440px) {
  .s-TextImage__layouts__item--text-right .s-TextImage__layouts__item__text {
    grid-column: 8/span 4;
  }
  .s-TextImage__layouts__item--text-right .s-TextImage__layouts__item__media {
    grid-column: 1/span 7;
    margin-right: 60px;
  }
}
.s-TextImage .c-Text__content p {
  max-width: 490px;
}

.s-TextMedia {
  row-gap: 80px;
  align-items: center;
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
}
.s-TextMedia {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-TextMedia {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-TextMedia {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-TextMedia {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-TextMedia {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-TextMedia {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-TextMedia {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-TextMedia {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-TextMedia__text, .s-TextMedia__media {
  height: fit-content;
}
.s-TextMedia__media {
  grid-column: 1/-1;
}
@media (min-width: 1024px) {
  .s-TextMedia__media {
    grid-column: span 7;
  }
}
.s-TextMedia__text {
  grid-column: 1/-1;
  max-width: 460px;
}
@media (min-width: 1024px) {
  .s-TextMedia__text {
    grid-column: 9/-1;
  }
}
@media (max-width: 1023px) {
  .s-TextMedia__text {
    padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
  }
}
@media (max-width: 1023px) and (min-width: 1801px) {
  .s-TextMedia__text {
    padding-left: 80px;
  }
}
@media (max-width: 1023px) and (max-width: 420px) {
  .s-TextMedia__text {
    padding-left: 20px;
  }
}
@media (max-width: 1023px) {
  .s-TextMedia__text {
    padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
  }
}
@media (max-width: 1023px) and (min-width: 1801px) {
  .s-TextMedia__text {
    padding-right: 80px;
  }
}
@media (max-width: 1023px) and (max-width: 420px) {
  .s-TextMedia__text {
    padding-right: 20px;
  }
}
.s-TextMedia__text__content {
  margin-bottom: calc(0.0072463768 * 100vw + 36.9565217391px);
}
@media (min-width: 1801px) {
  .s-TextMedia__text__content {
    margin-bottom: 50px;
  }
}
@media (max-width: 420px) {
  .s-TextMedia__text__content {
    margin-bottom: 40px;
  }
}
.s-TextMedia__text__spec {
  display: flex;
  align-items: baseline;
}
.s-TextMedia__text__spec__icon {
  margin-right: 6px;
}
@media (min-width: 1024px) {
  .s-TextMedia {
    display: grid;
    grid-template-columns: repeat(var(--bon-cols), 1fr);
    column-gap: var(--bon-gutter);
  }
  .s-TextMedia {
    padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
  }
}
@media (min-width: 1024px) and (min-width: 1801px) {
  .s-TextMedia {
    padding-left: 80px;
  }
}
@media (min-width: 1024px) and (max-width: 420px) {
  .s-TextMedia {
    padding-left: 20px;
  }
}
@media (min-width: 1024px) {
  .s-TextMedia {
    padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
  }
}
@media (min-width: 1024px) and (min-width: 1801px) {
  .s-TextMedia {
    padding-right: 80px;
  }
}
@media (min-width: 1024px) and (max-width: 420px) {
  .s-TextMedia {
    padding-right: 20px;
  }
}

.s-VideoSection {
  position: relative;
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
}
.s-VideoSection {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-VideoSection {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-VideoSection {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-VideoSection {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-VideoSection {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-VideoSection {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-VideoSection {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-VideoSection {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-VideoSection {
  padding-left: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-VideoSection {
    padding-left: 80px;
  }
}
@media (max-width: 420px) {
  .s-VideoSection {
    padding-left: 20px;
  }
}
.s-VideoSection {
  padding-right: calc(0.0434782609 * 100vw + 1.7391304348px);
}
@media (min-width: 1801px) {
  .s-VideoSection {
    padding-right: 80px;
  }
}
@media (max-width: 420px) {
  .s-VideoSection {
    padding-right: 20px;
  }
}
.s-VideoSection.fullwidth {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
.s-VideoSection.fullwidth__video-wrap {
  border-radius: 0;
}
.s-VideoSection__video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  grid-column: 1/-1;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.s-VideoSection__video-wrap {
  border-radius: calc(0.018115942 * 100vw + 17.3913043478px);
}
@media (min-width: 1801px) {
  .s-VideoSection__video-wrap {
    border-radius: 50px;
  }
}
@media (max-width: 420px) {
  .s-VideoSection__video-wrap {
    border-radius: 25px;
  }
}
.s-VideoSection__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  z-index: 2;
  width: 90%;
}
.s-VideoSection__title h2 {
  letter-spacing: -3px;
  font-style: normal;
  font-family: Garamond-Regular, serif;
  line-height: 1;
  --line-height: 1;
}
.s-VideoSection__title h2 {
  font-size: calc(0.0688405797 * 100vw + 26.0869565217px);
}
@media (min-width: 1801px) {
  .s-VideoSection__title h2 {
    font-size: 150px;
  }
}
@media (max-width: 420px) {
  .s-VideoSection__title h2 {
    font-size: 55px;
  }
}
.s-VideoSection__video {
  grid-column: 1/-1;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.s-VideoSection__video {
  border-radius: calc(0.018115942 * 100vw + 17.3913043478px);
}
@media (min-width: 1801px) {
  .s-VideoSection__video {
    border-radius: 50px;
  }
}
@media (max-width: 420px) {
  .s-VideoSection__video {
    border-radius: 25px;
  }
}
.s-VideoSection__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--abc);
}

.s-Awards {
  background-color: var(--bc);
  color: var(--c);
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: 0 80px;
}
.s-Awards {
  --spacing-padding-top-mobile: 60;
  --spacing-padding-top-desktop: 100;
  --spacing-padding-bottom-mobile: 60;
  --spacing-padding-bottom-desktop: 100;
}
.s-Awards {
  padding-top: calc(var(--spacing-padding-top-mobile) * 1px + (var(--spacing-padding-top-desktop) - var(--spacing-padding-top-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-Awards {
    padding-top: calc(var(--spacing-padding-top-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-Awards {
    padding-top: calc(var(--spacing-padding-top-mobile) * 1px);
  }
}
.s-Awards {
  padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px + (var(--spacing-padding-bottom-desktop) - var(--spacing-padding-bottom-mobile)) * (100vw - 420px) / (1800 - 420));
}
@media (min-width: 1801px) {
  .s-Awards {
    padding-bottom: calc(var(--spacing-padding-bottom-desktop) * 1px);
  }
}
@media (max-width: 420px) {
  .s-Awards {
    padding-bottom: calc(var(--spacing-padding-bottom-mobile) * 1px);
  }
}
.s-Awards__wrapper {
  overflow: hidden;
}
.s-Awards__wrapper {
  display: grid;
  grid-template-columns: repeat(var(--bon-cols), 1fr);
  column-gap: var(--bon-gutter);
}
.s-Awards__wrapper {
  row-gap: calc(0.0217391304 * 100vw + 40.8695652174px);
}
@media (min-width: 1801px) {
  .s-Awards__wrapper {
    row-gap: 80px;
  }
}
@media (max-width: 420px) {
  .s-Awards__wrapper {
    row-gap: 50px;
  }
}
.s-Awards__slider {
  display: flex;
  position: relative;
  gap: var(--bon-gutter);
  grid-column: 1/-1;
  height: 100%;
  width: 100%;
  opacity: 0;
}
@media (min-width: 1024px) {
  .s-Awards__slider {
    grid-column: 5/-1;
  }
}
@media (min-width: 1440px) {
  .s-Awards__slider {
    grid-column: 4/-1;
  }
}
.s-Awards__slider:focus-visible {
  outline: none;
}
.s-Awards__slider:focus {
  outline: none;
}
.s-Awards__slide {
  position: absolute;
  width: unset;
  will-change: transform;
  aspect-ratio: 4/3;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .s-Awards__slide {
    width: 33.2%;
  }
}
@media (min-width: 1024px) {
  .s-Awards__slide {
    width: calc((100vw - 160px) / 5);
  }
}
.s-Awards__slide img {
  transition: transform 0.3s ease;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.s-Awards .flickity-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.s-Awards .flickity-viewport:focus-visible {
  outline: none;
}
.s-Awards .flickity-viewport:focus {
  outline: none;
}
.s-Awards .flickity-slider {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  will-change: transform;
}
.s-Awards .flickity-slider:focus-visible {
  outline: none;
}
.s-Awards .flickity-slider:focus {
  outline: none;
}
.s-Awards .flickity-button {
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
  position: absolute;
}
.s-Awards .flickity-button:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}
@media (min-width: 1024px) {
  .s-Awards .flickity-button:after {
    width: 30px;
    height: 30px;
  }
}
.s-Awards .flickity-button.previous {
  left: -20px;
}
.s-Awards .flickity-button.next {
  right: -20px;
}
.s-Awards .flickity-button-icon {
  display: none;
}
.s-Awards .flickity-button.previous::after {
  transform: rotate(-135deg);
}
.s-Awards .flickity-button[disabled] {
  opacity: 0;
  pointer-events: none;
}

.s-Awards__slide.is-animate {
  opacity: 1;
}

div.s-Awards *, .s-Awards * {
  border: none !important;
}

.desktop .s-Awards__slide a:hover img {
  transform: scale(0.96);
}

.s-Awards__review {
  font-family: Garamond-Regular, serif;
  font-size: 20px;
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .s-Awards__review {
    font-size: 22px;
  }
}

.s-Awards__button {
  font-size: 16px;
  margin-top: 20px;
  display: inline-block;
  position: relative;
}
.s-Awards__button::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.s-Awards__button:hover::before {
  transform: scaleX(1);
}
@media (min-width: 1024px) {
  .s-Awards__button {
    font-size: 20px;
  }
}

.has-reviews .s-Awards__slide {
  width: calc((100vw - 80px) / 1);
}

@media all and (min-width: 1023px) {
  .has-reviews .flickity-viewport {
    position: relative;
    height: auto !important;
    transition: none !important;
  }
  .has-reviews .flickity-slider {
    position: relative;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    transform: none !important;
    gap: 40px 0px;
    transition: none !important;
  }
  .has-reviews .s-Awards__slide {
    width: calc((100vw - 160px) / 2);
    position: relative;
    transform: none !important;
    transition: none !important;
  }
  .has-reviews .flickity-button {
    opacity: 0;
    pointer-events: none;
  }
}
@media all and (min-width: 1300px) {
  .has-reviews .flickity-slider {
    grid-template-columns: repeat(3, 1fr);
  }
  .has-reviews .s-Awards__slide {
    width: calc((100vw - 160px) / 3);
  }
}
@media all and (min-width: 2000px) {
  .has-reviews .s-Awards__slider {
    width: 1840px;
    margin: 0 auto;
  }
  .has-reviews .s-Awards__slide {
    width: 613.3333333333px;
  }
}
@media all and (max-width: 1024px) {
  .s-Awards__slide img {
    opacity: 1 !important;
    max-width: 210px;
    object-fit: contain;
    object-position: center center;
    position: absolute;
    transform: translateX(-50%) !important;
    left: 50%;
  }
  .s-Awards.has-reviews {
    padding-right: 40px;
    padding-left: 40px;
  }
  .has-reviews .s-Awards__slide img {
    position: relative !important;
  }
  .has-reviews .s-Awards__slide {
    aspect-ratio: unset;
  }
}
@media all and (max-width: 600px) {
  .has-reviews .s-Awards__slider .flickity-button {
    opacity: 0;
    pointer-events: none;
  }
}

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