@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));
  }
}

.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;
}

@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.in-fullscreen, .f-zoomable.in-fullscreen {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  aspect-ratio: unset !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
}

.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%;
  display: block;
}

.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;
  width: auto;
  height: auto;
  transition: none;
}

.f-panzoom__wrapper > .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%;
}

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-panzoom__protected {
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  position: absolute;
  inset: 0;
}

html.with-panzoom-in-fullscreen {
  overflow: hidden;
}

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

  to {
    opacity: 1;
  }
}

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

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

  to {
    opacity: 1;
  }
}

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

@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)));
  }
}

@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)));
  }
}

@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;
  }
}

@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;
  }
}

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

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

.f-html {
  box-sizing: border-box;
  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;
}

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

.f-caption {
  margin: var(--f-caption-margin);
  padding: var(--f-caption-padding, 16px 8px);
  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;
  max-width: 100%;
  max-height: calc(80vh - 100px);
  overflow: auto;
}

.has-html5video .f-html, .has-youtube .f-html, .has-vimeo .f-html {
  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);
  width: 100%;
  height: 100%;
  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 {
  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);
  flex-flow: wrap;
  display: flex;
}

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

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

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

.f-carousel__toolbar__column {
  pointer-events: none;
}

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

.f-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-counter span {
  padding: 0 var(--f-counter-gap, 4px);
}

:root {
  --f-progressbar-height: 3px;
  --f-progressbar-color: var(--f-carousel-theme-color, #575ad6);
  --f-progressbar-opacity: 1;
  --f-progressbar-z-index: 30;
}

.f-progressbar {
  z-index: var(--f-progressbar-z-index);
  height: var(--f-progressbar-height);
  transform-origin: 0;
  opacity: var(--f-progressbar-opacity);
  background: var(--f-progressbar-color);
  -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);
}

.f-progressbar:empty {
  display: block;
}

button > .f-progressbar {
  --f-progressbar-height: 100%;
  --f-progressbar-opacity: .2;
}

@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.hide-scrollbar {
  margin-right: calc(var(--f-body-margin, 0px)  + var(--f-scrollbar-compensate, 0px));
  overscroll-behavior-y: none;
  width: auto;
  overflow: hidden !important;
}

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

.fancybox__dialog:focus {
  outline: none;
}

.fancybox__dialog::backdrop {
  opacity: 0;
}

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

.fancybox__dialog :empty {
  display: block;
}

div.fancybox__dialog {
  z-index: 1050;
  position: fixed;
  inset: 0;
}

.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 8px;
  --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: #fff;
  --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-close-button-width: 34px;
  --f-close-button-height: 34px;
  --f-close-border-radius: 4px;
  --f-close-button-color: #fff;
  --f-close-button-hover-color: #fff;
  --f-close-button-bg: transparent;
  --f-close-button-hover-bg: transparent;
  --f-close-button-active-bg: transparent;
  --f-close-button-svg-width: 22px;
  --f-close-button-svg-height: 22px;
  --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;
}

.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: #6f6f74;
  --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 {
  flex-direction: column;
  display: flex;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fancybox__container:focus {
  outline: none;
}

.fancybox__container.has-vertical-thumbs {
  flex-direction: row-reverse;
}

.fancybox__container.has-vertical-thumbs:not(.is-closing) .fancybox__viewport {
  overflow: clip visible;
}

.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__viewport {
  transform: translate3d(0, var(--f-drag-offset, 0), 0);
  flex: 1;
  min-width: 0;
  min-height: 0;
  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);
  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;
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  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.has-controls:before {
  margin: 0;
}

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

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

.fancybox__container.is-closing .fancybox__carousel {
  overflow: visible;
}

.f-button.is-close-button {
  --f-button-width: var(--f-close-button-width);
  --f-button-height: var(--f-close-button-height);
  --f-button-border-radius: var(--f-close-border-radius);
  --f-button-color: var(--f-close-button-color);
  --f-button-hover-color: var(--f-close-button-hover-color);
  --f-button-bg: var(--f-close-button-bg);
  --f-button-hover-bg: var(--f-close-button-hover-bg);
  --f-button-active-bg: var(--f-close-button-active-bg);
  --f-button-svg-width: var(--f-close-button-svg-width);
  --f-button-svg-height: var(--f-close-button-svg-height);
  top: calc(var(--f-button-height) * -1);
  z-index: 40;
  position: absolute;
  right: 0;
}

.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;
}

.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;
}

.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;
}

.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;
}

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

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

.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;
}

: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);
}

[data-panzoom-action="toggleFS"] g:first-child {
  display: flex;
}

[data-panzoom-action="toggleFS"] g:last-child, .in-fullscreen [data-panzoom-action="toggleFS"] g:first-child {
  display: none;
}

.in-fullscreen [data-panzoom-action="toggleFS"] g:last-child, [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, [data-fullscreen-action="toggle"] svg g:first-child {
  display: flex;
}

[data-fullscreen-action="toggle"] svg g:last-child, :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;
}

: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%;
}

.f-carousel {
  --f-carousel-gap: 0px;
  --f-carousel-slide-width: 100%;
  --f-carousel-slide-padding: 0;
}

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

.f-carousel {
  flex-direction: column;
  display: flex;
  position: relative;
}

.f-carousel.is-ltr {
  direction: ltr;
}

.f-carousel.is-rtl {
  direction: rtl;
}

.f-carousel__viewport {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: grid;
  position: relative;
  overflow: hidden;
}

.has-adaptive-height > .f-carousel__viewport {
  flex: none;
}

.f-carousel__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

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

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

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

.is-centered .f-carousel__slide {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.is-centered .f-carousel__slide:before, .is-centered .f-carousel__slide:after {
  content: "";
  display: block;
}

.is-centered .f-carousel__slide:before {
  margin-bottom: auto;
}

.is-centered .f-carousel__slide:after {
  margin-top: auto;
}

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

: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-clip-width: 46px;
  --f-thumb-extra-gap: 16px;
  --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 {
  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, max-width .3s;
  position: relative;
  overflow: hidden;
}

.f-thumbs.is-horizontal {
  max-height: calc(var(--f-carousel-slide-height)  + var(--f-thumbs-padding-y) * 2 + var(--f-thumbs-gap) * 2);
}

.f-thumbs.is-vertical {
  max-width: calc(var(--f-carousel-slide-width)  + var(--f-thumbs-padding-x) * 2 + var(--f-thumbs-gap) * 2);
}

.f-thumbs.is-ltr {
  direction: ltr;
}

.f-thumbs.is-rtl {
  direction: rtl;
}

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

.f-thumbs.is-vertical .f-thumbs__viewport {
  height: calc(100% - var(--f-thumbs-padding-y) * 2);
}

.f-thumbs__slide {
  box-sizing: border-box;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  cursor: pointer;
  flex-direction: column;
  grid-area: 1 / 1;
  align-items: center;
  margin: 0;
  padding: 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;
  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;
  width: 100%;
  height: 100%;
  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-classic {
  --f-carousel-slide-width: var(--f-thumb-width);
  --f-carousel-slide-height: var(--f-thumb-height);
  --f-carousel-gap: var(--f-thumbs-gap);
}

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

.f-thumbs.is-modern .f-thumbs__viewport {
  width: calc(100% + var(--f-carousel-slide-width) * 2);
  margin-inline: calc(var(--f-carousel-slide-width) * -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-inline: 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;
}

html {
  font-size: 16px;
  line-height: 1.2;
}

body {
  color: #000;
  background: #fff;
  min-width: 280px;
  font-family: Times, Times New Roman, serif;
  font-size: 16px;
  line-height: 1.2;
}

body.no-scroll {
  overflow: hidden;
}

.main {
  flex-grow: 1;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: underline;
}

a:hover, a[href^="tel"] {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: .6em;
}

p, ul, ol, dl, hr, table, blockquote {
  margin-bottom: 1.2em;
}

h1[class], h2[class], h3[class], h4[class], h5[class], h6[class], h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, dl:last-child, table:last-child, blockquote:last-child {
  margin-bottom: 0;
}

div.fancybox__container {
  z-index: 999998;
}

* {
  box-sizing: border-box;
  outline: 0;
  margin: 0;
  padding: 0;
}

:before, :after {
  box-sizing: inherit;
}

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

template {
  display: none;
}

html {
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
}

img, iframe, video, audio, object {
  max-width: 100%;
}

img, iframe {
  border: 0;
}

img {
  vertical-align: middle;
  height: auto;
  display: inline-block;
}

b, strong {
  font-weight: bold;
}

address {
  font-style: normal;
}

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

a, button, input[type="submit"], input[type="button"], input[type="reset"], input[type="file"], input[type="image"], label[for] {
  cursor: pointer;
}

a[href^="tel"], button[disabled], input[disabled], textarea[disabled], select[disabled] {
  cursor: default;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="color"], textarea, a[href^="tel"] {
  appearance: none;
}

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

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

textarea {
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  overflow: auto;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

button, select {
  text-transform: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

nav ul, nav ol {
  list-style: none;
}

.alignnone, .alignleft, .alignright, .aligncenter {
  margin: 5px 15px 10px;
}

.alignleft {
  margin-left: 0;
  margin-right: auto;
}

.alignright {
  margin-left: auto;
  margin-right: 0;
}

.alignnone {
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.wp-caption {
  position: relative;
  width: auto !important;
}

.wp-caption img {
  width: 100%;
}

.wp-caption-text {
  color: #fff;
  background: #00000080;
  padding: 5px 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.gallery {
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.gallery .wp-caption-text {
  text-align: left;
  bottom: 10px;
  left: 10px;
  right: 10px;
}

.gallery-item {
  float: left;
  padding: 10px;
  position: relative;
}

.gallery-item img, .gallery-columns-1 .gallery-item {
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-3 .gallery-item {
  width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery-columns-5 .gallery-item {
  width: 20%;
}

.gallery-columns-6 .gallery-item {
  width: 16.67%;
}

.gallery-columns-7 .gallery-item {
  width: 14.29%;
}

.gallery-columns-8 .gallery-item {
  width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  width: 11.11%;
}

.gallery-columns-7 .wp-caption, .gallery-columns-8 .wp-caption, .gallery-columns-9 .wp-caption {
  display: none;
}

.paging {
  text-align: center;
  padding: 24px 0;
}

.paging .paging__wrapper {
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
  overflow: hidden;
}

.paging .paging__wrapper ul {
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  list-style-type: none;
  display: flex;
}

.paging .paging__wrapper ul li.current .paging__button {
  color: #fff;
  background: #000;
  border-radius: 8px;
}

.paging .paging__wrapper .paging__button {
  color: #000;
  letter-spacing: .64px;
  border: 2px solid #000;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  transition: all .4s;
  display: flex;
}

.paging .paging__wrapper .paging__button:hover {
  background-color: #0000000d;
}

.paging .paging__wrapper .paging__button:active {
  background-color: #0000001a;
}

.paging .paging__wrapper .paging__button.paging--prev {
  background-image: url("icon-chevron-left.61204f1c.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  border-radius: 0;
  order: -1;
  width: 32px;
  height: 48px;
  padding: 0;
}

.paging .paging__wrapper .paging__button.paging--next {
  background-image: url("icon-chevron-right.11314eeb.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  border-radius: 0;
  width: 32px;
  height: 48px;
  padding: 0;
}

.comments, .comments .children {
  position: relative;
}

.comments .children:after {
  border: 19px solid #0000;
  border-top-width: 20px;
  border-bottom: 20px solid #c3c3c3;
  top: -5px;
  left: 8px;
}

.comments .comment {
  border-top: 1px dashed #363636;
  position: relative;
}

.comments .comment__meta-holder {
  padding: 10px 0 10px 60px;
  position: relative;
}

.comments .children {
  padding-left: 70px;
}

.comments .avatar {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 2px;
  left: 0;
}

.comments .says {
  padding-left: 5px;
}

.comments .moderation-notice {
  color: #999;
  margin: 3px 0 8px;
  display: inline-block;
}

.comments .comment-entry {
  padding: 30px 0 30px 65px;
  position: relative;
}

.comments .comment-text p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.comments .comment-meta {
  padding-bottom: 12px;
}

.comments .comment-meta a {
  color: #363636;
}

.comments .comment__reply {
  text-align: right;
  margin-bottom: 10px;
  padding-top: 10px;
}

.comments .comment-reply-link {
  color: #fff;
  background: #000;
  border-radius: 6px;
  padding: 5px 10px;
  display: inline-block;
}

.comments .comment-reply-link:hover {
  opacity: .8;
  text-decoration: none;
}

.comment-respond {
  border-top: 1px solid #363636;
  width: 100%;
  padding-top: 30px;
}

.comment-respond h3 {
  position: relative;
}

.comment-respond small {
  position: absolute;
  top: 0;
  right: 0;
}

.comment-respond label {
  padding-bottom: 4px;
  display: block;
}

.comment-respond input[type="text"], .comment-respond textarea {
  background: #f7f7f7;
  border: 1px solid #ccc;
  width: 100%;
  padding: 10px;
  display: block;
}

.comment-respond textarea {
  height: 100px;
}

.comment-respond input[type="text"]:focus {
  background-color: #fff;
}

.comment-respond input[type="text"]::-webkit-input-placeholder {
  color: #777;
}

.comment-respond input[type="text"]::placeholder {
  color: #777;
}

.comment-respond input[type="text"]:-ms-input-placeholder {
  color: #777;
}

.comment-respond input[type="text"]::placeholder {
  color: #777;
}

.comment-respond .required {
  color: #e40000;
}

.comment-respond .comment-notes {
  padding-top: 15px;
}

.comment-respond .form-submit input {
  color: #fff;
  cursor: pointer;
  background: #363636;
  border: 0;
  border-radius: 4px;
  width: 160px;
  height: 40px;
  font-size: 14px;
  font-weight: bold;
  display: block;
}

.nocomments {
  padding-top: 12px;
  font-size: 18px;
  font-weight: bold;
}

.search-form {
  position: relative;
  overflow: hidden;
}

.search-form .search-field {
  background: #f7f7f7;
  border: 1px solid #ccc;
  width: 100%;
  padding: 10px;
  display: block;
}

.search-form .search-field:focus {
  background-color: #fff;
}

.search-form .search-field::-webkit-input-placeholder {
  color: #777;
}

.search-form .search-field::placeholder {
  color: #777;
}

.search-form .search-field:-ms-input-placeholder {
  color: #777;
}

.search-form .search-field::placeholder {
  color: #777;
}

.search-form .screen-reader-text {
  opacity: .5;
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.cf-complex__groups {
  z-index: 0;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.wrapper .wrapper__inner {
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  display: flex;
}

body.admin-bar .wrapper, body.admin-bar .wrapper__inner {
  min-height: calc(100vh - 32px);
}

#wpadminbar {
  position: fixed !important;
}

@media (width <= 782px) {
  body.admin-bar .wrapper, body.admin-bar .wrapper__inner {
    min-height: calc(100vh - 46px);
  }
}

.shell {
  max-width: 1412px;
  margin: auto;
  padding-left: 10px;
  padding-right: 10px;
}

@media (width <= 1400px) {
  .shell {
    max-width: 1060px;
  }
}

@media (width <= 1025px) {
  .shell {
    max-width: 708px;
  }
}

@media (width <= 480px) {
  .shell {
    max-width: 356px;
  }
}

.shell-sm {
  max-width: 1060px;
  margin: auto;
  padding-left: 10px;
  padding-right: 10px;
}

@media (width <= 1400px) {
  .shell-sm {
    max-width: 1060px;
  }
}

@media (width <= 1025px) {
  .shell-sm {
    max-width: 708px;
  }
}

@media (width <= 480px) {
  .shell-sm {
    max-width: 356px;
  }
}

.shell--fluid {
  max-width: none;
}

.section {
  padding: 40px 0;
}

@media (width <= 480px) {
  .section {
    padding: 24px 0;
  }
}

.section.section--alt .section__head p {
  color: #2a2a2a;
  margin-bottom: 40px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (width <= 480px) {
  .section.section--alt .section__head p {
    margin-bottom: 32px;
    font-size: 16px;
  }
}

.section .section__head h1 {
  color: #2a2a2a;
  margin-bottom: 40px;
  font-family: Cormorant Garamond, serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .section .section__head h1 {
    margin-bottom: 24px;
    font-size: 40px;
  }
}

.section .section__head p {
  color: #2a2a2a;
  margin-bottom: 40px;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .section .section__head p {
    font-size: 20px;
  }
}

.section .section__head .section__head-meta {
  margin-top: -32px;
  margin-bottom: 40px;
}

@media (width <= 480px) {
  .section .section__head .section__head-meta {
    margin-top: -16px;
    margin-bottom: 32px;
  }
}

.section .section__head .section__head-meta ul {
  justify-content: start;
  align-items: center;
  gap: 80px;
  list-style-type: none;
  display: flex;
}

@media (width <= 480px) {
  .section .section__head .section__head-meta ul {
    flex-wrap: wrap;
    gap: 16px;
  }
}

.section .section__head .section__head-meta ul li:first-child {
  color: #913533;
  align-items: center;
  gap: 8px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
}

@media (width <= 480px) {
  .section .section__head .section__head-meta ul li:first-child {
    width: 100%;
    font-size: 24px;
  }
}

.section .section__head .section__head-meta ul li:first-child svg {
  width: 24px;
  height: 24px;
}

.section .section__head .section__head-meta ul li:first-child svg path {
  fill: #913533;
}

.section .section__body-alt .wp-block-gallery.has-nested-images.columns-default {
  gap: 16px;
  margin: 24px 0;
}

.section .section__body-alt .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
  width: calc(33.3333% - 10.6667px);
}

@media (width <= 1025px) {
  .section .section__body-alt .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
    width: calc(50% - 8px);
  }
}

@media (width <= 480px) {
  .section .section__body-alt .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
    width: 100%;
  }
}

.section .section__body-alt .wp-block-image {
  margin-bottom: 24px;
}

.section .section__body-alt .wp-element-caption {
  color: #2a2a2a;
  margin-top: 8px;
  margin-bottom: 0;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

.section .section__body-alt .wp-block-quote {
  background-color: #f6f6f6;
  background-image: url("quotes.89436836.svg");
  background-position: 48px 24px;
  background-repeat: no-repeat;
  border-radius: 16px;
  margin: 48px 0;
  padding: 40px 80px;
}

@media (width <= 480px) {
  .section .section__body-alt .wp-block-quote {
    background-position: 16px 16px;
    margin: 32px 0;
    padding: 32px 40px;
  }
}

.section .section__body-alt .wp-block-quote p {
  color: #2a2a2a;
  margin-bottom: 0;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .section .section__body-alt .wp-block-quote p {
    font-size: 20px;
  }
}

.section .section__body-alt .wp-block-embed {
  margin: 24px 0;
}

.section .section__body-alt h1 {
  color: #2a2a2a;
  margin: 48px 0 24px;
  font-family: Cormorant Garamond, serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .section .section__body-alt h1 {
    margin: 32px 0 24px;
    font-size: 40px;
  }
}

.section .section__body-alt h2 {
  color: #2a2a2a;
  margin: 48px 0 40px;
  font-family: Cormorant Garamond, serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .section .section__body-alt h2 {
    margin: 32px 0 24px;
    font-size: 32px;
  }
}

.section .section__body-alt h3 {
  color: #2a2a2a;
  margin: 48px 0 24px;
  font-family: Cormorant Garamond, serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (width <= 480px) {
  .section .section__body-alt h3 {
    margin: 32px 0 24px;
    font-size: 24px;
  }
}

.section .section__body-alt h4 {
  color: #2a2a2a;
  margin: 48px 0 24px;
  font-family: Cormorant Garamond, serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .section .section__body-alt h4 {
    margin: 32px 0 24px;
    font-size: 20px;
  }
}

.section .section__body-alt p {
  color: #2a2a2a;
  margin-bottom: 24px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (width <= 480px) {
  .section .section__body-alt p {
    font-size: 16px;
  }
}

.section .section__body-alt a {
  color: #913533;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: all .4s;
}

@media (width <= 480px) {
  .section .section__body-alt a {
    font-size: 16px;
  }
}

.section .section__body-alt a:hover, .section .section__body-alt a:active {
  color: #2a2a2a;
}

.section .section__body-alt ul {
  margin-bottom: 24px;
  padding: 8px 32px;
  list-style-type: none;
}

@media (width <= 480px) {
  .section .section__body-alt ul {
    padding: 8px 0;
  }
}

.section .section__body-alt ul li {
  color: #2a2a2a;
  background-image: url("icon-leaf.7666cce0.svg");
  background-repeat: no-repeat;
  padding-left: 36px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (width <= 480px) {
  .section .section__body-alt ul li {
    font-size: 16px;
  }
}

.section .section__body-alt ul li ~ li {
  margin-top: 13px;
}

.section .section__body .section__body-action input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.section .section__body .section__body-action input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.section .section__body .section__body-action input[type="number"] {
  -moz-appearance: textfield;
}

.section .section__body .section__body-cols {
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
  gap: 16px;
  display: flex;
}

@media (width <= 1025px) {
  .section .section__body .section__body-cols {
    flex-wrap: wrap;
    gap: 24px;
  }
}

.section .section__body .section__body-cols .section__body-left, .section .section__body .section__body-cols .section__body-right {
  width: calc(50% - 8px);
}

@media (width <= 1025px) {
  .section .section__body .section__body-cols .section__body-left, .section .section__body .section__body-cols .section__body-right {
    width: 100%;
  }
}

.section .section__body .section__body-cols .section__body-left .f-thumbs .f-thumbs__slide, .section .section__body .section__body-cols .section__body-right .f-thumbs .f-thumbs__slide {
  width: auto;
  height: auto;
  margin: 0 12px 0 0;
}

.section .section__body .section__body-cols .section__body-left .f-thumbs .f-thumbs__slide .f-thumbs__slide__button, .section .section__body .section__body-cols .section__body-right .f-thumbs .f-thumbs__slide .f-thumbs__slide__button {
  width: 80px;
  height: 64px;
}

.section .section__body .section__body-cols .section__body-right {
  padding-left: 24px;
}

@media (width <= 1025px) {
  .section .section__body .section__body-cols .section__body-right {
    padding-left: 0;
  }
}

.section .section__body .section__body-cols .section__body-right h1 {
  color: #2a2a2a;
  margin: 48px 0 24px;
  font-family: Cormorant Garamond, serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .section .section__body .section__body-cols .section__body-right h1 {
    margin: 32px 0 24px;
    font-size: 40px;
  }
}

.section .section__body .section__body-cols .section__body-right h2 {
  color: #2a2a2a;
  margin: 48px 0 24px;
  font-family: Cormorant Garamond, serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .section .section__body .section__body-cols .section__body-right h2 {
    margin: 32px 0 24px;
    font-size: 32px;
  }
}

.section .section__body .section__body-cols .section__body-right h3 {
  color: #2a2a2a;
  margin: 48px 0 24px;
  font-family: Cormorant Garamond, serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (width <= 480px) {
  .section .section__body .section__body-cols .section__body-right h3 {
    margin: 32px 0 24px;
    font-size: 24px;
  }
}

.section .section__body .section__body-cols .section__body-right h4 {
  color: #2a2a2a;
  margin: 48px 0 24px;
  font-family: Cormorant Garamond, serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .section .section__body .section__body-cols .section__body-right h4 {
    margin: 32px 0 24px;
    font-size: 20px;
  }
}

.section .section__body .section__body-cols .section__body-right p {
  color: #2a2a2a;
  margin-bottom: 24px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (width <= 480px) {
  .section .section__body .section__body-cols .section__body-right p {
    font-size: 16px;
  }
}

.section .section__body .section__body-cols .section__body-right a {
  color: #913533;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: all .4s;
}

@media (width <= 480px) {
  .section .section__body .section__body-cols .section__body-right a {
    font-size: 16px;
  }
}

.section .section__body .section__body-cols .section__body-right a:hover, .section .section__body .section__body-cols .section__body-right a:active {
  color: #2a2a2a;
}

.section .section__body .section__body-cols .section__body-right ul {
  margin-bottom: 24px;
  padding: 8px 16px;
  list-style-type: none;
}

@media (width <= 480px) {
  .section .section__body .section__body-cols .section__body-right ul {
    padding: 8px 0;
  }
}

.section .section__body .section__body-cols .section__body-right ul li {
  color: #2a2a2a;
  background-image: url("icon-leaf.7666cce0.svg");
  background-repeat: no-repeat;
  padding-left: 36px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (width <= 480px) {
  .section .section__body .section__body-cols .section__body-right ul li {
    font-size: 16px;
  }
}

.section .section__body .section__body-cols .section__body-right ul li ~ li {
  margin-top: 13px;
}

.section .section__body .section__body-action {
  align-items: end;
  gap: 24px;
  padding: 40px 0;
  display: flex;
}

@media (width <= 1025px) {
  .section .section__body .section__body-action {
    padding: 32px 0;
  }
}

@media (width <= 480px) {
  .section .section__body .section__body-action {
    flex-wrap: wrap;
  }
}

.section .section__body .section__body-action p {
  color: #2a2a2a;
  text-align: center;
  margin-bottom: 8px;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

.section .section__body .section__body-action .quantity {
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
}

.section .section__body .section__body-action .quantity input {
  color: #2a2a2a;
  background: #f6f6f6;
  border: none;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
}

.section .section__body .section__body-action .quantity button {
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.section .section__foot {
  margin-top: 40px;
}

.section .section__foot p {
  color: #2a2a2a;
  margin-bottom: 40px;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .section .section__foot p {
    font-size: 20px;
  }
}

[class^="logo"] {
  text-indent: -4004px;
  vertical-align: middle;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

[class^="logo"] > img {
  width: 100%;
  display: block;
}

.logo {
  background-image: url("logo.f2665de2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 384px;
  height: 58px;
  margin: 0 auto;
  transition: all .4s;
  display: block;
}

@media (width <= 480px) {
  .logo {
    width: 336px;
    height: 50px;
  }
}

.section-logo {
  background-color: #fff;
  padding: 16px 10px 17px;
}

.btn {
  white-space: nowrap;
  color: #fff;
  letter-spacing: .64px;
  text-transform: uppercase;
  cursor: pointer;
  background: #913533;
  border: none;
  border-radius: 0;
  outline: none;
  padding: 16px 40px;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  transition: all .4s;
  display: inline-block;
}

.btn:hover {
  background: #691d1c;
}

.btn:active {
  background: #4a2c2b;
}

.btn.checkout-button {
  padding: 16px 40px !important;
  font-size: 16px !important;
  display: inline-block !important;
}

.btn.btn--text-primary {
  color: #913533;
  background: none;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: center;
  gap: 8px;
  width: min-content;
  padding: 4px 12px;
  display: flex;
}

.btn.btn--text-primary:after {
  content: "";
  background-image: url("icon-chevron-right-red.31e2f3d2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  transition: all .4s;
  display: block;
}

.btn.btn--text-primary:hover {
  background: #0000000d;
}

.btn.btn--text-primary:hover:after {
  transform: translateX(8px);
}

.btn.btn--text-primary:active {
  background: #0000001a;
}

.btn.btn--text-primary:active:after {
  transform: translateX(8px);
}

.btn.btn--text-primary.btn--text-inverted {
  color: #f8e5e5;
}

.btn.btn--text-primary.btn--text-inverted:after {
  background-image: url("icon-chevron-right-white.d82d29b8.svg");
}

.btn.btn--text-alt {
  color: #913533;
  background: none;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: center;
  gap: 8px;
  width: min-content;
  padding: 4px 12px;
  display: flex;
}

.btn.btn--text-alt.btn--text-back:before {
  background-image: url("icon-chevron-left-red.d0af19ea.svg");
}

.btn.btn--text-alt.btn--text-remove:before {
  background-image: url("icon-close-filled-red.89ef37a3.svg");
}

.btn.btn--text-alt:before {
  content: "";
  background-image: url("icon-add-red.149ded92.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  transition: all .4s;
  display: block;
}

.btn.btn--text-alt:hover {
  background: #0000000d;
}

.btn.btn--text-alt:hover:after {
  transform: translateX(8px);
}

.btn.btn--text-alt:active {
  background: #0000001a;
}

.btn.btn--text-alt:active:after {
  transform: translateX(8px);
}

.btn.btn--invert {
  color: #341615;
  background: #fff;
  padding: 16px 40px;
}

.btn.btn--invert:hover {
  background: #eaeaea;
}

.btn.btn--invert:active {
  background: #f8e5e5;
}

.btn.btn--switcher {
  text-align: center;
  color: #2a2a2a;
  background: #fff;
  border: 2px solid #eaeaea;
  border-radius: 4px;
  padding: 16px 64px;
  font-size: 20px;
  font-weight: 400;
  display: block;
  position: relative;
}

.btn.btn--switcher:hover {
  background: #f6f6f6;
  border: 2px solid #f6f6f6;
}

.btn.btn--switcher:active {
  background: #f5fbf5;
  border: 2px solid #f5fbf5;
}

.btn.btn--switcher.btn--current {
  color: #fff;
  background: #000;
  border: 2px solid #000;
}

.btn.btn--switcher.btn--current:before {
  content: "";
  background-image: url("icon-check-white.7c4cccbf.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: 50%;
  left: 32px;
  transform: translateY(-50%);
}

.app-loader {
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  background: #ffffff80;
  width: 100%;
  height: 100%;
  transition: opacity .15s, visibility .15s;
  position: fixed;
  top: 0;
  left: 0;
}

.app-loader:after {
  content: "";
  border: 7px solid #000;
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: -30px -30px 0 0;
  animation: 2s linear infinite spin;
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
}

.app-loader.active {
  visibility: visible;
  opacity: 1;
}

.app-loader-overlay {
  z-index: 101;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: #000000b3;
  width: 100%;
  height: 100%;
  transition: opacity .15s, visibility .15s;
  position: fixed;
  top: 0;
  left: 0;
}

.app-loader-overlay.active {
  visibility: visible;
  opacity: 1;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.header {
  z-index: 999996;
  background-color: #2a2a2a;
  position: sticky;
  top: 0;
}

.header .header__inner {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

@media (width <= 1400px) {
  .header .header__inner {
    align-items: center;
    min-height: 48px;
  }

  .header .header__inner .header__container.menu-open .header__menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    z-index: 10 !important;
  }

  .header .header__inner .header__container.menu-open .header__content {
    border-radius: 0 16px 16px 0;
    left: 0;
    box-shadow: 4px 0 8px #00000029;
  }
}

.header .header__inner .header__container .header__content {
  height: 100%;
}

@media (width <= 1400px) {
  .header .header__inner .header__container .header__content {
    z-index: 10;
    background: #000;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: 280px;
    max-width: 280px;
    height: 100vh;
    margin-right: 130px;
    padding: 0;
    transition: left .5s;
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -280px;
  }
}

.header .header__inner .header__container .header__content .header__menu {
  height: 100%;
}

@media (width <= 1400px) {
  .header .header__inner .header__container .header__content .header__menu {
    width: 100%;
    padding: 80px 32px 32px;
  }
}

.header .header__inner .header__container .header__content .header__menu-bar {
  display: none;
}

@media (width <= 1400px) {
  .header .header__inner .header__container .header__content .header__menu-bar {
    border-bottom: 2px solid #fff;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
    display: flex;
  }

  .header .header__inner .header__container .header__content .header__menu-bar p {
    color: #fff;
    flex-grow: 1;
    margin-bottom: 0;
    font-family: Work Sans, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .header .header__inner .header__container .header__content .header__menu-bar .header__menu-close svg {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: block;
  }

  .header .header__inner .header__container .header__content .header__menu-bar .header__menu-close svg path {
    stroke: #fff;
  }
}

.header .header__inner .header__container .header__menu-toggle {
  cursor: pointer;
  display: none;
}

.header .header__inner .header__container .header__menu-toggle svg {
  width: 40px;
  height: 40px;
  display: block;
}

.header .header__inner .header__container .header__menu-toggle svg path {
  stroke: #fff;
}

@media (width <= 1400px) {
  .header .header__inner .header__container .header__menu-toggle {
    display: block;
  }
}

body.admin-bar .header {
  top: 32px;
}

@media (width <= 834px) {
  body.admin-bar .header {
    top: 32px;
  }
}

@media (width <= 782px) {
  body.admin-bar .header {
    top: 46px;
  }
}

.footer {
  background: #2a2a2a;
  padding: 40px 0;
}

.footer .footer__nav {
  margin-bottom: 32px;
}

.footer .footer__note p {
  text-align: center;
  color: #fff;
  margin-bottom: 0;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

@media (width <= 480px) {
  .footer .footer__note p {
    text-align: left;
  }
}

.nav {
  height: 100%;
}

.nav ul.menu {
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  height: 100%;
  list-style-type: none;
  display: flex;
}

@media (width <= 1400px) {
  .nav ul.menu {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    height: 100%;
    overflow-y: auto;
  }
}

.nav ul.menu .menu-item a {
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .64px;
  background: none;
  padding: 14px 16px;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: all .4s;
  display: block;
}

.nav ul.menu .menu-item a:hover {
  background: #2a2a2a;
}

.nav ul.menu .menu-item a:active {
  background: #4f4f4f;
}

.nav ul.menu .menu-item.current-menu-item a {
  color: #2a2a2a;
  background: #fff;
}

@media (width <= 1400px) {
  .nav ul.menu .menu-item.current-menu-item a {
    color: #fff;
    background: none;
    border-left: 2px solid #eaeaea;
  }
}

.nav-misc {
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  height: 100%;
  list-style-type: none;
  display: flex;
}

.nav-misc li a {
  color: #fff;
  letter-spacing: .64px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: all .4s;
  display: flex;
}

.nav-misc li a svg {
  width: 32px;
  height: 32px;
}

.nav-misc li a svg path {
  fill: #fff;
  transition: all .4s;
}

.nav-misc li a:hover {
  color: #eaeaea;
}

.nav-misc li a:hover svg path {
  fill: #eaeaea;
}

.nav-misc li a:active {
  color: #dadada;
}

.nav-misc li a:active svg path {
  fill: #dadada;
}

.footer-nav ul.menu {
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 60px;
  list-style-type: none;
  display: flex;
}

@media (width <= 1025px) {
  .footer-nav ul.menu {
    flex-wrap: wrap;
  }
}

@media (width <= 480px) {
  .footer-nav ul.menu {
    justify-content: start;
  }
}

.footer-nav ul.menu .menu-item a {
  color: #fff;
  white-space: nowrap;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: all .4s;
}

.footer-nav ul.menu .menu-item a:hover, .footer-nav ul.menu .menu-item a:active {
  color: #eaeaea;
}

.cart-contents {
  position: relative;
}

.cart-contents .cart-contents-count {
  color: #2a2a2a;
  background: #ffbf59;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(10px, -4px);
}

.section-title {
  margin: 40px 0 24px;
}

.section-title h1 {
  color: #2a2a2a;
  margin-bottom: 0;
  font-family: Cormorant Garamond, serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.section-title h2 {
  color: #2a2a2a;
  margin-bottom: 0;
  font-family: Cormorant Garamond, serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.cards-horizontal {
  flex-direction: column;
  gap: 32px;
  padding: 24px 0;
  display: flex;
}

@media (width <= 1025px) {
  .cards-horizontal {
    gap: 48px;
  }
}

.cards-related {
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
  gap: 16px;
  display: flex;
}

@media (width <= 1025px) {
  .cards-related .card:nth-child(3), .cards-related .card:nth-child(4) {
    display: none;
  }
}

@media (width <= 480px) {
  .cards-related {
    flex-wrap: wrap;
  }

  .cards-related .card:nth-child(3), .cards-related .card:nth-child(4) {
    display: block;
  }
}

.cards-featured {
  flex-wrap: wrap;
  justify-content: start;
  align-items: start;
  gap: 32px 16px;
  display: flex;
}

@media (width <= 480px) {
  .cards-featured.ljs-container {
    gap: 32px 16px;
  }
}

@media (width <= 1400px) {
  .cards-featured .card:nth-child(4) {
    display: none;
  }
}

@media (width <= 1025px) {
  .cards-featured {
    gap: 12px 16px;
  }

  .cards-featured .card:nth-child(4) {
    display: block;
  }
}

.card-horizontal {
  flex-wrap: nowrap;
  align-items: stretch;
  max-width: 1040px;
  display: flex;
}

@media (width <= 1025px) {
  .card-horizontal {
    flex-wrap: wrap;
    gap: 16px;
  }
}

.card-horizontal .card__image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-right: 49%;
}

@media (width <= 1025px) {
  .card-horizontal .card__image {
    width: 100%;
    padding-bottom: 47%;
    padding-right: 0;
  }
}

@media (width <= 480px) {
  .card-horizontal .card__image {
    padding-bottom: 60%;
  }
}

.card-horizontal .card__content {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 29px;
  padding: 8px 32px;
  display: flex;
}

@media (width <= 1025px) {
  .card-horizontal .card__content {
    padding: 0;
  }
}

@media (width <= 480px) {
  .card-horizontal .card__content {
    gap: 24px;
  }
}

.card-horizontal .card__content .card__meta span {
  color: #000;
  letter-spacing: .48px;
  font-family: Work Sans, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.card-horizontal .card__content h3 {
  margin-bottom: 16px;
}

.card-horizontal .card__content h3 a {
  color: #2a2a2a;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}

@media (width <= 480px) {
  .card-horizontal .card__content h3 a {
    font-size: 20px;
  }
}

.card-horizontal .card__content h3 a:hover, .card-horizontal .card__content h3 a:active {
  color: #000;
}

.card-horizontal .card__content p {
  color: #2a2a2a;
  margin-bottom: 0;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (width <= 480px) {
  .card-horizontal .card__content p {
    font-size: 16px;
  }
}

.card {
  border-radius: 0;
  width: calc(25% - 12px);
  transition: all .4s;
  overflow: hidden;
}

@media (width <= 1400px) {
  .card {
    width: calc(33.3333% - 10.6667px);
  }
}

@media (width <= 1025px) {
  .card {
    width: calc(50% - 8px);
  }
}

@media (width <= 480px) {
  .card {
    width: 100%;
  }
}

.card:hover {
  background: #f6f6f6;
  border-radius: 8px;
}

.card:active {
  background: #eaeaea;
  border-radius: 8px;
}

.card a {
  text-decoration: none;
}

.card .card__head {
  background-color: #f6f6f6;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 71%;
  position: relative;
}

.card .card__head a {
  display: block;
  position: absolute;
  inset: 0;
}

@media (width <= 1025px) {
  .card .card__head {
    padding-bottom: 72%;
  }
}

.card .card__body {
  padding: 8px 12px;
}

.card .card__body .card__meta {
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 6px 32px;
  margin-bottom: 12px;
  list-style-type: none;
  display: flex;
}

.card .card__body .card__meta li {
  color: #2a2a2a;
  letter-spacing: .48px;
  text-transform: uppercase;
  font-family: Work Sans, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.card .card__body .card__meta li a {
  color: #2a2a2a;
  letter-spacing: .48px;
  text-transform: uppercase;
  align-items: center;
  gap: 4px;
  font-family: Work Sans, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  display: flex;
}

.card .card__body .card__title {
  margin-bottom: 0;
}

.card .card__body .card__title a {
  color: #2a2a2a;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.card .card__body .card__note {
  color: #913533;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 0;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
}

.card .card__body .card__note svg path {
  fill: #913533;
}

.article.article--single .article__head {
  padding-top: 40px;
}

@media (width <= 480px) {
  .article.article--single .article__head {
    padding-top: 24px;
  }
}

.article.article--single .article__head h1 {
  color: #2a2a2a;
  margin-bottom: 8px;
  font-family: Cormorant Garamond, serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .article.article--single .article__head h1 {
    font-size: 40px;
  }
}

.article.article--single .article__head .article__meta {
  margin-bottom: 24px;
}

.article.article--single .article__head .article__meta ul {
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 16px 56px;
  list-style-type: none;
  display: flex;
}

.article.article--single .article__head .article__meta ul li {
  color: #2a2a2a;
  letter-spacing: .48px;
  align-items: center;
  gap: 4px;
  font-family: Work Sans, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
}

.article.article--single .article__head .article__meta ul li.c-red {
  color: #913533;
}

.article.article--single .article__head .article__meta ul li.c-red svg path {
  fill: #913533;
}

.article.article--single .article__head .article__meta ul li a {
  color: #2a2a2a;
  letter-spacing: .48px;
  text-transform: uppercase;
  align-items: center;
  gap: 4px;
  font-family: Work Sans, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  transition: all .4s;
  display: flex;
}

.article.article--single .article__head .article__meta ul li a:hover, .article.article--single .article__head .article__meta ul li a:active {
  color: #000;
}

.article.article--single .article__head .article__meta ul li a svg {
  width: 24px;
  height: 24px;
}

.article.article--single .article__body {
  padding-bottom: 24px;
}

.article.article--single .article__body .wp-block-gallery.has-nested-images.columns-default {
  gap: 16px;
  margin: 24px 0;
}

.article.article--single .article__body .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
  width: calc(33.3333% - 10.6667px);
}

@media (width <= 1025px) {
  .article.article--single .article__body .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
    width: calc(50% - 8px);
  }
}

@media (width <= 480px) {
  .article.article--single .article__body .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
    width: 100%;
  }
}

.article.article--single .article__body .wp-block-image {
  margin-bottom: 24px;
}

.article.article--single .article__body .wp-element-caption {
  color: #2a2a2a;
  margin-top: 8px;
  margin-bottom: 0;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

.article.article--single .article__body .wp-block-quote {
  background-color: #f6f6f6;
  background-image: url("quotes.89436836.svg");
  background-position: 48px 24px;
  background-repeat: no-repeat;
  border-radius: 16px;
  margin: 48px 0;
  padding: 40px 80px;
}

@media (width <= 480px) {
  .article.article--single .article__body .wp-block-quote {
    background-position: 16px 16px;
    margin: 32px 0;
    padding: 32px 40px;
  }
}

.article.article--single .article__body .wp-block-quote p {
  color: #2a2a2a;
  margin-bottom: 0;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .article.article--single .article__body .wp-block-quote p {
    font-size: 20px;
  }
}

.article.article--single .article__body .wp-block-embed {
  margin: 24px 0;
}

.article.article--single .article__body h1 {
  color: #2a2a2a;
  margin: 48px 0 24px;
  font-family: Cormorant Garamond, serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .article.article--single .article__body h1 {
    margin: 32px 0 24px;
    font-size: 40px;
  }
}

.article.article--single .article__body h2 {
  color: #2a2a2a;
  margin: 48px 0 24px;
  font-family: Cormorant Garamond, serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .article.article--single .article__body h2 {
    margin: 32px 0 24px;
    font-size: 32px;
  }
}

.article.article--single .article__body h3 {
  color: #2a2a2a;
  margin: 48px 0 24px;
  font-family: Cormorant Garamond, serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (width <= 480px) {
  .article.article--single .article__body h3 {
    margin: 32px 0 24px;
    font-size: 24px;
  }
}

.article.article--single .article__body h4 {
  color: #2a2a2a;
  margin: 48px 0 24px;
  font-family: Cormorant Garamond, serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .article.article--single .article__body h4 {
    margin: 32px 0 24px;
    font-size: 20px;
  }
}

.article.article--single .article__body p {
  color: #2a2a2a;
  margin-bottom: 24px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (width <= 480px) {
  .article.article--single .article__body p {
    font-size: 16px;
  }
}

.article.article--single .article__body a {
  color: #913533;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: all .4s;
}

@media (width <= 480px) {
  .article.article--single .article__body a {
    font-size: 16px;
  }
}

.article.article--single .article__body a:hover, .article.article--single .article__body a:active {
  color: #2a2a2a;
}

.article.article--single .article__body ul {
  margin-bottom: 24px;
  padding: 8px 32px;
  list-style-type: none;
}

@media (width <= 480px) {
  .article.article--single .article__body ul {
    padding: 8px 0;
  }
}

.article.article--single .article__body ul li {
  color: #2a2a2a;
  background-image: url("icon-leaf.7666cce0.svg");
  background-repeat: no-repeat;
  padding-left: 36px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (width <= 480px) {
  .article.article--single .article__body ul li {
    font-size: 16px;
  }
}

.article.article--single .article__body ul li ~ li {
  margin-top: 13px;
}

.article.article--single .article__foot {
  border-top: 2px solid #eaeaea;
  padding: 64px 0;
}

@media (width <= 480px) {
  .article.article--single .article__foot {
    padding: 24px 0;
  }
}

.article.article--single .article__foot h2 {
  color: #2a2a2a;
  margin-bottom: 40px;
  font-family: Cormorant Garamond, serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .article.article--single .article__foot h2 {
    margin-bottom: 32px;
    font-size: 32px;
  }

  .article.article--event .article__head h1 {
    margin-bottom: 16px;
  }
}

.article.article--event .article__head .article__meta {
  margin-bottom: 32px;
}

.article.article--event .article__head .article__meta ul li {
  color: #2a2a2a;
  letter-spacing: normal;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (width <= 480px) {
  .article.article--event .article__head .article__meta ul li {
    font-size: 16px;
  }
}

.section-articles {
  padding: 26px 0;
}

.section-articles .section__body h2 {
  color: #2a2a2a;
  margin-bottom: 0;
  font-family: Cormorant Garamond, serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .section-articles .section__body h2 {
    font-size: 32px;
  }
}

.section-contacts {
  background: #f6f6f6;
  padding: 32px 0;
}

.section-contacts .section__inner {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  display: flex;
}

@media (width <= 1025px) {
  .section-contacts .section__inner {
    flex-wrap: wrap;
    gap: 64px;
  }
}

.section-contacts .section__inner .section__left, .section-contacts .section__inner .section__right {
  width: 50%;
  max-width: 616px;
}

@media (width <= 1025px) {
  .section-contacts .section__inner .section__left, .section-contacts .section__inner .section__right {
    width: 100%;
    max-width: 505px;
  }
}

.section-contacts .section__inner .section__left h3, .section-contacts .section__inner .section__right h3 {
  color: #2a2a2a;
  margin-bottom: 8px;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.section-contacts .section__inner .section__left p, .section-contacts .section__inner .section__right p {
  color: #2a2a2a;
  margin-bottom: 24px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section-contacts .section__inner .section__left ul, .section-contacts .section__inner .section__right ul {
  flex-wrap: nowrap;
  justify-content: start;
  align-items: center;
  gap: 40px;
  margin-top: 24px;
  list-style-type: none;
  display: flex;
}

.section-contacts .section__inner .section__left ul li a, .section-contacts .section__inner .section__right ul li a {
  text-decoration: none;
}

.section-contacts .section__inner .section__left ul li a svg path, .section-contacts .section__inner .section__right ul li a svg path {
  transition: all .4s;
}

.section-contacts .section__inner .section__left ul li a:hover svg path, .section-contacts .section__inner .section__left ul li a:active svg path, .section-contacts .section__inner .section__right ul li a:hover svg path, .section-contacts .section__inner .section__right ul li a:active svg path {
  fill: #4f4f4f;
}

.section-contacts .section__inner .section__left .section__form .gform_validation_error form, .section-contacts .section__inner .section__right .section__form .gform_validation_error form {
  flex-wrap: wrap;
}

.section-contacts .section__inner .section__left .section__form form, .section-contacts .section__inner .section__right .section__form form {
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
  gap: 12px;
  display: flex;
}

@media (width <= 480px) {
  .section-contacts .section__inner .section__left .section__form form, .section-contacts .section__inner .section__right .section__form form {
    flex-wrap: wrap;
  }
}

.section-contacts .section__inner .section__left .section__form form .gform_body, .section-contacts .section__inner .section__right .section__form form .gform_body {
  max-width: 336px;
}

@media (width <= 480px) {
  .section-contacts .section__inner .section__left .section__form form .gform_body, .section-contacts .section__inner .section__right .section__form form .gform_body {
    width: 100%;
    min-width: 100%;
  }
}

.section-contacts .section__inner .section__left .section__form form .gform_body ul, .section-contacts .section__inner .section__right .section__form form .gform_body ul {
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 30px;
  display: flex;
}

.section-contacts .section__inner .section__left .section__form form .gform_body ul li, .section-contacts .section__inner .section__right .section__form form .gform_body ul li {
  width: 100%;
  max-width: 336px;
  margin: 0;
  padding: 0;
}

.section-contacts .section__inner .section__left .section__form form .gform_body ul li.gfield--consent .gfield_label, .section-contacts .section__inner .section__right .section__form form .gform_body ul li.gfield--consent .gfield_label {
  display: none;
}

.section-contacts .section__inner .section__left .section__form form .gform_body ul li.gfield--consent .ginput_container.ginput_container_consent, .section-contacts .section__inner .section__right .section__form form .gform_body ul li.gfield--consent .ginput_container.ginput_container_consent {
  flex-wrap: nowrap;
  justify-content: start;
  align-items: center;
  margin: 0;
  display: flex;
}

.section-contacts .section__inner .section__left .section__form form .gform_body ul li.gfield--consent .ginput_container.ginput_container_consent > *, .section-contacts .section__inner .section__right .section__form form .gform_body ul li.gfield--consent .ginput_container.ginput_container_consent > * {
  width: auto;
  margin: 0;
}

.section-contacts .section__inner .section__left .section__form form .gform_body ul li.gfield--consent .ginput_container.ginput_container_consent input, .section-contacts .section__inner .section__right .section__form form .gform_body ul li.gfield--consent .ginput_container.ginput_container_consent input {
  margin-right: 8px;
}

.section-contacts .section__inner .section__left .section__form form .gform_body ul li .gfield_label, .section-contacts .section__inner .section__right .section__form form .gform_body ul li .gfield_label {
  color: #2a2a2a;
  width: 100%;
  max-width: 336px;
  margin-bottom: 4px;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

.section-contacts .section__inner .section__left .section__form form .gform_body ul li .ginput_container, .section-contacts .section__inner .section__right .section__form form .gform_body ul li .ginput_container, .section-contacts .section__inner .section__left .section__form form .gform_body ul li .ginput_container input, .section-contacts .section__inner .section__right .section__form form .gform_body ul li .ginput_container input {
  width: 100%;
  max-width: 336px;
}

.section-contacts .section__inner .section__left .section__form form .gform_footer, .section-contacts .section__inner .section__right .section__form form .gform_footer {
  width: min-content;
  margin-top: 0;
  padding: 0;
}

@media (width <= 480px) {
  .section-contacts .section__inner .section__left .section__form form .gform_footer, .section-contacts .section__inner .section__right .section__form form .gform_footer {
    width: 100%;
    min-width: 100%;
  }
}

.section-contacts .section__inner .section__left .section__form form .gform_footer .gform_button.button, .section-contacts .section__inner .section__right .section__form form .gform_footer .gform_button.button {
  color: #913533;
  white-space: nowrap;
  letter-spacing: .64px;
  text-transform: uppercase;
  cursor: pointer;
  background: url("icon-chevron-right-red.31e2f3d2.svg") 90% no-repeat;
  border: none;
  border-radius: 0;
  outline: none;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: center;
  gap: 8px;
  width: min-content;
  margin: 28px 0 0;
  padding: 10px 48px 10px 12px;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  transition: all .4s;
  display: flex;
}

.section-contacts .section__inner .section__left .section__form form .gform_footer .gform_button.button:hover, .section-contacts .section__inner .section__right .section__form form .gform_footer .gform_button.button:hover {
  background: #0000000d url("icon-chevron-right-red.31e2f3d2.svg") 100% no-repeat;
}

.section-contacts .section__inner .section__left .section__form form .gform_footer .gform_button.button:active, .section-contacts .section__inner .section__right .section__form form .gform_footer .gform_button.button:active {
  background: #0000001a url("icon-chevron-right-red.31e2f3d2.svg") 100% no-repeat;
}

@media (width <= 1400px) {
  .section-contacts .section__inner .section__left {
    max-width: 505px;
  }

  .section-contacts .section__inner .section__right {
    max-width: 415px;
  }
}

.section-search {
  margin: 40px 0 24px;
}

@media (width <= 480px) {
  .section-search {
    margin: 24px 0 15px;
  }
}

.section-search .section__inner {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (width <= 1025px) {
  .section-search .section__inner {
    flex-wrap: wrap;
    gap: 24px;
  }
}

.section-search .section__inner h1 {
  color: #2a2a2a;
  margin-bottom: 0;
  font-family: Cormorant Garamond, serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 1025px) {
  .section-search .section__inner h1 {
    width: 100%;
  }
}

@media (width <= 480px) {
  .section-search .section__inner h1 {
    font-size: 40px;
  }
}

.section-search .section__inner h2 {
  color: #2a2a2a;
  margin-bottom: 0;
  font-family: Cormorant Garamond, serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.section-search .section__inner .search-form {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 28px;
  width: 100%;
  max-width: 370px;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}

.section-search .section__inner .search-form:after {
  content: "";
  pointer-events: none;
  background-image: url("icon-search.157ab980.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.section-search .section__inner .search-form:focus-within {
  background: #0000000d;
}

.section-search .section__inner .search-form .screen-reader-text {
  opacity: .5;
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.section-search .section__inner .search-form .search__field {
  color: #2a2a2a;
  border: none;
  width: 100%;
  max-width: 370px;
  padding: 12px 16px 12px 58px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: none !important;
}

.section-intro {
  padding: 80px 0;
}

@media (width <= 480px) {
  .section-intro {
    padding: 64px 0;
  }
}

.section-intro.section--center {
  padding: 0;
}

.section-intro.section--center .section__content {
  max-width: none;
  padding: 40px 0 80px;
}

@media (width <= 480px) {
  .section-intro.section--center .section__content {
    padding: 40px 0;
  }
}

.section-intro.section--center .section__content h4 {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-family: Cormorant Garamond, serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .section-intro.section--center .section__content h4 {
    font-size: 24px;
  }
}

.section-intro.section--center .section__content h1 {
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  font-family: Cormorant Garamond, serif;
  font-size: 96px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 1025px) {
  .section-intro.section--center .section__content h1 {
    font-size: 80px;
  }
}

@media (width <= 480px) {
  .section-intro.section--center .section__content h1 {
    margin-bottom: 32px;
    font-size: 40px;
  }
}

.section-intro.section--center .section__content h3 {
  color: #fff;
  text-align: center;
  max-width: 600px;
  margin-bottom: 386px;
  margin-left: auto;
  margin-right: auto;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 1400px) {
  .section-intro.section--center .section__content h3 {
    margin-bottom: 306px;
  }
}

@media (width <= 1025px) {
  .section-intro.section--center .section__content h3 {
    margin-bottom: 405px;
  }
}

@media (width <= 480px) {
  .section-intro.section--center .section__content h3 {
    margin-bottom: 298px;
    font-size: 20px;
    font-weight: 400;
  }
}

.section-intro.section--center .section__content .section__action {
  text-align: center;
}

.section-intro.section--center .section__foot {
  background-color: #fffaf2;
  padding: 56px 0;
}

.section-intro.section--center .section__foot p {
  color: #341615;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section-intro .section__content {
  max-width: 600px;
}

@media (width <= 1400px) {
  .section-intro .section__content {
    max-width: 430px;
  }
}

@media (width <= 1025px) {
  .section-intro .section__content {
    max-width: 512px;
  }
}

.section-intro .section__content h1 {
  color: #fff;
  margin-bottom: 111px;
  font-family: Cormorant Garamond, serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 1400px) {
  .section-intro .section__content h1 {
    margin-bottom: 76px;
  }
}

@media (width <= 1025px) {
  .section-intro .section__content h1 {
    margin-bottom: 56px;
  }
}

@media (width <= 480px) {
  .section-intro .section__content h1 {
    margin-bottom: 48px;
    font-size: 40px;
  }
}

.section-intro .section__content h3 {
  color: #fff;
  margin-bottom: 111px;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 1400px) {
  .section-intro .section__content h3 {
    margin-bottom: 76px;
  }
}

@media (width <= 1025px) {
  .section-intro .section__content h3 {
    margin-bottom: 56px;
  }
}

@media (width <= 480px) {
  .section-intro .section__content h3 {
    margin-bottom: 48px;
    font-size: 24px;
  }
}

.section-intro .section__content p {
  color: #fff;
  margin-bottom: 111px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (width <= 1400px) {
  .section-intro .section__content p {
    margin-bottom: 76px;
  }
}

@media (width <= 1025px) {
  .section-intro .section__content p {
    max-width: none;
    margin-bottom: 56px;
  }
}

@media (width <= 480px) {
  .section-intro .section__content p {
    margin-bottom: 48px;
    font-size: 16px;
  }
}

.lang-switcher {
  z-index: 999998;
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  transition: all .4s;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 2px 2px 8px #00000029;
}

.lang-switcher.active {
  display: block;
}

.lang-switcher p {
  text-align: center;
  color: #2a2a2a;
  margin-bottom: 40px;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.lang-switcher ul {
  list-style-type: none;
}

.lang-switcher ul li ~ li {
  margin-top: 8px;
}

.section-duo {
  background: #fffaf2;
  padding: 24px 0 40px;
}

.section-duo .section__inner {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: start;
  gap: 32px;
  display: flex;
}

@media (width <= 1400px) {
  .section-duo .section__inner {
    gap: 24px;
  }
}

@media (width <= 1025px) {
  .section-duo .section__inner {
    flex-wrap: wrap;
    gap: 48px;
  }
}

.section-duo .section__inner .section__col {
  width: calc(50% - 16px);
}

@media (width <= 1025px) {
  .section-duo .section__inner .section__col {
    width: 100%;
  }
}

.section-duo .section__inner .section__col img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 70%;
  height: auto;
  margin-bottom: 32px;
  display: block;
}

@media (width <= 480px) {
  .section-duo .section__inner .section__col img {
    margin-bottom: 24px;
  }
}

.section-duo .section__inner .section__col .section__content {
  padding: 0 24px;
}

.section-duo .section__inner .section__col .section__content h2 {
  color: #341615;
  margin-bottom: 24px;
  font-family: Cormorant Garamond, serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.section-duo .section__inner .section__col .section__content p {
  color: #341615;
  margin-bottom: 24px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section-duo .section__inner .section__col .section__content .btn {
  margin-top: 16px;
}

@media (width <= 480px) {
  .section-duo .section__inner .section__col .section__content .btn {
    margin-top: 0;
  }
}

.page-id-4 .section-duo .section__col img, .home .section-duo .section__col img {
  aspect-ratio: 1;
}

.section-divider {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 240px;
}

@media (width <= 480px) {
  .section-divider {
    height: 120px;
  }
}

.section-featured {
  padding: 64px 0;
}

.section-featured ~ .section-featured {
  border-top: 2px solid #eaeaea;
}

@media (width <= 480px) {
  .section-featured {
    padding: 40px 0;
  }
}

.section-featured.section--alt {
  background: #f6f6f6;
}

.section-featured.section--center .section__head h2 {
  text-align: center;
}

.section-featured.section--small {
  padding: 16px 0;
}

.section-featured.section--small .section__head {
  margin-bottom: 24px;
}

.section-featured .section__head {
  margin-bottom: 40px;
}

.section-featured .section__head h2 {
  color: #000;
  margin-bottom: 0;
  font-family: Cormorant Garamond, serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .section-featured .section__head h2 {
    font-size: 32px;
  }
}

.section-featured .section__foot {
  margin-top: 40px;
}

.event {
  flex-wrap: nowrap;
  justify-content: start;
  align-items: stretch;
  display: flex;
}

@media (width <= 1025px) {
  .event {
    flex-wrap: wrap;
  }
}

.event .event__image, .event .event__content {
  flex-grow: 1;
  width: 50%;
}

@media (width <= 1025px) {
  .event .event__image, .event .event__content {
    width: 100%;
  }
}

.event .event__image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (width <= 1025px) {
  .event .event__image {
    padding-bottom: 52%;
  }
}

@media (width <= 480px) {
  .event .event__image {
    padding-bottom: 71%;
  }
}

.event .event__content {
  background: #4a2c2b;
  padding: 40px;
}

@media (width <= 480px) {
  .event .event__content {
    padding: 16px 24px;
  }
}

.event .event__content h2 {
  color: #fff;
  margin-bottom: 16px;
  font-family: Cormorant Garamond, serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .event .event__content h2 {
    margin-bottom: 26px;
    font-size: 32px;
  }
}

.event .event__content .event__meta {
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  list-style-type: none;
  display: flex;
}

@media (width <= 1400px) {
  .event .event__content .event__meta {
    margin-bottom: 18px;
  }
}

@media (width <= 1025px) {
  .event .event__content .event__meta {
    margin-bottom: 42px;
  }
}

@media (width <= 480px) {
  .event .event__content .event__meta {
    flex-wrap: wrap;
    gap: 17px;
    margin-bottom: 32px;
  }
}

.event .event__content .event__meta li {
  color: #fff;
  align-items: center;
  gap: 4px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
}

.event .event__content .event__meta li svg path {
  fill: #fff;
}

.event .event__content p {
  color: #fff;
  margin-bottom: 40px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (width <= 1400px) {
  .event .event__content p {
    margin-bottom: 18px;
  }
}

@media (width <= 1025px) {
  .event .event__content p {
    margin-bottom: 42px;
  }
}

@media (width <= 480px) {
  .event .event__content p {
    margin-bottom: 32px;
    font-size: 16px;
  }
}

.album {
  flex-wrap: wrap;
  justify-self: start;
  align-items: stretch;
  gap: 16px;
  display: flex;
}

.album a {
  width: calc(25% - 12px);
  position: relative;
}

@media (width <= 1400px) {
  .album a {
    width: calc(33.3333% - 10.6667px);
  }

  .album a:nth-child(4) {
    display: none;
  }
}

@media (width <= 1025px) {
  .album a {
    width: calc(50% - 8px);
  }

  .album a:nth-child(4) {
    display: block;
  }
}

@media (width <= 480px) {
  .album a {
    width: 100%;
  }
}

.album a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slider-testimonials {
  max-width: 1040px;
  margin: 0 auto;
}

.slider-testimonials .slide-testimonial {
  background: #4a2c2b;
  border-radius: 8px;
  padding: 32px 24px 24px;
}

.slider-testimonials .slide-testimonial .slide__head {
  margin-bottom: 32px;
}

.slider-testimonials .slide-testimonial .slide__head p {
  color: #fff;
  margin-bottom: 8px;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.slider-testimonials .slide-testimonial .slide__body p {
  color: #fff;
  margin-bottom: 8px;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

.slider-testimonials.f-carousel {
  --f-carousel-spacing: 16px;
  --f-carousel-slide-width: calc((100% - 32px) / 3);
  --f-button-next-pos: -85px;
  --f-button-prev-pos: -85px;
  --f-button-width: 64px;
  --f-button-height: 64px;
  --f-button-svg-width: 32px;
  --f-button-svg-height: 32px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-color: #2a2a2a;
  --f-button-border-radius: 32px;
  --f-button-border: 2px solid #eaeaea;
  --f-button-bg: #fff;
  --f-button-hover-bg: #f9f9f9;
  --f-button-active-bg: #f0f0f0;
}

@media (width <= 1025px) {
  .slider-testimonials.f-carousel {
    --f-carousel-slide-width: calc(50% - 8px);
  }
}

@media (width <= 480px) {
  .slider-testimonials.f-carousel {
    --f-carousel-slide-width: 100%;
    --f-button-width: 32px;
    --f-button-height: 32px;
    --f-button-svg-width: 16px;
    --f-button-svg-height: 16px;
    --f-button-svg-stroke-width: 1;
    --f-button-next-pos: -15px;
    --f-button-prev-pos: -15px;
  }
}

.slider-products {
  margin: 0 auto;
}

.slider-products > .f-carousel__slide, .slider-products > .slide-products {
  visibility: hidden !important;
  z-index: -1 !important;
  display: none !important;
  position: absolute !important;
  left: -9999px !important;
}

.slider-products .f-carousel__viewport .f-carousel__slide {
  visibility: visible !important;
  z-index: auto !important;
  display: block !important;
  position: relative !important;
  left: auto !important;
}

.slider-products.f-carousel {
  --f-carousel-spacing: 0px;
  --f-carousel-slide-width: 100%;
  --f-carousel-slide-height: auto;
}

.slider-products .slide-products {
  text-align: center;
  max-width: 688px;
  margin: 0 auto;
}

.slider-products .slide-products img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

.rating {
  display: flex;
}

.rating svg {
  width: 24px;
  height: 24px;
}

.rating svg ~ svg {
  margin-left: 8px;
}

.f-carousel .f-carousel__viewport {
  transition: all .4s;
}

.form-archived-products, .form-products {
  border-bottom: 2px solid #eaeaea;
  padding: 40px 0;
}

@media (width <= 480px) {
  .form-archived-products, .form-products {
    padding: 24px 0;
  }
}

.form-archived-products .form__head, .form-products .form__head {
  margin-bottom: 36px;
}

.form-archived-products .form__head h1, .form-products .form__head h1 {
  color: #2a2a2a;
  margin-bottom: 40px;
  font-family: Cormorant Garamond, serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .form-archived-products .form__head h1, .form-products .form__head h1 {
    margin-bottom: 24px;
    font-size: 40px;
  }
}

.form-archived-products .form__head p, .form-products .form__head p {
  color: #2a2a2a;
  margin-bottom: 40px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (width <= 480px) {
  .form-archived-products .form__head p, .form-products .form__head p {
    margin-bottom: 24px;
    font-size: 16px;
  }
}

.form-archived-products .form__head .form__row, .form-products .form__head .form__row {
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 16px;
  display: flex;
}

.form-archived-products .form__head .form__row p, .form-products .form__head .form__row p {
  color: #000;
  margin-bottom: 0;
  margin-right: 8px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form-archived-products .form__head .form__row .form__controls .input.input--chips, .form-products .form__head .form__row .form__controls .input.input--chips {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.form-archived-products .form__head .form__row .form__controls .input.input--chips input[type="checkbox"], .form-products .form__head .form__row .form__controls .input.input--chips input[type="checkbox"] {
  display: none;
}

.form-archived-products .form__head .form__row .form__controls .input.input--chips input[type="checkbox"] + label, .form-products .form__head .form__row .form__controls .input.input--chips input[type="checkbox"] + label {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  text-transform: capitalize;
  color: #2a2a2a;
  letter-spacing: .64px;
  background: #fff;
  border-radius: 20px;
  padding: 8px 16px;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all .4s;
  display: inline-block;
}

.form-archived-products .form__head .form__row .form__controls .input.input--chips input[type="checkbox"] + label:hover, .form-products .form__head .form__row .form__controls .input.input--chips input[type="checkbox"] + label:hover {
  background: #f6f6f6;
}

.form-archived-products .form__head .form__row .form__controls .input.input--chips input[type="checkbox"] + label[for="field-product-0"], .form-products .form__head .form__row .form__controls .input.input--chips input[type="checkbox"] + label[for="field-product-0"] {
  margin-right: 32px;
}

.form-archived-products .form__head .form__row .form__controls .input.input--chips input[type="checkbox"]:checked + label, .form-products .form__head .form__row .form__controls .input.input--chips input[type="checkbox"]:checked + label {
  color: #fff;
  background: #000;
}

.form-archived-products .form__head h1 {
  text-transform: capitalize;
}

.form-archived-products .form__body h2 {
  color: #2a2a2a;
  margin-bottom: 24px;
  font-family: Cormorant Garamond, serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.rows-alternating .row {
  flex-direction: row;
  align-items: stretch;
  display: flex;
}

@media (width <= 1025px) {
  .rows-alternating .row {
    flex-direction: column;
  }
}

.rows-alternating .row.row--alt .row__image {
  background-color: #fffaf2;
  background-size: contain;
}

@media (width <= 1400px) {
  .rows-alternating .row.row--alt .row__image {
    min-height: 360px;
  }
}

@media (width <= 480px) {
  .rows-alternating .row.row--alt .row__image {
    min-height: 0;
  }
}

.rows-alternating .row.row--alt .row__text {
  background: #fffaf2;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

@media (width <= 1025px) {
  .rows-alternating .row.row--alt .row__text {
    padding: 24px 40px 40px;
  }
}

@media (width <= 480px) {
  .rows-alternating .row.row--alt .row__text {
    background: #fff;
    padding: 9px 0 18px;
  }
}

@media (width <= 1400px) {
  .rows-alternating .row.row--detailed .row__image {
    min-height: 480px;
  }
}

@media (width <= 1025px) {
  .rows-alternating .row.row--detailed .row__image {
    min-height: 0;
  }
}

.rows-alternating .row.row--detailed .row__text ul {
  gap: 16px;
}

.rows-alternating .row.row--detailed .row__text ul li {
  width: 100%;
}

.rows-alternating .row:nth-child(2n) {
  flex-direction: row-reverse;
}

@media (width <= 1025px) {
  .rows-alternating .row:nth-child(2n) {
    flex-direction: column;
  }
}

.rows-alternating .row .row__image {
  background-position: center;
  background-repeat: no-repeat;
  width: 50%;
  min-height: 360px;
}

@media (width <= 1400px) {
  .rows-alternating .row .row__image {
    min-height: 480px;
  }
}

@media (width <= 1025px) {
  .rows-alternating .row .row__image {
    width: 100%;
    min-height: 0;
    padding-bottom: 52%;
  }
}

@media (width <= 480px) {
  .rows-alternating .row .row__image {
    padding-bottom: 72%;
  }
}

.rows-alternating .row .row__text {
  background: #f5fbf5;
  width: 50%;
  padding: 40px;
}

@media (width <= 1025px) {
  .rows-alternating .row .row__text {
    width: 100%;
  }
}

@media (width <= 480px) {
  .rows-alternating .row .row__text {
    background: #fff;
    padding: 16px 0;
  }
}

.rows-alternating .row .row__text h2 {
  color: #341615;
  margin-bottom: 16px;
  font-family: Cormorant Garamond, serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .rows-alternating .row .row__text h2 {
    font-size: 32px;
  }
}

.rows-alternating .row .row__text h3 {
  color: #2a2a2a;
  margin-bottom: 32px;
  font-family: Cormorant Garamond, serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (width <= 480px) {
  .rows-alternating .row .row__text h3 {
    margin-bottom: 24px;
    font-size: 24px;
  }
}

.rows-alternating .row .row__text p {
  color: #2a2a2a;
  margin-bottom: 32px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (width <= 480px) {
  .rows-alternating .row .row__text p {
    margin-bottom: 24px;
    font-size: 16px;
  }
}

.rows-alternating .row .row__text p:last-child {
  margin-bottom: 0;
}

.rows-alternating .row .row__text ul {
  flex-wrap: wrap;
  align-items: center;
  gap: 56px;
  margin-bottom: 42px;
  list-style-type: none;
  display: flex;
}

@media (width <= 1400px) {
  .rows-alternating .row .row__text ul {
    margin-bottom: 18px;
  }
}

.rows-alternating .row .row__text ul li {
  color: #341615;
  align-items: center;
  gap: 4px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
}

@media (width <= 480px) {
  .rows-alternating .row .row__text ul li {
    font-size: 16px;
  }
}

.rows-alternating .row .row__text ul li svg {
  width: 24px;
  height: 24px;
}

.rows-alternating .row .row__text ul li svg path {
  fill: #341615;
}

.section-columns {
  background: #f6f6f6;
  padding: 40px 0;
}

.section-columns .section__inner {
  justify-content: center;
  align-items: start;
  gap: 64px;
  display: flex;
}

@media (width <= 1025px) {
  .section-columns .section__inner {
    flex-wrap: wrap;
  }
}

@media (width <= 480px) {
  .section-columns .section__inner {
    gap: 48px;
  }
}

.section-columns .section__inner .section__col {
  width: calc(50% - 32px);
}

@media (width <= 1025px) {
  .section-columns .section__inner .section__col {
    width: 100%;
  }
}

.section-columns .section__inner .section__col h2 {
  color: #2a2a2a;
  margin-bottom: 24px;
  font-family: Cormorant Garamond, serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .section-columns .section__inner .section__col h2 {
    font-size: 32px;
  }
}

.section-columns .section__inner .section__col p {
  color: #2a2a2a;
  margin-bottom: 24px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (width <= 480px) {
  .section-columns .section__inner .section__col p {
    font-size: 16px;
  }
}

.section-columns .section__inner .section__col img {
  width: auto;
  max-height: 48px;
}

.section-small {
  max-width: 662px;
  margin: 0 auto;
  padding: 80px 0;
}

.section-small .section__content h1 {
  color: #2a2a2a;
  text-align: center;
  margin-bottom: 80px;
  font-family: Cormorant Garamond, serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.section-small .section__content h3 {
  color: #000;
  text-align: center;
  margin-bottom: 80px;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.section-small .section__content p {
  color: #2a2a2a;
  max-width: 600px;
  margin: 0 auto 80px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section-small .section__action .btn {
  margin: 0 auto;
}

.section-wc {
  padding: 40px 0;
}

.section-wc .section__head {
  color: #2a2a2a;
  font-family: Cormorant Garamond, serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.section-wc .section__head h1 {
  color: #2a2a2a;
  margin-bottom: 16px;
  font-family: Cormorant Garamond, serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .section-wc .section__head h1 {
    font-size: 40px;
  }
}

.section-wc .section__head .section__meta {
  flex-wrap: nowrap;
  place-content: center space-between;
  margin-bottom: 56px;
  display: flex;
}

@media (width <= 480px) {
  .section-wc .section__head .section__meta {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}

.section-wc .section__head .section__meta .section__meta-left p {
  color: #37734a;
  margin-bottom: 0;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (width <= 480px) {
  .section-wc .section__head .section__meta .section__meta-left p {
    margin-bottom: 26px;
    font-size: 20px;
    font-weight: 400;
  }
}

.section-wc .section__head .section__meta .section__meta-right {
  flex-wrap: nowrap;
  align-items: center;
  gap: 40px;
  display: flex;
}

.section-wc .section__head .section__meta .section__meta-right p {
  color: #2a2a2a;
  margin-bottom: 0;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (width <= 480px) {
  .section-wc .section__head .section__meta .section__meta-right p {
    font-size: 16px;
    font-weight: 400;
  }
}

.section-wc .section__body input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.section-wc .section__body input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.section-wc .section__body input[type="number"] {
  -moz-appearance: textfield;
}

.section-wc .section__body .cart-collaterals {
  border-top: 1px solid #eaeaea;
  margin-top: 16px;
  padding-top: 16px;
}

.section-wc .section__body .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
}

.section-wc .section__body .cart-collaterals .cart_totals .cart_totals_title {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.section-wc .section__body .cart-collaterals .cart_totals .cart_totals_title p {
  color: #341615;
  margin-bottom: 0;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.section-wc .section__body .cart-collaterals .cart_totals .cart_totals_title p strong {
  color: #341615;
  padding-left: 24px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.section-wc .section__body .section__body-inner {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: start;
  display: flex;
}

@media (width <= 1400px) {
  .section-wc .section__body .section__body-inner {
    flex-direction: column;
  }
}

.section-wc .section__body .section__body-inner .checkout-payment-section {
  width: 60%;
  max-width: 793px;
}

@media (width <= 1400px) {
  .section-wc .section__body .section__body-inner .checkout-payment-section {
    width: 100%;
    max-width: none;
  }
}

.section-wc .section__body .section__body-inner .woocommerce-checkout-review-order-container {
  width: 33%;
  max-width: 459px;
}

@media (width <= 1400px) {
  .section-wc .section__body .section__body-inner .woocommerce-checkout-review-order-container {
    width: 100%;
    max-width: none;
  }
}

.section-wc .section__body .section__body-inner .woocommerce-checkout-review-order-container .woocommerce-checkout-review-order.fixed {
  width: 100%;
  max-width: 459px;
  position: fixed;
}

@media (width <= 1400px) {
  .section-wc .section__body .section__body-inner .woocommerce-checkout-review-order-container .woocommerce-checkout-review-order.fixed {
    max-width: none;
    position: static;
  }
}

.woocommerce-cart-form .cart.shop_table {
  border: 1px solid #eaeaea;
  border-radius: 0;
}

.woocommerce-cart-form .cart.shop_table thead tr th {
  color: #2a2a2a;
  letter-spacing: .48px;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #eaeaea;
  font-family: Work Sans, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.woocommerce-cart-form .cart.shop_table tbody tr td {
  border: 1px solid #eaeaea;
}

.woocommerce-cart-form .cart.shop_table tbody tr td.product-name a {
  color: #2a2a2a;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.woocommerce-cart-form .cart.shop_table tbody tr td.product-name a:hover {
  opacity: .8;
}

.woocommerce-cart-form .cart.shop_table tbody tr td span {
  color: #2a2a2a;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.woocommerce-cart-form .cart .product-quantity .quantity {
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
}

.woocommerce-cart-form .cart .product-quantity .quantity input {
  color: #2a2a2a;
  background: #f6f6f6;
  border: none;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
}

.woocommerce-cart-form .cart .product-quantity .quantity button {
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.woocommerce-cart-form .cart .actions .coupon {
  align-items: center;
  display: flex;
}

.woocommerce-cart-form .cart .actions .coupon .input-text {
  color: #2a2a2a;
  background: #f6f6f6;
  border: none;
  justify-content: center;
  align-items: center;
  height: 51px;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  width: auto !important;
}

.woocommerce-cart-form .cart .actions .coupon button[type="submit"] {
  white-space: nowrap;
  color: #fff;
  letter-spacing: .64px;
  text-transform: uppercase;
  cursor: pointer;
  background: #913533;
  border: none;
  border-radius: 0;
  outline: none;
  padding: 16px 40px;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  transition: all .4s;
  display: inline-block;
}

.woocommerce-cart-form .cart .actions .coupon button[type="submit"]:hover {
  background: #691d1c;
}

.woocommerce-cart-form .cart .actions .coupon button[type="submit"]:active {
  background: #4a2c2b;
}

.woocommerce-cart-form .cart .actions button[type="submit"] {
  white-space: nowrap;
  color: #fff;
  letter-spacing: .64px;
  text-transform: uppercase;
  cursor: pointer;
  background: #913533;
  border: none;
  border-radius: 0;
  outline: none;
  padding: 16px 40px;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  transition: all .4s;
  display: inline-block;
}

.woocommerce-cart-form .cart .actions button[type="submit"]:hover {
  background: #691d1c;
}

.woocommerce-cart-form .cart .actions button[type="submit"]:active {
  background: #4a2c2b;
}

.woocommerce .checkout.woocommerce-checkout .col2-set#customer_details .col-1, .woocommerce .checkout.woocommerce-checkout .col2-set#customer_details .col-2 {
  float: none;
  width: 100%;
}

.woocommerce .checkout.woocommerce-checkout .col2-set#customer_details .col-1 .stripe-gateway-stripelink-modal-trigger, .woocommerce .checkout.woocommerce-checkout .col2-set#customer_details .col-2 .stripe-gateway-stripelink-modal-trigger {
  position: static;
}

.woocommerce .checkout.woocommerce-checkout .col2-set#customer_details .col-1 .iha-wc-heading.iha-wc-divider h3 {
  margin-top: 39px;
}

.woocommerce .checkout.woocommerce-checkout .col2-set#customer_details .col-1 .iha-wc-heading h3 {
  color: #2a2a2a;
  border-top: 2px solid #eaeaea;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 30px;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.woocommerce .checkout.woocommerce-checkout .col2-set#customer_details .col-2 #ship-to-different-address span {
  color: #2a2a2a;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (width <= 480px) {
  .woocommerce .checkout.woocommerce-checkout .form-row {
    float: none;
    width: 100%;
  }
}

.woocommerce .checkout.woocommerce-checkout .form-row label {
  color: #2a2a2a;
  margin-bottom: 4px;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

.woocommerce .checkout.woocommerce-checkout .form-row label abbr {
  color: #2a2a2a;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

.woocommerce .checkout.woocommerce-checkout .form-row input.input-text {
  color: #2a2a2a;
  border: 1px solid #2a2a2a;
  height: 48px;
  padding: 12px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all .4s;
}

.woocommerce .checkout.woocommerce-checkout .form-row input.input-text:focus {
  background: #0000000d;
}

.woocommerce .checkout.woocommerce-checkout .form-row .select2-container--default .select2-selection--single {
  color: #2a2a2a;
  border: 1px solid #2a2a2a;
  border-radius: 0;
  height: 48px;
  padding: 12px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all .4s;
}

.woocommerce .checkout.woocommerce-checkout .form-row .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 11px;
}

.woocommerce .checkout.woocommerce-checkout .form-row .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: normal;
}

.woocommerce .checkout.woocommerce-checkout .form-row.woocommerce-invalid input.input-text {
  background: #fff;
  border: 1px solid #d15856;
}

.woocommerce .checkout.woocommerce-checkout .woocommerce-checkout-review-order-container .woocommerce-checkout-review-order {
  background: #f6f6f6;
  padding: 32px 24px;
}

.woocommerce .checkout.woocommerce-checkout .woocommerce-checkout-review-order-container .woocommerce-checkout-review-order h3 {
  color: #2a2a2a;
  margin-bottom: 32px;
  font-family: Work Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.woocommerce .checkout.woocommerce-checkout .woocommerce-checkout-review-order-container .woocommerce-checkout-review-order .shop_table.woocommerce-checkout-review-order-table {
  border: none;
  border-radius: 0;
}

.woocommerce .checkout.woocommerce-checkout .woocommerce-checkout-review-order-container .woocommerce-checkout-review-order .shop_table.woocommerce-checkout-review-order-table th, .woocommerce .checkout.woocommerce-checkout .woocommerce-checkout-review-order-container .woocommerce-checkout-review-order .shop_table.woocommerce-checkout-review-order-table td {
  border: none;
}

.woocommerce .checkout.woocommerce-checkout .woocommerce-privacy-policy-text {
  margin-bottom: 24px;
}

.woocommerce table.shop_table {
  margin: 0;
}

.woocommerce table.shop_table tbody tr.cart_item:last-child .order-block {
  margin-bottom: 32px;
}

.woocommerce table.shop_table tbody tr.cart_item td {
  width: 100%;
  padding: 0;
}

.woocommerce table.shop_table tfoot tr.order-total {
  color: #37734a;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
}

.woocommerce table.shop_table tfoot tr.order-total th, .woocommerce table.shop_table tfoot tr.order-total td {
  padding: 0;
  font-weight: 600 !important;
  line-height: normal !important;
}

.woocommerce table.shop_table tfoot tr, .woocommerce table.shop_table tfoot .cart-subtotal, .woocommerce table.shop_table tfoot .woocommerce-shipping-totals.shipping {
  color: #2a2a2a;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.woocommerce table.shop_table tfoot tr th, .woocommerce table.shop_table tfoot tr td, .woocommerce table.shop_table tfoot .cart-subtotal th, .woocommerce table.shop_table tfoot .cart-subtotal td, .woocommerce table.shop_table tfoot .woocommerce-shipping-totals.shipping th, .woocommerce table.shop_table tfoot .woocommerce-shipping-totals.shipping td {
  padding: 0;
  font-weight: 600 !important;
  line-height: normal !important;
}

@media (width <= 1400px) {
  .woocommerce table.shop_table tfoot tr td, .woocommerce table.shop_table tfoot .cart-subtotal td, .woocommerce table.shop_table tfoot .woocommerce-shipping-totals.shipping td {
    text-align: right;
  }
}

.order-block {
  margin-bottom: 12px;
}

.order-block .order__inner {
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
  gap: 16px;
  display: flex;
}

.order-block .order__inner img {
  max-width: 136px;
  height: auto;
}

@media (width <= 480px) {
  .order-block .order__inner img {
    display: none;
  }
}

@media (width <= 1400px) {
  .order-block .order__inner .order__meta {
    width: 100%;
  }
}

.order-block .order__inner .order__meta p {
  color: #2a2a2a;
  margin-bottom: 12px;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.order-block .order__inner .order__meta ul {
  flex-wrap: nowrap;
  justify-content: start;
  gap: 40px;
  list-style-type: none;
  display: flex;
}

@media (width <= 1400px) {
  .order-block .order__inner .order__meta ul {
    justify-content: space-between;
  }
}

.order-block .order__inner .order__meta ul li span:first-child {
  color: #2a2a2a;
  margin-bottom: 4px;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  display: block;
}

.order-block .order__inner .order__meta ul li span:last-child {
  color: #2a2a2a;
  font-family: Work Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: block;
}

.order-block .order__inner .order__meta ul li span.woocommerce-Price-currencySymbol, .order-block .order__inner .order__meta ul li span.woocommerce-Price-amount.amount {
  display: inline-block;
}
/*# sourceMappingURL=main.css.map */
