:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-shadow: none;
  --f-button-transition: all .15s ease;
  --f-button-transform: none;
  --f-button-outline-width: 1px;
  --f-button-outline-color: #000000b3;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-opacity: 1;
  --f-button-svg-disabled-opacity: .5;
  --f-button-svg-transition: opacity .15s ease;
  --f-button-svg-transform: none;
}

.f-button {
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  transform: var(--f-button-transform);
  transition: var(--f-button-transition);
  backdrop-filter: var(--f-button-backdrop-filter);
  box-sizing: content-box;
  pointer-events: all;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (hover: hover) {
  .f-button:hover:not([aria-disabled]) {
    color: var(--f-button-hover-color, var(--f-button-color));
    background-color: var(--f-button-hover-bg, var(--f-button-bg));
  }
}

.f-button:active:not([aria-disabled]) {
  color: var(--f-button-active-color, var(--f-button-hover-color, var(--f-button-color)));
  background-color: var(--f-button-active-bg, var(--f-button-hover-bg, var(--f-button-bg)));
}

.f-button:focus {
  outline: none;
}

.f-button:focus-visible {
  outline: var(--f-button-outline-width) solid var(--f-button-outline-color);
  outline-offset: var(--f-button-outline-offset);
  z-index: 1;
  position: relative;
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  transform: var(--f-button-svg-transform);
  fill: var(--f-button-svg-fill);
  filter: var(--f-button-svg-filter);
  opacity: var(--f-button-svg-opacity, 1);
  transition: var(--f-button-svg-transition);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.f-button[aria-disabled] {
  cursor: default;
}

.f-button[aria-disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

:root {
  --f-spinner-color-1: #0000001a;
  --f-spinner-color-2: #11181ccc;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 4px;
}

.f-spinner {
  margin: calc(var(--f-spinner-width) * -.5) 0 0 calc(var(--f-spinner-height) * -.5);
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
  border-radius: var(--f-spinner-border-radius);
  border: var(--f-spinner-border-width) solid var(--f-spinner-color-1);
  border-top-color: var(--f-spinner-color-2);
  padding: 0;
  animation: .75s linear infinite f-spinner, .2s .2s both f-fadeIn;
  position: absolute;
  top: 50%;
  left: 50%;
}

@keyframes f-spinner {
  to {
    transform: rotate(360deg);
  }
}

.f-panzoom, .f-zoomable {
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.f-panzoom:before, .f-panzoom:after, .f-zoomable:before, .f-zoomable:after {
  content: "";
  display: block;
}

.f-panzoom:not(.has-controls):before, .f-zoomable:not(.has-controls):before {
  margin-bottom: auto;
}

.f-panzoom:after, .f-zoomable:after {
  margin-top: auto;
}

.f-panzoom__wrapper {
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  max-height: 100%;
  position: relative;
}

.f-panzoom__wrapper.will-zoom-out {
  cursor: zoom-out;
}

.f-panzoom__wrapper.can-drag {
  cursor: move;
  cursor: grab;
}

.f-panzoom__wrapper.will-zoom-in {
  cursor: zoom-in;
}

.f-panzoom__wrapper.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.f-panzoom__wrapper.has-error {
  display: none;
}

.f-panzoom__content {
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  max-height: 100%;
}

.f-panzoom__content.is-lazyloading, .f-panzoom__content.has-lazyerror {
  visibility: hidden;
}

img.f-panzoom__content {
  vertical-align: top;
  object-fit: contain;
  -webkit-user-select: none;
  user-select: none;
  transition: none;
}

.f-panzoom__wrapper > img.f-panzoom__content {
  visibility: hidden;
}

.f-panzoom__viewport {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.f-panzoom__viewport > .f-panzoom__content {
  object-fit: fill;
  width: 100%;
  height: 100%;
  display: block;
}

picture.f-panzoom__content img {
  vertical-align: top;
  object-fit: contain;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
  height: auto;
  max-height: 100%;
  transition: none;
}

.f-fadeIn {
  animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes f-fadeOut {
  to {
    opacity: 0;
  }
}

.f-crossfadeIn {
  animation: var(--f-transition-duration, .2s) ease both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, .2s) * .2) ease calc(var(--f-transition-duration, .2s) * .8) both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes f-crossfadeOut {
  to {
    opacity: 0;
  }
}

.is-horizontal .f-slideIn.from-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNextX;
}

.is-horizontal .f-slideIn.from-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrevX;
}

.is-horizontal .f-slideOut.to-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNextX;
}

.is-horizontal .f-slideOut.to-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrevX;
}

@keyframes f-slideInPrevX {
  0% {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes f-slideInNextX {
  0% {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes f-slideOutNextX {
  to {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }
}

@keyframes f-slideOutPrevX {
  to {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }
}

.is-vertical .f-slideIn.from-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNextY;
}

.is-vertical .f-slideIn.from-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrevY;
}

.is-vertical .f-slideOut.to-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNextY;
}

.is-vertical .f-slideOut.to-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrevY;
}

@keyframes f-slideInPrevY {
  0% {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes f-slideInNextY {
  0% {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes f-slideOutNextY {
  to {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }
}

@keyframes f-slideOutPrevY {
  to {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }
}

.f-zoomInUp {
  animation: var(--f-transition-duration, .3s) ease both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, .3s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  0% {
    transform: scale(var(--f-zoomInUp-scale, .975)) translate3d(var(--f-zoomInUp-x, 0), var(--f-zoomInUp-y, 16px), 0);
    opacity: var(--f-zoomInUp-opacity, 0);
  }

  to {
    opacity: 1;
    transform: scale(1)translateZ(0);
  }
}

@keyframes f-zoomOutDown {
  to {
    transform: scale(var(--f-zoomOutDown-scale, .975)) translate3d(var(--f-zoomOutDown-x, 0), var(--f-zoomOutDown-y, 16px), 0);
    opacity: 0;
  }
}

.f-throwOutUp {
  animation: var(--f-throwOutUp-duration, .2s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throwOutDown-duration, .2s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throwOutUp-y, 150px) * -1), 0);
    opacity: 0;
  }
}

@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throwOutDown-y, 150px), 0);
    opacity: 0;
  }
}

.f-carousel__slide.has-html {
  overflow: auto;
}

.f-html {
  margin: var(--f-html-margin, 0);
  padding: var(--f-html-padding, 2rem);
  color: var(--f-html-color, currentColor);
  background: var(--f-html-bg);
  position: relative;
}

.f-html.is-error {
  text-align: center;
}

.has-iframe .f-html, .has-pdf .f-html, .has-gmap .f-html {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 1px;
  overflow: visible;
}

.has-pdf .f-html, .has-gmap .f-html {
  padding: 0;
}

.f-iframe {
  border: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
}

.f-caption {
  max-width: 100%;
  max-height: calc(80vh - 100px);
  margin: var(--f-caption-margin);
  padding: var(--f-caption-padding, 16px 4px);
  overflow-wrap: anywhere;
  line-height: var(--f-caption-line-height);
  color: var(--f-caption-color);
  background: var(--f-caption-bg);
  font: var(--f-caption-font);
  flex-shrink: 0;
  align-self: center;
  overflow: auto;
}

.has-html5video .f-html, .has-youtube .f-html, .has-vimeo .f-html {
  width: 100%;
  height: 100%;
  max-width: var(--f-video-width, 960px);
  max-height: var(--f-video-height, 540px);
  aspect-ratio: var(--f-video-aspect-ratio);
  background: var(--f-video-bg, #000000e6);
  min-height: 1px;
  padding: 0;
  overflow: visible;
}

.f-html5video {
  background: none;
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.f-button.is-arrow {
  --f-button-width: var(--f-arrow-width, 46px);
  --f-button-height: var(--f-arrow-height, 46px);
  --f-button-svg-width: var(--f-arrow-svg-width, 24px);
  --f-button-svg-height: var(--f-arrow-svg-height, 24px);
  --f-button-svg-stroke-width: var(--f-arrow-svg-stroke-width, 1.75);
  --f-button-border-radius: var(--f-arrow-border-radius, unset);
  --f-button-bg: var(--f-arrow-bg, transparent);
  --f-button-hover-bg: var(--f-arrow-hover-bg, var(--f-arrow-bg));
  --f-button-active-bg: var(--f-arrow-active-bg, var(--f-arrow-hover-bg));
  --f-button-shadow: var(--f-arrow-shadow);
  --f-button-color: var(--f-arrow-color);
  --f-button-hover-color: var(--f-arrow-hover-color, var(--f-arrow-color));
  --f-button-active-color: var(--f-arrow-active-color, var(--f-arrow-hover-color));
  overflow: visible;
}

.f-button.is-arrow.is-prev, .f-button.is-arrow.is-next {
  z-index: 20;
  position: absolute;
  transform: translate(0);
}

.is-horizontal .f-button.is-arrow.is-prev, .is-horizontal .f-button.is-arrow.is-next {
  inset: 50% auto auto;
  transform: translateY(-50%);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-prev {
  left: var(--f-arrow-pos, 0);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-next {
  right: var(--f-arrow-pos, 0);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-prev {
  right: var(--f-arrow-pos, 0);
  transform: translateY(-50%)rotateY(180deg);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-next {
  left: var(--f-arrow-pos, 0);
  transform: translateY(-50%)rotateY(180deg);
}

.is-vertical.is-ltr .f-button.is-arrow.is-prev, .is-vertical.is-rtl .f-button.is-arrow.is-prev {
  top: var(--f-arrow-pos, 0);
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translate(-50%);
}

.is-vertical.is-ltr .f-button.is-arrow.is-next, .is-vertical.is-rtl .f-button.is-arrow.is-next {
  top: auto;
  right: auto;
  bottom: var(--f-arrow-pos, 0);
  left: 50%;
  transform: translate(-50%);
}

.is-vertical .f-button.is-arrow.is-prev svg, .is-vertical .f-button.is-arrow.is-next svg {
  transform: rotate(90deg);
}

.f-carousel__toolbar {
  --f-progressbar-height: 100%;
  margin: var(--f-toolbar-margin, 0);
  padding: var(--f-toolbar-padding, 8px);
  line-height: var(--f-toolbar-line-height);
  background: var(--f-toolbar-bg, none);
  box-shadow: var(--f-toolbar-shadow, none);
  backdrop-filter: var(--f-toolbar-backdrop-filter);
  z-index: 20;
  color: var(--f-toolbar-color, currentColor);
  font-size: var(--f-toolbar-font-size, 17px);
  font-weight: var(--f-toolbar-font-weight, inherit);
  font-family: var(--f-toolbar-font, -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif);
  text-shadow: var(--f-toolbar-text-shadow);
  text-align: center;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  white-space: nowrap;
  pointer-events: none;
  grid-template-columns: 1fr auto 1fr;
  display: grid;
  position: relative;
}

.f-carousel__toolbar.is-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.f-carousel__toolbar__column {
  align-content: flex-start;
  gap: var(--f-toolbar-gap, 0);
  pointer-events: none;
  flex-flow: wrap;
  display: flex;
}

.f-carousel__toolbar__column.is-left {
  justify-content: flex-start;
  justify-self: flex-start;
}

.f-carousel__toolbar__column.is-middle {
  justify-content: center;
}

.f-carousel__toolbar__column.is-right {
  flex-flow: row;
  justify-content: flex-end;
  justify-self: flex-end;
}

.f-carousel__toolbar__column > * {
  pointer-events: all;
}

.f-carousel:has(.f-carousel__slide.is-fullsize) [data-panzoom-action="toggleFull"] g {
  display: none;
}

[data-autoplay-action="toggle"] svg g:first-child {
  display: flex;
}

[data-autoplay-action="toggle"] svg g:last-child, .has-autoplay [data-autoplay-action="toggle"] svg g:first-child {
  display: none;
}

.has-autoplay [data-autoplay-action="toggle"] svg g:last-child {
  display: flex;
}

:fullscreen [data-fullscreen-action="toggle"] svg [data-fullscreen-action="toggle"] svg g:first-child {
  display: none;
}

:fullscreen [data-fullscreen-action="toggle"] svg [data-fullscreen-action="toggle"] svg g:last-child {
  display: flex;
}

.f-carousel__counter {
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
  margin: var(--f-counter-margin, 0);
  padding: var(--f-counter-padding, 4px);
  line-height: var(--f-counter-line-height);
  background: var(--f-counter-bg);
  border-radius: var(--f-counter-border-radius);
  flex-direction: row;
  display: flex;
  position: relative;
}

.f-carousel__counter span {
  padding: 0 var(--f-counter-gap, 4px);
}

:root {
  --f-thumbs-gap: 8px;
  --f-thumbs-margin: 0;
  --f-thumbs-padding-x: 8px;
  --f-thumbs-padding-y: 8px;
  --f-thumbs-z-index: 1;
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-fit: cover;
  --f-thumb-opacity: 1;
  --f-thumb-transition: opacity .3s ease, transform .15s ease;
  --f-thumb-border: none;
  --f-thumb-border-radius: 4px;
  --f-thumb-transfors: none;
  --f-thumb-shadow: none;
  --f-thumb-bg: linear-gradient(#0000001a, #0000000d);
  --f-thumb-focus-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
  --f-thumb-selected-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
}

.f-thumbs {
  --f-carousel-slide-width: calc(var(--f-thumb-width)  + var(--f-thumbs-gap));
  --f-carousel-slide-height: calc(var(--f-thumb-height)  + var(--f-thumbs-gap));
  --f-carousel-gap: 0;
  max-height: calc(var(--f-carousel-slide-height)  + var(--f-thumbs-padding-y) * 2);
  margin: var(--f-thumbs-margin);
  background: var(--f-thumbs-bg);
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  z-index: var(--f-thumbs-z-index);
  flex-shrink: 0;
  padding: 0;
  transition: max-height .3s;
  overflow: hidden;
}

.f-thumbs__viewport {
  margin: var(--f-thumbs-padding-y) var(--f-thumbs-padding-x);
  display: grid;
  overflow: visible;
}

.f-thumbs__slide {
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  padding: calc(var(--f-thumbs-gap) * .5);
  cursor: pointer;
  flex-direction: column;
  grid-area: 1 / 1;
  align-items: center;
  margin: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.f-thumbs__slide:hover button {
  opacity: var(--f-thumb-hover-opacity, 1);
  transform: var(--f-thumb-hover-transform, none);
}

.f-thumbs__slide:hover button:after {
  border: var(--f-thumb-hover-border, none);
  box-shadow: var(--f-thumb-hover-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide button {
  all: unset;
  width: 100%;
  height: 100%;
  transition: var(--f-thumb-transition);
  border-radius: var(--f-thumb-border-radius);
  opacity: var(--f-thumb-opacity);
  transform: var(--f-thumb-transform);
  background: var(--f-thumb-bg);
  outline: none;
  margin: auto;
  padding: 0;
  position: relative;
  overflow: visible;
}

.f-thumbs__slide button:after {
  content: "";
  z-index: 1;
  border-radius: inherit;
  border: var(--f-thumb-border);
  box-shadow: var(--f-thumb-shadow);
  transition: none;
  position: absolute;
  inset: 0;
}

.f-thumbs__slide button:focus-within {
  opacity: var(--f-thumb-focus-opacity, 1);
  transform: var(--f-thumb-focus-transform, none);
}

.f-thumbs__slide button:focus-within:after {
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide:active {
  opacity: var(--f-thumb-active-opacity, 1);
  transform: var(--f-thumb-active-transform, none);
}

.f-thumbs__slide:active:after {
  border: var(--f-thumb-active-border, none);
  box-shadow: var(--f-thumb-active-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide.is-selected {
  z-index: 2;
}

.f-thumbs__slide.is-selected button {
  opacity: var(--f-thumb-selected-opacity, 1);
  transform: var(--f-thumb-selected-transform, none);
}

.f-thumbs__slide.is-selected button:after {
  border: var(--f-thumb-selected-border, none);
  box-shadow: var(--f-thumb-selected-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide img {
  object-fit: var(--f-thumb-fit);
  border-radius: inherit;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: block;
}

.f-thumbs__slide img.has-lazyerror {
  display: none;
}

.f-thumbs.is-modern {
  --f-thumb-clip-width: 46px;
  --f-thumb-extra-gap: 16px;
  --f-carousel-slide-width: calc(var(--f-thumb-clip-width)  + var(--f-thumbs-gap));
  --f-carousel-slide-height: var(--f-thumb-height);
  --width-diff: calc((var(--f-thumb-width)  - var(--f-thumb-clip-width)));
}

.f-thumbs.is-modern .f-thumbs__viewport {
  width: calc(100% + var(--width-diff) * 2);
  margin-left: calc(var(--width-diff) * -1);
}

.f-thumbs.is-modern .f-thumbs__slide {
  --clip-shift: calc((var(--width-diff) * .5) * var(--progress));
  --clip-path: inset(0 var(--clip-shift) round var(--f-thumb-border-radius, 0));
  left: var(--shift, 0);
  will-change: left;
  transition: left var(--f-transition-duration) var(--f-transition-easing);
  padding: 0;
  overflow: visible;
}

.f-thumbs.is-modern .f-thumbs__slide button {
  width: var(--f-thumb-width);
  clip-path: var(--clip-path);
  box-shadow: none;
  transition: clip-path var(--f-transition-duration) var(--f-transition-easing), opacity var(--f-thumb-transition-duration, .2s) var(--f-thumb-transition-easing, ease);
  border: none;
  margin-left: -50%;
  display: block;
}

.f-thumbs.is-modern .f-thumbs__slide button:after {
  display: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus-within:not(.is-selected) button:before {
  content: "";
  z-index: 1;
  top: 0;
  left: var(--clip-shift);
  bottom: 0;
  right: var(--clip-shift);
  transition: border var(--f-transition-duration) var(--f-transition-easing), box-shadow var(--f-transition-duration) var(--f-transition-easing);
  border-radius: inherit;
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, none);
  position: absolute;
}

.f-thumbs.is-modern {
  --f-transition-duration: .25s;
  --f-transition-easing: ease-out;
}

.f-thumbs.is-modern.is-syncing {
  --f-transition-duration: 0s;
}

.f-progressbar {
  z-index: 30;
  height: var(--f-progressbar-height, 3px);
  transform-origin: 0;
  background: var(--f-progressbar-color, var(--f-carousel-theme-color, #575ad6));
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  animation-name: f-progressbar;
  animation-timing-function: linear;
  animation-play-state: running;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

@keyframes f-progressbar {
  0% {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

[data-fullscreen-action="toggle"] svg g:first-child {
  display: flex;
}

[data-fullscreen-action="toggle"] svg g:last-child, :fullscreen [data-fullscreen-action="toggle"] svg g:first-child {
  display: none;
}

:fullscreen [data-fullscreen-action="toggle"] svg g:last-child {
  display: flex;
}

.in-fullscreen-mode > .f-carousel {
  flex: 1;
  min-width: 0 !important;
  min-height: 0 !important;
}

html.with-fancybox {
  scroll-behavior: auto;
  width: auto;
  overflow: visible;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--f-body-margin, 0px)  + var(--f-scrollbar-compensate, 0px));
  overscroll-behavior-y: none;
  overflow: hidden !important;
}

.fancybox__dialog {
  width: 100%;
  height: 100vh;
  max-height: unset;
  max-width: unset;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.fancybox__dialog:focus {
  outline: none;
}

.fancybox__dialog::backdrop {
  opacity: 0;
}

@supports (height: 100dvh) {
  .fancybox__dialog {
    height: 100dvh;
  }
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-backdrop-bg: #18181bf2;
  --f-toolbar-margin: 0;
  --f-toolbar-padding: 8px;
  --f-toolbar-gap: 0;
  --f-toolbar-color: #ddd;
  --f-toolbar-font-size: 16px;
  --f-toolbar-font-weight: 500;
  --f-toolbar-font: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  --f-toolbar-line-height: var(--f-button-height);
  --f-toolbar-text-shadow: 1px 1px 1px #000000bf;
  --f-toolbar-shadow: none;
  --f-toolbar-bg: none;
  --f-counter-margin: 0;
  --f-counter-padding: 0px 10px;
  --f-counter-gap: 4px;
  --f-counter-line-height: var(--f-button-height);
  --f-carousel-gap: 17px;
  --f-carousel-slide-width: 100%;
  --f-carousel-slide-height: 100%;
  --f-carousel-slide-padding: 0;
  --f-carousel-slide-bg: unset;
  --f-html-color: #222;
  --f-html-bg: #fff;
  --f-error-color: #fff;
  --f-error-bg: #333;
  --f-caption-margin: 0;
  --f-caption-padding: 16px 4px;
  --f-caption-color: var(--fancybox-color, #dbdbdb);
  --f-caption-bg: transparent;
  --f-caption-font: inherit;
  --f-caption-line-height: 1.375;
  --f-spinner-color-1: #fff3;
  --f-spinner-color-2: #fffc;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 4px;
  --f-progressbar-color: #fff3;
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: #ddd;
  --f-button-hover-color: #fff;
  --f-button-outline-width: 1px;
  --f-button-outline-color: #ffffffbf;
  --f-button-outline-offset: 0px;
  --f-button-bg: #363636bf;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-shadow: none;
  --f-button-transition: all .2s ease;
  --f-button-transform: none;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.75;
  --f-button-svg-filter: drop-shadow(1px 1px 1px #18181b03), drop-shadow(1px 2px 1px #18181b0d);
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: .5;
  --f-arrow-pos: 32px;
  --f-arrow-width: 50px;
  --f-arrow-height: 50px;
  --f-arrow-svg-width: 24px;
  --f-arrow-svg-height: 24px;
  --f-arrow-svg-stroke-width: 2;
  --f-arrow-border-radius: 50%;
  --f-arrow-bg: #363636a6;
  --f-arrow-color: #ddd;
  --f-arrow-hover-color: #fff;
  --f-thumbs-margin: 0px;
  --f-thumbs-padding-x: 8px;
  --f-thumbs-padding-y: 8px;
  --f-thumbs-bg: none;
  --f-thumb-transition: all .2s ease;
  --f-thumb-width: 94px;
  --f-thumb-height: 76px;
  --f-thumb-opacity: 1;
  --f-thumb-border: none;
  --f-thumb-shadow: none;
  --f-thumb-transform: none;
  --f-thumb-focus-opacity: 1;
  --f-thumb-focus-border: none;
  --f-thumb-focus-shadow: inset 0 0 0 2px #ffffffa6;
  --f-thumb-focus-transform: none;
  --f-thumb-hover-opacity: 1;
  --f-thumb-hover-border: none;
  --f-thumb-hover-transform: none;
  --f-thumb-active-opacity: var(--f-thumb-hover-opacity);
  --f-thumb-active-border: var(--f-thumb-hover-border);
  --f-thumb-active-transform: var(--f-thumb-hover-transform);
  --f-thumb-selected-opacity: 1;
  --f-thumb-selected-border: none;
  --f-thumb-selected-shadow: inset 0 0 0 2px #fff;
  --f-thumb-selected-transform: none;
  outline: none;
  flex-direction: column;
  display: flex;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fancybox__container[theme="light"] {
  --fancybox-color: #222;
  --fancybox-backdrop-bg: #fffffff7;
  --f-toolbar-color: var(--fancybox-color, #222);
  --f-toolbar-text-shadow: none;
  --f-toolbar-font-weight: 400;
  --f-html-color: var(--fancybox-color, #222);
  --f-html-bg: #fff;
  --f-error-color: #555;
  --f-error-bg: #fff;
  --f-video-bg: #fff;
  --f-caption-color: #333;
  --f-spinner-color-1: #0003;
  --f-spinner-color-2: #000c;
  --f-spinner-border-width: 3.5px;
  --f-progressbar-color: #6f6f7433;
  --f-button-color: #333;
  --f-button-hover-color: #000;
  --f-button-outline-color: #000000d9;
  --f-button-bg: #ffffffd9;
  --f-button-svg-stroke-width: 1.3;
  --f-button-svg-filter: none;
  --f-arrow-bg: #ffffffd9;
  --f-arrow-color: #333;
  --f-arrow-hover-color: #000;
  --f-arrow-svg-stroke-width: 1.3;
  --f-close-button-color: #555;
  --f-close-button-hover-color: #000;
  --f-thumb-bg: linear-gradient(#ebeff2, #e2e8f0);
  --f-thumb-focus-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #888;
  --f-thumb-selected-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #000;
}

.fancybox__container::backdrop {
  background-color: #0000;
}

.fancybox__container > :not(.fancybox__carousel), .fancybox__container .fancybox__carousel > :not(.fancybox__viewport), .fancybox__container .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > :not(.f-html, .f-panzoom__wrapper, .f-spinner) {
  opacity: var(--f-drag-opacity, 1);
}

.fancybox__container:not(.is-ready, .is-hiding) {
  visibility: hidden;
}

.fancybox__container.is-revealing > :not(.fancybox__carousel), .fancybox__container.is-revealing .fancybox__carousel > :not(.fancybox__viewport), .fancybox__container.is-revealing .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container.is-revealing .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > :not(.f-html, .f-panzoom__wrapper, .f-spinner) {
  animation: var(--f-interface-enter-duration, .35s) ease none f-fadeIn;
}

.fancybox__container.is-hiding > :not(.fancybox__carousel), .fancybox__container.is-hiding .fancybox__carousel > :not(.fancybox__viewport), .fancybox__container.is-hiding .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container.is-hiding .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > :not(.f-html, .f-panzoom__wrapper) {
  animation: var(--f-interface-exit-duration, .35s) ease forwards f-fadeOut;
}

.fancybox__container.is-idle .f-carousel__toolbar {
  pointer-events: none;
  opacity: 0;
}

.fancybox__container.is-idle .f-button.is-arrow {
  opacity: 0;
}

.fancybox__container.is-idle.is-ready .f-carousel__toolbar {
  pointer-events: none;
  animation: .15s ease-out both f-fadeOut;
}

.fancybox__container.is-idle.is-ready .f-button.is-arrow {
  animation: .15s ease-out both f-fadeOut;
}

.fancybox__backdrop {
  z-index: -1;
  background: var(--fancybox-backdrop-bg);
  position: fixed;
  inset: 0;
}

.fancybox__carousel {
  z-index: 10;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  position: relative;
  overflow: clip visible;
}

.fancybox__carousel.is-vertical {
  --f-carousel-slide-height: 100%;
}

.fancybox__carousel.is-ltr {
  direction: ltr;
}

.fancybox__carousel.is-rtl {
  direction: rtl;
}

.fancybox__carousel > .f-button.is-arrow:before {
  content: "";
  z-index: 1;
  position: absolute;
  inset: -30px;
}

.fancybox__carousel > .f-progressbar {
  background-color: var(--fancybox-color);
}

.fancybox__viewport {
  min-width: 0;
  min-height: 0;
  transform: translate3d(0, var(--f-drag-offset, 0), 0);
  flex: 1;
  display: grid;
  position: relative;
  overflow: visible;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.fancybox__viewport [data-selectable], .fancybox__viewport [contenteditable] {
  cursor: auto;
}

.fancybox__slide {
  box-sizing: border-box;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  padding: var(--f-carousel-slide-padding);
  background: var(--f-carousel-slide-bg);
  backface-visibility: hidden;
  will-change: transform;
  flex-direction: column;
  grid-area: 1 / 1;
  align-items: center;
  margin: 0;
  display: flex;
  position: relative;
  transform: translateZ(0);
}

.fancybox__slide:before, .fancybox__slide:after {
  content: "";
  display: block;
}

.fancybox__slide:before {
  margin-bottom: auto;
}

.fancybox__slide:after {
  margin-top: auto;
}

.fancybox__slide.is-selected {
  z-index: 1;
}

.fancybox__slide.f-zoomable {
  overflow: visible;
}

.fancybox__slide.has-error {
  --f-html-color: var(--f-error-color, --f-html-color);
  --f-html-bg: var(--f-error-bg, --f-html-bg);
}

.fancybox__slide.has-html {
  padding: 8px;
  overflow: auto;
}

.fancybox__slide.has-close-btn {
  padding-top: 34px;
}

.fancybox__slide .f-button[data-fancybox-close] {
  --f-button-width: var(--f-close-button-width, 34px);
  --f-button-height: var(--f-close-button-height, 34px);
  --f-button-border-radius: var(--f-close-border-radius, 4px);
  --f-button-color: var(--f-close-button-color, #fff);
  --f-button-hover-color: var(--f-close-button-hover-color, #fff);
  --f-button-bg: var(--f-close-button-bg, transparent);
  --f-button-hover-bg: var(--f-close-button-hover-bg, transparent);
  --f-button-active-bg: var(--f-close-button-active-bg, transparent);
  --f-button-svg-width: var(--f-close-button-svg-width, 22px);
  --f-button-svg-height: var(--f-close-button-svg-height, 22px);
  top: calc(var(--f-button-height) * -1);
  z-index: 40;
  position: absolute;
  right: 0;
}

.fancybox__slide .f-spinner {
  cursor: pointer;
}

.fancybox__container.is-closing .f-caption, .fancybox__slide.is-loading .f-caption {
  visibility: hidden;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  height: 100%;
  display: flex;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  pointer-events: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  display: flex;
}

.splide__pagination li {
  pointer-events: auto;
  margin: 0;
  line-height: 1;
  list-style-type: none;
  display: inline-block;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  visibility: hidden;
  position: relative;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  margin: 0;
  position: relative;
  list-style-type: none !important;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  contain: strict;
  border: 2px solid #999;
  border-left-color: #0000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: auto;
  animation: 1s linear infinite splide-loading;
  display: inline-block;
  position: absolute;
  inset: 0;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  z-index: 0;
  position: relative;
  overflow: hidden;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  opacity: 0;
  z-index: 0;
  margin: 0 !important;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  cursor: pointer;
  opacity: .7;
  z-index: 1;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  padding: 0;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.splide__arrow svg {
  fill: #000;
  width: 1.2em;
  height: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: .9;
}

.splide__arrow:disabled {
  opacity: .3;
}

.splide__arrow:focus-visible {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__pagination {
  z-index: 1;
  padding: 0 1em;
  position: absolute;
  bottom: .5em;
  left: 0;
  right: 0;
}

.splide__pagination__page {
  opacity: .7;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin: 3px;
  padding: 0;
  transition: transform .2s linear;
  display: inline-block;
  position: relative;
}

.splide__pagination__page.is-active {
  z-index: 1;
  background: #fff;
  transform: scale(1.4);
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: .9;
}

.splide__pagination__page:focus-visible, .splide.is-focus-in .splide__pagination__page:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: #0000;
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline-offset: -3px;
    outline: 3px solid #0bf;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline-offset: -3px;
    outline: 3px solid #0bf;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible, .splide.is-focus-in .splide__toggle:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__track--nav > .splide__list > .splide__slide {
  cursor: pointer;
  border: 3px solid #0000;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  top: auto;
  bottom: 1em;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  flex-direction: column;
  padding: 1em 0;
  display: flex;
  inset: 0 .5em 0 auto;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
}

audio:not([controls]) {
  height: 0;
  display: none;
}

progress {
  vertical-align: baseline;
}

template, [hidden] {
  display: none;
}

a {
  -webkit-text-decoration-skip: objects;
  background-color: #0000;
  text-decoration: none;
}

a:active, a:hover {
  outline-width: 0;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: inherit;
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  color: #000;
  background-color: #ff0;
}

sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

code, kbd, pre, samp {
  font-family: monospace;
  font-size: 1em;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  vertical-align: middle;
  margin: 0;
}

button, select {
  text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: none;
}

button:hover, html [type="button"]:hover, [type="reset"]:hover, [type="submit"]:hover {
  cursor: pointer;
}

button {
  background-color: #0000;
  border: none;
  margin: 0;
  padding: 0;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  white-space: normal;
  max-width: 100%;
  padding: 0;
  display: table;
}

textarea {
  resize: none;
  vertical-align: top;
  overflow: auto;
}

input, select, textarea {
  outline: 0;
}

[disabled] {
  cursor: default;
}

[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button {
  height: auto;
}

[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input::-moz-placeholder {
  color: $ colorPlaceholder;
}

textarea::-moz-placeholder {
  color: $ colorPlaceholder;
}

:is(input:-ms-placeholder-shown, textarea:-ms-placeholder-shown), :is(input:placeholder-shown, textarea:placeholder-shown) {
  color: $ colorPlaceholder;
}

input::-webkit-input-placeholder {
  color: $ colorPlaceholder;
}

textarea::-webkit-input-placeholder {
  color: $ colorPlaceholder;
}

input::-ms-clear {
  display: none;
}

input::-ms-reveal {
  display: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

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

td, th {
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, figure, form, blockquote {
  margin: 0;
}

ul, ol, li, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

:root {
  --black: #000;
  --white: #fff;
  --mint-green: #cfffd1;
  --mint-pale: #e7f0e4;
  --pastel-pink: #ffd3d4;
  --pastel-lilac: #fdd8fe;
  --ghost-white: #f8f5f9;
  --lavander-light: #e1d7f0;
  --dusty-rose: #dfcdcd;
  --dusty-rose-light: #f9ecec;
  --charcoal: #272932;
  --dark: #222;
  --pale-lemon: #fffac2;
  --red: #d8abb1;
  --snow: #f7f1f9;
  --hover-accent: #ff6b6b;
  --font-regular: "Nunito-Regular";
  --font-medium: "Nunito-Medium";
  --font-semibold: "Nunito-SemiBold";
  --font-bold: "Nunito-Bold";
  --font-heading: "Marcellus-Regular";
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-btn: 9px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-xxl: 32px;
  --radius-full: 9999px;
  --lh-tight: 1.15;
  --lh-small: 1.25;
  --lh-normal: 1.5;
  --lh-loose: 1.75;
  --size-0: 0px;
  --size-4: 4px;
  --size-8: 8px;
  --size-12: 12px;
  --size-16: 16px;
  --size-18: 18px;
  --size-20: 20px;
  --size-24: 24px;
  --size-28: 28px;
  --size-32: 32px;
  --size-40: 40px;
  --size-48: 48px;
  --size-56: 56px;
  --size-64: 64px;
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 500;
  --z-modal: 1000;
  --z-toast: 1100;
}

@font-face {
  font-family: Nunito-Regular;
  src: url("subset-Nunito-Regular.fe774d00.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Nunito-Medium;
  src: url("subset-Nunito-Medium.dcdb91cf.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Nunito-Bold;
  src: url("subset-Nunito-Bold.b9a77989.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Nunito-SemiBold;
  src: url("subset-Nunito-SemiBold.e4fa6a74.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Marcellus-Regular;
  src: url("subset-Marcellus-Regular.068a4ec6.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: var(--font-regular);
}

html {
  color: var(--black);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--black);
  font-family: var(--font-heading);
}

h1 {
  font-size: var(--size-48);
  font-family: var(--font-heading);
  margin-bottom: var(--size-16);
  font-weight: var(--weight-regular);
}

@media (width <= 1400px) {
  h1 {
    font-size: 44px;
  }
}

@media (width <= 1200px) {
  h1 {
    font-size: 42px;
  }
}

@media (width <= 1023px) {
  h1 {
    font-size: 36px;
  }
}

@media (width <= 767px) {
  h1 {
    margin-bottom: 12px;
    font-size: 34px;
  }
}

h2 {
  color: var(--black);
  margin-bottom: var(--size-24);
  font-size: 40px;
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
}

@media (width <= 1480px) {
  h2 {
    font-size: 36px;
  }
}

@media (width <= 1200px) {
  h2 {
    margin-bottom: var(--size-20);
    font-size: 34px;
  }
}

@media (width <= 1023px) {
  h2 {
    margin-bottom: vaR(--size-16);
    font-size: 30px;
  }
}

h2.section-heading {
  font-size: 48px;
}

@media (width <= 1480px) {
  h2.section-heading {
    font-size: 46px;
  }
}

@media (width <= 1400px) {
  h2.section-heading {
    font-size: 42px;
  }
}

@media (width <= 1023px) {
  h2.section-heading {
    font-size: 38px;
  }
}

@media (width <= 767px) {
  h2.section-heading {
    font-size: 34px;
  }
}

h3 {
  color: var(--black);
  margin-bottom: var(--size-16);
  font-size: 36px;
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
}

@media (width <= 1480px) {
  h3 {
    font-size: 34px;
  }
}

@media (width <= 1200px) {
  h3 {
    margin-bottom: var(--size-12);
    font-size: 30px;
  }
}

@media (width <= 1023px) {
  h3 {
    font-size: 28px;
  }
}

p {
  font-size: 22px;
  line-height: var(--lh-normal);
  color: var(--dark);
}

@media (width <= 1480px) {
  p {
    font-size: 20px;
  }
}

@media (width <= 1200px) {
  p {
    font-size: 18px;
  }
}

@font-face {
  font-family: icomoon;
  src: url("icomoon.75acb608.eot");
  src: url("icomoon.75acb608.eot#iefix") format("embedded-opentype"), url("icomoon.e974abba.ttf") format("truetype"), url("icomoon.3510f0c8.woff") format("woff"), url("icomoon.4897e3ed.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  speak: never;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: icomoon !important;
}

.icon-parcel:before {
  content: "";
}

.icon-people:before {
  content: "";
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
  box-sizing: border-box;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (width <= 575px) {
  .container {
    max-width: calc(100% - 16px);
  }
}

@media (width >= 576px) {
  .container {
    max-width: 540px;
  }
}

@media (width >= 768px) {
  .container {
    max-width: 720px;
  }
}

@media (width >= 992px) {
  .container {
    max-width: 960px;
  }
}

@media (width >= 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (width >= 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (width >= 1620px) {
  .container {
    max-width: 1430px;
  }
}

@media (width <= 1400px) {
  .container {
    box-sizing: border-box;
  }
}

.row {
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.col {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (width <= 767.98px) {
  .col {
    flex-basis: 100%;
  }
}

@media (width >= 576px) {
  .col-sm-auto {
    flex: none;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-sm-2 {
    margin-left: 16.6667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333%;
  }

  .offset-sm-5 {
    margin-left: 41.6667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333%;
  }

  .offset-sm-8 {
    margin-left: 66.6667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333%;
  }

  .offset-sm-11 {
    margin-left: 91.6667%;
  }
}

@media (width >= 768px) {
  .col-md-auto {
    flex: none;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-md-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    box-sizing: border-box;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-md-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col-md-6 {
    box-sizing: border-box;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col-md-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col-md-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  .offset-md-2 {
    margin-left: 16.6667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333%;
  }

  .offset-md-5 {
    margin-left: 41.6667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333%;
  }

  .offset-md-8 {
    margin-left: 66.6667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333%;
  }

  .offset-md-11 {
    margin-left: 91.6667%;
  }
}

@media (width >= 992px) {
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .offset-lg-2 {
    margin-left: 16.6667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333%;
  }

  .offset-lg-5 {
    margin-left: 41.6667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333%;
  }

  .offset-lg-8 {
    margin-left: 66.6667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333%;
  }

  .offset-lg-11 {
    margin-left: 91.6667%;
  }
}

@media (width >= 1200px) {
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .offset-xl-2 {
    margin-left: 16.6667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333%;
  }

  .offset-xl-5 {
    margin-left: 41.6667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333%;
  }

  .offset-xl-8 {
    margin-left: 66.6667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333%;
  }

  .offset-xl-11 {
    margin-left: 91.6667%;
  }
}

.btn {
  border-radius: var(--radius-btn);
  background-color: var(--black);
  height: 58px;
  color: var(--white);
  line-height: 58px;
  font-family: var(--font-bold);
  font-size: var(--size-20);
  padding: 0 42px;
  transition: all .25s ease-in-out;
  display: inline-flex;
}

@media (width <= 1200px) {
  .btn {
    height: 54px;
    padding: 0 36px;
    font-size: 18px;
    line-height: 54px;
  }
}

@media (width <= 767px) {
  .btn {
    height: 52px;
    padding: 0 32px;
    font-size: 16px;
    line-height: 52px;
  }
}

.btn--lilac {
  background-color: var(--pastel-lilac);
  color: var(--charcoal);
}

.btn--small {
  height: 52px;
  padding: 0 36px;
  line-height: 52px;
}

.btn:hover {
  background-color: var(--hover-accent);
  color: var(--ghost-white);
}

.btn-more {
  text-transform: uppercase;
  color: var(--black);
  font-size: 18px;
  font-family: var(--font-bold);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: all .25s ease-in-out;
}

@media (width <= 1480px) {
  .btn-more {
    letter-spacing: 1px;
    padding-bottom: 1px;
    font-size: 16px;
  }
}

@media (width <= 1200px) {
  .btn-more {
    font-size: 14px;
  }
}

.btn-more:hover {
  color: var(--hover-accent);
  border-bottom: 1px solid var(--hover-accent);
}

.top-bar {
  width: 100%;
  z-index: var(--sticky);
  z-index: var(--z-fixed);
  transition: all .25s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
}

.top-bar__notice {
  background-color: var(--pastel-pink);
  text-align: center;
  padding: 16px 0;
}

@media (width <= 1023px) {
  .top-bar__notice {
    padding: 12px 0;
  }
}

.top-bar__notice p {
  font-size: var(--size-16);
  margin-bottom: var(--size-0);
  display: block;
}

.top-bar__branding {
  width: 200px;
}

@media (width <= 1023px) {
  .top-bar__branding {
    width: 160px;
  }
}

@media (width <= 767px) {
  .top-bar__branding {
    width: 120px;
  }
}

.top-bar__branding img {
  max-width: 100%;
}

.top-bar__nav {
  background-color: var(--white);
}

.top-bar__nav .container {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: all .25s ease-in-out;
  display: flex;
  position: relative;
}

@media (width <= 1480px) {
  .top-bar__nav .container {
    height: 80px;
  }
}

@media (width <= 1023px) {
  .top-bar__nav .container {
    height: 70px;
  }
}

.top-bar__menu {
  flex: 1;
}

@media (width <= 767px) {
  .top-bar__menu {
    display: none;
  }
}

.top-bar__menu ul {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.top-bar__menu ul li {
  margin: 0 24px;
}

@media (width <= 1200px) {
  .top-bar__menu ul li {
    margin: 0 16px;
  }
}

@media (width <= 1023px) {
  .top-bar__menu ul li {
    margin: 0 12px;
  }
}

.top-bar__menu ul li a {
  font-size: var(--size-18);
  color: var(--charcoal);
  font-family: var(--font-semibold);
  transition: all .25s ease-in-out;
  position: relative;
}

@media (width <= 1023px) {
  .top-bar__menu ul li a {
    font-size: 16px;
  }
}

.top-bar__menu ul li a:after {
  width: var(--size-8);
  height: var(--size-8);
  background-color: var(--hover-accent);
  content: "";
  border-radius: var(--radius-full);
  opacity: 0;
  transition: all .25s ease-in-out;
  display: block;
  position: absolute;
  top: auto;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.top-bar__menu ul li a:hover {
  color: var(--hover-accent);
}

.top-bar__menu ul li a:hover:after {
  opacity: 1;
}

.top-bar__menu ul li.current-menu-item a {
  color: var(--hover-accent);
}

.top-bar__btns {
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 200px;
  display: flex;
}

@media (width <= 1023px) {
  .top-bar__btns {
    width: 160px;
  }
}

@media (width <= 767px) {
  .top-bar__btns {
    width: 130px;
  }
}

.top-bar__btns a {
  font-size: var(--size-24);
  margin-right: var(--size-12);
  color: var(--charcoal);
  transition: all .25s ease-in-out;
  position: relative;
}

.top-bar__btns a:last-child {
  margin-right: 0;
}

.top-bar__btns a:hover {
  color: var(--hover-accent);
}

.top-bar__btns a .cart-count {
  background: var(--red);
  border-radius: var(--radius-full);
  text-align: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  display: flex;
  position: absolute;
  top: -12px;
  right: -12px;
}

.top-bar.sticky {
  margin-top: -56px;
  box-shadow: 0 5px 20px #0000000d;
}

@media (width <= 1400px) {
  .top-bar.sticky {
    margin-top: -56px;
  }
}

@media (width <= 1023px) {
  .top-bar.sticky {
    margin-top: -48px;
  }
}

@media (width <= 767px) {
  .top-bar.sticky {
    margin-top: -72px;
  }
}

.top-bar.sticky .top-bar__nav .container {
  height: 74px;
}

.top-bar__btn-menu {
  background-color: var(--black);
  border-radius: var(--radius-full);
  width: 44px;
  height: 44px;
  display: none;
}

@media (width <= 767px) {
  .top-bar__btn-menu {
    flex-flow: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    display: block;
  }
}

.top-bar__btn-menu span {
  background-color: var(--white);
  width: 22px;
  height: 2px;
  margin: 6px auto;
  transition: all .25s ease-in-out;
  display: block;
}

.top-bar__btn-menu:hover {
  cursor: pointer;
}

.top-bar__btn-menu:hover span {
  background-color: var(--orange);
  width: 100%;
}

.top-bar__mobnav {
  z-index: 9999;
  background: var(--lavander-light);
  width: 70vw;
  height: 100vh;
  padding: 85px 35px 25px;
  transition-duration: .52s;
  transition-timing-function: ease-out;
  position: fixed;
  top: 0;
  right: -70vw;
  overflow-y: scroll;
  transform: translateX(650px);
  box-shadow: -6px 6px 18px #00000040;
}

@media (width >= 768px) {
  .top-bar__mobnav {
    width: 320px;
  }
}

.top-bar__mobnav.is-active {
  right: 0;
  transform: translateX(0);
}

.top-bar__mobnav ul.menu {
  margin-bottom: var(--size-48);
}

.top-bar__mobnav ul.menu li {
  margin-bottom: 20px;
  position: relative;
}

.top-bar__mobnav ul.menu li.menu-item-has-children .submenu-after {
  z-index: 1;
  cursor: pointer;
  speak: never;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--orange);
  text-align: center;
  border-radius: 100%;
  width: 36px;
  height: 36px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: -5px;
  right: 0;
  font-family: icomoon !important;
}

.top-bar__mobnav ul.menu li.menu-item-has-children .submenu-after:after {
  z-index: 1;
  speak: never;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  color: var(--white);
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: icomoon !important;
}

.top-bar__mobnav ul.menu li.menu-item-has-children > a {
  width: 70%;
}

.top-bar__mobnav ul.menu li {
  text-align: center;
  margin-bottom: 15px;
}

.top-bar__mobnav ul.menu li a {
  color: var(--dark);
  font-size: 20px;
  font-family: var(--text-regular);
}

.top-bar__mobnav ul.menu li a:hover {
  color: var(--accent);
}

.top-bar__mobnav ul.sub-menu {
  text-align: left;
  padding: 20px 0 0 20px;
  transition-duration: .6s;
  transition-timing-function: ease-out;
  display: none;
}

.top-bar__mobnav ul.sub-menu li {
  margin-bottom: 15px;
}

.top-bar__mobnav ul.sub-menu li a {
  color: var(--dark);
  font-size: 18px;
  font-family: var(--text-regular);
}

.top-bar__mobnav ul.sub-menu li a:hover {
  color: var(--accent);
}

.top-bar__mobnav ul.sub-menu.is-open {
  max-height: 300px;
}

.top-bar__mobnav ul.sub-menu.active-mobile {
  display: block;
}

.top-bar__mobnav .menu-primary-menu-container li {
  margin-bottom: 15px;
}

.top-bar__mobnav .menu-primary-menu-container li.active-li a:after {
  transform: rotate(180deg);
}

.top-bar__mobnav .menu-primary-menu-container li a {
  color: var(--charcoal);
  font-size: 20px;
  font-family: var(--text-semi);
  text-align: center;
  display: block;
}

.top-bar__mobnav .menu-primary-menu-container li a:hover {
  color: var(--accent);
}

.top-bar__mobnav a[href="#"] {
  cursor: auto;
}

.top-bar__mobnav a[href="#"]:hover {
  color: var(--dark);
}

.top-bar__mobnav::-webkit-scrollbar {
  background-color: #0000;
  width: 15px;
}

.top-bar__mobnav::-webkit-scrollbar:horizontal {
  height: 6px;
}

.top-bar__mobnav::-webkit-scrollbar-track {
  border: none;
  border-radius: 3px;
}

.top-bar__mobnav::-webkit-scrollbar-thumb {
  background-color: var(--pale);
  border: 3px solid var(--red);
  border-radius: 0;
}

.top-bar__mobnav {
  scrollbar-color: var(--red) transparent;
  scrollbar-width: thin;
}

.top-bar__network ul {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.top-bar__network ul li {
  margin-left: 16px;
}

.top-bar__network ul li:first-child {
  margin-left: 0;
}

.top-bar__network ul li a {
  transition: all .25s ease-in-out;
}

.top-bar__network ul li a img {
  width: 20px;
}

@media (width <= 767px) {
  .top-bar__network ul li a img {
    width: 24px;
  }
}

.top-bar__network ul li a:hover {
  opacity: .5;
}

.top-bar__close {
  cursor: pointer;
  background-image: url("close.729968e2.svg");
  background-position: center;
  background-size: 200%;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 30px;
  right: 30px;
}

.top-bar__overlay {
  z-index: 999;
  background-color: #0009;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0;
}

.top-bar__overlay.is-active {
  display: block;
}

.hero-small {
  background-color: var(--mint-green);
  margin-top: 144px;
  padding: 80px 0;
}

@media (width <= 1480px) {
  .hero-small {
    margin-top: 134px;
  }
}

@media (width <= 1023px) {
  .hero-small {
    margin-top: 120px;
    padding: 40px 0;
  }
}

@media (width <= 767px) {
  .hero-small {
    margin-top: 136px;
  }
}

.hero-small__caption {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}

@media (width <= 1400px) {
  .hero-small__caption {
    max-width: 560px;
  }
}

@media (width <= 1023px) {
  .hero-small__caption {
    max-width: 460px;
  }
}

.hero-blog {
  background-color: var(--lavander-light);
  margin-top: 144px;
  padding-top: 84px;
}

@media (width <= 1480px) {
  .hero-blog {
    margin-top: 134px;
    padding-top: 64px;
  }
}

@media (width <= 1023px) {
  .hero-blog {
    margin-top: 120px;
    padding-top: 48px;
  }
}

@media (width <= 767px) {
  .hero-blog {
    margin-top: 136px;
  }
}

.hero-blog__caption {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

@media (width <= 1480px) {
  .hero-blog__caption {
    max-width: 640px;
  }
}

@media (width <= 1400px) {
  .hero-blog__caption {
    max-width: 600px;
  }
}

@media (width <= 1023px) {
  .hero-blog__caption {
    max-width: 480px;
  }
}

.hero-blog__caption h1 {
  margin-bottom: var(--size-16);
}

.hero-blog__author {
  margin-bottom: var(--size-24);
}

.hero-blog__author img {
  border-radius: var(--radius-full);
  width: 64px;
  height: 64px;
  margin: 0 auto;
  margin-bottom: var(--size-12);
  display: block;
}

.hero-blog__author small {
  font-size: 16px;
}

.hero-blog__author span {
  color: var(--charcoal);
  font-size: 20px;
  font-family: var(--font-semibold);
  display: block;
}

.hero-blog__overview {
  padding-bottom: var(--size-48);
}

@media (width <= 1400px) {
  .hero-blog__overview {
    padding-bottom: var(--size-32);
  }
}

.subscribe {
  margin-bottom: 32px;
  position: relative;
}

@media (width <= 1200px) {
  .subscribe {
    margin-bottom: 24px;
  }
}

.subscribe__overlay {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.subscribe .splide__photo {
  margin-bottom: 24px;
}

.subscribe .splide__photo img {
  object-fit: cover;
  opacity: .5;
  width: 100%;
  max-width: 100%;
  height: 300px;
  display: block;
}

@media (width <= 1200px) {
  .subscribe .splide__photo img {
    height: 250px;
  }
}

.subscribe__block {
  text-align: center;
  background-color: var(--pale-lemon);
  box-sizing: border-box;
  width: 700px;
  padding: 84px 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (width <= 1480px) {
  .subscribe__block {
    width: 640px;
    padding: 64px;
  }
}

@media (width <= 1200px) {
  .subscribe__block {
    width: 600px;
    padding: 48px;
  }
}

@media (width <= 1023px) {
  .subscribe__block {
    width: 520px;
  }
}

@media (width <= 767px) {
  .subscribe__block {
    width: 90%;
    padding: 32px;
  }
}

.subscribe__block h2 {
  color: var(--dark);
}

@media (width <= 767px) {
  .subscribe__block h2 {
    font-size: 26px;
  }
}

.subscribe__block p {
  color: var(--white);
  max-width: 540px;
  margin: 0 auto;
}

@media (width <= 1480px) {
  .subscribe__block p {
    max-width: 440px;
  }
}

@media (width <= 767px) {
  .subscribe__block p {
    font-size: 18px;
  }
}

.subscribe__form {
  width: 420px;
  margin: 24px auto 0;
  position: relative;
}

@media (width <= 767px) {
  .subscribe__form {
    width: 100%;
  }
}

.subscribe__form input[type="email"] {
  background-color: var(--white);
  width: 100%;
  height: 68px;
  color: var(--dark);
  box-sizing: border-box;
  border: none;
  border-radius: 12px;
  padding-left: 16px;
  font-size: 20px;
  line-height: 68px;
}

@media (width <= 767px) {
  .subscribe__form input[type="email"] {
    height: 62px;
    font-size: 18px;
    line-height: 62px;
  }
}

.subscribe__form input[type="submit"] {
  background-color: var(--black);
  height: 56px;
  color: var(--ghost-white);
  font-size: 18px;
  font-family: var(--font-bold);
  font-size: var(--size-20);
  border: none;
  border-radius: 12px;
  padding: 0 32px;
  transition: all .25s ease-in-out;
  display: inline-block;
  position: absolute;
  top: 6px;
  right: 6px;
}

@media (width <= 767px) {
  .subscribe__form input[type="submit"] {
    width: 100%;
    margin-top: 12px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }
}

.subscribe__form input[type="submit"]:hover {
  background-color: var(--hover-accent);
  color: var(--white);
}

.subscribe__notice p {
  font-size: var(--size-16);
  color: var(--dark);
  margin-top: 12px;
}

.subscribe__notice p a {
  color: var(--pastel-pink);
  text-decoration: underline;
}

.subscribe__notice p a:hover {
  text-decoration: none;
}

.page-footer {
  background-color: var(--mint-green);
  padding: 80px 0 40px;
}

@media (width <= 1200px) {
  .page-footer {
    padding: 64px 0 32px;
  }
}

@media (width <= 1023px) {
  .page-footer {
    padding: 48px 0 32px;
  }
}

@media (width <= 767px) {
  .page-footer {
    text-align: center;
    padding-bottom: 0;
  }
}

.page-footer .container-flex {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: start;
  display: flex;
}

@media (width <= 1023px) {
  .page-footer .container-flex {
    display: block;
  }
}

.page-footer__left {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: start;
  width: 70%;
  display: flex;
}

@media (width <= 1023px) {
  .page-footer__left {
    width: 100%;
  }
}

@media (width <= 767px) {
  .page-footer__left {
    display: block;
  }
}

.page-footer__right {
  width: 250px;
}

@media (width <= 1200px) {
  .page-footer__right {
    width: auto;
  }
}

.page-footer__title {
  margin-bottom: var(--size-24);
  font-size: 22px;
  font-family: var(--font-semibold);
  color: var(--black);
  display: block;
}

@media (width <= 1480px) {
  .page-footer__title {
    font-size: 20px;
  }
}

@media (width <= 1200px) {
  .page-footer__title {
    margin-bottom: var(--size-16);
  }
}

@media (width <= 767px) {
  .page-footer__title {
    margin-bottom: var(--size-8);
  }

  .page-footer__nav {
    margin-bottom: var(--size-32);
  }
}

.page-footer__nav ul li a {
  color: var(--charcoal);
  margin-bottom: var(--size-16);
  font-size: 20px;
  transition: all .25s ease-in-out;
  display: block;
}

@media (width <= 1480px) {
  .page-footer__nav ul li a {
    font-size: 18px;
  }
}

@media (width <= 1200px) {
  .page-footer__nav ul li a {
    margin-bottom: var(--size-12);
    font-size: 16px;
  }
}

@media (width <= 767px) {
  .page-footer__nav ul li a {
    margin-bottom: var(--size-8);
  }
}

.page-footer__nav ul li a:hover {
  color: var(--hover-accent);
}

@media (width <= 1023px) {
  .page-footer__follow {
    margin-top: var(--size-24);
  }
}

.page-footer__follow ul {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

@media (width <= 767px) {
  .page-footer__follow ul {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

.page-footer__follow ul li {
  margin-bottom: 24px;
  margin-right: 24px;
}

@media (width <= 1200px) {
  .page-footer__follow ul li {
    margin-bottom: 16px;
    margin-right: 16px;
  }
}

.page-footer__follow ul li img {
  width: 32px;
  transition: all .25s ease-in-out;
}

@media (width <= 1480px) {
  .page-footer__follow ul li img {
    width: 24px;
  }
}

.page-footer__follow ul li a:hover img {
  transform: scale(1.15);
}

.page-footer__cards {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 64px;
  padding: 24px 0;
  display: flex;
}

.page-footer__cards .card {
  flex-flow: wrap;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.page-footer__cards .card img {
  max-width: 70%;
  max-height: 60px;
}

@media (width <= 1480px) {
  .page-footer__cards .card img {
    max-height: 50px;
  }
}

.page-footer__copy {
  padding-top: var(--size-32);
  text-align: center;
}

@media (width <= 767px) {
  .page-footer__copy {
    padding: 24px;
  }
}

.page-footer__copy small {
  font-size: var(--size-16);
}

.featured {
  background-color: var(--charcoal);
  text-align: center;
  padding: 50px 0;
}

.featured--bottom {
  margin-bottom: 48px;
}

.featured__title {
  color: var(--white);
  font-size: var(--size-28);
  margin-bottom: var(--size-48);
  font-family: var(--font-semibold);
  display: block;
}

@media (width <= 1480px) {
  .featured__title {
    font-size: 26px;
  }
}

@media (width <= 1023px) {
  .featured__title {
    margin-bottom: var(--size-24);
    font-size: 22px;
  }
}

.featured__logos {
  margin-bottom: var(--size-48);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media (width <= 767px) {
  .featured__logos {
    margin-bottom: var(--size-24);
  }
}

.featured__logos .logo {
  flex: 1;
}

.featured__logos .logo img {
  max-width: 70%;
}

.featured .quote {
  max-width: 800px;
  margin: 0 auto;
}

@media (width <= 1200px) {
  .featured .quote {
    max-width: 600px;
  }
}

.featured .quote p {
  color: var(--ghost-white);
  font-size: var(--size-32);
  margin-bottom: var(--size-24);
}

@media (width <= 1480px) {
  .featured .quote p {
    font-size: 28px;
  }
}

@media (width <= 1200px) {
  .featured .quote p {
    font-size: 24px;
  }
}

@media (width <= 1023px) {
  .featured .quote p {
    font-size: 22px;
  }
}

.featured .quote img {
  max-width: 240px;
}

@media (width <= 1200px) {
  .featured .quote img {
    max-width: 200px;
  }
}

@media (width <= 1023px) {
  .featured .quote img {
    max-width: 160px;
  }
}

.content {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .content {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .content {
    padding: 70px 0;
  }
}

@media (width <= 1200px) {
  .content {
    padding: 60px 0;
  }
}

@media (width <= 767px) {
  .content {
    padding: 50px 0;
  }
}

.content .container {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (width <= 767px) {
  .content .container {
    display: block;
  }
}

.content__photo {
  width: 50%;
}

@media (width <= 767px) {
  .content__photo {
    width: 100%;
  }
}

.content__photo img {
  object-fit: cover;
  border-radius: var(--size-24);
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.content__text {
  width: 100%;
  max-width: 570px;
}

@media (width <= 1400px) {
  .content__text {
    width: 45%;
  }
}

@media (width <= 767px) {
  .content__text {
    width: 100%;
    padding-bottom: var(--size-24);
  }
}

.content__text p {
  margin-bottom: var(--size-32);
}

@media (width <= 1200px) {
  .content__text p {
    margin-bottom: var(--size-24);
  }
}

.content__text ul li {
  font-family: var(--font-semibold);
  color: var(--dark);
  margin-bottom: var(--size-12);
  background: url("checkbox.8a792428.svg") 0 no-repeat;
  padding-left: 40px;
  font-size: 22px;
  position: relative;
}

@media (width <= 1480px) {
  .content__text ul li {
    font-size: 20px;
  }
}

@media (width <= 1023px) {
  .content__text ul li {
    padding-left: 32px;
    font-size: 18px;
  }
}

.content__text ul {
  margin-bottom: var(--size-48);
}

@media (width <= 1400px) {
  .content__text ul {
    margin-bottom: var(--size-32);
  }
}

.content--lilac {
  background-color: var(--pastel-lilac);
}

.ingredients {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .ingredients {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .ingredients {
    padding: 70px 0;
  }
}

@media (width <= 1200px) {
  .ingredients {
    padding: 60px 0;
  }
}

@media (width <= 767px) {
  .ingredients {
    padding: 50px 0;
  }
}

.ingredients {
  background: var(--ghost-white);
}

.ingredients .splide__slide {
  text-align: center;
}

.ingredients .splide__photo {
  margin-bottom: var(--size-24);
}

.ingredients .splide__photo img {
  border-radius: var(--radius-full);
  max-width: 100%;
}

@media (width <= 1200px) {
  .ingredients .splide__desc {
    padding: 0 12px;
  }
}

@media (width <= 1023px) {
  .ingredients .splide__desc {
    padding: 0;
  }
}

.ingredients .splide__desc p {
  font-size: 20px;
}

@media (width <= 1023px) {
  .ingredients .splide__desc p {
    font-size: 18px;
  }
}

.ingredients .splide__title {
  margin-bottom: var(--size-16);
  font-size: var(--size-24);
  font-family: var(--font-semibold);
  color: var(--charcoal);
  display: block;
}

@media (width <= 1200px) {
  .ingredients .splide__title {
    margin-bottom: var(--size-12);
    font-size: 22px;
  }
}

.ingredients .splide__arrow {
  opacity: 1;
  background-color: var(--black);
  color: var(--white);
  width: 48px;
  height: 48px;
  transition: all .25s ease-in-out;
}

.ingredients .splide__arrow svg {
  filter: brightness(0) invert();
}

.ingredients .splide__arrow:hover {
  background-color: var(--hover-accent);
}

.ingredients .splide__arrow:hover svg {
  filter: none;
  transition: all .25s ease-in-out;
}

.ingredients .splide__arrow--prev {
  left: -32px;
}

@media (width <= 1200px) {
  .ingredients .splide__arrow--prev {
    left: -20px;
  }
}

@media (width <= 767px) {
  .ingredients .splide__arrow--prev {
    left: -12px;
  }
}

.ingredients .splide__arrow--next {
  right: -32px;
}

@media (width <= 1200px) {
  .ingredients .splide__arrow--next {
    right: -20px;
  }
}

@media (width <= 767px) {
  .ingredients .splide__arrow--next {
    right: -12px;
  }
}

.ingredients .splide__pagination {
  margin-top: var(--size-32);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.ingredients .splide__pagination li {
  margin: 0 2px;
}

.ingredients .splide__pagination__page {
  background-color: var(--black);
  transition: all .25s ease-in-out;
}

.ingredients .splide__pagination__page.is-active {
  background-color: Var(--hover-accent);
  border-radius: 9px;
  width: 20px;
}

.intro-header {
  text-align: center;
  max-width: 650px;
  padding-bottom: var(--size-48);
  margin: 0 auto;
}

@media (width <= 1200px) {
  .intro-header {
    max-width: 600px;
  }
}

.intro-header--lg {
  max-width: 800px;
}

.intro-header p {
  font-size: 24px;
  font-family: var(--font-medium);
}

@media (width <= 1200px) {
  .intro-header p {
    font-size: 22px;
  }
}

.intro-header--bottom {
  padding-bottom: var(--size-24);
}

@media (width <= 1023px) {
  .intro-header--bottom {
    padding-bottom: var(--size-12);
  }
}

.faq {
  background-color: var(--white);
  padding: 100px 0;
}

@media (width <= 1480px) {
  .faq {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .faq {
    padding: 70px 0;
  }
}

@media (width <= 1200px) {
  .faq {
    padding: 60px 0;
  }
}

@media (width <= 767px) {
  .faq {
    padding: 50px 0;
  }
}

.faq .accordion {
  max-width: 900px;
  margin: 0 auto;
}

@media (width <= 1480px) {
  .faq .accordion {
    max-width: 800px;
  }
}

@media (width <= 1200px) {
  .faq .accordion {
    max-width: 640px;
  }
}

@media (width <= 1023px) {
  .faq .accordion {
    max-width: 560px;
  }
}

.faq .accordion__item {
  width: 100%;
  overflow: hidden;
}

.faq .accordion__title {
  border-bottom: 1px solid var(--dark);
  padding: 24px 0;
  position: relative;
}

@media (width <= 1400px) {
  .faq .accordion__title {
    padding: 16px 0;
  }
}

@media (width <= 767px) {
  .faq .accordion__title {
    padding: 12px;
  }
}

.faq .accordion__title:after {
  content: "";
  background: url("down-arrow.0cf98110.svg") 0 0 / cover;
  width: 24px;
  height: 24px;
  transition: all .25s ease-in-out;
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.faq .accordion__title h3 {
  font-size: 24px;
  line-height: 1.4;
  font-family: var(--text-semi);
  transition: all .25s ease-in-out;
}

@media (width <= 1480px) {
  .faq .accordion__title h3 {
    font-size: 22px;
  }
}

@media (width <= 1400px) {
  .faq .accordion__title h3 {
    font-size: 22px;
  }
}

@media (width <= 1200px) {
  .faq .accordion__title h3 {
    font-size: 20px;
  }
}

@media (width <= 767px) {
  .faq .accordion__title h3 {
    padding-right: 32px;
    font-size: 20px;
  }
}

.faq .accordion__title:hover {
  cursor: pointer;
}

.faq .accordion__title:hover h3 {
  color: var(--yellow);
}

.faq .accordion__content {
  will-change: max-height;
  opacity: 0;
  max-height: 0;
  transition: all .25s ease-out;
  overflow: hidden;
}

.faq .accordion__answer {
  flex: 1;
}

.faq .accordion__text {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: start;
  padding: 24px 0;
  display: flex;
}

@media (width <= 1023px) {
  .faq .accordion__text {
    padding: 16px;
  }
}

.faq .accordion__text p {
  margin-bottom: 16px;
}

.faq .accordion--active .accordion__title {
  border-color: var(--green);
}

.faq .accordion--active .accordion__title h3 {
  color: var(--green);
}

.faq .accordion--active .accordion__title:after {
  margin-top: -10px;
  transform: rotate(180deg);
}

.faq .accordion--active .accordion__content {
  opacity: 1;
  max-height: auto;
  height: auto;
}

.main {
  padding: 82px 0 40px;
}

@media (width <= 1200px) {
  .main {
    padding: 48px 0 12px;
  }
}

.main__content {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
  display: flex;
}

@media (width <= 767px) {
  .main__content {
    margin-bottom: 48px;
    display: block;
  }
}

.main__content:nth-child(2n) .main__photo {
  order: -1;
}

.main__text {
  width: 40%;
}

@media (width <= 767px) {
  .main__text {
    width: 100%;
  }
}

.main__photo {
  width: 50%;
}

@media (width <= 767px) {
  .main__photo {
    width: 100%;
    margin-top: 24px;
  }
}

.main__photo img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: 540px;
  display: block;
}

@media (width <= 1400px) {
  .main__photo img {
    height: 440px;
  }
}

@media (width <= 1200px) {
  .main__photo img {
    height: 380px;
  }
}

@media (width <= 767px) {
  .main__photo img {
    height: 280px;
  }
}

.ermac {
  text-align: center;
  background-color: var(--lavander-light);
  margin-top: 144px;
  margin-bottom: 48px;
  padding: 124px 0;
}

@media (width <= 1480px) {
  .ermac {
    margin-top: 134px;
  }
}

@media (width <= 1400px) {
  .ermac {
    padding: 100px 0;
  }
}

@media (width <= 1023px) {
  .ermac {
    margin-top: 120px;
    padding: 84px 0;
  }
}

@media (width <= 767px) {
  .ermac {
    margin-top: 136px;
  }
}

.ermac__wrapper p {
  max-width: 640px;
  margin: 0 auto 32px;
}

@media (width <= 1400px) {
  .ermac__wrapper p {
    max-width: 480px;
  }
}

.regular-page {
  padding: 80px 0;
}

@media (width <= 1400px) {
  .regular-page {
    padding: 50px 0;
  }
}

@media (width <= 767px) {
  .regular-page {
    padding: 40px 0;
  }
}

.regular-page__content {
  max-width: 900px;
  margin: 0 auto;
}

@media (width <= 1400px) {
  .regular-page__content {
    max-width: 720px;
  }
}

@media (width <= 1023px) {
  .regular-page__content {
    max-width: 640px;
  }
}

.regular-page__content p {
  margin-bottom: var(--size-32);
}

@media (width <= 1400px) {
  .regular-page__content p {
    margin-bottom: var(--size-24);
  }
}

.regular-page__content h3 {
  font-family: var(--font-bold);
}

.regular-page__content .wp-block-image {
  margin-bottom: var(--size-32);
}

@media (width <= 1400px) {
  .regular-page__content .wp-block-image {
    margin-bottom: var(--size-24);
  }
}

.regular-page__content .wp-block-image img {
  border-radius: var(--radius-xl);
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 640px;
  display: block;
}

@media (width <= 1200px) {
  .regular-page__content .wp-block-image img {
    max-height: 480px;
  }
}

@media (width <= 767px) {
  .regular-page__content .wp-block-image img {
    max-height: 360px;
  }
}

.regular-page .wc-block-cart-items .wc-block-components-product-name {
  color: var(--black);
  font-size: 20px;
  font-family: var(--font-semibold);
}

.regular-page .wc-block-cart-items .wc-block-components-product-name:hover {
  color: var(--hover-accent);
}

.regular-page .wc-block-cart-items td.wc-block-cart-item__image img {
  border-radius: var(--radius-md);
}

.regular-page .wc-block-cart-items th span, .regular-page .wc-block-cart__sidebar h2 {
  font-size: 16px;
}

.regular-page .wc-block-cart__submit-container a {
  border-radius: var(--radius-btn);
  background-color: var(--black);
  height: 58px;
  color: var(--white);
  line-height: 58px;
  font-family: var(--font-bold);
  font-size: var(--size-20);
  width: 100%;
  transition: all .25s ease-in-out;
  display: inline-flex;
}

.regular-page .wc-block-cart__submit-container a:hover {
  background-color: var(--hover-accent);
  color: var(--ghost-white);
}

.regular-page .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  width: 100%;
}

.regular-page .wp-block-woocommerce-checkout-fields-block h2 {
  font-size: 28px;
}

.regular-page .wp-block-woocommerce-checkout-fields-block .wc-block-components-checkout-place-order-button__text {
  border-radius: var(--radius-btn);
  background-color: var(--black);
  height: 58px;
  color: var(--white);
  line-height: 58px;
  font-family: var(--font-bold);
  font-size: var(--size-20);
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  padding: 0 42px;
  transition: all .25s ease-in-out;
  display: block;
}

.regular-page .wp-block-woocommerce-checkout-fields-block .wc-block-components-checkout-place-order-button__text:hover {
  background-color: var(--hover-accent);
  color: var(--ghost-white);
}

.clearfix {
  clear: both;
}

.hero {
  background-color: var(--mint-green);
  margin-top: 144px;
  padding: 80px 0;
}

@media (width <= 1023px) {
  .hero {
    margin-top: 116px;
    padding: 40px 0;
  }
}

@media (width <= 767px) {
  .hero {
    margin-top: 136px;
  }
}

.hero__ingred {
  background-color: var(--red);
}

.hero__about {
  background-color: var(--pale-lemon);
}

.hero__shop {
  background-color: var(--mint-green);
}

.hero .container {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (width <= 767px) {
  .hero .container {
    display: block;
  }
}

.hero__caption {
  width: 50%;
}

@media (width <= 1480px) {
  .hero__caption {
    width: 55%;
  }
}

@media (width <= 767px) {
  .hero__caption {
    width: 100%;
  }
}

.hero__caption h1 {
  max-width: 570px;
}

.hero__caption p {
  max-width: 560px;
  margin-bottom: var(--size-32);
  font-size: 24px;
}

@media (width <= 1480px) {
  .hero__caption p {
    max-width: 500px;
    font-size: 22px;
  }
}

@media (width <= 1200px) {
  .hero__caption p {
    max-width: 460px;
    font-size: 20px;
  }
}

@media (width <= 1023px) {
  .hero__caption p {
    margin-bottom: var(--size-24);
  }
}

.hero__btns {
  margin-bottom: var(--size-32);
}

@media (width <= 767px) {
  .hero__btns {
    margin-bottom: var(--size-24);
  }
}

.hero__btns a {
  margin-right: var(--size-24);
}

@media (width <= 1023px) {
  .hero__btns a {
    margin-right: var(--size-16);
  }
}

@media (width <= 767px) {
  .hero__btns a {
    margin-right: var(--size-12);
  }
}

.hero ul li {
  font-family: var(--font-semibold);
  color: var(--charcoal);
  background: url("checkbox.8a792428.svg") 0 no-repeat;
  padding-left: 32px;
  font-size: 16px;
  position: relative;
}

@media (width <= 1480px) {
  .hero ul li {
    padding-left: 28px;
  }
}

@media (width <= 1400px) {
  .hero ul li {
    margin-bottom: var(--size-12);
  }
}

.hero ul {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: start;
  display: flex;
}

.hero ul li {
  margin-right: var(--size-24);
}

.hero__photo {
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  display: flex;
}

@media (width <= 1480px) {
  .hero__photo {
    width: 45%;
  }
}

@media (width <= 767px) {
  .hero__photo {
    width: 100%;
    margin-top: var(--size-24);
  }
}

.hero__photo img {
  max-width: 100%;
}

.hero__image {
  width: 50%;
}

@media (width <= 1480px) {
  .hero__image {
    width: 45%;
  }
}

@media (width <= 1023px) {
  .hero__image {
    width: 40%;
  }
}

@media (width <= 767px) {
  .hero__image {
    width: 100%;
    margin-top: var(--size-24);
  }
}

.hero__image img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.features {
  background-color: var(--ghost-white);
  padding: var(--size-32) 0px;
}

.features .container {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (width <= 767px) {
  .features .container {
    display: block;
  }
}

.features__intro {
  max-width: 400px;
}

@media (width <= 1200px) {
  .features__intro {
    max-width: 360px;
  }
}

@media (width <= 1023px) {
  .features__intro {
    width: 30%;
  }
}

@media (width <= 767px) {
  .features__intro {
    width: 100%;
  }
}

.features__intro h2 {
  font-size: var(--size-24);
  line-height: var(--lh-normal);
  font-family: var(--font-semibold);
  font-weight: var(--weight-semibold);
}

@media (width <= 1200px) {
  .features__intro h2 {
    font-size: 22px;
  }
}

@media (width <= 1023px) {
  .features__intro h2 {
    font-size: 20px;
  }
}

@media (width <= 767px) {
  .features__intro h2 {
    text-align: center;
  }
}

.features__list {
  text-align: center;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: start;
  width: 60%;
  display: flex;
}

@media (width <= 1023px) {
  .features__list {
    width: 65%;
  }
}

@media (width <= 767px) {
  .features__list {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }
}

.features__list .feature {
  flex: 1;
}

@media (width <= 767px) {
  .features__list .feature {
    width: 33%;
    margin-bottom: var(--size-16);
    flex: auto;
  }
}

.features__list .feature__icon {
  margin: 0 auto;
  margin-bottom: var(--size-12);
  border-radius: var(--radius-full);
  border: 1px solid var(--dark);
  background: var(--mint-pale);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 84px;
  height: 84px;
  display: flex;
}

@media (width <= 1400px) {
  .features__list .feature__icon {
    width: 68px;
    height: 68px;
  }
}

@media (width <= 1023px) {
  .features__list .feature__icon {
    width: 54px;
    height: 54px;
    margin-bottom: var(--size-8);
  }
}

.features__list .feature__icon img {
  width: 40px;
}

@media (width <= 1023px) {
  .features__list .feature__icon img {
    width: 28px;
  }
}

.features__list .feature__label span {
  font-size: var(--size-20);
  font-family: var(--font-medium);
  color: var(--charcoal);
}

@media (width <= 1480px) {
  .features__list .feature__label span {
    font-size: 18px;
    line-height: var(--lh-small);
  }
}

@media (width <= 1200px) {
  .features__list .feature__label span {
    padding: 0 4px;
    font-size: 16px;
  }
}

.features__list--center {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  display: flex;
}

.features__list--center .feature__icon {
  width: 140px;
  height: 140px;
}

@media (width <= 1480px) {
  .features__list--center .feature__icon {
    width: 120px;
    height: 120px;
  }
}

@media (width <= 1200px) {
  .features__list--center .feature__icon {
    width: 100px;
    height: 100px;
  }
}

@media (width <= 1023px) {
  .features__list--center .feature__icon {
    width: 100px;
    height: 100px;
  }
}

@media (width <= 767px) {
  .features__list--center .feature__icon {
    width: 64px;
    height: 64px;
  }
}

.features__list--center .feature__icon img {
  width: 64px;
}

@media (width <= 1200px) {
  .features__list--center .feature__icon img {
    width: 48px;
  }
}

@media (width <= 767px) {
  .features__list--center .feature__icon img {
    width: 32px;
  }
}

.about {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .about {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .about {
    padding: 70px 0;
  }
}

@media (width <= 1200px) {
  .about {
    padding: 60px 0;
  }
}

@media (width <= 767px) {
  .about {
    padding: 50px 0;
  }
}

.about {
  background-color: var(--lavander-light);
}

.about .container {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (width <= 767px) {
  .about .container {
    display: block;
  }
}

.about__photo {
  width: 50%;
}

@media (width <= 767px) {
  .about__photo {
    width: 100%;
  }
}

.about__photo img {
  object-fit: cover;
  border-radius: var(--size-24);
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.about__text {
  width: 100%;
  max-width: 570px;
}

@media (width <= 1400px) {
  .about__text {
    width: 45%;
  }
}

@media (width <= 767px) {
  .about__text {
    padding-top: vaR(--size-24);
    width: 100%;
  }
}

.about__text p {
  margin-bottom: var(--size-32);
}

@media (width <= 1200px) {
  .about__text p {
    margin-bottom: var(--size-24);
  }
}

.about__rating {
  margin-bottom: var(--size-12);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

@media (width <= 1200px) {
  .about__rating {
    margin-bottom: var(--size-8);
  }
}

.about__rating img {
  margin-right: var(--size-12);
  width: 80px;
}

.about__rating span {
  font-size: 22px;
}

@media (width <= 1480px) {
  .about__rating span {
    font-size: var(--size-20);
  }
}

@media (width <= 1200px) {
  .about__rating span {
    font-size: 18px;
  }
}

.blog-featured {
  background-color: var(--ghost-white);
  padding: 80px 0;
}

@media (width <= 1480px) {
  .blog-featured {
    padding: 60px 0;
  }
}

@media (width <= 767px) {
  .blog-featured {
    padding: 40px 0;
  }
}

.blog-featured .container {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (width <= 767px) {
  .blog-featured .container {
    display: block;
  }
}

.blog-featured__photo {
  width: 50%;
}

@media (width <= 767px) {
  .blog-featured__photo {
    width: 100%;
    margin-bottom: var(--size-24);
  }
}

.blog-featured__photo img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (width <= 1200px) {
  .blog-featured__photo img {
    height: 360px;
  }
}

@media (width <= 767px) {
  .blog-featured__photo img {
    height: 240px;
  }
}

.blog-featured__text {
  max-width: 570px;
}

@media (width <= 1480px) {
  .blog-featured__text {
    max-width: 520px;
  }
}

@media (width <= 1400px) {
  .blog-featured__text {
    max-width: 460px;
  }
}

@media (width <= 1200px) {
  .blog-featured__text {
    max-width: 45%;
  }
}

@media (width <= 767px) {
  .blog-featured__text {
    width: 100%;
    max-width: 100%;
  }
}

.blog-featured__text h2 a {
  color: var(--black);
}

.blog-featured__text h2 a:hover {
  text-decoration: underline;
}

.blog-featured__metas {
  margin-bottom: var(--size-16);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blog-featured__cats a {
  background-color: var(--pale-lemon);
  color: var(--black);
  border-radius: var(--radius-full);
  font-size: 16px;
  font-family: var(--font-semibold);
  padding: 8px 24px;
  transition: all .25s ease-in-out;
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
}

.blog-featured__cats a:hover {
  background-color: var(--hover-accent);
  color: var(--white);
}

.blog-featured__date {
  text-transform: uppercase;
  color: var(--charcoal);
  margin-right: var(--size-16);
  font-size: 20px;
}

@media (width <= 1480px) {
  .blog-featured__date {
    font-size: 18px;
  }
}

@media (width <= 1400px) {
  .blog-featured__date {
    margin-right: var(--size-12);
    font-size: 16px;
  }
}

.blog-featured__footer {
  margin-top: var(--size-24);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.blog-featured__author {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blog-featured__author small {
  font-size: 16px;
}

.blog-featured__author span {
  color: var(--charcoal);
  font-size: 20px;
  font-family: var(--font-semibold);
  display: block;
}

.blog-articles {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .blog-articles {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .blog-articles {
    padding: 70px 0;
  }
}

@media (width <= 1200px) {
  .blog-articles {
    padding: 60px 0;
  }
}

@media (width <= 767px) {
  .blog-articles {
    padding: 50px 0;
  }
}

.blog-articles {
  background-color: var(--lavander-light);
}

.blog-articles--bottom {
  margin-bottom: 48px;
}

.blog-articles__cats {
  margin-bottom: var(--size-32);
}

@media (width <= 767px) {
  .blog-articles__cats {
    margin-bottom: var(--size-4);
  }
}

.blog-articles__cats ul {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blog-articles__cats ul li {
  margin-right: var(--size-12);
}

@media (width <= 1200px) {
  .blog-articles__cats ul li {
    margin-right: var(--size-8);
  }
}

@media (width <= 767px) {
  .blog-articles__cats ul li {
    margin-bottom: var(--size-24);
  }
}

.blog-articles__cats ul li a {
  background-color: var(--pale-lemon);
  color: var(--black);
  border-radius: var(--radius-full);
  font-size: 16px;
  font-family: var(--font-semibold);
  padding: 8px 24px;
  transition: all .25s ease-in-out;
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
}

@media (width <= 767px) {
  .blog-articles__cats ul li a {
    padding: 6px 16px;
    font-size: 14px;
  }
}

.blog-articles__cats ul li a:hover {
  background-color: var(--hover-accent);
  color: var(--white);
}

.blog-articles__cats ul li.current-cat a {
  background: var(--red);
  color: var(--white);
}

.article {
  margin-bottom: var(--size-32);
  background-color: var(--ghost-white);
  border-radius: var(--radius-xl);
  padding: 24px;
}

@media (width <= 1200px) {
  .article {
    padding: 16px;
  }
}

@media (width <= 767px) {
  .article {
    margin-bottom: var(--size-16);
  }
}

.article__photo {
  margin-bottom: var(--size-16);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.article__photo img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: 280px;
  transition: all .25s ease-in-out;
  display: block;
}

@media (width <= 1480px) {
  .article__photo img {
    height: 240px;
  }
}

@media (width <= 1400px) {
  .article__photo img {
    height: 200px;
  }
}

@media (width <= 1200px) {
  .article__photo img {
    height: 180px;
  }
}

.article__photo:hover img {
  transform: scale(1.1);
}

.article__text h3 {
  font-size: var(--size-24);
  margin-bottom: var(--size-12);
}

@media (width <= 1400px) {
  .article__text h3 {
    font-size: 22px;
  }
}

@media (width <= 1200px) {
  .article__text h3 {
    margin-bottom: var(--size-16);
    font-size: 20px;
  }
}

.article__text h3 a {
  color: var(--dark);
}

.article__text h3 a:hover {
  text-decoration: underline;
}

.article__text p {
  color: var(--black);
  font-size: 18px;
}

.article__date {
  text-transform: uppercase;
  color: var(--charcoal);
  margin-right: var(--size-16);
  font-size: 20px;
}

@media (width <= 1480px) {
  .article__date {
    font-size: 18px;
  }
}

@media (width <= 1400px) {
  .article__date {
    margin-right: var(--size-12);
    font-size: 16px;
  }
}

.article__footer {
  margin-top: var(--size-24);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (width <= 1200px) {
  .article__footer {
    margin-top: var(--size-16);
  }
}

.article__author {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.article__author small {
  font-size: 16px;
}

@media (width <= 1200px) {
  .article__author small {
    font-size: 14px;
  }
}

.article__author span {
  color: var(--charcoal);
  font-size: 20px;
  font-family: var(--font-semibold);
  display: block;
}

@media (width <= 1200px) {
  .article__author span {
    font-size: 18px;
  }
}

.article__metas {
  margin-bottom: var(--size-16);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.article__cats a {
  background-color: var(--pale-lemon);
  color: var(--black);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-family: var(--font-semibold);
  padding: 6px 16px;
  transition: all .25s ease-in-out;
}

.article__cats a:hover {
  background-color: var(--hover-accent);
  color: var(--white);
}

.topics {
  padding: 80px 0;
}

@media (width <= 1400px) {
  .topics {
    padding: 50px 0;
  }
}

@media (width <= 767px) {
  .topics {
    padding: 40px 0;
  }
}

.topics {
  background-color: var(--dusty-rose-light);
  margin-bottom: var(--size-48);
}

.hero-feat {
  position: relative;
}

.hero-feat:before {
  content: "";
  background-color: var(--lavander-light);
  width: 100%;
  height: 50%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-feat__photo {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
}

@media (width <= 1480px) {
  .hero-feat__photo {
    max-width: 1040px;
  }
}

@media (width <= 1400px) {
  .hero-feat__photo {
    max-width: 940px;
  }
}

@media (width <= 1200px) {
  .hero-feat__photo {
    max-width: 840px;
  }
}

@media (width <= 1023px) {
  .hero-feat__photo {
    max-width: 100%;
  }
}

.hero-feat__photo img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: 500px;
  display: block;
}

@media (width <= 1400px) {
  .hero-feat__photo img {
    height: 420px;
  }
}

@media (width <= 1023px) {
  .hero-feat__photo img {
    height: 320px;
  }
}

.blog-single {
  margin: 64px 0;
}

@media (width <= 1200px) {
  .blog-single {
    margin: 48px 0;
  }
}

.blog-single__content {
  max-width: 930px;
  margin: 0 auto;
}

@media (width <= 1480px) {
  .blog-single__content {
    max-width: 880px;
  }
}

@media (width <= 1400px) {
  .blog-single__content {
    max-width: 800px;
  }
}

@media (width <= 1200px) {
  .blog-single__content {
    max-width: 640px;
  }
}

@media (width <= 1023px) {
  .blog-single__content {
    max-width: 580px;
  }
}

.blog-single__content p {
  margin-bottom: var(--size-32);
}

@media (width <= 1400px) {
  .blog-single__content p {
    margin-bottom: var(--size-24);
  }
}

.blog-single__content h3 {
  font-family: var(--font-bold);
}

.blog-single__content .wp-block-image {
  margin-bottom: var(--size-32);
}

@media (width <= 1400px) {
  .blog-single__content .wp-block-image {
    margin-bottom: var(--size-24);
  }
}

.blog-single__content .wp-block-image img {
  border-radius: var(--radius-xl);
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 640px;
  display: block;
}

@media (width <= 1200px) {
  .blog-single__content .wp-block-image img {
    max-height: 480px;
  }
}

@media (width <= 767px) {
  .blog-single__content .wp-block-image img {
    max-height: 360px;
  }
}

.blog-related {
  padding: 80px 0;
}

@media (width <= 1400px) {
  .blog-related {
    padding: 50px 0;
  }
}

@media (width <= 767px) {
  .blog-related {
    padding: 40px 0;
  }
}

.blog-related {
  background-color: var(--lavander-light);
  margin-bottom: var(--size-48);
}

.values {
  padding: 80px 0;
}

@media (width <= 1400px) {
  .values {
    padding: 50px 0;
  }
}

@media (width <= 767px) {
  .values {
    padding: 40px 0;
  }
}

.values {
  background-color: var(--ghost-white);
}

@media (width >= 1366px) {
  .values .container {
    max-width: 1170px;
  }
}

.tabs {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  display: flex;
}

@media (width <= 1200px) {
  .tabs {
    gap: 24px;
  }
}

@media (width <= 1023px) {
  .tabs {
    gap: 16px;
  }
}

.tabs__wrapper {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: start;
  display: flex;
}

@media (width <= 767px) {
  .tabs__wrapper {
    display: block;
  }
}

.tabs__text {
  width: 45%;
}

@media (width <= 767px) {
  .tabs__text {
    width: 100%;
  }
}

.tabs__photo {
  width: 50%;
}

@media (width <= 767px) {
  .tabs__photo {
    width: 100%;
    margin-top: 16px;
  }
}

.tabs__photo img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.tab {
  cursor: pointer;
  background-color: var(--lavander-light);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  transition: color .3s;
}

@media (width <= 1200px) {
  .tab {
    text-align: center;
    width: 76px;
    padding: 20px 26px;
  }
}

@media (width <= 1023px) {
  .tab {
    width: 72px;
    padding: 16px;
  }
}

.tab.active {
  background-color: var(--pastel-lilac);
  box-shadow: 0 7px 29px #64646f33;
}

.tab span {
  font-size: 18px;
  font-family: var(--font-semibold);
  color: var(--black);
  display: block;
}

@media (width <= 1023px) {
  .tab span {
    font-size: 16px;
  }
}

.tab img {
  margin: 0 auto;
  margin-bottom: var(--size-12);
  width: 44px;
  display: block;
}

@media (width <= 1200px) {
  .tab img {
    width: 38px;
  }
}

.tab-content {
  opacity: 0;
  margin-top: 48px;
  transition: opacity .5s ease-in-out;
  display: none;
}

.tab-content.active {
  opacity: 1;
  display: block;
}

.strengths {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .strengths {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .strengths {
    padding: 70px 0;
  }
}

@media (width <= 1200px) {
  .strengths {
    padding: 60px 0;
  }
}

@media (width <= 767px) {
  .strengths {
    padding: 50px 0;
  }
}

.strengths {
  text-align: center;
  background-color: var(--mint-green);
}

.leave-out {
  padding: 80px 0;
}

@media (width <= 1400px) {
  .leave-out {
    padding: 50px 0;
  }
}

@media (width <= 767px) {
  .leave-out {
    padding: 40px 0;
  }
}

.leave-out {
  background-color: var(--lavander-light);
}

.leave-out__wrapper {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (width <= 767px) {
  .leave-out__wrapper {
    display: block;
  }
}

.leave-out__text {
  max-width: 400px;
}

@media (width <= 1023px) {
  .leave-out__text {
    width: 40%;
  }
}

@media (width <= 767px) {
  .leave-out__text {
    width: 100%;
  }
}

.leave-out__list {
  background-color: var(--ghost-white);
  border-radius: var(--radius-xl);
  width: 45%;
  padding: 80px 80px 60px;
}

@media (width <= 1400px) {
  .leave-out__list {
    width: 40%;
    padding: 64px;
  }
}

@media (width <= 1023px) {
  .leave-out__list {
    width: 45%;
    padding: 32px;
  }
}

@media (width <= 767px) {
  .leave-out__list {
    box-sizing: border-box;
    width: 100%;
    margin-top: 24px;
  }
}

.leave-out__list ul {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: start;
  display: flex;
}

@media (width <= 767px) {
  .leave-out__list ul {
    display: block;
  }
}

.leave-out__list ul li {
  width: 50%;
  color: var(--black);
  font-size: 24px;
  font-family: var(--font-semibold);
  margin-bottom: 24px;
}

@media (width <= 1480px) {
  .leave-out__list ul li {
    font-size: 22px;
  }
}

@media (width <= 1400px) {
  .leave-out__list ul li {
    margin-bottom: 16px;
    font-size: 20px;
  }
}

@media (width <= 1023px) {
  .leave-out__list ul li {
    margin-bottom: 12px;
    font-size: 16px;
  }
}

@media (width <= 767px) {
  .leave-out__list ul li {
    width: 100%;
  }
}

.results {
  background-color: var(--snow);
  padding: 100px 0;
}

@media (width <= 1480px) {
  .results {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .results {
    padding: 70px 0;
  }
}

@media (width <= 1200px) {
  .results {
    padding: 60px 0;
  }
}

@media (width <= 767px) {
  .results {
    padding: 50px 0;
  }
}

.results__list {
  justify-content: space-between;
  align-items: start;
  gap: var(--size-16);
  flex-flow: wrap;
  margin-top: 24px;
  display: flex;
}

@media (width <= 1200px) {
  .results__list {
    flex-wrap: no-wrap;
    margin-top: 6px;
  }
}

.results .result {
  background-color: var(--pastel-lilac);
  border-radius: var(--radius-xl);
  flex: 1;
}

@media (width <= 1023px) {
  .results .result {
    flex: auto;
    width: 33%;
    margin-bottom: 24px;
  }
}

.results .result__photo {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  position: relative;
}

.results .result__photo small {
  z-index: 99;
  border: 1px solid var(--black);
  border-radius: var(--radius-full);
  background-color: var(--pale-lemon);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
}

@media (width <= 1200px) {
  .results .result__photo small {
    width: 32px;
    height: 32px;
    top: -16px;
  }
}

@media (width <= 1023px) {
  .results .result__photo small img {
    width: 16px;
  }
}

.results .result__photo img.img-responsive {
  object-fit: cover;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (width <= 1023px) {
  .results .result__photo img.img-responsive {
    height: 240px;
  }
}

@media (width <= 767px) {
  .results .result__photo img.img-responsive {
    height: 180px;
  }
}

.results .result__title {
  text-align: center;
  flex-grow: 1;
  height: 70px;
  padding: 24px;
}

@media (width <= 1023px) {
  .results .result__title {
    padding: 16px;
  }
}

.results .result__title span {
  font-size: 24px;
  font-family: var(--font-bold);
}

@media (width <= 1480px) {
  .results .result__title span {
    font-size: 22px;
  }
}

@media (width <= 1400px) {
  .results .result__title span {
    font-size: 20px;
  }
}

@media (width <= 1200px) {
  .results .result__title span {
    font-size: 18px;
  }
}

.main-cta {
  padding: 84px 0;
}

@media (width <= 1400px) {
  .main-cta {
    padding: 64px 0;
  }
}

.main-cta__wrapper {
  background-color: var(--pastel-pink);
  border-radius: var(--radius-xl);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 48px 80px;
  display: flex;
}

@media (width <= 1400px) {
  .main-cta__wrapper {
    padding: 32px 48px;
  }
}

@media (width <= 767px) {
  .main-cta__wrapper {
    padding: 32px;
    display: block;
  }
}

.main-cta__text {
  width: 45%;
}

@media (width <= 1400px) {
  .main-cta__text {
    width: 50%;
  }
}

@media (width <= 767px) {
  .main-cta__text {
    width: 100%;
  }
}

.main-cta__text h3 {
  font-size: 48px;
  font-family: var(--font-bold);
  color: var(--charcoal);
}

@media (width <= 1400px) {
  .main-cta__text h3 {
    font-size: 44px;
  }
}

@media (width <= 1200px) {
  .main-cta__text h3 {
    font-size: 40px;
  }
}

@media (width <= 1023px) {
  .main-cta__text h3 {
    margin-bottom: 12px;
    font-size: 34px;
  }
}

.main-cta__text p {
  margin-bottom: var(--size-32);
  color: var(--font-semibold);
}

@media (width <= 1023px) {
  .main-cta__text p {
    margin-bottom: 16px;
  }
}

.main-cta__photo {
  max-width: 460px;
}

@media (width <= 1200px) {
  .main-cta__photo {
    max-width: 45%;
  }
}

@media (width <= 767px) {
  .main-cta__photo {
    max-width: 100%;
    margin-top: 24px;
  }
}

.main-cta__photo img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

#products-wrapper {
  padding: 80px 0;
}

@media (width <= 1400px) {
  #products-wrapper {
    padding: 50px 0;
  }
}

@media (width <= 767px) {
  #products-wrapper {
    padding: 40px 0;
  }
}

#products-wrapper {
  background-color: var(--lavander-light);
}

@media (width <= 767px) {
  #products-wrapper .woocommerce-ordering {
    width: 100%;
  }
}

#products-wrapper .woocommerce-ordering select {
  border-radius: var(--radius-md);
  border: 1px solid var(--black);
  padding: 12px;
}

@media (width <= 767px) {
  #products-wrapper .woocommerce-ordering select {
    width: 100%;
  }
}

#products-wrapper .products .product {
  background: var(--snow);
  border-radius: var(--radius-md);
  box-sizing: border-box;
  padding: 24px;
  transition: all .25s ease-in-out;
}

@media (width <= 1023px) {
  #products-wrapper .products .product {
    padding: 16px;
  }
}

@media (width <= 767px) {
  #products-wrapper .products .product {
    width: 100%;
  }
}

#products-wrapper .products .product:hover {
  background-color: var(--white);
  box-shadow: 0 4px 12px #0000001a;
}

#products-wrapper .products .product img.attachment-woocommerce_thumbnail {
  border-radius: var(--radius-md);
}

#products-wrapper .products .product h2 {
  color: var(--black);
  font-size: 24px;
  font-family: var(--font-bold);
}

@media (width <= 1200px) {
  #products-wrapper .products .product h2 {
    font-size: 22px;
  }
}

#products-wrapper .products .product span.price {
  color: var(--charcoal);
  font-size: 24px;
  font-family: var(--font-semibold);
}

@media (width <= 1200px) {
  #products-wrapper .products .product span.price {
    font-size: 22px;
  }
}

#products-wrapper .products .product .add_to_cart_button {
  border-radius: var(--radius-btn);
  background-color: var(--black);
  height: 58px;
  color: var(--white);
  line-height: 58px;
  font-family: var(--font-bold);
  font-size: var(--size-20);
  padding: 0 42px;
  transition: all .25s ease-in-out;
  display: inline-flex;
}

@media (width <= 1200px) {
  #products-wrapper .products .product .add_to_cart_button {
    height: 54px;
    padding: 0 36px;
    font-size: 18px;
    line-height: 54px;
  }
}

@media (width <= 767px) {
  #products-wrapper .products .product .add_to_cart_button {
    height: 52px;
    padding: 0 32px;
    font-size: 16px;
    line-height: 52px;
  }
}

#products-wrapper .products .product .add_to_cart_button:hover {
  background-color: var(--hover-accent);
  color: var(--ghost-white);
}

#products-wrapper .products .product .added_to_cart {
  font-size: 20px;
  font-family: var(--font-bold);
  color: var(--hover-accent);
  margin-left: 24px;
}

.single-product .content-area {
  margin-top: 144px;
}

@media (width <= 1480px) {
  .single-product .content-area {
    margin-top: 134px;
  }
}

@media (width <= 1023px) {
  .single-product .content-area {
    margin-top: 120px;
  }
}

@media (width <= 767px) {
  .single-product .content-area {
    margin-top: 136px;
  }
}

.single-product #single-product-wrapper {
  background-color: var(--lavander-light);
  padding: 64px 0;
}

@media (width <= 767px) {
  .single-product #single-product-wrapper {
    padding: 32px 0;
  }
}

.single-product #single-product-wrapper .product {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: start;
  display: flex;
}

@media (width <= 767px) {
  .single-product #single-product-wrapper .product {
    display: block;
  }
}

.single-product #single-product-wrapper .woocommerce-product-gallery__image img {
  border-radius: var(--radius-lg);
}

.single-product #single-product-wrapper .flex-control-thumbs {
  margin-top: 16px;
}

.single-product #single-product-wrapper .flex-control-thumbs li {
  box-sizing: border-box;
  padding: 6px;
}

.single-product #single-product-wrapper .flex-control-thumbs img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--black);
}

#single-product-wrapper div.product .woocommerce-product-gallery {
  float: none;
  width: 50%;
}

@media (width <= 767px) {
  #single-product-wrapper div.product .woocommerce-product-gallery {
    width: 100%;
  }
}

#single-product-wrapper div.product .summary {
  float: none;
  width: 40%;
  padding-top: 32px;
}

@media (width <= 1400px) {
  #single-product-wrapper div.product .summary {
    width: 45%;
  }
}

@media (width <= 1200px) {
  #single-product-wrapper div.product .summary {
    padding-top: 12px;
  }
}

@media (width <= 767px) {
  #single-product-wrapper div.product .summary {
    width: 100%;
  }
}

#single-product-wrapper div.product .summary .price {
  margin-bottom: 24px;
  display: block;
}

#single-product-wrapper div.product .summary .price span {
  font-size: 24px;
  font-family: var(--font-bold);
  color: var(--charcoal);
}

#single-product-wrapper div.product .summary .woocommerce-product-details__short-description {
  margin-bottom: 32px;
}

#single-product-wrapper div.product .summary div.quantity input {
  border: 1px solid var(--black);
  border-radius: var(--radius-md);
  margin-right: 12px;
  padding: 17px;
}

#single-product-wrapper div.product .summary .single_add_to_cart_button {
  border-radius: var(--radius-btn);
  background-color: var(--black);
  height: 58px;
  color: var(--white);
  line-height: 58px;
  font-family: var(--font-bold);
  font-size: var(--size-20);
  padding: 0 42px;
  transition: all .25s ease-in-out;
  display: inline-flex;
}

#single-product-wrapper div.product .summary .single_add_to_cart_button:hover {
  background-color: var(--hover-accent);
  color: var(--ghost-white);
}

#single-product-wrapper div.product .summary .product_meta span {
  font-size: 16px;
}

@media (width <= 1200px) {
  #single-product-wrapper div.product .summary .product_meta span {
    font-size: 14px;
  }
}

#single-product-wrapper div.product .summary .product_meta span a {
  color: var(--hover-accent);
  font-family: var(--font-semibold);
}

#single-product-wrapper div.product .summary .product_meta span a:hover {
  text-decoration: underline;
}

#single-product-wrapper div.product .summary .promise {
  margin-bottom: 32px;
}

#single-product-wrapper div.product .summary .promise h3 {
  font-family: var(--font-semibold);
}

#single-product-wrapper div.product .summary .promise__list {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: start;
  display: flex;
}

#single-product-wrapper div.product .summary .promise__card {
  width: 20%;
}

#single-product-wrapper div.product .summary .promise__icon {
  border-radius: var(--radius-full);
  border: 1px solid var(--black);
  background-color: var(--mint-pale);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  display: flex;
}

@media (width <= 1200px) {
  #single-product-wrapper div.product .summary .promise__icon {
    width: 56px;
    height: 56px;
  }
}

@media (width <= 1023px) {
  #single-product-wrapper div.product .summary .promise__icon {
    width: 48px;
    height: 48px;
  }
}

#single-product-wrapper div.product .summary .promise__icon img {
  width: 32px;
}

@media (width <= 1200px) {
  #single-product-wrapper div.product .summary .promise__icon img {
    width: 28px;
  }
}

@media (width <= 1023px) {
  #single-product-wrapper div.product .summary .promise__icon img {
    width: 24px;
  }
}

#single-product-wrapper div.product .summary .promise span {
  text-align: center;
  font-size: 16px;
  line-height: 1.25;
  display: block;
}

@media (width <= 1400px) {
  #single-product-wrapper div.product .summary .promise span {
    font-size: 14px;
  }
}

@media (width <= 1200px) {
  #single-product-wrapper div.product .summary .promise span {
    padding: 0 6px;
  }
}

#single-product-wrapper div.product .summary .delivery {
  border-top: 1px solid var(--black);
  margin-bottom: 24px;
  padding-top: 24px;
}

#single-product-wrapper div.product .summary .delivery img {
  width: 32px;
  margin-right: 12px;
}

@media (width <= 1200px) {
  #single-product-wrapper div.product .summary .delivery img {
    width: 24px;
  }
}

@media (width <= 767px) {
  #single-product-wrapper div.product .summary .delivery img {
    float: left;
  }
}

#single-product-wrapper div.product .summary .delivery span {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  display: flex;
}

@media (width <= 1400px) {
  #single-product-wrapper div.product .summary .delivery span {
    font-size: 14px;
  }
}

@media (width <= 1200px) {
  #single-product-wrapper div.product .summary .delivery span {
    font-size: 12px;
  }
}

@media (width <= 767px) {
  #single-product-wrapper div.product .summary .delivery span {
    display: block;
  }
}

form.login .woocommerce-LostPassword {
  padding-top: 12px;
}

form.login .woocommerce-LostPassword a {
  color: var(--red);
}

form.login .form-row-wide {
  margin-bottom: 24px;
}

form.login .woocommerce-button {
  border-radius: var(--radius-btn);
  background-color: var(--black);
  height: 58px;
  color: var(--white);
  line-height: 58px;
  font-family: var(--font-bold);
  font-size: var(--size-20);
  padding: 0 42px;
  transition: all .25s ease-in-out;
  display: inline-flex;
}

form.login .woocommerce-button:hover {
  background-color: var(--hover-accent);
  color: var(--ghost-white);
}

.wc-block-components-product-metadata__description {
  display: none;
}

.wc-block-components-checkbox__label a {
  color: var(--hover-accent);
}

.wc-block-components-checkbox__label a:hover {
  text-decoration: underline;
}
/*# sourceMappingURL=main.css.map */
