/** Shopify CDN: Minification failed

Line 1202:0 All "@import" rules must come first
Line 1203:0 All "@import" rules must come first

**/
:root {
  /*
  * ======================================================
  *
  * Font Families
  *
  * ======================================================
  */
  --font-primary-family: 'Poppins', Helvetica, Arial, sans-serif;

  /*
  * ======================================================
  *
  * Font Weights
  *
  * ======================================================
  */
  --bold: 700;
  --semibold: 600;
  --medium: 500;
  --regular: 400;

  /*
  * ======================================================
  *
  * Colors
  *
  * ======================================================
  */
  --color-link: #677e37;
  --color-primary-1: #0d4766;
  --color-primary-2: #677e37;
  --color-primary-3: #4e423a;
  --color-secondary-1: #dac9b5;
  --color-secondary-2: #f7f4f0;

  --color-hip-joint: #c58b35;
  --color-skin-coat: #9a4d3e;
  --color-paw: #30236e;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray: #424848;
  --color-bullet: #0D4766;
  --color--light-brown-rgb: rgba(78, 66, 58, 1);

  /*
  * ======================================================
  *
  * Font Sizes
  *
  * ======================================================
  */
  /* No need of units since it will be used in calc */
  --h1-font-size: 30;
  --h2-font-size: 26;
  --h3-font-size: 24;
  --h4-font-size: 18;
  --h5-font-size: 16;
  --body-font-size: 16;
  --small-font-size: 14;

  /*
  * ======================================================
  *
  * VW Calculations
  *
  * ======================================================
  */
  --screen-bp: 375;
  /*
  Ex.
  calc((16vw * 100) / var(--screen-bp));
  */

  /*
  * ======================================================
  *
  * Animations
  *
  * ======================================================
  */
  --duration-short: 100ms;
  --duration-default: 200ms;
  --duration-announcement-bar: 250ms;
  --duration-medium: 300ms;
  --duration-long: 500ms;
  --duration-extra-long: 600ms;
  --duration-extra-longer: 750ms;
  --duration-extended: 3s;
  --ease-out-slow: cubic-bezier(0, 0, 0.3, 1);
  --animation-slide-in: slideIn var(--duration-extra-long) var(--ease-out-slow) forwards;
  --animation-fade-in: fadeIn var(--duration-extra-long) var(--ease-out-slow);
}

@media (min-width: 768px) {
  :root {
    /*
    * ======================================================
    *
    * Font Sizes
    *
    * ======================================================
    */
    /* No need of units since it will be used in calc */
    --h1-font-size: 40;
    --h2-font-size: 40;
    --h3-font-size: 32;
    --h4-font-size: 24;
    --h5-font-size: 16;
    --body-font-size: 18;
    --small-font-size: 14;

    /*
    * ======================================================
    *
    * VW Calculations
    *
    * ======================================================
    */
    --screen-bp: 1440;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  word-break: break-word;
}

h1 {
  font-size: calc((var(--h1-font-size) * 100vw) / var(--screen-bp));
  font-weight: var(--semibold);
}

h2 {
  font-size: calc((var(--h2-font-size) * 100vw) / var(--screen-bp));
  font-weight: var(--medium);
}

h3 {
  font-size: calc((var(--h3-font-size) * 100vw) / var(--screen-bp));
  font-weight: var(--semibold);
}

h4 {
  font-size: calc((var(--h4-font-size) * 100vw) / var(--screen-bp));
  font-weight: var(--semibold);
}

h5 {
  font-size: calc((var(--h5-font-size) * 100vw) / var(--screen-bp));
  font-weight: var(--regular);
}

body {
  font-size: calc((var(--body-font-size) * 100vw) / var(--screen-bp));
}

small {
  font-size: calc((var(--small-font-size) * 100vw) / var(--screen-bp));
}

/* Base */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
}

body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100%;
  margin: 0;
  line-height: calc(1 + 0.8 / 16);
  font-family: var(--font-primary-family);
  color: var(--color-primary-3);
  font-weight: var(--regular);
}

blockquote {
  font-style: italic;
}

table:not([class]) {
  table-layout: fixed;
  border-collapse: collapse;
  border-style: hidden;
  /* draws the table border  */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.link,
.customer a,
a {
  cursor: pointer;
  display: inline-block;
  border: none;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  background-color: transparent;
  font-family: inherit;
  color: var(--color-primary-2);
  transition: all var(--duration-short) ease;
}

hr {
  border: none;
  height: 0.1rem;
  display: block;
  margin: 5rem 0;
}

ul {
  list-style: disc;
}

strong {
  font-weight: var(--bold);
}

@media screen and (min-width: 750px) {
  hr {
    margin: 7rem 0;
  }
}

details>* {
  box-sizing: border-box;
}

@media (prefers-reduced-motion) {
  .motion-reduce {
    transition: none !important;
    animation: none !important;
  }
}

.underlined-link,
.customer a,
.inline-richtext a,
a {
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness ease 100ms;
}

.inline-richtext a,
.rte.inline-richtext a {
  color: currentColor;
}

.underlined-link:hover,
.customer a:hover,
.inline-richtext a:hover {
  color: rgb(var(--color-link));
  text-decoration-thickness: 0.2rem;
}

.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* base-details-summary */
summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary .icon-caret {
  position: absolute;
  height: calc((17 * 100vw) / var(--screen-bp));
  right: calc((10 * 100vw) / var(--screen-bp));
  top: calc(50% - calc((7 * 100vw) / var(--screen-bp)));
}

summary::-webkit-details-marker {
  display: none;
}

@media screen and (max-width: 989px) {

  .slider.slider--tablet .scroll-trigger.animate--slide-in,
  .slider.slider--mobile .scroll-trigger.animate--slide-in {
    animation: none;
    opacity: 1;
    transform: inherit;
  }

  .scroll-trigger:not(.scroll-trigger--offscreen) .slider--tablet {
    animation: var(--animation-slide-in);
  }
}

@media screen and (min-width: 990px) {
  .slider.slider--desktop .scroll-trigger.animate--slide-in {
    animation: none;
    opacity: 1;
    transform: inherit;
  }

  .scroll-trigger:not(.scroll-trigger--offscreen) .slider--desktop {
    animation: var(--animation-slide-in);
  }
}

/* component-media */
.media {
  display: block;
  position: relative;
  overflow: hidden;
}

.media--transparent {
  background-color: transparent;
}

.media>*:not(.zoom):not(.deferred-media__poster-button),
.media model-viewer {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.media>img {
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.media--square {
  padding-bottom: 100%;
}

.media--portrait {
  padding-bottom: 125%;
}

.media--landscape {
  padding-bottom: 66.6%;
}

.media--cropped {
  padding-bottom: 56%;
}

.media--16-9 {
  padding-bottom: 56.25%;
}

.media--circle {
  padding-bottom: 100%;
  border-radius: 50%;
}

.media.media--hover-effect>img+img {
  opacity: 0;
}

@media screen and (min-width: 990px) {
  .media--cropped {
    padding-bottom: 63%;
  }
}

deferred-media {
  display: block;
}

.product__info-container .loading__spinner:not(.hidden)~* {
  visibility: hidden;
}

.isolate {
  position: relative;
  z-index: 0;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

.visually-hidden--inline {
  margin: 0;
  height: 1em;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-hidden-mobile,
.overflow-hidden-tablet,
.overflow-hidden-desktop {
  overflow: hidden;
}

.skip-to-content-link:focus {
  z-index: 9999;
  position: inherit;
  overflow: auto;
  width: auto;
  height: auto;
  clip: auto;
}

.small-hide {
  display: none !important;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.light {
  opacity: 0.7;
}

a:empty,
ul:empty,
dl:empty,
div:empty,
section:empty,
article:empty,
p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
  display: none;
}

a:not([href]) {
  cursor: not-allowed;
}

.break {
  word-break: break-word;
}

.visibility-hidden {
  visibility: hidden;
}

@media screen and (min-width: 768px) {
  .medium-hide {
    display: none !important;
  }

  .small-hide {
    display: block !important;
  }

  .thead-wrapper .small-hide {
    display: table-cell !important;
  }

  .large-up-hide {
    display: none !important;
  }
}

/* Loading spinner */
.loading__spinner {
  position: absolute;
  z-index: 1;
  width: 1.8rem;
}

.loading__spinner {
  width: 1.8rem;
  display: inline-block;
}

.spinner {
  animation: rotator 1.4s linear infinite;
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(270deg);
  }
}

.path {
  stroke-dasharray: 280;
  stroke-dashoffset: 0;
  transform-origin: center;
  stroke: rgb(var(--color-foreground));
  animation: dash 1.4s ease-in-out infinite;
}

@media screen and (forced-colors: active) {
  .path {
    stroke: CanvasText;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 280;
  }

  50% {
    stroke-dashoffset: 75;
    transform: rotate(135deg);
  }

  100% {
    stroke-dashoffset: 280;
    transform: rotate(450deg);
  }
}

.loading__spinner:not(.hidden)+.cart-item__price-wrapper,
.loading__spinner:not(.hidden)~cart-remove-button {
  opacity: 50%;
}

.loading__spinner:not(.hidden)~cart-remove-button {
  pointer-events: none;
  cursor: default;
}

/* Progress bar */
.progress-bar-container {
  width: 100%;
  margin: auto;
}

.progress-bar {
  height: 0.13rem;
  width: 100%;
}

.progress-bar-value {
  width: 100%;
  height: 100%;
  background-color: rgb(var(--color-foreground));
  animation: indeterminateAnimation var(--duration-extra-longer) infinite ease-in-out;
  transform-origin: 0;
}

.progress-bar .progress-bar-value {
  display: block;
}

@keyframes indeterminateAnimation {
  0% {
    transform: translateX(-20%) scaleX(0);
  }

  40% {
    transform: translateX(30%) scaleX(0.7);
  }

  100% {
    transform: translateX(100%) scaleX(0);
  }
}

/* Animations */
/* Zoom in image on scroll */
.animate--zoom-in {
  --zoom-in-ratio: 1;
}

.animate--zoom-in>img,
.animate--zoom-in>.svg-wrapper {
  transition: scale var(--duration-short) linear;
  scale: var(--zoom-in-ratio);
}

/* Animations */

@media (prefers-reduced-motion: no-preference) {

  .animate--ambient>img,
  .animate--ambient>.svg-wrapper {
    animation: animateAmbient 30s linear infinite;
  }

  @keyframes animateAmbient {
    0% {
      transform: rotate(0deg) translateX(1em) rotate(0deg) scale(1.2);
    }

    100% {
      transform: rotate(360deg) translateX(1em) rotate(-360deg) scale(1.2);
    }
  }

  .scroll-trigger.animate--fade-in,
  .scroll-trigger.animate--slide-in {
    opacity: 0.01;
  }

  .scroll-trigger.animate--slide-in {
    transform: translateY(2rem);
  }

  .scroll-trigger:not(.scroll-trigger--offscreen).animate--fade-in {
    opacity: 1;
    animation: var(--animation-fade-in);
  }

  .scroll-trigger:not(.scroll-trigger--offscreen).animate--slide-in {
    animation: var(--animation-slide-in);
    animation-delay: calc(var(--animation-order) * 75ms);
  }

  .scroll-trigger.scroll-trigger--design-mode.animate--fade-in,
  .scroll-trigger.scroll-trigger--design-mode.animate--slide-in,
  .scroll-trigger.scroll-trigger--design-mode .slider,
  .scroll-trigger:not(.scroll-trigger--offscreen).scroll-trigger--cancel {
    opacity: 1;
    animation: none;
    transition: none;
    transform: none;
  }

  .scroll-trigger.scroll-trigger--design-mode.animate--slide-in {
    transform: translateY(0);
  }

  @keyframes slideIn {
    from {
      transform: translateY(2rem);
      opacity: 0.01;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0.01;
    }

    to {
      opacity: 1;
    }
  }
}

/* Button - other */
.button {
  position: relative;
  font-weight: var(--bold);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: var(--bold);
  padding: calc((13 * 100vw) / var(--screen-bp)) calc((16 * 100vw) / var(--screen-bp));
  line-height: 140%;
  background: var(--color-primary-2);
  border: calc((2 * 100vw) / var(--screen-bp)) solid var(--color-primary-2);
  border-radius: calc((40 * 100vw) / var(--screen-bp));
  letter-spacing: 0.5px;
  color: var(--color-white);
  transition: all var(--duration-short) ease;
  font-size: calc((16 * 100vw) / var(--screen-bp));
  font-family: var(--font-primary-family);
  cursor: pointer;
}

.button svg {
  width: calc((24 * 100vw) / var(--screen-bp));
  height: calc((24 * 100vw) / var(--screen-bp));
  margin-left: calc((16 * 100vw) / var(--screen-bp));
  fill: var(--color-white);
}

.button:hover {
  background: transparent;
  color: var(--color-primary-2);
}

.button:hover svg {
  fill: var(--color-primary-2);
}

.button--secondary {
  border: 2px solid var(--color-primary-2);
  color: var(--color-primary-2);
  background: var(--color-white);
}

.button--secondary svg {
  fill: var(--color-primary-2);
}

@media (min-width: 768px) {
  .button {
    font-size: calc((18 * 100vw) / var(--screen-bp));
    padding: calc((13 * 100vw) / var(--screen-bp)) calc((25 * 100vw) / var(--screen-bp));
  }
}

@media (min-width: 1440px) {
  .button {
    padding: 13px 25px;
    border-radius: 40px;
    font-size: 18px;
  }

  .button svg {
    width: 24px;
    height: 24px;
    margin-left: 16px;
  }
}

.button:disabled,
.button[aria-disabled='true'],
.button.disabled,
.customer button:disabled,
.customer button[aria-disabled='true'],
.customer button.disabled,
.quantity__button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.button--full-width {
  display: flex;
  width: 100%;
}

.button.loading {
  color: transparent;
  position: relative;
}

@media screen and (forced-colors: active) {
  .button.loading {
    color: rgb(var(--color-foreground));
  }
}

.button.loading>.loading__spinner {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
}

.button.loading>.loading__spinner .spinner {
  width: fit-content;
}

.button.loading>.loading__spinner .path {
  stroke: rgb(var(--color-button-text));
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc((12 * 100vw) / var(--screen-bp)) calc((20 * 100vw) / var(--screen-bp)) calc((12 * 100vw) / var(--screen-bp)) calc((58 * 100vw) / var(--screen-bp));
  width: 100vw;
}

.header-wrapper {
  display: block;
  position: relative;
  width: 100vw;
}

.header__main-menu,
.header__shop-menu .header__inline-menu {
  display: none;
}

.header__icons {
  order: 1;
}

.header__icon--cart {
  font-size: calc((16 * 100vw) / var(--screen-bp));
  color: var(--color-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-2);
  border-radius: calc((15 * 100vw) / var(--screen-bp));
  padding: calc((8 * 100vw) / var(--screen-bp));
  min-width: calc((58 * 100vw) / var(--screen-bp));
}

.header__icon--cart svg {
  width: calc((18 * 100vw) / var(--screen-bp));
  height: calc((18 * 100vw) / var(--screen-bp));
}

.header__icon--cart .cart-count-bubble {
  margin-left: calc((10 * 100vw) / var(--screen-bp));
  font-weight: var(--bold);
}

.header__heading {
  margin: 0;
  padding-top: calc((5 * 100vw) / var(--screen-bp));
}

.header__heading-logo {
  width: calc((166 * 100vw) / var(--screen-bp));
  height: auto;
}

.sticky-header {
  position: sticky;
  top: 0;
  background: var(--color-white);
  z-index: 3;
}

/* Header menu drawer */
header-drawer {
  justify-self: start;
}

.menu-drawer-container {
  display: flex;
}

.header__icon--menu {
  position: initial;
  background: var(--color-primary-1);
  border-bottom-right-radius: calc((10 * 100vw) / var(--screen-bp));
  border-top-right-radius: calc((10 * 100vw) / var(--screen-bp));
  height: calc((48 * 100vw) / var(--screen-bp));
  width: calc((58 * 100vw) / var(--screen-bp));
  padding: 0;
  z-index: 2;
}

.header__icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.header__icon--menu .icon {
  display: block;
  position: absolute;
  opacity: 1;
  transform: scale(1);
  transition: transform 150ms ease, opacity 150ms ease;
  color: var(--color-white);
}

details:not([open])>.header__icon--menu .icon-close,
details[open]>.header__icon--menu .icon-hamburger {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8);
}

.js details[open]:not(.menu-opening)>.header__icon--menu .icon-close {
  visibility: hidden;
}

.js details[open]:not(.menu-opening)>.header__icon--menu .icon-hamburger {
  visibility: visible;
  opacity: 1;
  transform: scale(1.07);
}

.section-offset {
  position: absolute;
  top: calc((-107 * 100vw) / var(--screen-bp));
  left: 0;
}

@media screen and (min-width: 768px) {
  .header {
    padding: calc((25 * 100vw) / var(--screen-bp)) calc((80 * 100vw) / var(--screen-bp));
  }

  .header__mobile-menu {
    display: none;
  }

  .header__main-menu,
  .header__shop-menu .header__inline-menu {
    display: block;
  }

  .header__main-menu {
    order: 1;
  }

  .header__shop-menu {
    display: flex;
    order: 3;
    align-items: center;
  }

  .header__icons {
    order: 4;
    margin-left: calc((-30 * 100vw) / var(--screen-bp));
  }

  .header__heading {
    order: 2;
    padding: 0;
    width: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .header__heading-logo {
    width: calc((254 * 100vw) / var(--screen-bp));
  }

  .header__inline-menu ul {
    list-style: none;
    padding: 0 calc((20 * 100vw) / var(--screen-bp));
    margin: 0;
    display: flex;
    background-color: var(--color-secondary-2);
    border-radius: calc((30 * 100vw) / var(--screen-bp));
  }

  .header__inline-menu li {
    margin: calc((3 * 100vw) / var(--screen-bp)) 0;
  }

  .header__inline-menu .header__menu-item {
    font-size: calc((16 * 100vw) / var(--screen-bp));
    text-decoration: none;
    color: var(--color-primary-3);
    padding: calc((10 * 100vw) / var(--screen-bp)) calc((15 * 100vw) / var(--screen-bp));
    transition: background-color var(--duration-default) ease;
    border-radius: calc((30 * 100vw) / var(--screen-bp));
    display: flex;
    align-items: center;
  }

  .header__inline-menu .header__menu-item:hover {
    background-color: var(--color-white);
  }

  .header__shop-menu .header__inline-menu ul {
    padding-right: calc((40 * 100vw) / var(--screen-bp));
  }

  .header__inline-menu ul ul {
    padding-right: calc((10 * 100vw) / var(--screen-bp));
    padding-left: calc((10 * 100vw) / var(--screen-bp));
    padding-bottom: calc((10 * 100vw) / var(--screen-bp));
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    max-width: calc((190 * 100vw) / var(--screen-bp));
    margin-left: calc((7 * 100vw) / var(--screen-bp));
    margin-top: calc((2 * 100vw) / var(--screen-bp));
  }

  .header__inline-menu ul ul .header__menu-item {
    transition: background var(--duration-short) linear, font-weight var(--duration-short) linear;
  }

  .header__inline-menu ul ul .header__menu-item:hover {
    background: rgba(240, 233, 225, 1);
    color: var(--color--light-brown-rgb);
  }

  .header__inline-menu ul ul .header__menu-item:hover strong {
    color: var(--color--light-brown-rgb);
  }

  .header__icon--cart {
    padding: calc((16 * 100vw) / var(--screen-bp)) calc((30 * 100vw) / var(--screen-bp));
    border-radius: calc((30 * 100vw) / var(--screen-bp));
  }

  .header__inline-menu summary.header__menu-item {
    padding-right: calc((35 * 100vw) / var(--screen-bp));
  }

  .global-settings-popup,
  .header__submenu.global-settings-popup {
    border-bottom-left-radius: calc((30 * 100vw) / var(--screen-bp));
    border-bottom-right-radius: calc((30 * 100vw) / var(--screen-bp));
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
    z-index: 2;
    background-color: var(--color-white);
    flex-direction: column;
    width: auto;
    min-width: auto;
  }

  .section-offset {
    top: calc((-133 * 100vw) / var(--screen-bp));
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    font-size: calc(var(--h1-font-size) * 1px);
  }

  h2 {
    font-size: calc(var(--h2-font-size) * 1px);
  }

  h3 {
    font-size: calc(var(--h3-font-size) * 1px);
  }

  h4 {
    font-size: calc(var(--h4-font-size) * 1px);
  }

  h5 {
    font-size: calc(var(--h5-font-size) * 1px);
  }

  body {
    font-size: calc(var(--body-font-size) * 1px);
  }

  small {
    font-size: calc(var(--small-font-size) * 1px);
  }

  .header {
    padding: 25px 80px;
  }

  .header__icons {
    margin-left: -30px;
  }

  .header__heading-logo {
    width: 254px;
  }

  .header__heading {
    padding: 0;
  }

  .header__inline-menu ul {
    border-radius: 30px;
    padding: 0 20px;
  }

  .header__inline-menu li {
    margin: 3px 0;
  }

  .header__inline-menu .header__menu-item {
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 30px;
  }

  .header__shop-menu .header__inline-menu ul {
    padding-right: 40px;
  }

  .header__inline-menu ul ul {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    max-width: 190px;
    margin-left: 7px;
    margin-top: 2px;
  }

  .header__icon--cart {
    padding: 16px 30px;
    border-radius: 30px;
  }

  .header__inline-menu summary.header__menu-item {
    padding-right: 35px;
  }

  .global-settings-popup,
  .header__submenu.global-settings-popup {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .section-offset {
    top: -133px;
  }
}

/* component-grid */
.grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: calc((32 * 100vw) / var(--screen-bp));
  padding: 0;
  list-style: none;
  column-gap: calc((30 * 100vw) / var(--screen-bp));
  row-gap: calc((30 * 100vw) / var(--screen-bp));
}

.grid:last-child {
  margin-bottom: 0;
}

.grid__item {
  max-width: 100%;
  width: 100%;
  flex-grow: 1;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .grid__item {
    width: calc(33.33% - calc((30 * 100vw) / var(--screen-bp)) * 2 / 3);
    flex-grow: initial;
  }

  .slider.slider--desktop .scroll-trigger.animate--slide-in {
    animation: none;
    opacity: 1;
    transform: inherit;
  }

  .scroll-trigger:not(.scroll-trigger--offscreen) .slider--desktop {
    animation: var(--animation-slide-in);
  }
}

@import url('component-form.css');
@import url('component-modal.css');