/*!
 * smartbanner.js v1.17.0 <https://github.com/ain/smartbanner.js#readme>
 * Copyright © 2021 Ain Tohvri, contributors. Licensed under GPL-3.0.
 */
.smartbanner {
  position: absolute;
  top: 0;
  left: 0;
  overflow-x: hidden;
  width: 100%;
  height: 84px;
  background: #f3f3f3;
  font-family: Helvetica, sans, sans-serif;
  /** Android styles **/
}
.smartbanner__exit {
  position: absolute;
  top: calc(50% - 6px);
  left: 9px;
  display: block;
  margin: 0;
  width: 12px;
  height: 12px;
  border: 0;
  text-align: center;
}
.smartbanner__exit::before, .smartbanner__exit::after {
  position: absolute;
  width: 1px;
  height: 12px;
  background: #767676;
  content: " ";
}
.smartbanner__exit::before {
  transform: rotate(45deg);
}
.smartbanner__exit::after {
  transform: rotate(-45deg);
}
.smartbanner__icon {
  position: absolute;
  top: 10px;
  left: 30px;
  width: 64px;
  height: 64px;
  border-radius: 15px;
  background-size: 64px 64px;
}
.smartbanner__info {
  position: absolute;
  top: 10px;
  left: 104px;
  display: flex;
  overflow-y: hidden;
  width: 60%;
  height: 64px;
  align-items: center;
  color: #000;
}
.smartbanner__info__title {
  font-size: 14px;
}
.smartbanner__info__author, .smartbanner__info__price {
  font-size: 12px;
}
.smartbanner__button {
  position: absolute;
  top: 32px;
  right: 10px;
  z-index: 1;
  display: block;
  padding: 0 10px;
  min-width: 10%;
  border-radius: 5px;
  background: #f3f3f3;
  color: #1474fc;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}
.smartbanner__button__label {
  text-align: center;
}
.smartbanner.smartbanner--android {
  background: #3d3d3d url("data:image/gif;base64,R0lGODlhCAAIAIABAFVVVf///yH5BAEHAAEALAAAAAAIAAgAAAINRG4XudroGJBRsYcxKAA7");
  box-shadow: inset 0 4px 0 #88b131;
}
.smartbanner.smartbanner--android .smartbanner__exit {
  left: 6px;
  margin-right: 7px;
  width: 17px;
  height: 17px;
  border-radius: 14px;
  background: #1c1e21;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) inset, 0 1px 1px rgba(255, 255, 255, 0.3);
  color: #b1b1b3;
  font-family: "ArialRoundedMTBold", Arial;
  font-size: 20px;
  line-height: 17px;
  text-shadow: 0 1px 1px #000;
}
.smartbanner.smartbanner--android .smartbanner__exit::before, .smartbanner.smartbanner--android .smartbanner__exit::after {
  top: 3px;
  left: 8px;
  width: 2px;
  height: 11px;
  background: #b1b1b3;
}
.smartbanner.smartbanner--android .smartbanner__exit:active, .smartbanner.smartbanner--android .smartbanner__exit:hover {
  color: #eee;
}
.smartbanner.smartbanner--android .smartbanner__icon {
  background-color: transparent;
  box-shadow: none;
}
.smartbanner.smartbanner--android .smartbanner__info {
  color: #ccc;
  text-shadow: 0 1px 2px #000;
}
.smartbanner.smartbanner--android .smartbanner__info__title {
  color: #fff;
  font-weight: bold;
}
.smartbanner.smartbanner--android .smartbanner__button {
  top: 30px;
  right: 20px;
  padding: 0;
  min-width: 12%;
  border-radius: 0;
  background: none;
  box-shadow: 0 0 0 1px #333, 0 0 0 2px #dddcdc;
  color: #d1d1d1;
  font-size: 14px;
  font-weight: bold;
}
.smartbanner.smartbanner--android .smartbanner__button:active, .smartbanner.smartbanner--android .smartbanner__button:hover {
  background: none;
}
.smartbanner.smartbanner--android .smartbanner__button__label {
  display: block;
  padding: 0 10px;
  background: #42b6c9;
  background: linear-gradient(to bottom, #42b6c9, #39a9bb);
  box-shadow: none;
  line-height: 24px;
  text-align: center;
  text-shadow: none;
  text-transform: none;
}
.smartbanner.smartbanner--android .smartbanner__button__label:active, .smartbanner.smartbanner--android .smartbanner__button__label:hover {
  background: #2ac7e1;
}

/*# sourceMappingURL=smartbanner.css.map */
/**
 * Returns a new string with some or all matches of a pattern replaced by a replacement
 * @param {String} $string - Initial string
 * @param {String} $search - Value to replace
 * @param {String} $replace - Replacement
 * @return {String} New string
 */
/**
 * Map with all possible units to be used by other utilities (i.e. fluid value)
 */
/**
 * Adds unit to a number
 * @param {Number} $value - Value to add unit to
 * @param {String} $unit - String representation of the unit
 * @return {Number} - `$value` expressed in `$unit`
 */
/**
 * Returns a number without units
 */
/**
 * Returns a rem value from a number of pixels.
 * Its uses 16px as root font-size
 */
/**
 * Returns a px value from a number of rems.
 * Its uses 16px as root font-size
 */
/**
 * Returns a rem value from a map
 */
/**
 * Returns a fluid value between two points in the viewport variable dimension.
 * This linear function can be applied to any property (width, font-size, ...).
 * @param {Number} $v1 - Value at init point - Linear function's Y1
 * @param {Number} $v2 - Value at end point - Linear function's Y2
 * @param {Number} $init - Init point in pixels - Linear function's X1
 * @param {Number} $end - End point in pixels - Linear function's X2
 * @param {Number} $var-dim - Variable dimension: 100vw as default, or 100vh, 100%
 * examples:
 * width: byl-linear-fluid-value(70vw, 58vw, 810px, 1024px);
 * padding-bottom: byl-linear-fluid-value(24px, 48px, 1025px, 1920px, 100%);
 * font-size: byl-linear-fluid-value(1rem, 2rem, 320px, 768px),
 * letter-spacing: byl-linear-fluid-value(0, 1px, 768px, 1024px),
 */
/**
 * Returns a curve from the $transition-curves list
 */
/**
 * Returns a speed from the $transition-times list
 */
/**
 * Returns a transition string
 * used internally by byl-transition and byl-complex-transition mixins
 * @param {string} property - property to be transitioned (i.e. width)
 * @param {number} speed - passed directly or through the speed function (i.e. 150ms or speed(t2))
 * @param {string} curve - passed directly or through the curve function (i.e. linear or curve(ease2))
 * @param {number} delay - passed directly or through the speed function (i.e. 10ms or speed(t1))
 */
/* -------------------------------------------------------------------------- *\
 *  INSETS
 * --------------------------------------------------------------------------
 *  An inset offers indents content on all four sides like the matte of the
 *  framed photo on a wall
 *
 *  $inset-X : a b;
 *  $inset-stack-X : a;
 *  $inset-inline-X : b;
 *
 *  -----------------------
 *  |          a          |
 *  |   ---------------   |
 *  | b |             | b |
 *  |   ---------------   |
 *  |          a          |
 *  -----------------------
 *
\* -------------------------------------------------------------------------- */
/**
 * @tokens Inset Block
 * @presenter Spacing
 */
/**
 * @tokens Inset Inline
 * @presenter Spacing
 */
/**
 * @tokens Insets
 * @presenter Spacing
 */
/* -------------------------------------------------------------------------- *\
 *  Main header
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Footer
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Main content
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Landing pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Account pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Form Login content
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Product Page
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Cart/Minicart
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Article pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Home Page
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Customizer
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  CTA static buttons
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  IOS navigator bottom spacing
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Rest of variables
 * -------------------------------------------------------------------------- */
/*
 * Colors
 * (Named using "Name that color") - http://chir.ag/projects/name-that-color
 * -------------------------------------------------------------------------- */
/**
 * @tokens Colors Base
 * @presenter Color
 */
/**
 * @tokens Colors Promo
 * @presenter Color
 */
/**
 * @tokens Colors System
 * @presenter Color
 */
/**
 * @tokens Colors Others
 * @presenter Color
 */
/*
$color__black: hsl(0, 0%, 0%);          // #000
$color__white: hsl(0, 0%, 100%);        // #fff

$color__nero: hsl(0, 0%, 14%);         //#242424
$color__matterhorn: hsl(0, 0%, 33%);         //#555555
$color__dark-gray: hsl(0, 0%, 66%);         //#A8A8A8
$color__gray: hsl(0, 0%, 78%);         //#C8C8C8
$color__white-smoke: hsl(0, 0%, 96%);         //#F4F4F4

$color__black20: hsla(0, 0%, 0%, 0.2);    //rgba(255, 255, 255, 20)
$color__gray50: hsla(0, 0%, 78%, 0.5);   //rgba(200, 200, 200, 50)

// Promo colors
$color__green: hsl(132, 100%, 49%);     // #00F830
$color__cookie: $color__green;
$color__red: hsl(0, 100%, 50%);       // #f00
$color__red-campaign: $color__red;
$color__international-orange: hsl(19, 100%, 50%);      // #ff5200
$color__sales: $color__international-orange;
$color__yellow: hsl(60, 100%, 50%);      // #FFFF00
$color__razzle-dazzle-rose: hsl(310, 100%, 64%);     // #FF45E0
$color__who-we-are: $color__razzle-dazzle-rose;

/// --------------------------------------------------------------------------
///    Old palette
/// --------------------------------------------------------------------------
$color__alabaster: hsl(0, 0%, 98%);         // #fafafa;
$color__alto: hsla(0, 0%, 0%, 0.33);   // #00000054 = #d3d3d3;
$color__blue: hsl(231, 100%, 50%);     // #0026FF
$color__silver: hsl(0, 0%, 51%);         // #838383
$color__early-dawn: hsl(44, 100%, 95%);      // #fff9e8
$color__orange: hsl(30, 100%, 53%);      // #ff8810
$color__malachite: hsl(122, 69%, 51%);      // #2dd933
$color__violet: hsl(275, 77%, 15%);      // #2c0945
$color__royal-blue: hsl(229, 73.1%, 57.6%);  // #4462e2
$color__sunset-orange: hsl(0, 100%, 64.7%);     // #ff4b4b
$color__transparent: hsla(360, 100%, 100%, 0); //rgba(255, 255, 255, 0)

//Social networks
$color__facebook: $color__royal-blue;
$color__google: $color__sunset-orange;
*/
/* 1025 is used instead of 1024 because touch devices design is not specified */
/**
 * Map with all possible units to be used by other utilities (i.e. fluid value)
 */
/**
 * Adds unit to a number
 * @param {Number} $value - Value to add unit to
 * @param {String} $unit - String representation of the unit
 * @return {Number} - `$value` expressed in `$unit`
 */
/**
 * Returns a number without units
 */
/**
 * Returns a rem value from a number of pixels.
 * Its uses 16px as root font-size
 */
/**
 * Returns a px value from a number of rems.
 * Its uses 16px as root font-size
 */
/**
 * Returns a rem value from a map
 */
/**
 * Returns a fluid value between two points in the viewport variable dimension.
 * This linear function can be applied to any property (width, font-size, ...).
 * @param {Number} $v1 - Value at init point - Linear function's Y1
 * @param {Number} $v2 - Value at end point - Linear function's Y2
 * @param {Number} $init - Init point in pixels - Linear function's X1
 * @param {Number} $end - End point in pixels - Linear function's X2
 * @param {Number} $var-dim - Variable dimension: 100vw as default, or 100vh, 100%
 * examples:
 * width: byl-linear-fluid-value(70vw, 58vw, 810px, 1024px);
 * padding-bottom: byl-linear-fluid-value(24px, 48px, 1025px, 1920px, 100%);
 * font-size: byl-linear-fluid-value(1rem, 2rem, 320px, 768px),
 * letter-spacing: byl-linear-fluid-value(0, 1px, 768px, 1024px),
 */
/**
 * @tokens Font Families
 * @presenter FontFamily
 */
/** System monospace */
/**
 * @tokens Font Weights
 * @presenter FontWeight
 */
/**
 * @tokens Font Sizes
 * @presenter FontSize
 */
/**
 * @tokens Line Height
 * @presenter Spacing
 */
/* @token Border
 * @presenter Spacing
 */
/* @token Border
 * @presenter Spacing
 */
/* Scrollbars customization */
/* Custom width */
/* Custom width */
/*
  NOTE: Setup the svg.
    1- export the svg from the sketch in abstract
    2- go to optimizer, https://jakearchibald.github.io/svgomg/
    3- Copy source, check if need to have some changes in the path or fill.
*/
/**
 * Payment cards used in account, visa, mastercard,
 */
/**
 * Returns an url encoded SVG with the given color
 * @param {String} $icon - SVG code
 * @param {String} $fill-color - Fill color
 * @param {String} $stroke-color - Stroke color
 * @return {String} URL encoded svg
 */
/* -------------------------------------------------------------------------- *\
==============
| The Search |
==============
MOBILE:  Header < Search            PDPModals must hide the main header
                                    to show only a back button (as APP)
                                    Reference: SF-7800
------------------------------------------------------------------------
TABLET:                             no relevance
------------------------------------------------------------------------
DESKTOP: Header > Search            Subcategories must be viewed over
                                    the search form and its results
                                    Reference: SF-11932
\* -------------------------------------------------------------------------- */
/* $theme-colors: map-merge(
    (
      "primary":    $primary,
      "secondary":  $secondary,
      "success":    $success,
      "info":       $info,
      "warning":    $warning,
      "danger":     $danger,
      "light":      $light,
      "dark":       $dark
    ),
    $theme-colors
); */
/*
$carousel-control-prev-icon-bg: str-replace(
  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 7 7'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"),
  "#",
  "%23"
);
$carousel-control-next-icon-bg: str-replace(
  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"),
  "#",
  "%23"
);
*/
/*
 * https://allyjs.io/tutorials/hiding-elements.html#2017-edition-of-visuallyhidden
 */
/**
 * Extends click zone by adding a pseudo overflowing on the element
 *
 * @param $margins: size overflowing the click zone
 * @param $pseudo: the pseudo where attach the hotzone
 * @param $debug: just to see the zone added
 */
/**
 * Calculate button icon size based on capital height
 *
 * $margin: 4px by default ($inset-inline-xxs)
 *
 * $icon-side: left or right (right by default) to apply margin properly
 *
 * $capital-height: (em) height of capital characters, in FK Grotesk is 0.72em
 **/
/**
 *  FLOATING ELEMENTS
 * --------------------------------------------------------------------------
 *  Works from 0 to 575px breakpoints.
 *
 *  Element with is equal to 100vw subtracting
 *    1. Page inset left: 16px
 *    2. Menu with: 45px
 *    3. Space between menu and element: 24px
 *    4. Menu right position: 8px
 *  Even if menu isn't present
 *
 *  bottom: menu offset bottom (24px) + 4px
 *
 *  When the element coexists with the floating menu on mobile:
 *  right: 24px + menu width (45px) + 8px
 *  left: page inset (16px)
 *
 *  When there is no menu, element is centered
 */
/* Mixin to use if touch devices design is specified */
/* Ignore, hover Device with limited pointing accuracy (touch) */
/**
 * Hide scrollbars during width/height transition with keyframes
 * Source: https://css-tricks.com/hide-scrollbars-during-an-animation/
 */
@-webkit-keyframes hide-scroll {
  from,
  to {
    overflow-y: hidden; } }
@keyframes hide-scroll {
  from,
  to {
    overflow-y: hidden; } }

/*
 * Returns a transition with one or multiple properties and common speed, curve and delay.
 * @param {String,List} string with the property, or each value of the list is a property
 * @param {number} speed - passed directly or through the speed function (i.e. 150ms or speed(t2))
 * @param {string} curve - passed directly or through the curve function (i.e. linear or curve(ease2))
 * @param {number} delay - passed directly or through the speed function (i.e. 10ms or speed(t1))
 * Examples of use:
 * @include byl-transition((border-color));
 * @include byl-transition((border-color, height), speed(t2));
 * @include byl-transition((border-color, height), null, curve(ease3));
*/
/*
 * Returns a transition with multiple properties and independent speed, curve and delay.
 * @param {List} each value of the list is in turn a list for each transition properties and values
 * Expected order in each transition will be property, speed, curve and delay
 * Examples of use:
 * @include byl-complex-transition((height, speed(t3)), (opacity, null, curve(ease3)));
*/
/*
 * Returns a set of selectors to apply some interaction styles to,
 * when we need to style the element or its related nodes
*/
/*
 * Returns a set of selectors to apply some interaction active styles to,
 * when we need to style the element or its related nodes
*/
/*
 * Adds content for an interaction state
*/
/**
 * The product tiles grows with the columns of the product grid. These columns
 * are defined using bootstrap:
 *
 * >=0     2 columns
 * >=768   4 columns
 *
 * Because of this, the design considers two product tile sizes (S, L) to define
 * the look&feel of the tiles depending on the space that those columns leave to
 * grow to a tile
 *
 * >=0     tileS  - non-fluid
 * >=375   tileS  ---- fluid ---> 767 tileL
 * >=768   tileS  - non-fluid
 * >=1025  tileS  ---- fluid ---> 1920 tileL
 * >=1920  tileL  - non-fluid
 *
 * This mixin eases the task of defining the fluid values of a property for
 * these workflow
 *
 * @param {string} $property - Property name
 * @param {any} $small-tile-value - Property vale for a tile of size S
 * @param {any} $big-tile-value - Property vale for a tile of size L
 */
.page--home .footer {
  margin-top: 0; }

.main.main--home {
  display: flex; }

.the-home {
  width: 100%;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-attachment: fixed; }
  .the-home__modules {
    width: 100%;
    height: auto; }
  .the-home__background-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
    pointer-events: none; }
    .the-home__background-container > iframe,
    .the-home__background-container > object,
    .the-home__background-container > embed {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100vw;
      min-width: 66.66667vh;
      height: 150vw;
      min-height: 100vh;
      transform: translate(-50%, -50%); }
      @media (min-width: 768px) {
        .the-home__background-container > iframe,
        .the-home__background-container > object,
        .the-home__background-container > embed {
          min-width: 150vh;
          height: 66.66667vw; } }
    .the-home__background-container video {
      width: auto;
      height: auto; }
      @media (min-width: 1025px) {
        .the-home__background-container video {
          width: 100%; } }

.the-home-module:empty {
  display: none; }

.is-app-request .exclude-app {
  display: none; }

.the-home-header {
  /* stylelint-disable */
  --uses-typography: 'the-home-base';
  font-size: 0.875rem;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: normal;
  font-weight: 700;
  /* stylelint-enable */
  display: block;
  margin-bottom: 0.75rem;
  text-align: left; }
  @media (min-width: 768px) {
    .the-home-header {
      margin-bottom: 1.5rem; } }
  @media (min-width: 810px) {
    .the-home-header {
      margin-bottom: 0.75rem; } }
  @media (min-width: 1025px) {
    .the-home-header {
      margin-bottom: 1.5rem; } }
  .the-home-header__title {
    /* stylelint-disable */
    --uses-typography: 'the-home-title';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: calc(0.01786 * 100vw + 22.28571px);
    letter-spacing: calc(0.00051 * 100vw + 0.63571px);
    line-height: 1;
    text-decoration: none;
    /* stylelint-enable */
    margin: 0; }
    @media (min-width: 810px) {
      .the-home-header__title {
        font-size: 2.125rem;
        letter-spacing: 0; } }
    @media (min-width: 1025px) {
      .the-home-header__title {
        font-size: calc(0.02162 * 100vw + 18.48649px);
        letter-spacing: calc(0.00015 * 100vw + 0.90595px); } }
    @media (min-width: 1920px) {
      .the-home-header__title {
        font-size: 3.75rem;
        letter-spacing: 0.075rem; } }
  .the-home-header__subtitle {
    /* stylelint-disable */
    --uses-typography: 'the-home-subtitle';
    font-family: "EBGaramond", georgia, serif;
    font-weight: 700;
    font-style: italic;
    font-size: calc(0.0067 * 100vw + 15.85714px);
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    /* stylelint-enable */
    position: relative;
    z-index: 1;
    margin: 0;
    margin-bottom: 2px;
    padding-right: 6px; }
    @media (min-width: 810px) {
      .the-home-header__subtitle {
        font-size: 1.125rem;
        font-weight: 600; } }
    @media (min-width: 1025px) {
      .the-home-header__subtitle {
        font-size: calc(0.00991 * 100vw + 12.97297px); } }
    @media (min-width: 1920px) {
      .the-home-header__subtitle {
        font-size: 2rem; } }
  .the-home-header__link {
    display: table;
    color: unset;
    text-decoration: none; }
  .the-home-header span {
    --bg-color-text: unset;
    padding-right: 6px;
    padding-bottom: 2px;
    white-space: pre-wrap;
    background-color: var(--bg-color-text);
    box-shadow: -6px 0 0 var(--bg-color-text); }
  .the-home-header p {
    margin-bottom: 0;
    white-space: pre-wrap;
    background-color: var(--bg-color-text);
    box-shadow: -6px 0 0 var(--bg-color-text); }
  .the-home-header h2 {
    /**
      * 1. This h2 is for semantics (structured data), so we need to ignore the
      *    default h2 styles inheriting from the parent.
      */
    line-height: 1.25; }

.the-home-text-block {
  width: 100%;
  padding: 2px 0 0; }
  @media (min-width: 575px) {
    .the-home-text-block {
      margin: 24px 15.6% 16px 16px; } }
  @media (min-width: 768px) {
    .the-home-text-block {
      margin: 24px 19.75% 24px 24px; } }
  @media (min-width: 811px) {
    .the-home-text-block {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      width: 22.5%;
      margin: 0 10.83% 0 3.75%;
      padding: 0; } }
  .the-home-text-block header {
    margin-bottom: 0; }
    @media (min-width: 811px) {
      .the-home-text-block header {
        position: relative;
        bottom: auto;
        bottom: initial;
        width: auto;
        width: initial; } }
    .the-home-text-block header .the-home-header__subtitle {
      /* stylelint-disable */
      --uses-typography: 'the-home-subtitle-text';
      font-family: "EBGaramond", georgia, serif;
      font-weight: 700;
      font-style: italic;
      font-size: 1.125rem;
      letter-spacing: 0;
      line-height: 1;
      text-decoration: none;
      /* stylelint-enable */
      margin-bottom: 2px; }
      @media (min-width: 768px) {
        .the-home-text-block header .the-home-header__subtitle {
          font-size: 1rem; } }
      @media (min-width: 810px) {
        .the-home-text-block header .the-home-header__subtitle {
          font-size: calc(0.00631 * 100vw + 8.89189px);
          font-weight: 600; } }
      @media (min-width: 1920px) {
        .the-home-text-block header .the-home-header__subtitle {
          font-size: 1.3125rem; } }
  .the-home-text-block header h2 {
    /* stylelint-disable */
    --uses-typography: 'the-home-title-text';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 1.75rem;
    letter-spacing: 0.05rem;
    line-height: 1;
    text-decoration: none;
    /* stylelint-enable */ }
    @media (min-width: 810px) {
      .the-home-text-block header h2 {
        font-size: calc(0.00991 * 100vw + 16.97297px);
        letter-spacing: calc(0.00018 * 100vw + 0.65405px); } }
    @media (min-width: 1920px) {
      .the-home-text-block header h2 {
        font-size: 2.25rem;
        letter-spacing: 0.0625rem; } }
  .the-home-text-block__text {
    /* stylelint-disable */
    --uses-typography: 'the-home-text';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    /* stylelint-enable */
    margin: 8px 0 32px;
    overflow: hidden;
    text-overflow: hidden; }
    @media (min-width: 810px) {
      .the-home-text-block__text {
        font-size: calc(0.0036 * 100vw + 9.08108px); } }
    @media (min-width: 1920px) {
      .the-home-text-block__text {
        font-size: 1rem; } }
    @media (min-width: 811px) {
      .the-home-text-block__text {
        display: box;
        -webkit-line-clamp: 6;
        margin-top: 4px; } }
  .the-home-text-block__inline-background {
    box-shadow: 0.2em 0 0 transparent, -0.2em 0 0 transparent;
    box-shadow: 0.2em 0 0 var(--bg-color-text, transparent), -0.2em 0 0 var(--bg-color-text, transparent); }
  .the-home-text-block__container {
    width: 100%; }
    @media (min-width: 575px) {
      .the-home-text-block__container {
        padding: 0 15.6%; } }
    @media (min-width: 811px) {
      .the-home-text-block__container {
        width: 52.08%;
        margin: 0 0 0 10.83%;
        padding: 0; } }
    .the-home-text-block__container .the-home-header {
      position: inherit;
      bottom: auto;
      bottom: initial;
      z-index: 2;
      width: auto;
      width: initial;
      margin-bottom: 8px;
      text-align: left; }
      @media (min-width: 810px) {
        .the-home-text-block__container .the-home-header {
          margin-left: 24px; } }
      @media (min-width: 1025px) {
        .the-home-text-block__container .the-home-header {
          margin-left: 48px; } }
    .the-home-text-block__container figure {
      position: relative; }
    .the-home-text-block__container picture {
      position: relative;
      display: block; }
      .the-home-text-block__container picture::before {
        display: block;
        width: 0;
        padding-bottom: 125%;
        content: ''; }
      .the-home-text-block__container picture > img,
      .the-home-text-block__container picture > .img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: 50% 50%;
           object-position: 50% 50%; }
      @media (min-width: 1025px) {
        .the-home-text-block__container picture {
          position: relative;
          display: block; }
          .the-home-text-block__container picture::before {
            display: block;
            width: 0;
            padding-bottom: 56.25%;
            content: ''; }
          .the-home-text-block__container picture > img,
          .the-home-text-block__container picture > .img {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
               object-fit: cover;
            -o-object-position: 50% 50%;
               object-position: 50% 50%; } }
  .the-home-text-block-image {
    display: flex;
    flex-flow: row wrap;
    padding: 32px 16px; }
    @media (min-width: 768px) {
      .the-home-text-block-image {
        padding: 0; } }
    @media (min-width: 900px) {
      .the-home-text-block-image {
        padding-bottom: 5vw; } }
    @media (min-width: 1025px) {
      .the-home-text-block-image {
        align-items: center;
        justify-content: center;
        padding: 0;
        padding-bottom: 5vw;
        text-align: left; } }
    @media (min-width: 1280px) {
      .the-home-text-block-image {
        padding-top: 80px; } }

.the-home__image-base-video-container {
  position: relative;
  display: block; }
  .the-home__image-base-video-container::before {
    display: block;
    width: 0;
    padding-bottom: 125%;
    content: ''; }
  .the-home__image-base-video-container > video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%; }
  @media (min-width: 810px) {
    .the-home__image-base-video-container {
      position: relative;
      display: block; }
      .the-home__image-base-video-container::before {
        display: block;
        width: 0;
        padding-bottom: 56.25%;
        content: ''; }
      .the-home__image-base-video-container > video {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: 50% 50%;
           object-position: 50% 50%; } }
  .the-home__image-base-video-container video {
    -webkit-mask-image: radial-gradient(black, white);
            mask-image: radial-gradient(black, white);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }

.the-home__image-base-video {
  width: 100%; }

.the-home__figure-base {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  line-height: 0; }
  .the-home__figure-base a {
    line-height: 0; }
  .the-home__figure-base .link-home {
    display: inline-block;
    margin: 4px 8px 4px 16px;
    line-height: 1.25; }
    @media (min-width: 768px) {
      .the-home__figure-base .link-home {
        margin: 0.625rem 8.3vw; } }
  .the-home__figure-base header {
    margin: 8px 16px;
    line-height: 1.25; }
    @media (min-width: 768px) {
      .the-home__figure-base header {
        margin: 16px 24px 16px 8.3vw; } }
    .the-home__figure-base header .the-home-header__title {
      --bg-color-text: unset;
      padding-bottom: 2px;
      box-shadow: -6px 0 0 var(--bg-color-text); }
    .the-home__figure-base header .the-home-header__title,
    .the-home__figure-base header .the-home-header__subtitle {
      line-height: normal; }
    .the-home__figure-base header .the-home-header__subtitle {
      display: inline-block; }
  .the-home__figure-base--slider header {
    z-index: 2;
    width: 100%;
    margin: 8px 16px;
    text-align: left; }
    @media (min-width: 575px) {
      .the-home__figure-base--slider header {
        margin: 16px 24px; } }
    @media (min-width: 768px) {
      .the-home__figure-base--slider header {
        position: absolute;
        bottom: 6rem;
        margin: 0;
        text-align: center; }
        .the-home__figure-base--slider header .the-home-header__link {
          margin-right: auto;
          margin-left: auto; } }
  .the-home__figure-base--slider picture {
    position: relative;
    display: block; }
    .the-home__figure-base--slider picture::before {
      display: block;
      width: 0;
      padding-bottom: 125%;
      content: ''; }
    .the-home__figure-base--slider picture > img,
    .the-home__figure-base--slider picture > .img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: 50% 50%;
         object-position: 50% 50%; }
    @media (min-width: 1025px) {
      .the-home__figure-base--slider picture {
        position: relative;
        display: block; }
        .the-home__figure-base--slider picture::before {
          display: block;
          width: 0;
          padding-bottom: 56.25%;
          content: ''; }
        .the-home__figure-base--slider picture > img,
        .the-home__figure-base--slider picture > .img {
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          -o-object-position: 50% 50%;
             object-position: 50% 50%; } }
  .the-home__figure-base--slider .link-home {
    margin-left: 16px; }
    @media (min-width: 768px) {
      .the-home__figure-base--slider .link-home {
        position: absolute;
        bottom: 3.75rem;
        left: 50%;
        z-index: 1;
        margin: 0;
        text-align: center;
        transform: translateX(-50%); } }
  .the-home__figure-base--carousel header {
    position: relative;
    z-index: 1;
    margin: 8px 16px -16px;
    line-height: 1.25; }
    @media (min-width: 768px) {
      .the-home__figure-base--carousel header {
        margin: 16px 16px -2.125rem 8.3vw; } }
  .the-home__figure-base--carousel picture {
    margin: 0 32px; }
    @media (min-width: 768px) {
      .the-home__figure-base--carousel picture {
        margin: 0; } }
  .the-home__figure-base--carousel .link-home {
    margin: 4px 16px; }
    @media (min-width: 768px) {
      .the-home__figure-base--carousel .link-home {
        position: absolute;
        bottom: 64px;
        margin-left: 8.3vw; } }
  .the-home__figure-base--absolute-text header {
    position: absolute;
    z-index: 1;
    margin: 0;
    padding-top: 32px;
    padding-left: 16px; }
    @media (min-width: 768px) {
      .the-home__figure-base--absolute-text header {
        padding-top: 48px;
        padding-left: 8.3vw; } }
  .the-home__figure-base--absolute-text .link-home {
    position: absolute;
    bottom: 3.75rem;
    z-index: 1;
    margin: 0;
    margin-left: 16px; }
    @media (min-width: 768px) {
      .the-home__figure-base--absolute-text .link-home {
        bottom: 64px;
        margin-left: 8.3vw; } }
  .the-home__figure-base--cta-link-in-image .link-home {
    position: absolute;
    bottom: 3.75rem;
    left: 16px;
    z-index: 1;
    margin: 0; }
    @media (min-width: 768px) {
      .the-home__figure-base--cta-link-in-image .link-home {
        bottom: 64px;
        left: 8.3vw; } }
  @media (min-width: 900px) {
    .the-home__figure-base--silhouetting {
      position: relative; } }
  .the-home__figure-base--silhouetting img {
    padding: 0 12%; }
    @media (min-width: 768px) {
      .the-home__figure-base--silhouetting img {
        padding: 0 30%; } }
  .the-home__figure-base--silhouetting header {
    position: absolute;
    z-index: 1;
    width: auto;
    margin: 56px 14px 0;
    text-align: left; }
    @media (min-width: 768px) {
      .the-home__figure-base--silhouetting header {
        margin-left: 32%; } }
    @media (min-width: 1025px) {
      .the-home__figure-base--silhouetting header {
        top: 3.75rem;
        margin-left: 17%; } }
  .the-home__figure-base--silhouetting .image__link-home {
    margin-left: 0; }
  .the-home__figure-base--basic-align-left header,
  .the-home__figure-base--basic-align-left .link-home {
    margin-left: 0; }
  .the-home__figure-base.the-home-animations {
    will-change: transform; }
    .the-home__figure-base.the-home-animations[data-animation-zoom-out='true'] img {
      transition: transform 1000ms cubic-bezier(0.3, 0, 0.3, 1) 400ms;
      transform: scale(1.1); }
    .the-home__figure-base.the-home-animations[data-animation-vertical-shift='true'] {
      transition: transform 1000ms cubic-bezier(0, 0, 0.58, 1) 400ms;
      transform: translateY(10%); }
    .the-home__figure-base.the-home-animations--active {
      /* stylelint-disable max-nesting-depth */
      /* stylelint-enable max-nesting-depth */ }
      .the-home__figure-base.the-home-animations--active[data-animation-zoom-out='true'] img {
        transform: scale(1); }
      .the-home__figure-base.the-home-animations--active[data-animation-vertical-shift='true'] {
        transform: translateY(0); }

.the-home__image-base {
  width: 100%;
  min-height: 3rem;
  margin: 0;
  filter: blur(3px); }
  .the-home__image-base--loaded {
    transition: filter 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
    filter: none; }
  .the-home__image-base:not([src]):not([srcset]) {
    visibility: hidden; }
  .the-home__image-base.eager {
    filter: none; }

@-moz-document url-prefix('') {
  img:-moz-loading {
    visibility: hidden; } }

.the-home-module > .the-home__figure-base picture {
  position: relative;
  display: block; }
  .the-home-module > .the-home__figure-base picture::before {
    display: block;
    width: 0;
    padding-bottom: 125%;
    content: ''; }
  .the-home-module > .the-home__figure-base picture > img,
  .the-home-module > .the-home__figure-base picture > .img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%; }
  @media (min-width: 1025px) {
    .the-home-module > .the-home__figure-base picture {
      position: relative;
      display: block; }
      .the-home-module > .the-home__figure-base picture::before {
        display: block;
        width: 0;
        padding-bottom: 56.25%;
        content: ''; }
      .the-home-module > .the-home__figure-base picture > img,
      .the-home-module > .the-home__figure-base picture > .img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: 50% 50%;
           object-position: 50% 50%; } }

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box; }
  .glide * {
    box-sizing: inherit; }
  .glide__track {
    overflow: hidden; }
  .glide__slides {
    position: relative;
    width: 100%;
    list-style: none;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    transform-style: preserve-3d;
    touch-action: pan-Y;
    overflow: hidden;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    will-change: transform; }
    .glide__slides--dragging {
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none; }
  .glide__slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    white-space: normal;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent; }
    .glide__slide a {
      -webkit-user-select: none;
              user-select: none;
      -webkit-user-drag: none;
      -moz-user-select: none;
      -ms-user-select: none; }
  .glide__arrows {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none; }
  .glide__bullets {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none; }
  .glide--rtl {
    direction: rtl; }

.glide__slides {
  margin: 0;
  touch-action: pan-y pinch-zoom; }

.glide__slide {
  width: 100%;
  height: auto; }

.glide__bullets {
  z-index: 1;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end; }

.glide__bullet {
  display: block;
  width: 8px;
  height: 8px;
  margin: 7px 2px;
  color: white;
  background: white;
  border: 0;
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  opacity: 0.23;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; }
  .glide__bullet--active {
    opacity: 1; }
  .glide__bullet:hover, .glide__bullet:focus, .glide__bullet.active {
    background: white; }

.glide__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 10%;
  margin-bottom: 1rem;
  padding: 0;
  background-color: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; }
  .glide__arrow:hover {
    opacity: 1; }
  .glide__arrow--prev {
    left: 0;
    float: left; }
  .glide__arrow--next {
    right: 0;
    float: right; }

.glide__arrows-count {
  display: inline-flex;
  float: right; }

.glide__scrollbar {
  display: inline-block;
  width: calc(100% - 3.5rem);
  height: 0.0625rem;
  margin: 0.3125rem 1.75rem;
  background-color: rgba(0, 0, 0, 0.2); }
  @media (min-width: 1025px) {
    .glide__scrollbar {
      float: right;
      width: 53.59%;
      height: 0.125rem;
      margin: 0.9375rem 8.33% 1.25rem 0; } }
  .glide__scrollbar-progress {
    width: 0;
    min-width: 1%;
    height: 0.0625rem;
    background-color: black;
    transition: width 0.4s; }
    @media (min-width: 1025px) {
      .glide__scrollbar-progress {
        height: 0.125rem; } }

.the-home-banner {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 2px 0;
  overflow: hidden;
  color: white;
  white-space: nowrap;
  background: black; }
  .the-home-banner a {
    display: block;
    flex-grow: 1;
    overflow: hidden;
    color: inherit;
    text-decoration: none; }
  .the-home-banner .close {
    position: relative;
    display: none;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-left: 5px;
    background: transparent;
    border: 0;
    cursor: pointer; }
    .the-home-banner .close::before, .the-home-banner .close::after {
      position: absolute;
      top: 50%;
      left: calc(50% - 6px);
      display: block;
      width: 12px;
      height: 1px;
      background: black;
      transform-origin: 50%;
      content: ''; }
    .the-home-banner .close::before {
      transform: rotate(45deg); }
    .the-home-banner .close::after {
      transform: rotate(-45deg); }
  .the-home-banner span {
    display: inline-block;
    box-sizing: border-box;
    padding-right: 100px;
    overflow: hidden;
    vertical-align: bottom;
    -webkit-animation: banner 25s linear infinite;
            animation: banner 25s linear infinite;
    will-change: transform; }
  .the-home-banner:hover span {
    -webkit-animation-play-state: paused;
            animation-play-state: paused; }
  .the-home-banner--animate-background {
    padding: 0;
    /* stylelint-disable-next-line no-descending-specificity */ }
    .the-home-banner--animate-background span {
      min-width: 100%;
      background-repeat: repeat-x !important;
      background-size: contain !important; }
    .the-home-banner--animate-background * {
      height: 100%; }

@-webkit-keyframes banner {
  from {
    transform: translateX(0%); }
  to {
    transform: translateX(-100%); } }

@keyframes banner {
  from {
    transform: translateX(0%); }
  to {
    transform: translateX(-100%); } }

.the-home-slider {
  position: relative; }
  .the-home-slider .glide > header {
    z-index: 2;
    margin: 8px 16px;
    text-align: left; }
    @media (min-width: 575px) {
      .the-home-slider .glide > header {
        margin: 16px 24px; } }
    @media (min-width: 768px) {
      .the-home-slider .glide > header {
        position: absolute;
        bottom: 6rem;
        width: 100%;
        margin: 0;
        text-align: center;
        /* stylelint-disable-next-line max-nesting-depth, selector-max-compound-selectors */ }
        .the-home-slider .glide > header .the-home-header__link {
          margin-right: auto;
          margin-left: auto; } }
  .the-home-slider .glide__bullets {
    z-index: 1;
    margin: 0 16px; }
    @media (min-width: 768px) {
      .the-home-slider .glide__bullets {
        position: absolute;
        bottom: 64px;
        z-index: 1;
        justify-content: center;
        width: 100%;
        margin: 0; } }
  .the-home-slider .glide__bullet {
    width: 0.375rem;
    height: 0.375rem;
    background: black;
    opacity: 0.3;
    /* stylelint-disable-next-line max-nesting-depth */ }
    @media (min-width: 1025px) {
      .the-home-slider .glide__bullet {
        width: 0.5rem;
        height: 0.5rem;
        margin: 0 4px; } }
    .the-home-slider .glide__bullet--active {
      opacity: 1; }

.the-home-slider-and-text {
  display: flex;
  flex-flow: row wrap;
  padding: 32px 16px; }
  @media (min-width: 900px) {
    .the-home-slider-and-text {
      padding-bottom: 5vw; } }
  @media (min-width: 1025px) {
    .the-home-slider-and-text {
      align-items: center;
      justify-content: center;
      padding: 0;
      padding-bottom: 5vw;
      text-align: left; } }
  @media (min-width: 1280px) {
    .the-home-slider-and-text {
      padding-top: 80px; } }
  .the-home-slider-and-text .btn {
    /* stylelint-disable */
    --uses-typography: 'the-home-arrow-btn';
    font-size: 1.125rem;
    font-weight: 100;
    /* stylelint-enable */
    color: black; }
    @media (min-width: 575px) {
      .the-home-slider-and-text .btn {
        font-size: 0.875rem; } }
    @media (min-width: 768px) {
      .the-home-slider-and-text .btn {
        font-size: calc(0.00608 * 100vw + 9.33333px); } }
    @media (min-width: 1920px) {
      .the-home-slider-and-text .btn {
        font-size: 1.3125rem; } }
  .the-home-slider-and-text .glide__arrow-count {
    /* stylelint-disable */
    --uses-typography: 'the-home-arrow-count';
    font-family: "EBGaramond", georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0;
    /* stylelint-enable */
    color: black; }
    @media (min-width: 575px) {
      .the-home-slider-and-text .glide__arrow-count {
        font-size: 0.875rem; } }
    @media (min-width: 768px) {
      .the-home-slider-and-text .glide__arrow-count {
        font-size: calc(0.00608 * 100vw + 9.33333px); } }
    @media (min-width: 1920px) {
      .the-home-slider-and-text .glide__arrow-count {
        font-size: 1.3125rem; } }

.the-home-layout-columns {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  padding-right: 24px; }
  @media (min-width: 575px) {
    .the-home-layout-columns {
      padding-left: 32px;
      padding-right: 32px; } }
  @media (min-width: 1025px) {
    .the-home-layout-columns {
      padding-left: 160px;
      padding-right: 160px; } }
  @media (min-width: 1920px) {
    .the-home-layout-columns {
      padding-left: calc(2vw + 160px);
      padding-right: calc(2vw + 160px); } }
  .the-home-layout-columns > header {
    z-index: 2;
    flex-basis: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    margin: 0;
    text-align: left; }
    @media (min-width: 575px) {
      .the-home-layout-columns > header {
        padding-top: 16px;
        padding-bottom: 16px; } }
    @media (min-width: 1920px) {
      .the-home-layout-columns > header {
        padding-top: 24px;
        padding-bottom: 24px; } }
  .the-home-layout-columns__container {
    display: flex;
    flex-basis: 100%;
    flex-direction: row;
    justify-content: space-between; }
  .the-home-layout-columns__column {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
    box-sizing: content-box; }
  .the-home-layout-columns--2columns .the-home-layout-columns__column {
    flex-basis: 50%;
    flex-shrink: 1; }
  .the-home-layout-columns--3columns {
    padding: 0 8px; }
    @media (min-width: 1025px) {
      .the-home-layout-columns--3columns {
        padding-left: 160px;
        padding-right: 160px; } }
    @media (min-width: 1920px) {
      .the-home-layout-columns--3columns {
        padding-left: calc(2vw + 160px);
        padding-right: calc(2vw + 160px); } }
    .the-home-layout-columns--3columns > header {
      padding: 32px 8px 8px; }
      @media (min-width: 1025px) {
        .the-home-layout-columns--3columns > header {
          padding-left: 0;
          padding-right: 0; } }
      @media (min-width: 1920px) {
        .the-home-layout-columns--3columns > header {
          padding: 32px 0 16px; } }
    .the-home-layout-columns--3columns .the-home-layout-columns__column {
      flex-basis: 33.3333%;
      flex-shrink: 1; }

.the-home-layout3columns {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-evenly;
  padding: 0 0 48px; }
  @media (min-width: 768px) {
    .the-home-layout3columns {
      padding: 0 0 48px; } }
  @media (min-width: 769px) and (max-width: 810px) {
    .the-home-layout3columns {
      flex-flow: wrap;
      padding: 0 0 48px; } }
  @media (min-width: 811px) {
    .the-home-layout3columns {
      flex-flow: row nowrap;
      padding: 0 0 48px; } }
  @media (min-width: 810px) {
    .the-home-layout3columns .the-home__figure-base {
      overflow: visible;
      overflow: initial; } }
  .the-home-layout3columns header h3 {
    /* stylelint-disable */
    --uses-typography: 'the-home__3-colums-header-h3';
    font-family: "EBGaramond", georgia, serif;
    font-size: 1.125rem;
    font-weight: 700;
    font-style: italic;
    /* stylelint-enable */
    padding-right: 0.125rem; }
    @media (min-width: 810px) {
      .the-home-layout3columns header h3 {
        font-weight: 600; } }
    @media (min-width: 769px) and (max-width: 810px) {
      .the-home-layout3columns header h3 {
        font-size: 0.875rem; } }
    @media (min-width: 811px) {
      .the-home-layout3columns header h3 {
        font-size: calc(0.00631 * 100vw + 8.89189px); } }
    @media (min-width: 1920px) {
      .the-home-layout3columns header h3 {
        font-size: 1.3125rem; } }
  .the-home-layout3columns header h2 {
    /* stylelint-disable */
    --uses-typography: 'the-home__3-colums-header-h2';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    /* stylelint-enable */
    padding-right: 0.125rem; }
    @media (min-width: 769px) and (max-width: 810px) {
      .the-home-layout3columns header h2 {
        font-size: 1.5rem; } }
    @media (min-width: 811px) {
      .the-home-layout3columns header h2 {
        font-size: calc(0.01081 * 100vw + 15.24324px);
        letter-spacing: 0.0625rem; } }
    @media (min-width: 1920px) {
      .the-home-layout3columns header h2 {
        font-size: 2.25rem; } }
  .the-home-layout3columns .link-home {
    display: inline-block;
    margin-top: 12px;
    font-style: normal; }
    @media (min-width: 769px) and (max-width: 810px) {
      .the-home-layout3columns .link-home {
        font-size: 0.75rem; } }
    @media (min-width: 811px) {
      .the-home-layout3columns .link-home {
        margin-top: 8px;
        font-size: calc(0.0036 * 100vw + 9.08108px); } }
    @media (min-width: 1920px) {
      .the-home-layout3columns .link-home {
        font-size: 1rem; } }

.the-home-layout3columns__column-1 {
  margin-right: 16px;
  margin-left: 16px; }
  @media (min-width: 769px) and (max-width: 810px) {
    .the-home-layout3columns__column-1 {
      width: 29.1%;
      margin: 0 13.95%; } }
  @media (min-width: 811px) {
    .the-home-layout3columns__column-1 {
      display: inline-block;
      width: 18.23%;
      margin-right: 0;
      margin-left: 8.33%; } }
  .the-home-layout3columns__column-1 figure {
    padding-right: calc(0.34097 * 100vw + -127.8626px);
    padding-left: calc(0.34097 * 100vw + -127.8626px); }
    @media (min-width: 768px) {
      .the-home-layout3columns__column-1 figure {
        padding: 0; } }
  .the-home-layout3columns__column-1 header {
    position: absolute;
    z-index: 1;
    margin: 0;
    padding: 16px 0 0 16px; }
    @media (min-width: 375px) {
      .the-home-layout3columns__column-1 header {
        padding: 16px 0 0 16px; } }
    @media (min-width: 769px) and (max-width: 810px) {
      .the-home-layout3columns__column-1 header {
        padding: 24px 0 0 1.125rem; } }
    @media (min-width: 811px) {
      .the-home-layout3columns__column-1 header {
        padding: 32px 0 0 24px; } }
  @media (min-width: 769px) and (max-width: 810px) {
    .the-home-layout3columns__column-1 header h3 {
      line-height: 1.09375rem; } }
  @media (min-width: 811px) {
    .the-home-layout3columns__column-1 header h3 {
      line-height: calc(0.00788 * 100vw + 11.11486px); } }
  @media (min-width: 1920px) {
    .the-home-layout3columns__column-1 header h3 {
      line-height: 1.64062rem; } }
  .the-home-layout3columns__column-1 header h2 {
    line-height: 2.1875rem; }
    @media (min-width: 769px) and (max-width: 810px) {
      .the-home-layout3columns__column-1 header h2 {
        font-size: 1.0625rem;
        line-height: 1.5625rem; } }
    @media (min-width: 811px) {
      .the-home-layout3columns__column-1 header h2 {
        font-size: calc(0.01712 * 100vw + 3.13514px);
        line-height: calc(0.01802 * 100vw + 10.40541px); } }
    @media (min-width: 1920px) {
      .the-home-layout3columns__column-1 header h2 {
        font-size: 2.25rem;
        line-height: 2.8125rem; } }
  .the-home-layout3columns__column-1 picture {
    position: relative;
    display: block; }
    .the-home-layout3columns__column-1 picture::before {
      display: block;
      width: 0;
      padding-bottom: 150%;
      content: ''; }
    .the-home-layout3columns__column-1 picture > img,
    .the-home-layout3columns__column-1 picture > .img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: 50% 50%;
         object-position: 50% 50%; }
  .the-home-layout3columns__column-1 .link-home {
    position: absolute;
    bottom: 16px;
    margin-left: 16px;
    /*
    &::before {
      display: none;
    }
    */ }
    @media (min-width: 811px) {
      .the-home-layout3columns__column-1 .link-home {
        bottom: 32px;
        margin-left: 24px; } }

.the-home-layout3columns__column-2 {
  margin: 32px 16px 0 16px; }
  @media (min-width: 769px) and (max-width: 810px) {
    .the-home-layout3columns__column-2 {
      width: 29%;
      margin: 0 13.95% 0 0; } }
  @media (min-width: 811px) {
    .the-home-layout3columns__column-2 {
      display: inline-block;
      width: 16.15%;
      margin: 0 11.2% 0 8.33%; } }
  .the-home-layout3columns__column-2 header {
    margin: 0; }
    @media (min-width: 768px) {
      .the-home-layout3columns__column-2 header {
        margin: 0 0 16px 0; } }
    @media (min-width: 769px) and (max-width: 810px) {
      .the-home-layout3columns__column-2 header {
        margin: 0 0 1.25rem 0; } }
    @media (min-width: 811px) {
      .the-home-layout3columns__column-2 header {
        margin: 0 0 8px 0; } }
  @media (min-width: 769px) and (max-width: 810px) {
    .the-home-layout3columns__column-2 header h3 {
      line-height: calc(0.00788 * 100vw + 11.11486px); } }
  @media (min-width: 811px) {
    .the-home-layout3columns__column-2 header h3 {
      line-height: 1.64062rem; } }
  @media (min-width: 1920px) {
    .the-home-layout3columns__column-2 header h3 {
      line-height: 1.64062rem; } }
  .the-home-layout3columns__column-2 header h2 {
    line-height: 2.1875rem; }
    @media (min-width: 769px) and (max-width: 810px) {
      .the-home-layout3columns__column-2 header h2 {
        line-height: 1.95312rem; } }
    @media (min-width: 811px) {
      .the-home-layout3columns__column-2 header h2 {
        line-height: calc(0.01239 * 100vw + 21.21622px); } }
    @media (min-width: 1920px) {
      .the-home-layout3columns__column-2 header h2 {
        line-height: 2.8125rem; } }
  .the-home-layout3columns__column-2 figure {
    overflow: visible; }
  .the-home-layout3columns__column-2 picture {
    position: relative;
    display: block;
    margin: 8px 0 0 5%; }
    .the-home-layout3columns__column-2 picture::before {
      display: block;
      width: 0;
      padding-bottom: 56.25%;
      content: ''; }
    .the-home-layout3columns__column-2 picture > img,
    .the-home-layout3columns__column-2 picture > .img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: 50% 50%;
         object-position: 50% 50%; }
    @media (min-width: 769px) {
      .the-home-layout3columns__column-2 picture {
        margin: 1.25rem 0 0; } }
    @media (min-width: 811px) {
      .the-home-layout3columns__column-2 picture {
        margin-top: 8px; } }
  .the-home-layout3columns__column-2 img {
    margin-left: 16px; }
    @media (min-width: 1025px) {
      .the-home-layout3columns__column-2 img {
        margin-left: 0; } }

.the-home-layout3columns__column-3 {
  margin: 32px 0 0 16px; }
  @media (min-width: 769px) and (max-width: 810px) {
    .the-home-layout3columns__column-3 {
      width: 40%;
      margin-right: 30%;
      margin-left: 30%; } }
  @media (min-width: 811px) {
    .the-home-layout3columns__column-3 {
      display: inline-block;
      width: 29.43%;
      margin-top: 0;
      margin-right: 8.33%; } }
  .the-home-layout3columns__column-3 header {
    margin: 0 0 8px 0; }
    @media (min-width: 768px) {
      .the-home-layout3columns__column-3 header {
        margin: 0 0 16px 0; } }
    @media (min-width: 769px) and (max-width: 810px) {
      .the-home-layout3columns__column-3 header {
        margin: 0 0 0.5625rem 0; } }
    @media (min-width: 811px) {
      .the-home-layout3columns__column-3 header {
        margin: 0 0 8px 8px; } }
  @media (min-width: 769px) {
    .the-home-layout3columns__column-3 header h3 {
      line-height: 1.64062rem; } }
  .the-home-layout3columns__column-3 header h2 {
    line-height: 2.1875rem; }
    @media (min-width: 769px) and (max-width: 810px) {
      .the-home-layout3columns__column-3 header h2 {
        line-height: 1.95312rem; } }
    @media (min-width: 811px) {
      .the-home-layout3columns__column-3 header h2 {
        line-height: calc(0.01239 * 100vw + 21.21622px); } }
    @media (min-width: 1920px) {
      .the-home-layout3columns__column-3 header h2 {
        line-height: 2.8125rem; } }
  .the-home-layout3columns__column-3 img {
    width: 100vw;
    max-width: 100vw;
    margin-top: 0;
    margin-left: -16px; }
    @media (min-width: 769px) {
      .the-home-layout3columns__column-3 img {
        width: 100%;
        max-width: 100%;
        margin: 0 0 0 2.1875rem; } }
    @media (min-width: 811px) {
      .the-home-layout3columns__column-3 img {
        margin: 0 0 0 32px; } }
  .the-home-layout3columns__column-3 figure {
    overflow: unset; }
    @media (min-width: 769px) {
      .the-home-layout3columns__column-3 figure {
        overflow: hidden; } }
  .the-home-layout3columns__column-3__hidden {
    display: none; }
    @media (min-width: 1025px) {
      .the-home-layout3columns__column-3__hidden {
        display: inline-block;
        width: 29.43%;
        margin: 0 8.33% 0 16px; } }

.the-home__module-06-silueteado {
  position: relative;
  padding: 32px 0; }
  @media (min-width: 1025px) {
    .the-home__module-06-silueteado {
      padding: 0 0 32px; } }
  @media (min-width: 900px) {
    .the-home__module-06-silueteado figure {
      position: relative; } }
  .the-home__module-06-silueteado img {
    padding: 0 12%; }
    @media (min-width: 768px) {
      .the-home__module-06-silueteado img {
        padding: 0 30%; } }
  .the-home__module-06-silueteado header {
    width: auto;
    margin: 56px 14px 0;
    text-align: left; }
    @media (min-width: 768px) {
      .the-home__module-06-silueteado header {
        margin-left: 32%; } }
    @media (min-width: 900px) {
      .the-home__module-06-silueteado header {
        position: absolute;
        bottom: 5.5rem;
        margin: 0;
        margin-left: 32%; }
        .the-home__module-06-silueteado header h2,
        .the-home__module-06-silueteado header h3 {
          color: white; } }
    @media (min-width: 1025px) {
      .the-home__module-06-silueteado header {
        position: absolute;
        top: 3.75rem;
        margin-left: 17%; }
        .the-home__module-06-silueteado header h2,
        .the-home__module-06-silueteado header h3 {
          color: black; } }
    .the-home__module-06-silueteado header h2,
    .the-home__module-06-silueteado header h3 {
      color: black; }
    .the-home__module-06-silueteado header h2 {
      /* stylelint-disable */
      --uses-typography: 'the-home-title-big';
      font-weight: 900;
      font-size: 2.125rem;
      /* stylelint-enable */ }
      @media (min-width: 1280px) {
        .the-home__module-06-silueteado header h2 {
          font-size: 2.625rem; } }
      @media (min-width: 1440px) {
        .the-home__module-06-silueteado header h2 {
          font-size: 3rem; } }
      @media (min-width: 1920px) {
        .the-home__module-06-silueteado header h2 {
          font-size: 3.75rem; } }
    .the-home__module-06-silueteado header h3 {
      /* stylelint-disable */
      --uses-typography: 'the-home-subtitle-big';
      font-family: "EBGaramond", georgia, serif;
      font-size: 1.125rem;
      font-weight: 700;
      font-style: italic;
      /* stylelint-enable */ }
      @media (min-width: 810px) {
        .the-home__module-06-silueteado header h3 {
          font-weight: 600; } }
      @media (min-width: 1440px) {
        .the-home__module-06-silueteado header h3 {
          font-size: 1.375rem; } }
      @media (min-width: 1920px) {
        .the-home__module-06-silueteado header h3 {
          font-size: 1.5625rem; } }
  .the-home__module-06-silueteado .glide__bullet {
    color: black;
    background: black; }
  .the-home__module-06-silueteado .glide__bullets {
    position: absolute;
    bottom: 0;
    z-index: 1;
    justify-content: center;
    width: 100%; }

/*
  .glider-contain {
    .glider-slide {
      margin: 0;
      min-width: auto;

      img {
        margin: 0;
        width: 100%;
      }
    }
  }

  .glider-slide {
    margin: 0;

    img {
      width: 100vw;
    }
  }

  .glider-dots {
    z-index: 1;
    float: left;
    position: absolute;
    bottom: 0;
    width: 100%;

    > button:only-child {
      display: none;
    }

    .glider-dot {
      opacity: 0.23;
      width: 8px;
      height: 8px;
      margin-bottom: 20px;
      margin-left: 2px;
      margin-right: 2px;
      color: $color__white;
      background: $color__white;

      &.active {
        opacity: 1;
      }
    }
  }

*/
/*
.experience-component {
  position: relative;

  .title,
  .subtitle {
    text-decoration: none;
    display: block;
    font-style: $font-style__normal;
  }

  p {
    margin: 0;
  }

  .glider-contain {
    .glider-slide {
      margin: 0;
      min-width: auto;

      img {
        margin: 0;
        width: 100%;
      }
    }
  }

  .glider-slide {
    margin: 0;

    img {
      width: 100vw;
    }
  }

  .glider-dots {
    z-index: 1;
    float: left;
    position: absolute;
    bottom: 0;
    width: 100%;

    > button:only-child {
      display: none;
    }

    .glider-dot {
      opacity: 0.23;
      width: 8px;
      height: 8px;
      margin-bottom: 20px;
      margin-left: 2px;
      margin-right: 2px;
      color: $color__white;
      background: $color__white;

      &.active {
        opacity: 1;
      }
    }
  }

  .text-link {
    display: block;
    text-decoration: underline;
    font-style: $font-style__normal;
    margin-top: 16px;
  }

  .module-04-slider {
    .slider__header {
      z-index: 2;
      text-align: center;
      font-stretch: normal;
      line-height: normal;
      letter-spacing: normal;
      color: $color__black;
      margin-bottom: 15px;
      margin-top: 60px;
    }
  }

  .module-06-silueteado {
    margin: 60px 0;

    img {
      padding: 0 12%;
    }

    .slider__header {
      margin: 56px 14px 0;
      text-align: left;
      z-index: 2;
      font-stretch: normal;
      line-height: normal;
      letter-spacing: normal;
      color: $color__black;
      margin-bottom: 15px;
    }

    .glider-dots {
      bottom: 0;

      > button:only-child {
        display: none;
      }

      .glider-dot {
        margin-bottom: 0;
        color: $color__black;
        background: $color__black;
      }
    }
  }
}

@include tablet {
  .experience-component {
    .module-06-silueteado {
      img {
        padding: 0 30%;
      }

      .slider__header {
        color: $color__black;
        margin-left: 30vw;
      }
    }
  }
}

@include desktop {
  .experience-component {
    .slider__header {
      color: $color__white;
      position: absolute;
      text-align: center;
      width: 100vw;
      bottom: 54px;
    }

    .glider-dots {
      bottom: 24px;
    }

    .glider-contain {
      .arrow--prev,
      .arrow--next {
        margin-bottom: 1rem;
        display: block;
        position: absolute;
        top: 0;
        width: 10%;
        bottom: 0;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        @include byl-svg($arrow--right);

        &:hover {
          cursor: pointer;
          opacity: 1;
        }
      }

      .arrow--prev {
        float: left;
        left: 0;

        &::before {
          transform: rotate(180deg);
        }
      }

      .arrow--next {
        float: right;
        right: 0;
      }
    }

    .module-04-slider {
      margin-top: auto;

      .slider__header {
        a {
          color: $color__white;
        }
      }
    }

    .module-06-silueteado {
      .slider__header {
        top: 60px;
        margin-left: 17vw;
      }

      .glider-contain {
        .arrow--prev,
        .arrow--next {
          @include byl-svg($arrow--right, #000);
        }
      }
    }
  }
}

@include desktop-1280 {
  .experience-component {
    .module-06-silueteado {
      .slider__header {
        margin-left: 20vw;
      }
    }
  }
}

@include desktop-1440 {
  .experience-component {
    .slider__header {
      bottom: 80px;
    }

    .glider-dots {
      bottom: 40px;
    }

    .module-06-silueteado {
      .slider__header {
        margin-left: 16vw;
      }
    }
  }
}

@include desktop-1920 {
  .experience-component {
    .slider__header {
      bottom: 100px;
    }

    .glider-dots {
      bottom: 50px;
    }

    .module-06-silueteado {
      .slider__header {
        margin-left: 17vw;
      }
    }
  }
}

.experience-slides {
  &::-webkit-scrollbar {
    display: none;
  }
}
 */
.the-home-shop-the-look {
  position: relative;
  padding: 32px 0; }
  @media (min-width: 768px) {
    .the-home-shop-the-look {
      padding: 0; } }
  .the-home-shop-the-look header {
    position: relative;
    z-index: 1;
    margin-left: 16px;
    padding-top: 8px;
    line-height: 1.25; }
    @media (min-width: 768px) {
      .the-home-shop-the-look header {
        margin-bottom: -32px;
        margin-left: 8.3vw;
        padding-top: 16px; } }
  .the-home-shop-the-look__container {
    position: relative; }
  @media (max-width: 767px) {
    .the-home-shop-the-look .the-home-custom-slider {
      padding: 0; }
      .the-home-shop-the-look .the-home-custom-slider .custom-slider__items {
        padding-left: 0;
        overflow: hidden;
        /* stylelint-disable selector-max-compound-selectors */
        /* stylelint-enable selector-max-compound-selectors */ }
        .the-home-shop-the-look .the-home-custom-slider .custom-slider__items .custom-slider__item {
          min-width: 100vw;
          text-align: center; }
          .the-home-shop-the-look .the-home-custom-slider .custom-slider__items .custom-slider__item:first-child {
            padding-left: 0; }
          .the-home-shop-the-look .the-home-custom-slider .custom-slider__items .custom-slider__item:last-child {
            padding-right: 0; }
      .the-home-shop-the-look .the-home-custom-slider .the-home-custom-slider__scrollbar {
        display: none; }
      .the-home-shop-the-look .the-home-custom-slider .the-home__image-base {
        height: 350px; } }
  .the-home-shop-the-look .the-home__image-base {
    cursor: pointer; }

.the-home-shop-the-look .modal.show {
  max-height: calc((1vh * 100) - 1px);
  max-height: calc((var(--vh, 1vh) * 100) - 1px);
  background-color: rgba(42, 43, 50, 0.3); }

.the-home-shop-the-look .modal-dialog {
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin-right: 1rem;
  margin-left: 1rem; }
  @media (min-width: 575px) {
    .the-home-shop-the-look .modal-dialog {
      margin-left: calc(0.5 * 100vw + -271.5px);
      margin-right: calc(0.5 * 100vw + -271.5px); } }
  @media (min-width: 1025px) {
    .the-home-shop-the-look .modal-dialog {
      margin-left: 0;
      margin-right: 0; } }

.the-home-shop-the-look .modal-body {
  /* Internet Explorer */
  scrollbar-face-color: #a8a8a8;
  scrollbar-track-color: transparent;
  /* W3C Working Draft */
  scrollbar-color: #a8a8a8 transparent;
  /* stylelint-disable-line property-no-unknown */
  margin: 0;
  padding-right: 24px;
  overflow: auto; }
  .the-home-shop-the-look .modal-body::-webkit-scrollbar-thumb {
    background-color: #a8a8a8;
    border-radius: 0; }
  .the-home-shop-the-look .modal-body::-webkit-scrollbar-track {
    background-color: transparent; }
  .the-home-shop-the-look .modal-body::-webkit-scrollbar {
    width: 9px;
    height: 9px;
    background-color: #ebebeb; }
  .the-home-shop-the-look .modal-body > div {
    min-height: 170px;
    max-height: 100%;
    padding: 16px;
    padding-right: 8px; }
    @media (min-width: 1025px) {
      .the-home-shop-the-look .modal-body > div {
        padding: 8px;
        padding-right: 2.5rem; } }

.the-home-shop-the-look .modal-content {
  display: flex;
  flex-direction: row;
  max-height: calc(100% - 32px);
  padding: 0;
  border: 0;
  border-radius: 0; }
  @media (min-width: 375px) {
    .the-home-shop-the-look .modal-content {
      max-height: calc(100% - 64px); } }
  @media (min-width: 768px) {
    .the-home-shop-the-look .modal-content {
      max-height: 680px; } }
  @media (min-width: 1025px) {
    .the-home-shop-the-look .modal-content {
      max-width: 958px;
      height: calc(100% - 64px); } }

.the-home-shop-the-look .btn-close {
  position: absolute;
  top: 0;
  right: 1px;
  float: right;
  width: 1.125rem;
  height: 1.125rem;
  padding: 16px;
  padding-left: 0;
  background-color: white; }

.the-home-shop-the-look__look-container-popup {
  display: none; }
  @media (min-width: 1025px) {
    .the-home-shop-the-look__look-container-popup {
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42.53vw;
      max-width: 451px; }
      .the-home-shop-the-look__look-container-popup img {
        height: 100%;
        -o-object-fit: contain;
           object-fit: contain; } }
  @media (min-width: 1280px) {
    .the-home-shop-the-look__look-container-popup {
      width: 544px; } }

.the-home-shop-the-look__product-row {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: left;
  min-height: 147px;
  max-height: 216px; }
  @media (min-width: 1280px) {
    .the-home-shop-the-look__product-row {
      max-width: 435px; } }
  .the-home-shop-the-look__product-row:not(:last-child) {
    margin-bottom: 8px; }
  .the-home-shop-the-look__product-row:last-child {
    padding-bottom: 16px; }
  .the-home-shop-the-look__product-row button {
    min-width: auto;
    margin-top: auto;
    margin-right: auto; }
  .the-home-shop-the-look__product-row[data-step='1'] button {
    color: #909090; }
  .the-home-shop-the-look__product-row[data-step='2'] button {
    color: black; }
  .the-home-shop-the-look__product-row figure {
    position: relative;
    display: block;
    min-width: 100px;
    margin: 0;
    padding: 0; }
    .the-home-shop-the-look__product-row figure::before {
      display: block;
      width: 0;
      padding-bottom: 150%;
      content: ''; }
    .the-home-shop-the-look__product-row figure > img,
    .the-home-shop-the-look__product-row figure > .img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: 50% 50%;
         object-position: 50% 50%; }
    @media (min-width: 575px) {
      .the-home-shop-the-look__product-row figure {
        min-width: 143px; } }
  .the-home-shop-the-look__product-row .link-figure {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%; }

.the-home-shop-the-look__product-info {
  display: flex;
  flex-flow: column nowrap;
  max-width: 77%;
  padding: 16px 8px; }
  @media (min-width: 575px) {
    .the-home-shop-the-look__product-info {
      padding-bottom: 32px; } }

.the-home-shop-the-look__product-name h2 {
  /* stylelint-disable */
  --uses-typography: 'the-home__shop-the-look-product-name';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  /* stylelint-enable */ }
  @media (min-width: 575px) {
    .the-home-shop-the-look__product-name h2 {
      font-size: 0.875rem; } }

.the-home-shop-the-look__product-name .link {
  font-weight: inherit; }

.the-home-shop-the-look__product-color {
  /* stylelint-disable */
  --uses-typography: 'the-home__shop-the-look-product-color';
  /* stylelint-enable */
  padding-top: 0.25rem; }

.the-home-shop-the-look__product-price {
  /* stylelint-disable */
  --uses-typography: 'the-home__shop-the-look-product-price';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  /* stylelint-enable */
  padding-top: 8px; }
  @media (min-width: 575px) {
    .the-home-shop-the-look__product-price {
      font-size: 0.875rem; } }

.the-home-shop-the-look__product-size {
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 8px 0 16px; }
  @media (min-width: 575px) {
    .the-home-shop-the-look__product-size {
      padding-top: 12px; } }
  .the-home-shop-the-look__product-size-container {
    margin-top: 8px;
    margin-right: 24px;
    padding-bottom: 0;
    line-height: 1;
    /* stylelint-disable-next-line */ }
    @media (min-width: 575px) {
      .the-home-shop-the-look__product-size-container {
        margin-top: 0;
        margin-right: 16px;
        padding-bottom: 8px; } }
    .the-home-shop-the-look__product-size-container + .the-home-shop-the-look__product-size-container {
      margin-left: 0; }
    .the-home-shop-the-look__product-size-container:last-child {
      margin-right: 0;
      padding-right: 0; }
      @media (min-width: 575px) {
        .the-home-shop-the-look__product-size-container:last-child {
          padding-right: 4px; } }
    .the-home-shop-the-look__product-size-container:first-child {
      padding-left: 0; }
      @media (min-width: 575px) {
        .the-home-shop-the-look__product-size-container:first-child {
          padding-left: 4px; } }
  .the-home-shop-the-look__product-size .the-product-details-size-selector__size-label {
    /* stylelint-disable */
    --uses-typography: 'the-home__shop-the-look-product-size';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    /* stylelint-enable */ }
    @media (min-width: 575px) {
      .the-home-shop-the-look__product-size .the-product-details-size-selector__size-label {
        font-size: 0.875rem; } }
  .the-home-shop-the-look__product-size .size-box {
    min-width: auto; }
  .the-home-shop-the-look__product-size-input:checked + .size-box .the-home-shop-the-look__product-size-label {
    text-decoration: underline; }
  .the-home-shop-the-look__product-size::after, .the-home-shop-the-look__product-size::before {
    content: none; }

.the-home-shop-the-look__product-add {
  /* stylelint-disable */
  --uses-typography: 'the-home__shop-the-look-product-add';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  /* stylelint-enable */ }
  @media (min-width: 575px) {
    .the-home-shop-the-look__product-add {
      font-size: 0.875rem; } }
  .the-home-shop-the-look__product-add.sould-out {
    color: red; }
  .the-home-shop-the-look__product-add.coming-soon {
    color: #909090; }

.the-home-shop-the-look .size-box .strike {
  background: black; }
  @media (min-width: 575px) {
    .the-home-shop-the-look .size-box .strike {
      top: 50%; } }

.the-home-floating-menu {
  position: fixed;
  bottom: calc(24px + 2.8125rem + 1.5rem);
  left: 0.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column; }
  @media (min-width: 575px) {
    .the-home-floating-menu {
      bottom: calc(32px + 3.125rem + 1.5rem); } }
  @media (min-width: 768px) {
    .the-home-floating-menu {
      left: 1.5rem; } }
  @media (min-width: 1025px) {
    .the-home-floating-menu {
      bottom: 8.33%;
      left: 2rem; } }
  .the-home-floating-menu__static {
    bottom: calc(var(--bottom-footer-position) + 1.5rem);
    padding: 0.625rem 0; }
    @media (min-width: 1025px) {
      .the-home-floating-menu__static {
        bottom: calc(var(--bottom-footer-position) + 8.33%); } }
  .the-home-floating-menu__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start; }
  .the-home-floating-menu__title {
    /* stylelint-disable */
    --uses-typography: 'the-home-title-menu';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1.4375rem;
    font-weight: 900;
    font-style: normal;
    /* stylelint-enable */
    padding: 0.125rem 0.375rem; }
    @media (min-width: 1025px) {
      .the-home-floating-menu__title {
        font-size: 1.875rem; } }
    @media (min-width: 1025px) {
      .the-home-floating-menu__title {
        padding: 0.0625rem 0.125rem; } }
  .the-home-floating-menu__subtitle {
    /* stylelint-disable */
    --uses-typography: 'the-home-subtitle-menu';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1rem;
    font-weight: 900;
    font-style: normal;
    /* stylelint-enable */
    padding: 0.125rem 0.375rem; }
    @media (min-width: 1025px) {
      .the-home-floating-menu__subtitle {
        font-size: 1.125rem; } }
    @media (min-width: 1025px) {
      .the-home-floating-menu__subtitle {
        padding: 0.0625rem 0.125rem; } }
  .the-home-floating-menu__category {
    height: 0;
    padding-left: 1.25rem;
    overflow: hidden;
    transition: height 0.5s; }
    .the-home-floating-menu__category .image-cropper {
      display: none; }
  .the-home-floating-menu__dropdown {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: -0.5rem;
    padding-top: 0.625rem; }
    @media (min-width: 1025px) {
      .the-home-floating-menu__dropdown {
        margin-top: -0.25rem;
        padding-top: 1.125rem; } }
  .the-home-floating-menu__link {
    /* stylelint-disable */
    --uses-typography: 'the-home-category-menu';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    text-decoration: none;
    /* stylelint-enable */
    margin-top: 0.5rem;
    padding: 0.0625rem;
    padding-right: 0.25rem; }
    @media (min-width: 1025px) {
      .the-home-floating-menu__link {
        font-weight: 900; } }
    @media (min-width: 1025px) {
      .the-home-floating-menu__link {
        margin-top: 0.25rem;
        padding-right: 0.375rem; } }
    .the-home-floating-menu__link::before {
      content: '> '; }
  .the-home-floating-menu.show .dropdown-category {
    height: var(--height-dropdown-category); }

/* stylelint-disable */
.the-home__module-05-banner-newsletter {
  padding: 10px 80px 45px; }
  .the-home__module-05-banner-newsletter__title {
    /* stylelint-disable */
    --uses-typography: 'the-home-title-big';
    font-weight: 900;
    font-size: 2.125rem;
    /* stylelint-enable */ }
    @media (min-width: 1280px) {
      .the-home__module-05-banner-newsletter__title {
        font-size: 2.625rem; } }
    @media (min-width: 1440px) {
      .the-home__module-05-banner-newsletter__title {
        font-size: 3rem; } }
    @media (min-width: 1920px) {
      .the-home__module-05-banner-newsletter__title {
        font-size: 3.75rem; } }
  .the-home__module-05-banner-newsletter__body {
    padding-top: 10px; }
    .the-home__module-05-banner-newsletter__body > .newsletter-form {
      display: block;
      max-width: none; }
      .the-home__module-05-banner-newsletter__body > .newsletter-form .subscribe-email {
        float: right;
        margin-top: 0;
        margin-right: 20px; }

.the-home-product-carousel {
  position: relative;
  /* stylelint-disable-next-line max-nesting-depth, selector-max-compound-selectors */ }
  .the-home-product-carousel header {
    position: relative;
    z-index: 1;
    margin-bottom: -16px;
    margin-left: 16px;
    padding-top: 8px;
    line-height: 1.25; }
    @media (min-width: 575px) {
      .the-home-product-carousel header {
        margin-bottom: -32px;
        margin-left: 8.3vw;
        padding-top: 16px; } }
  @media (max-width: 767px) {
    .the-home-product-carousel img {
      max-height: 350px; } }
  .the-home-product-carousel .the-home-custom-slider .custom-slider__item > .the-home-product-free-text {
    padding: 4px 0 0; }
    @media (min-width: 768px) {
      .the-home-product-carousel .the-home-custom-slider .custom-slider__item > .the-home-product-free-text {
        padding-top: 12px; } }

.the-home-category-featured__products {
  position: relative; }

.the-home-custom-slider {
  position: relative;
  padding-bottom: 16px;
  /* stylelint-disable max-nesting-depth */
  /* stylelint-enable max-nesting-depth */ }
  @media (min-width: 575px) {
    .the-home-custom-slider {
      padding-bottom: 64px; } }
  .the-home-custom-slider .custom-slider__items {
    overflow: -moz-scrollbars-none;
    list-style: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    padding-left: 64px;
    overflow-x: scroll;
    overflow-y: hidden; }
    .the-home-custom-slider .custom-slider__items::-webkit-scrollbar {
      display: none; }
    @media (min-width: 575px) {
      .the-home-custom-slider .custom-slider__items {
        padding-left: calc(8.3vw + 80px); } }
    .the-home-custom-slider .custom-slider__items .custom-slider__item {
      min-width: -webkit-max-content;
      min-width: -moz-max-content;
      min-width: max-content; }
      .the-home-custom-slider .custom-slider__items .custom-slider__item:first-child {
        padding-left: 0; }
      .the-home-custom-slider .custom-slider__items .custom-slider__item:last-child {
        padding-right: 24px; }
    .the-home-custom-slider .custom-slider__items img {
      width: auto;
      height: 75vh; }
  .the-home-custom-slider .the-home-free-text {
    min-width: 100%;
    max-width: -webkit-min-content;
    max-width: -moz-min-content;
    max-width: min-content; }
  .the-home-custom-slider__scrollbar {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    width: calc(100% - 3.5rem);
    height: 0.0625rem;
    margin: 0 1.75rem;
    background-color: rgba(0, 0, 0, 0.2); }
    @media (min-width: 575px) {
      .the-home-custom-slider__scrollbar {
        float: right;
        width: 53.59%;
        height: 0.1875rem;
        margin: 0.9375rem 8.33% 1.25rem 0; } }
    .the-home-custom-slider__scrollbar-progress {
      width: 0;
      min-width: 1%;
      height: 0.0625rem;
      background-color: black;
      transition: width 0.4s; }
      @media (min-width: 575px) {
        .the-home-custom-slider__scrollbar-progress {
          height: 0.1875rem; } }
  @media (min-width: 1025px) {
    .the-home-custom-slider__scroll-hover {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 5%; }
      .the-home-custom-slider__scroll-hover--left::after, .the-home-custom-slider__scroll-hover--right::after {
        position: absolute;
        top: 50%;
        width: 1.77vw;
        max-width: 2.125rem;
        height: 4rem;
        background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 37 63"><g transform="translate(1 1)"><path d="M.831.352L33.21 30.514.83 60.658" stroke="black" fill="none" stroke-width="3"/></g></svg>');
        background-repeat: no-repeat;
        content: ''; }
      .the-home-custom-slider__scroll-hover--left {
        left: 0;
        cursor: w-resize; }
        .the-home-custom-slider__scroll-hover--left::after {
          left: 3rem;
          transform: translateY(-50%) rotateZ(180deg); }
      .the-home-custom-slider__scroll-hover--right {
        right: 0;
        cursor: e-resize; }
        .the-home-custom-slider__scroll-hover--right::after {
          right: 3rem;
          transform: translateY(-50%); }
      .the-home-custom-slider__scroll-hover--hidden {
        display: none; } }
  .the-home-custom-slider.the-home-animations {
    overflow: hidden; }
    @media (max-width: 1024px) {
      .the-home-custom-slider.the-home-animations[data-animation-type='shift'] > div:first-child {
        transform: translateX(100%);
        transform: translateX(var(--animation-distance, 100%)); } }
    @media (min-width: 1025px) {
      .the-home-custom-slider.the-home-animations[data-animation-type-desktop='shift'] > div:first-child {
        transform: translateX(100%);
        transform: translateX(var(--animation-distance-desktop, 100%)); } }
    @media (max-width: 1024px) {
      .the-home-custom-slider.the-home-animations--active[data-animation-type='bounce'] > div:first-child {
        -webkit-animation: bounce-animation 400ms linear 800ms 1;
                animation: bounce-animation 400ms linear 800ms 1;
        -webkit-animation: bounce-animation var(--animation-duration, 400ms) linear var(--animation-delay, 800ms) 1;
                animation: bounce-animation var(--animation-duration, 400ms) linear var(--animation-delay, 800ms) 1; }
      .the-home-custom-slider.the-home-animations--active[data-animation-type='shift'] > div:first-child {
        transition: transform 1000ms linear 0ms;
        transition: transform var(--animation-duration, 1000ms) linear var(--animation-delay, 0ms);
        transform: translateX(0); } }
    @media (min-width: 1025px) {
      .the-home-custom-slider.the-home-animations--active[data-animation-type-desktop='bounce'] > div:first-child {
        -webkit-animation: bounce-animation-desktop 400ms linear 800ms 1;
                animation: bounce-animation-desktop 400ms linear 800ms 1;
        -webkit-animation: bounce-animation-desktop var(--animation-duration-desktop, 400ms) linear var(--animation-delay-desktop, 800ms) 1;
                animation: bounce-animation-desktop var(--animation-duration-desktop, 400ms) linear var(--animation-delay-desktop, 800ms) 1; }
      .the-home-custom-slider.the-home-animations--active[data-animation-type-desktop='shift'] > div:first-child {
        transition: transform 1000ms linear 0ms;
        transition: transform var(--animation-duration-desktop, 1000ms) linear var(--animation-delay-desktop, 0ms);
        transform: translateX(0); } }
    .the-home-custom-slider.the-home-animations > * {
      will-change: transform; }

@-webkit-keyframes bounce-animation {
  0% {
    transform: translateX(0); }
  50% {
    transform: translateX(24px);
    transform: translateX(var(--animation-distance, 24px)); }
  100% {
    transform: translateX(0); } }

@keyframes bounce-animation {
  0% {
    transform: translateX(0); }
  50% {
    transform: translateX(24px);
    transform: translateX(var(--animation-distance, 24px)); }
  100% {
    transform: translateX(0); } }

@-webkit-keyframes bounce-animation-desktop {
  0% {
    transform: translateX(0); }
  50% {
    transform: translateX(60px);
    transform: translateX(var(--animation-distance-desktop, 60px)); }
  100% {
    transform: translateX(0); } }

@keyframes bounce-animation-desktop {
  0% {
    transform: translateX(0); }
  50% {
    transform: translateX(60px);
    transform: translateX(var(--animation-distance-desktop, 60px)); }
  100% {
    transform: translateX(0); } }

.tns-outer {
  padding: 0 !important; }
  .tns-outer [hidden] {
    display: none !important; }
  .tns-outer [aria-controls], .tns-outer [data-action] {
    cursor: pointer; }

.tns-slider {
  transition: all 0s; }
  .tns-slider > .tns-item {
    box-sizing: border-box; }

.tns-horizontal.tns-subpixel {
  white-space: nowrap; }
  .tns-horizontal.tns-subpixel > .tns-item {
    display: inline-block;
    vertical-align: top;
    white-space: normal; }

.tns-horizontal.tns-no-subpixel:after {
  content: '';
  display: table;
  clear: both; }

.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left; }

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%; }

.tns-no-calc {
  position: relative;
  left: 0; }

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px; }
  .tns-gallery > .tns-item {
    position: absolute;
    left: -100%;
    transition: transform 0s, opacity 0s; }
  .tns-gallery > .tns-slide-active {
    position: relative;
    left: auto !important; }
  .tns-gallery > .tns-moving {
    transition: all 0.25s; }

.tns-autowidth {
  display: inline-block; }

.tns-lazy-img {
  transition: opacity 0.6s;
  opacity: 0.6; }
  .tns-lazy-img.tns-complete {
    opacity: 1; }

.tns-ah {
  transition: height 0s; }

.tns-ovh {
  overflow: hidden; }

.tns-visually-hidden {
  position: absolute;
  left: -10000em; }

.tns-transparent {
  opacity: 0;
  visibility: hidden; }

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0; }

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1; }

.tns-vpfix {
  white-space: nowrap; }
  .tns-vpfix > div, .tns-vpfix > li {
    display: inline-block; }

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden; }

.tns-t-ct {
  width: 2333.33333%;
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0; }
  .tns-t-ct:after {
    content: '';
    display: table;
    clear: both; }
  .tns-t-ct > div {
    width: 1.42857%;
    width: calc(100% / 70);
    height: 10px;
    float: left; }

.the-home-tiny-slider {
  overflow: -moz-scrollbars-none;
  list-style: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2px 0 16px 0; }
  .the-home-tiny-slider::-webkit-scrollbar {
    display: none; }
  @media (min-width: 768px) {
    .the-home-tiny-slider {
      display: none; } }
  @media (min-width: 575px) {
    .the-home-tiny-slider {
      padding-bottom: 64px; } }
  .the-home-tiny-slider .the-home__figure-base {
    display: flex;
    justify-content: center; }
  .the-home-tiny-slider .the-home__image-base {
    transition: filter 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
    width: auto;
    height: 91px;
    filter: none; }
  .the-home-tiny-slider .tiny-slider__items {
    white-space: nowrap; }
    .the-home-tiny-slider .tiny-slider__items:not(.tns-slider) {
      overflow: hidden; }
  .the-home-tiny-slider .tiny-slider__item {
    display: inline-block;
    margin-top: 0.46875rem; }
  .the-home-tiny-slider .tiny-slide-active {
    margin-top: 0; }
    .the-home-tiny-slider .tiny-slide-active .the-home__image-base {
      height: 106px; }
  .the-home-tiny-slider__scrollbar {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    width: calc(100% - 32px);
    height: 0.0625rem;
    margin: 0 16px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2); }
    @media (min-width: 575px) {
      .the-home-tiny-slider__scrollbar {
        height: 0.1875rem; } }
    .the-home-tiny-slider__scrollbar-progress {
      position: absolute;
      top: 0;
      min-width: 100%;
      height: 100%;
      background-color: black;
      transform: scaleX(0);
      transform-origin: left; }
    .the-home-tiny-slider__scrollbar-progress--custom {
      transform-origin: right; }

.the-home-icons-flow {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none; }
  .the-home-icons-flow .icon {
    position: absolute;
    z-index: 9999;
    width: auto; }

.the-home-free-text {
  position: relative;
  padding: 16px 16px;
  line-height: 1.25; }
  @media (min-width: 768px) {
    .the-home-free-text {
      padding: 32px 8.3%; } }

.the-home-recommended-products {
  position: relative; }
  .the-home-recommended-products__products {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 0.125rem;
    gap: 0.125rem; }
    @media (min-width: 1025px) {
      .the-home-recommended-products__products {
        flex-wrap: nowrap;
        grid-gap: 0.25rem;
        gap: 0.25rem; } }
    .the-home-recommended-products__products-image {
      flex: 0 0 calc(25% - 2px); }
      @media (min-width: 1025px) {
        .the-home-recommended-products__products-image {
          flex-basis: calc(12.5% - 4px); } }

/*# sourceMappingURL=the-home.css.map*/