:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

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

@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

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

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

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

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

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

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

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }

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

@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

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

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

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

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}

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

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

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}

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

.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

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

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}

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

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

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

  100% {
    opacity: 1;
  }
}

@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}

.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}

@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}

.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }

  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }

  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}

@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}

: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-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --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-disabled-opacity: 0.65;
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  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);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}

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

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

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

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

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

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

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

.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
  pointer-events: none;
}

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

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

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

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

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

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

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__backdrop:empty,
.fancybox__viewport:empty,
.fancybox__track:empty,
.fancybox__slide:empty {
  display: block;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

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

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

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

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

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  filter: blur(0px);
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content,
.fancybox__container.is-compact .has-map .fancybox__content,
.fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

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

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: flex;
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: -moz-max-content;
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
  transition: clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0) );
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}

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

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

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

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

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.f-button svg * {
  stroke: white;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sofia Sans", sans-serif;
}

h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1px;
  text-transform: uppercase;
}

h1 b,
h1 strong {
  font: inherit;
  color: inherit;
  text-decoration: underline;
  -webkit-text-decoration-color: #B4E100;
          text-decoration-color: #B4E100;
  -webkit-text-decoration-style: solid !important;
          text-decoration-style: solid !important;
  -webkit-text-decoration-skip-ink: none !important;
          text-decoration-skip-ink: none !important;
  text-decoration-thickness: auto !important;
  text-underline-offset: 6px !important;
  text-underline-position: from-font !important;
}

h2 {
  font-size: 72px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1px;
  text-transform: uppercase;
}

h2 b,
h2 strong {
  font: inherit;
  color: inherit;
  text-decoration: underline;
  -webkit-text-decoration-color: #B4E100;
          text-decoration-color: #B4E100;
  -webkit-text-decoration-style: solid !important;
          text-decoration-style: solid !important;
  -webkit-text-decoration-skip-ink: none !important;
          text-decoration-skip-ink: none !important;
  text-decoration-thickness: auto !important;
  text-underline-offset: 6px !important;
  text-underline-position: from-font !important;
}

h3,
h4,
h5,
h6 {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1px;
  text-transform: uppercase;
}

h3 b,
h3 strong,
h4 b,
h4 strong,
h5 b,
h5 strong,
h6 b,
h6 strong {
  font: inherit;
  color: inherit;
  text-decoration: underline;
  -webkit-text-decoration-color: #B4E100;
          text-decoration-color: #B4E100;
  -webkit-text-decoration-style: solid !important;
          text-decoration-style: solid !important;
  -webkit-text-decoration-skip-ink: none !important;
          text-decoration-skip-ink: none !important;
  text-decoration-thickness: auto !important;
  text-underline-offset: 2px !important;
  text-underline-position: from-font !important;
}

.txt-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.txt-content p,
.txt-content li,
.txt-content blockquote,
.txt-content div,
.txt-content font,
.txt-content span {
  font-size: 16px;
  line-height: 1.44;
}

.txt-content ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.txt-content ul li {
  list-style: disc;
}

.txt-content ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.txt-content ol li {
  list-style: decimal;
}

.txt-content blockquote {
  padding: 12px 0 12px 20px;
  border-left: 2px solid black;
}

.txt-content a {
  text-decoration: underline;
  transition: 0.2s;
}

.txt-content a:hover {
  color: #B4E100;
}

.txt-content img,
.txt-content video,
.txt-content iframe {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px 14px;
  width: -moz-max-content;
  width: max-content;
  background: #B4E100;
  border-radius: 99px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: var(--pure-black, #000);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
  transition: 0.2s;
  cursor: pointer;
}

.btn svg * {
  stroke: black;
  transition: 0.2s;
}

.btn:hover {
  background: #c4ec35;
}

.btn.black {
  background: black;
  color: white;
}

.btn.black svg * {
  stroke: white;
}

.btn.black:hover {
  background: #c4ec35;
  color: black;
}

.btn.black:hover svg * {
  stroke: black;
}

.btn-border {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px 14px;
  width: -moz-max-content;
  width: max-content;
  background: transparent;
  border: 1px solid #B4E100;
  border-radius: 99px;
  color: var(--pure-black, #000);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
  transition: 0.2s;
  cursor: pointer;
}

.btn-border svg * {
  stroke: black;
}

.btn-border:hover {
  background: #c4ec35;
}

.ovh {
  overflow: hidden;
}

main {
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

main section {
  padding: 60px 0;
}

main section.blackSection {
  background: black;
  margin: 60px 0;
}

main section.blackSection + .blackSection {
  margin-top: -60px;
}

main section.greySection {
  background: #E6E6E6;
  margin: 60px 0;
}

main section:last-child {
  padding-bottom: 120px;
}

.pageTitle {
  padding: 0;
}

.pageTitle .container {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-primary, #99A1A5);
}

.splide__pagination {
  width: -moz-max-content;
  width: max-content;
  background: var(--white-2, #E6E6E6);
  left: 50%;
  bottom: -20px;
  transform: translate(-50%, 100%);
  border-radius: 99px;
  padding: 8px;
}

.splide__pagination__page {
  background: #99A1A5;
  width: 12px;
  height: 12px;
  opacity: 1;
  transition: 0.2s;
  border-radius: 99px;
}

.splide__pagination__page.is-active {
  transform: none;
  background: black;
  width: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  border-radius: 0;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-feature-settings: "pnum" on, "lnum" on, "liga" off, "kern" off;
}

body {
  background: #FAFAFA;
  overflow-x: hidden;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body footer {
  margin-top: auto;
  margin-bottom: 0;
}

select,
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
}

*:focus {
  outline: transparent;
}

input[type=submit] {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.breadcrumbs {
  padding: 40px 0 0;
}

.breadcrumbs .container > span {
  display: flex;
  align-items: center;
  gap: 16px;
}

.breadcrumbs * {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.breadcrumbs a {
  transition: 0.2s;
}

.breadcrumbs a svg * {
  transition: 0.2s;
}

.breadcrumbs a:hover {
  color: #B4E100;
}

.breadcrumbs a:hover svg * {
  fill: #B4E100;
}

.breadcrumbs .breadcrumb_last {
  color: var(--gray-primary, #99A1A5);
}

.footer {
  background: var(--pure-black, #000);
  padding: 60px 0;
}

.footer .logo {
  display: block;
  height: 70px;
}

.footer .logo img {
  display: block;
  height: 100%;
  width: auto;
}

.footer__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer__main .contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 400px;
}

.footer__main .contacts__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer__main .contacts__item svg {
  display: block;
  width: 24px;
  min-width: 24px;
  height: 24px;
}

.footer__main .contacts__item svg * {
  fill: #B4E100;
}

.footer__main .contacts__item ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__main .contacts__item li,
.footer__main .contacts__item a {
  color: var(--pure-white, #FFF);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.footer__main .contacts__item a {
  transition: 0.2s;
}

.footer__main .contacts__item a:hover {
  color: #B4E100;
}

.footer__main .socials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  justify-content: center;
  align-items: center;
  width: 380px;
}

.footer__main .socials .btn {
  width: 100%;
}

.footer__main .socials .item {
  border-radius: 20px;
  background: var(--black-2, #1A1A1A);
  width: 40px;
  height: 40px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__main .socials .item:hover {
  background: #B4E100;
}

.footer__main .socials .item:hover svg * {
  fill: black;
}

.footer__main .socials .item svg {
  display: block;
  width: 24px;
  height: 24px;
}

.footer__main .socials .item svg * {
  fill: white;
  transition: 0.2s;
}

.footer__main .menu {
  width: -moz-max-content;
  width: max-content;
}

.footer__main .menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__main .menu a {
  display: block;
  font-size: 16px;
  line-height: 1.1;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 99px;
  transition: 0.2s;
  color: white;
  width: -moz-max-content;
  width: max-content;
}

.footer__main .menu a:hover {
  border-color: #B4E100;
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--black-2, #1A1A1A);
}

.footer__bottom p {
  color: var(--white-2, #E6E6E6);
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}

.header {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  background: #FAFAFA;
  transition: 0.2s;
  border-bottom: 1px solid transparent;
}

.header.fix {
  border-bottom-color: #99A1A5;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.header__logo img {
  display: block;
  height: 46px;
  width: auto;
}

.header__menu ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__menu a {
  display: block;
  font-size: 16px;
  line-height: 1.1;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 99px;
  transition: 0.2s;
  white-space: nowrap;
}

.header__menu a:hover {
  border-color: #B4E100;
}

.header__menu .menu-item-has-children {
  position: relative;
}

.header__menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  pointer-events: auto;
}

.header__menu .menu-item-has-children a {
  padding: 8px 32px 8px 16px;
}

.header__menu .menu-item-has-children:before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translate(0, -60%) rotate(45deg);
  border: 1px solid black;
  border-left: none;
  border-top: none;
  width: 6px;
  height: 6px;
}

.header__menu .sub-menu {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 100%;
  transform: translate(-50%);
  flex-direction: column;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #99A1A5;
  border-radius: 20px;
  background: #FAFAFA;
  padding: 12px;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}

.header__lang ul {
  display: flex;
}

.header__lang .wpml-ls-current-language {
  pointer-events: none;
}

.header__lang .wpml-ls-current-language span {
  color: #B4E100;
  font-weight: 700;
}

.header__lang span {
  display: block;
  font-size: 16px;
  line-height: 1.1;
  padding: 8px 8px;
  border: 1px solid transparent;
  border-radius: 99px;
  transition: 0.2s;
  text-transform: uppercase;
}

.header__lang span:hover {
  border-color: #B4E100;
}

.header__icons {
  display: flex;
  gap: 24px;
}

.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #B4E100;
  border-radius: 99px;
  transition: 0.2s;
  position: relative;
}

.header__icon:hover {
  background: #bfea24;
}

.header__icon svg {
  display: block;
  width: 24px;
  height: auto;
}

.header__icon .basket_num {
  position: absolute;
  right: -5px;
  top: -5px;
  background: white;
  border: 2px solid #B4E100;
  border-radius: 99px;
  padding: 1px 4px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
}

.header__icon .basket_num.show {
  opacity: 1;
}

.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1.1;
  padding: 8px 16px;
  border: 1px solid #B4E100;
  border-radius: 99px;
  transition: 0.2s;
  cursor: pointer;
}

.header__btn:hover {
  background: #B4E100;
}

.header__mob__btn {
  margin-left: 24px;
}

.header__mob__btn span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1px;
  background: black;
  border-radius: 9px;
  transition: 0.2s;
}

.header__mob__btn span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 4px));
}

.header__mob__btn span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.header__mob__btn span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 4px));
}

.header__mob__btn.open span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.header__mob__btn.open span:nth-child(2) {
  opacity: 0;
}

.header__mob__btn.open span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header__mob__container {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #FAFAFA;
  z-index: -1;
}

.header__mob__container .container {
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 0 60px 0;
}

.header__mob__container .mobMenu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid #99A1A5;
  width: 100%;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.header__mob__container .mobMenu ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.header__mob__container .mobMenu .sub-menu {
  padding-left: 12px;
  padding-top: 12px;
}

.header__mob__container .mobMenu a {
  font-size: 16px;
  transition: 0.2s;
}

.header__mob__container .mobMenu a:active {
  color: #B4E100;
}

.header__mob__container .mobBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__mob__container .mobBottom .header__icon.search {
  display: flex;
}

.header__mob__container .mobBottom .header__icon.search svg {
  width: 18px;
}

.header__mob__container .mobBottom .mobLang ul {
  display: flex;
}

.header__mob__container .mobBottom .mobLang .wpml-ls-current-language {
  pointer-events: none;
}

.header__mob__container .mobBottom .mobLang .wpml-ls-current-language span {
  color: #B4E100;
  font-weight: 700;
}

.header__mob__container .mobBottom .mobLang span {
  display: block;
  font-size: 16px;
  padding: 4px 8px;
  transition: 0.2s;
}

.header__mob__container .mobBottom .mobLang span:active {
  color: #B4E100;
}

.popup {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.popup .popup-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 40px;
  background: var(--pure-black, #000);
  width: 90%;
  max-width: 1280px;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
}

.popup[data-popup=search] .popup-container {
  padding: 40px 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.popup[data-popup=search] h2 {
  color: var(--pure-white, #FFF);
}

.popup[data-popup=search] form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.popup[data-popup=search] form input {
  display: block;
  width: 100%;
  font-size: 20px;
  color: white;
  background: transparent;
  border-radius: 99px;
  border: 1px solid white;
  padding: 12px 24px;
}

.popup[data-popup=search] form button {
  height: 50px;
  width: 50px;
  min-width: 50px;
  padding: 0;
}

.popup[data-popup=search] form button svg {
  display: block;
  width: 24px;
  height: auto;
}

.popup[data-popup=search] form button svg * {
  fill: black;
}

.popup[data-popup=search] .exit-btn {
  padding: 10px;
  cursor: pointer;
}

.popup[data-popup=search] .exit-btn:hover svg * {
  fill: #B4E100;
}

.popup[data-popup=search] .exit-btn svg {
  display: block;
  width: 24px;
  min-width: 24px;
  height: auto;
}

.popup[data-popup=search] .exit-btn svg * {
  fill: white;
  transition: 0.2s;
}

.popup[data-popup=form] h2 {
  padding-right: 24px;
}

.popup[data-popup=form] .popup-container {
  padding: 8px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.popup[data-popup=form] .exit-btn {
  padding: 10px;
  cursor: pointer;
  position: absolute;
  right: 12px;
  top: 12px;
}

.popup[data-popup=form] .exit-btn:hover svg * {
  fill: #B4E100;
}

.popup[data-popup=form] .exit-btn svg {
  display: block;
  width: 24px;
  min-width: 24px;
  height: auto;
}

.popup[data-popup=form] .exit-btn svg * {
  fill: white;
  transition: 0.2s;
}

.popup[data-popup=form] .answer {
  border-radius: 40px;
}

.popup[data-popup=shipping] .popup-container {
  padding: 40px;
  background: white;
}

.popup[data-popup=shipping] .exit-btn {
  padding: 10px;
  cursor: pointer;
  position: absolute;
  right: 12px;
  top: 12px;
}

.popup[data-popup=shipping] .exit-btn svg {
  display: block;
  width: 24px;
  min-width: 24px;
  height: auto;
}

.popup[data-popup=shipping] .exit-btn svg * {
  fill: black;
  transition: 0.2s;
}

.popup[data-popup=shipping] .exit-btn:hover svg * {
  fill: #B4E100;
}

.addedItemToCart {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 20;
}

.addedItemToCart .box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: calc(100vw - 40px);
  max-width: 320px;
  background: #EAEAF2;
  border-left: 5px solid #B4E100;
  padding: 16px;
  pointer-events: none;
}

.addedItemToCart .box h3 {
  font-size: 18px;
  font-weight: 600;
}

.addedItemToCart .box p {
  font-size: 16px;
}

.aboutB1 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: calc(100vh - 50px - 80px);
}

.aboutB1 + .aboutB2 {
  padding-top: 0;
}

.aboutB1 .js-tilt-item img {
  display: block;
  width: 100%;
}

.aboutB1 h1 {
  font-size: 56px;
  text-align: center;
}

.aboutB2__marquee {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  padding: 8px 0;
  background: #000000;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 24px));
  }
}

@keyframes scrollMob {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 4px));
  }
}

.aboutB2__marquee .group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  animation: scroll 30s linear infinite;
}

.aboutB2__marquee p {
  color: var(--pure-white, #FFF);
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
}

.aboutB2__marquee svg {
  display: block;
}

.aboutB3 .container {
  display: flex;
  justify-content: space-between;
}

.aboutB3__left {
  width: calc(50% - 20px);
  align-self: center;
}

.aboutB3__left h2 {
  margin-bottom: 32px;
}

.aboutB3__right {
  width: calc(50% - 20px);
}

.aboutB3__right img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
}

.aboutB4 h2 {
  color: white;
  margin-bottom: 32px;
  width: calc(100% - 300px);
}

.aboutB4 .container {
  position: relative;
}

.aboutB4 .deco {
  position: absolute;
  width: auto;
  display: block;
}

.aboutB4 .deco.deco1 {
  right: 0;
  top: -200px;
  height: 290px;
}

.aboutB4 .deco.deco2 {
  left: 0;
  bottom: -220px;
  height: 400px;
}

.aboutB4 .list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.aboutB4 .list > * {
  width: calc(25% - 12px);
}

.aboutB4 .list .box {
  border-radius: 32px;
  background: var(--black-2, #1A1A1A);
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  gap: 12px;
  min-height: 224px;
  text-align: center;
}

.aboutB4 .list .box span {
  color: var(--pure-white, #FFF);
  font-size: 64px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -1px;
  text-transform: lowercase;
}

.aboutB4 .list .box p {
  color: var(--white-2, #E6E6E6);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.aboutB5 h2 {
  margin-bottom: 32px;
}

.aboutB5 .splide {
  width: calc(100% + 16px);
  margin: 0 -8px;
}

.aboutB5 .splide__slide {
  padding: 0 8px;
}

.aboutB5 .splide .teamItem {
  border-radius: 32px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 420px;
  position: relative;
}

.aboutB5 .splide .teamItem .smallPart {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 190px;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 0 0 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px;
  transition: 0.2s;
}

.aboutB5 .splide .teamItem .smallPart * {
  color: white;
}

.aboutB5 .splide .teamItem .hiddenPart {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #B4E100 0%, rgba(180, 225, 0, 0) 100%);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px;
  transition: 0.2s;
  opacity: 0;
}

.aboutB5 .splide .teamItem .hiddenPart * {
  color: black;
  fill: black;
}

.aboutB5 .splide .teamItem:hover .smallPart {
  opacity: 0;
}

.aboutB5 .splide .teamItem:hover .hiddenPart {
  opacity: 1;
}

.aboutB5 .splide .teamItem .name {
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
}

.aboutB5 .splide .teamItem .prof {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.aboutB5 .splide .teamItem .descr {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.aboutB5 .splide .teamItem .soc {
  display: flex;
  gap: 16px;
}

.aboutB5 .splide .teamItem .soc a {
  display: block;
  width: 24px;
  height: auto;
}

.aboutB5 .splide .teamItem .soc svg {
  display: block;
}

.aboutB6 h2 {
  margin-bottom: 32px;
}

.aboutB6 .splide {
  width: calc(100% + 16px);
  margin: 0 -8px;
}

.aboutB6 .splide__slide {
  padding: 0 8px;
}

.aboutB6 .splide .item {
  border-radius: 32px;
  background: var(--white-2, #E6E6E6);
  padding: 20px;
  height: 260px;
  width: 100%;
  display: block;
}

.aboutB6 .splide .item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.blogItem {
  padding: 8px 16px 16px;
  background: white;
  border-radius: 32px;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}

.blogItem:hover {
  border-color: #99A1A5;
}

.blogItem img {
  display: block;
  width: calc(100% + 16px);
  height: 228.375px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 -8px 16px;
  border-radius: 24px;
}

.blogItem h2,
.blogItem h3,
.blogItem h4 {
  font-family: "Montserrat", sans-serif;
  color: var(--pure-black, #000);
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  text-transform: none;
  margin-bottom: 32px;
}

.blogItem .bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blogItem .bottom .date {
  color: var(--gray-primary, #99A1A5);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.blogItem .bottom .link {
  color: var(--pure-black, #000);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: 0.2s;
}

.blogItem .bottom .link:hover {
  color: #B4E100;
}

.blogB1 {
  padding: 0;
}

.blogB1 .container {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-primary, #99A1A5);
}

.blogB1 .item {
  display: flex;
  gap: 40px;
}

.blogB1 .item .image {
  width: calc(50% - 10px);
}

.blogB1 .item .image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blogB1 .item .text {
  width: calc(50% - 30px);
}

.blogB1 .item .text h2 {
  font-size: 32px;
}

.blogB1 .item .text .description {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.blogB1 .item .text .bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 32px;
}

.blogB1 .item .text .tags {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blogB1 .item .text .tags .date {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-primary, #99A1A5);
}

.blogB1 .item .text .tags .date svg {
  display: block;
  width: 24px;
  height: 24px;
}

.blogB1 .item .text .tags .date svg * {
  fill: #99A1A5;
}

.blogB1 .item .text .link {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: 0.2s;
}

.blogB1 .item .text .link:hover {
  color: #B4E100;
}

.blogB2 {
  padding-top: 24px;
}

.blogB2 .alm-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.blogB2 .blogItem {
  width: calc(33.333% - 10.6666666667px);
}

.blogB2 .alm-btn-wrap .alm-load-more-btn {
  padding: 0 !important;
  color: #000 !important;
  background: transparent !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 140% !important;
  -webkit-text-decoration-line: underline !important;
          text-decoration-line: underline !important;
  -webkit-text-decoration-style: solid !important;
          text-decoration-style: solid !important;
  -webkit-text-decoration-skip-ink: none !important;
          text-decoration-skip-ink: none !important;
  text-decoration-thickness: auto !important;
  text-underline-offset: auto !important;
  text-underline-position: from-font !important;
  box-shadow: none !important;
}

.blogB2 .alm-btn-wrap .alm-load-more-btn:hover {
  color: #B4E100 !important;
}

.blogB2 .alm-btn-wrap .alm-load-more-btn:before {
  display: none !important;
}

.blogB3 {
  padding: 24px 0;
}

.blogB3 .tags {
  display: flex;
  gap: 64px;
  margin-bottom: 24px;
}

.blogB3 .tags .date {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-primary, #99A1A5);
}

.blogB3 .tags .date svg {
  display: block;
  width: 24px;
  height: 24px;
}

.blogB3 .tags .date svg * {
  fill: #99A1A5;
}

.blogB3 img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 0 32px 32px;
}

.blogB4 .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.blogB4__others h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gray-primary, #99A1A5);
  padding: 0 0 8px;
  margin-bottom: 16px;
}

.blogB4__others .alm-listing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.basketB1 .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 32px;
}

.basketB1 .img {
  display: block;
  opacity: 0.5;
  width: 50px;
  height: auto;
}

.basketB1 .img * {
  fill: black;
}

.basketB1 .txt {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.basketB2__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.basketB2 .item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #E6E6E6;
  padding: 12px 0;
  gap: 16px;
}

.basketB2 .item .img {
  width: 100px;
  min-width: 100px;
  height: 100px;
  border-radius: 16px;
  background: #E6E6E6;
  padding: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}

.basketB2 .item .text {
  width: 500px;
  min-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.basketB2 .item .text .ttl {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  text-transform: none;
}

.basketB2 .item .text .details {
  color: var(--gray-primary, #99A1A5);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.basketB2 .item .text .details b {
  color: inherit;
  font-weight: 600;
}

.basketB2 .item .text .scu {
  color: var(--gray-primary, #99A1A5);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.basketB2 .item .itemCount {
  width: 100%;
  min-width: 156px;
  justify-content: center;
}

.basketB2 .item .price {
  width: 100%;
}

.basketB2 .item .price p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  height: 38px;
  white-space: nowrap;
}

.basketB2 .item .delete {
  cursor: pointer;
  height: 38px;
  width: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.basketB2 .item .delete svg {
  display: block;
  width: 24px;
  height: auto;
}

.basketB2 .item .delete svg * {
  transition: 0.4s;
}

.basketB2__total {
  display: flex;
  max-width: 416px;
  padding: 32px 20px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  border-radius: 32px;
  background: var(--white-2, #E6E6E6);
}

.basketB2__total .top_row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.basketB2__total .top_row p {
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
}

.basketB2__total .link {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: 0.2s;
}

.basketB2__total .link:hover {
  color: #B4E100;
}

.orderB1 .container {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.orderB1 .form {
  width: calc(100% - 432px);
  max-width: unset;
  border-radius: 32px;
  background: var(--white-2, #E6E6E6);
  padding: 20px;
  gap: 0;
}

.orderB1 .form h3 {
  margin-top: 32px;
  margin-bottom: 20px;
}

.orderB1 .form h3:first-child {
  margin-top: 0;
}

.orderB1 .form h3:last-child {
  margin-bottom: 0;
}

.orderB1 .form .radio-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}

.orderB1 .form .radio-list.invalid .error-text {
  opacity: 1;
}

.orderB1 .form .radio-list .error-text {
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  color: brown;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
}

.orderB1 .form .radio-list .radio-box {
  width: 100%;
}

.orderB1 .form .radio-list input {
  display: none;
}

.orderB1 .form .radio-list input:checked + label:before {
  border-color: #000;
}

.orderB1 .form .radio-list input:checked + label:after {
  opacity: 1;
}

.orderB1 .form .radio-list label {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  padding-left: 28px;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.orderB1 .form .radio-list label img,
.orderB1 .form .radio-list label svg {
  display: block;
  height: 20px;
  width: auto;
}

.orderB1 .form .radio-list label:hover:before {
  border-color: #B4E100;
}

.orderB1 .form .radio-list label:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  border-radius: 99px;
  transition: 0.2s;
}

.orderB1 .form .radio-list label:after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 99px;
  transition: 0.2s;
  opacity: 0;
}

.orderB1 .form .formContainer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 16px;
  margin-top: 20px;
}

.orderB1 .form .input-box {
  width: calc(50% - 8px);
}

.orderB1 .form .input-box.invalid input {
  border-color: red !important;
}

.orderB1 .form .input-box input {
  color: black;
}

.orderB1 .form .input-box input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.orderB1 .form .input-box input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.orderB1 .form .input-box input:not(:focus) {
  border-color: black;
}

.orderB1 .form .input-box input:focus {
  border-color: #B4E100;
}

.orderB1 .form .input-box svg * {
  fill: black;
}

.orderB1 .form .btn {
  margin-top: 32px;
  width: calc(50% - 8px);
  min-width: -moz-max-content;
  min-width: max-content;
}

.orderB1 .orderBasket {
  width: 416px;
  border-radius: 32px;
  background: var(--white-2, #E6E6E6);
  padding: 20px;
}

.orderB1 .orderBasket .item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid var(--gray-primary, #99A1A5);
  padding: 12px 0;
}

.orderB1 .orderBasket .item .img {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
}

.orderB1 .orderBasket .item .text {
  width: calc(100% - 64px - 16px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.orderB1 .orderBasket .item .text .ttl {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  text-transform: none;
}

.orderB1 .orderBasket .item .text .details {
  color: var(--gray-primary, #70797e);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.orderB1 .orderBasket .item .text .bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.orderB1 .orderBasket .item .text .bot p {
  color: var(--gray-primary, #70797e);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.orderB1 .orderBasket .item .text .bot p.price {
  color: black;
}

.orderB1 .orderBasket .link {
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: 0.2s;
  text-align: right;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
}

.orderB1 .orderBasket .link:hover {
  color: #B4E100;
}

.orderB1 .orderBasket__total {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 12px;
}

.orderB1 .orderBasket__total .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.orderB1 .orderBasket__total .price p,
.orderB1 .orderBasket__total .price span {
  color: var(--pure-black, #000);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  /* 25.2px */
}

.orderResults .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.orderResults .bold {
  color: var(--pure-black, #000);
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}

.orderResults .box {
  border-radius: 32px;
  background: var(--white-2, #E6E6E6);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.orderResults .box .row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.orderResults .box .row p {
  width: 50%;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.orderResults .box .row p:last-child {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
}

.orderResults .soc p {
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 16px;
}

.orderResults .soc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  width: 380px;
}

.orderResults .soc .item {
  border-radius: 20px;
  background: var(--white-2, #E6E6E6);
  width: 40px;
  height: 40px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orderResults .soc .item:hover {
  background: #B4E100;
}

.orderResults .soc .item svg {
  display: block;
  width: 24px;
  height: 24px;
  opacity: 1;
}

.orderResults .soc .item svg * {
  fill: black;
}

.contactsB1 .container {
  display: flex;
  justify-content: space-between;
}

.contactsB1__left {
  width: calc(50% - 10px);
}

.contactsB1__left h2 {
  margin-bottom: 24px;
}

.contactsB1__left .contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 400px;
}

.contactsB1__left .contacts__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contactsB1__left .contacts__item svg {
  display: block;
  width: 24px;
  min-width: 24px;
  height: 24px;
}

.contactsB1__left .contacts__item svg * {
  fill: black;
}

.contactsB1__left .contacts__item ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contactsB1__left .contacts__item li,
.contactsB1__left .contacts__item a {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.contactsB1__left .contacts__item a {
  transition: 0.2s;
}

.contactsB1__left .contacts__item a:hover {
  color: #B4E100;
}

.contactsB1__right {
  width: calc(50% - 10px);
  max-width: 520px;
  border-radius: 32px;
  background: var(--white-2, #E6E6E6);
  padding: 32px;
  position: relative;
}

.contactsB1__right h2 {
  margin-bottom: 8px;
}

.contactsB1__right p {
  line-height: 1.44;
}

.contactsB1__right .form {
  margin-top: 24px;
  max-width: unset;
}

.contactsB1__right .form .input-box.invalid input {
  border-color: red !important;
}

.contactsB1__right .form .input-box input {
  color: black;
}

.contactsB1__right .form .input-box input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.contactsB1__right .form .input-box input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.contactsB1__right .form .input-box input:focus {
  border-color: #B4E100;
}

.contactsB1__right .form .input-box input:not(:focus) {
  border-color: black;
}

.contactsB1__right .form .input-box svg * {
  fill: black;
}

.contactsB1__right .form .answer {
  background: var(--white-2, #E6E6E6);
  border-radius: 32px;
  padding: 32px;
}

.contactsB1__right .form .answer p {
  color: black;
}

.map iframe {
  display: block;
  width: 100%;
  height: 600px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 400px;
}

.form .input-box {
  position: relative;
}

.form .input-box input {
  display: block;
  width: 100%;
  padding: 12px 16px 12px 44px;
  background: transparent;
  border-radius: 99px;
  border: 1px solid white;
  color: var(--pure-white, #FFF);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition: 0.2s;
}

.form .input-box input:focus {
  border-color: #B4E100;
}

.form .input-box input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form .input-box input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form .input-box svg {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.form .input-box svg * {
  fill: white;
}

.form .input-box .error-text {
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  pointer-events: none;
  color: red;
  font-size: 14px;
  opacity: 0;
}

.form .input-box.invalid input {
  border-color: red;
}

.form .input-box.invalid .error-text {
  opacity: 1;
}

.form .btn {
  width: 100%;
}

.form .answer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: black;
  flex-direction: column;
  gap: 24px;
  padding: 20px 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}

.form .answer.open {
  opacity: 1;
  pointer-events: auto;
}

.form .answer p {
  color: white;
  font-size: 16px;
  line-height: 1.44;
}

.form .answer svg {
  width: 40px;
  height: auto;
}

.form .answer svg * {
  fill: #208A3C;
}

.homeB1 {
  overflow: hidden;
}

.homeB1 .js-tilt-item {
  width: 100%;
  margin-bottom: -50px;
  position: relative;
  z-index: 5;
}

.homeB1 .js-tilt-item img {
  display: block;
  width: 100%;
  height: auto;
}

.homeB1 .window {
  display: flex;
  gap: 48px;
  padding: 8px;
  border-radius: 40px;
  background: var(--pure-black, #000);
  position: relative;
  z-index: 4;
}

.homeB1 .window .splide {
  width: 268px;
  min-width: 268px;
  border-radius: 32px;
  border: 8px solid rgba(255, 255, 255, 0.8);
  background: var(--pure-white, #FFF);
  background-image: url("../img/texture_1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 30px 16px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.homeB1 .window .splide__ttl {
  color: var(--black-2, #1A1A1A);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 8px;
}

.homeB1 .window .splide__slide span {
  display: block;
  text-align: center;
  font-size: 64px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -1px;
}

.homeB1 .window .splide__slide p {
  color: var(--black-2, #1A1A1A);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.homeB1 .window .splide__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  transform: none;
  width: 100%;
  left: 0;
  bottom: 20px;
}

.homeB1 .window .splide__pagination__page {
  margin: 0;
  padding: 0;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--pure-white, #FFF);
  transition: 0.2s;
  opacity: 1;
}

.homeB1 .window .splide__pagination__page.is-active {
  transform: none;
  width: 24px;
  background: black;
}

.homeB1 .window .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: center;
  padding: 24px 0;
}

.homeB1 .window .text h1 {
  color: var(--pure-white, #FFF);
  font-size: 40px;
}

.homeB1 .window .text p {
  color: var(--white-1, #FAFAFA);
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}

.homeB2 {
  padding: 120px 0;
}

.homeB2__marquee {
  width: 105%;
  position: relative;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  padding: 8px 0;
  background: #000000;
  transform-origin: calc((100vw - 1280px) / 2) center;
  transform: translate(-50%, 0) rotate(5deg);
}

.homeB2__marquee:nth-child(2) {
  background: #99A1A5;
  z-index: 3;
  transform: translate(-50%, 0) rotate(-8deg);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 24px));
  }
}

@keyframes scrollMob {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 4px));
  }
}

.homeB2__marquee .group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  animation: scroll 30s linear infinite;
}

.homeB2__marquee p {
  color: var(--pure-white, #FFF);
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
}

.homeB2__marquee svg {
  display: block;
}

.homeB2 .container {
  position: relative;
}

.homeB2 .deco {
  position: absolute;
  left: 0;
  top: -240px;
  height: 280px;
  width: auto;
}

.homeB2 .socials {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  right: 0;
  top: -50px;
  transform: translate(0, -50%);
}

.homeB2 .socials .btn {
  width: 100%;
}

.homeB2 .socials .item {
  border-radius: 20px;
  background: var(--white-2, #E6E6E6);
  width: 40px;
  height: 40px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homeB2 .socials .item:hover {
  background: #B4E100;
}

.homeB2 .socials .item:hover svg * {
  fill: black;
}

.homeB2 .socials .item svg {
  display: block;
  width: 24px;
  height: 24px;
}

.homeB2 .socials .item svg * {
  fill: black;
  transition: 0.2s;
}

.homeB3 .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.homeB3__video {
  width: calc(50% - 16px);
  position: relative;
}

.homeB3__video img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.homeB3__video .circle {
  border-radius: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(0deg, #99A1A5 0%, #99A1A5 100%), conic-gradient(from 180deg at 50% 50%, #99A1A5 0deg, #CCC 57.0628166199deg, #3A3D3F 141.412614584deg, #CCC 207.9588317871deg, #99A1A5 274.614880085deg, #3A3D3F 360deg);
  background-blend-mode: lighten;
  opacity: 0.9;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}

.homeB3__video .circle:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.homeB3__text {
  width: calc(50% - 16px);
  align-self: center;
}

.homeB3__text .txt-content {
  margin-top: 12px;
}

.homeB3__text .btn-border {
  margin-top: 20px;
}

.homeB4 .deco {
  position: absolute;
  right: 0;
  top: -120px;
  height: 280px;
  width: auto;
}

.homeB4 h2 {
  color: white;
  margin-bottom: 32px;
}

.homeB4 .container {
  position: relative;
}

.homeB4 .accServices {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.homeB4 .accServices-box {
  border-bottom: 1px solid var(--white-2, #E6E6E6);
}

.homeB4 .accServices-box.open .accServices-ttl svg {
  transform: rotate(45deg);
}

.homeB4 .accServices-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.homeB4 .accServices-ttl h3 {
  color: var(--pure-white, #FFF);
  font-size: 40px;
  transition: 0.2s;
}

.homeB4 .accServices-ttl h3:hover {
  color: #B4E100;
}

.homeB4 .accServices-ttl svg {
  display: block;
  width: 56px;
  min-width: 56px;
  cursor: pointer;
  transition: 0.2s;
}

.homeB4 .accServices-ttl svg * {
  transition: 0.2s;
}

.homeB4 .accServices-ttl svg:hover path {
  fill: #B4E100;
}

.homeB4 .accServices-body {
  display: none;
  padding-bottom: 24px;
}

.homeB4 .accServices-body .descr {
  color: var(--pure-white, #FFF);
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  max-width: 850px;
  margin-bottom: 32px;
}

.homeB4 .accServices-body .list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.homeB4 .accServices-body .list .box {
  background-image: url("../img/texture_3.png");
  background-repeat: repeat;
  border-radius: 32px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  width: calc(33.333% - 10.6666666667px);
}

.homeB4 .accServices-body .list .box.double {
  width: calc((33.333% - 10.6666666667px) * 2 + 16px);
}

.homeB4 .accServices-body .list .box h4 {
  color: white;
}

.homeB4 .accServices-body .list .box p {
  color: var(--pure-white, #FFF);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  width: calc(100% - 64px);
}

.homeB4 .accServices-body .list .box svg {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: block;
}

.homeB5 h2 {
  margin-bottom: 32px;
  padding-right: 350px;
}

.homeB5 .container {
  position: relative;
}

.homeB5 .btn,
.homeB5 .btn-border {
  position: absolute;
  top: 43px;
  right: 0;
  transform: translate(0, -50%);
}

.homeB5 .splide__track {
  width: calc(100% + 16px);
  margin: 0 -8px;
}

.homeB5 .splide__slide {
  padding: 0 8px;
}

.homeB5 .splide .shopItem {
  height: 100%;
}

.homeB6 h2 {
  margin-bottom: 32px;
}

.homeB6__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.homeB6 .box {
  display: flex;
  gap: 16px;
  width: calc(50% - 8px);
}

.homeB6 .box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.homeB6 .box .texture {
  width: calc(50% - 8px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 20px;
  background-image: url("../img/texture_2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 32px;
}

.homeB6 .box .simple {
  width: calc(50% - 8px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 20px;
}

.homeB6 .box .simple p {
  color: #99A1A5;
}

.homeB7 h2 {
  text-align: center;
  margin-bottom: 32px;
}

.homeB7__marquee {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  transform-origin: calc((100vw - 1280px) / 2) center;
  margin-bottom: 20px;
}

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

.homeB7__marquee:nth-child(2) .group {
  animation-direction: reverse;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 24px));
  }
}

.homeB7__marquee .group {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  animation: scroll 30s linear infinite;
}

.homeB7__marquee img {
  width: 200px;
  height: 96px;
  padding: 15px 25px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 32px;
  background: var(--white-2, #E6E6E6);
}

.homeB8 .container {
  display: flex;
  gap: 32px;
}

.homeB8 .left {
  width: calc(58% - 16px);
}

.homeB8 .left h2 {
  color: white;
  margin-bottom: 12px;
}

.homeB8 .left .window {
  border-radius: 32px;
  background: var(--black-2, #1A1A1A);
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 8px;
  max-width: 420px;
  margin-bottom: 24px;
}

.homeB8 .left .window p {
  color: var(--pure-white, #FFF);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.homeB8 .left .window img {
  display: block;
  width: 120px;
  height: auto;
  margin-left: auto;
}

.homeB8 .left .txt-content * {
  color: white;
}

.homeB8 .right {
  width: calc(42% - 16px);
}

.homeB8 .right img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
}

.homeB9 h2 {
  margin-bottom: 32px;
}

.homeB9 .splide__track {
  width: calc(100% + 16px);
  margin: 0 -8px;
}

.homeB9 .splide__slide {
  padding: 0 8px;
}

.homeB9 .splide__slide .img {
  width: 100%;
  position: relative;
  margin-bottom: 16px;
}

.homeB9 .splide__slide .img img {
  display: block;
  width: 100%;
  height: 234px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
}

.homeB9 .splide__slide .img .circle {
  border-radius: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(0deg, #99A1A5 0%, #99A1A5 100%), conic-gradient(from 180deg at 50% 50%, #99A1A5 0deg, #CCC 57.0628166199deg, #3A3D3F 141.412614584deg, #CCC 207.9588317871deg, #99A1A5 274.614880085deg, #3A3D3F 360deg);
  background-blend-mode: lighten;
  opacity: 0.9;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}

.homeB9 .splide__slide .img .circle:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.homeB9 .splide__slide h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  padding: 0 8px;
  margin-bottom: 8px;
}

.homeB9 .splide__slide p {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  padding: 0 8px;
}

.homeB10 h2 {
  margin-bottom: 32px;
  padding-right: 350px;
}

.homeB10 .container {
  position: relative;
}

.homeB10 .splide__track {
  width: calc(100% + 16px);
  margin: 0 -8px;
}

.homeB10 .splide__slide {
  padding: 0 8px;
}

.homeB10 .btn,
.homeB10 .btn-border {
  position: absolute;
  top: 43px;
  right: 0;
  transform: translate(0, -50%);
}

.homeB11 .container {
  border-radius: 40px;
  background: var(--pure-black, #000);
  padding: 8px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.homeB11 .deco {
  position: absolute;
  right: 0;
  bottom: -50px;
  height: 280px;
  width: auto;
}

.homeB11__img {
  width: calc(42% - 16px);
}

.homeB11__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
}

.homeB11__form {
  width: calc(58% - 16px);
  align-self: center;
  padding: 24px 24px 24px 0;
}

.homeB11__form h2 {
  color: white;
  margin-bottom: 16px;
}

.homeB11__form p {
  color: var(--white-2, #E6E6E6);
  max-width: 600px;
}

.homeB11__form .form {
  margin-top: 24px;
}

.homeB11__form .answer {
  border-radius: 40px;
}

.serviceB1 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: calc(100vh - 50px - 80px);
}

.serviceB1 + .aboutB2 {
  padding-top: 0;
}

.serviceB1 .container {
  padding-top: 120px;
  position: relative;
}

.serviceB1 .container > * {
  position: relative;
  z-index: 3;
}

.serviceB1 .container > .js-tilt-item {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
}

.serviceB1 .container > .js-tilt-item img {
  display: block;
  width: 100%;
  opacity: 0.3;
}

.serviceB1 .container > .js-tilt-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.serviceB1 h1 {
  font-size: 96px;
}

.serviceB1 h2 {
  font-size: 40px;
}

.serviceB1 .btn {
  margin-top: 32px;
}

.serviceB2 * {
  color: white;
}

.serviceB2 .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.serviceB2__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.serviceB2__top p {
  color: var(--white-2, #E6E6E6);
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  max-width: 632px;
}

.serviceB2__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.serviceB2__main .left {
  width: calc(50% - 16px);
}

.serviceB2__main .left p {
  font-family: "Sofia Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.serviceB2__main .right {
  width: calc(50% - 16px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 524px;
}

.serviceB2__main .right h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
}

.serviceB2__main .right ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.serviceB2__main .right ul li {
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  padding: 12px 0 12px 20px;
  position: relative;
  border-bottom: 1px solid var(--gray-primary, #99A1A5);
}

.serviceB2__main .right ul li:last-child {
  border-bottom: none;
}

.serviceB2__main .right ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 8px;
  height: 8px;
  background: #B4E100;
  border-radius: 99px;
}

.serviceB3 {
  padding: 0;
}

.serviceB3 a {
  display: block;
  position: relative;
}

.serviceB3 img {
  display: block;
  width: 100%;
  height: auto;
}

.serviceB3 .circle {
  border-radius: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(0deg, #99A1A5 0%, #99A1A5 100%), conic-gradient(from 180deg at 50% 50%, #99A1A5 0deg, #CCC 57.0628166199deg, #3A3D3F 141.412614584deg, #CCC 207.9588317871deg, #99A1A5 274.614880085deg, #3A3D3F 360deg);
  background-blend-mode: lighten;
  opacity: 0.9;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}

.serviceB3 .circle:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.serviceB4 * {
  color: white;
}

.serviceB4 h2 {
  text-align: center;
  margin-bottom: 32px;
}

.serviceB4 .table {
  border-top: 1px solid var(--gray-primary, #99A1A5);
}

.serviceB4 .row {
  display: flex;
  border-bottom: 1px solid var(--gray-primary, #99A1A5);
}

.serviceB4 .row .col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.serviceB4 .row .col:nth-child(1) {
  width: 41%;
  border-right: 1px solid var(--gray-primary, #99A1A5);
  padding: 20px 20px 20px 0;
}

.serviceB4 .row .col:nth-child(2) {
  width: 59%;
  padding: 40px 0 40px 40px;
  justify-content: flex-end;
}

.serviceB4 .row .col:nth-child(2) p {
  width: 100%;
  max-width: 632px;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.serviceB5 .container {
  display: flex;
  justify-content: space-between;
}

.serviceB5 .left {
  width: calc(50% - 8px);
}

.serviceB5 .left h2 {
  margin-bottom: 12px;
}

.serviceB5 .left ul {
  padding-right: 24px;
}

.serviceB5 .left li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-primary, #99A1A5);
}

.serviceB5 .left li span {
  color: var(--lime, #B4E100);
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}

.serviceB5 .left li .text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.serviceB5 .left li h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
}

.serviceB5 .left li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.serviceB5 .right {
  width: calc(50% - 8px);
}

.serviceB5 .right img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
}

.serviceB6 h2 {
  margin-bottom: 32px;
}

.serviceB6__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-primary, #99A1A5);
  border-bottom: 1px solid var(--gray-primary, #99A1A5);
}

.serviceB6__main .txt-content {
  width: calc(50% - 8px);
  padding-right: 24px;
}

.serviceB6__main .video {
  width: calc(50% - 8px);
  position: relative;
}

.serviceB6__main .video img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
}

.serviceB6__main .video .circle {
  border-radius: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(0deg, #99A1A5 0%, #99A1A5 100%), conic-gradient(from 180deg at 50% 50%, #99A1A5 0deg, #CCC 57.0628166199deg, #3A3D3F 141.412614584deg, #CCC 207.9588317871deg, #99A1A5 274.614880085deg, #3A3D3F 360deg);
  background-blend-mode: lighten;
  opacity: 0.9;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}

.serviceB6__main .video .circle:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.serviceB6 .splide {
  margin-top: 40px;
}

.serviceB6 .splide__track {
  width: calc(100% + 16px);
  margin: 0 -8px;
}

.serviceB6 .splide__slide {
  padding: 0 8px;
}

.serviceB6 .splide__slide .img {
  width: 100%;
  position: relative;
  margin-bottom: 16px;
}

.serviceB6 .splide__slide .img img {
  display: block;
  width: 100%;
  height: 234px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
}

.serviceB6 .splide__slide .img .circle {
  border-radius: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(0deg, #99A1A5 0%, #99A1A5 100%), conic-gradient(from 180deg at 50% 50%, #99A1A5 0deg, #CCC 57.0628166199deg, #3A3D3F 141.412614584deg, #CCC 207.9588317871deg, #99A1A5 274.614880085deg, #3A3D3F 360deg);
  background-blend-mode: lighten;
  opacity: 0.9;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}

.serviceB6 .splide__slide .img .circle:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.serviceB6 .splide__slide h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  padding: 0 8px;
  margin-bottom: 8px;
}

.serviceB6 .splide__slide p {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  padding: 0 8px;
}

.shopItem {
  border-radius: 32px;
  background: #E6E6E6;
  padding: 20px;
  display: flex;
  gap: 12px;
}

.shopItem .image img {
  display: block;
  width: 240px;
  height: 270px;
  -o-object-fit: contain;
     object-fit: contain;
}

.shopItem .text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: calc(100% - 240px - 12px);
}

.shopItem .text h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}

.shopItem .text .radio-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shopItem .text .radio-container .label {
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
}

.shopItem .text .radio-container .list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.shopItem .text .radio-container .list input {
  display: none;
}

.shopItem .text .radio-container .list input:checked + label {
  background: #B4E100;
  border-color: #B4E100;
}

.shopItem .text .radio-container .list input.disabled_diameters + label,
.shopItem .text .radio-container .list input.disabled_lengths + label,
.shopItem .text .radio-container .list input.disabled_modes + label,
.shopItem .text .radio-container .list input.disabled_threads + label {
  opacity: 0.4;
}

.shopItem .text .radio-container .list label {
  background: white;
  border: 1px solid white;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  padding: 3px 11px 1px 11px;
  border-radius: 99px;
  cursor: pointer;
  transition: 0.2s;
}

.shopItem .text .radio-container .list label:hover {
  border-color: #B4E100;
}

.shopItem .text .bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shopItem .text .price {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
}

.shopItem .text .addToCart {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: var(--pure-black, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  cursor: pointer;
  position: relative;
}

.shopItem .text .addToCart svg {
  display: block;
  width: 24px;
  height: auto;
}

.shopItem .text .addToCart svg * {
  fill: white;
  transition: 0.2s;
}

.shopItem .text .addToCart:not(.disabled):hover {
  background: #B4E100;
}

.shopItem .text .addToCart:not(.disabled):hover svg * {
  fill: black;
}

.shopItem .text .addToCart .error {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: calc(100% + 8px);
  background: white;
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 12px;
  width: 228px;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}

.shopItem .text .addToCart.disabled {
  background: rgba(0, 0, 0, 0.4);
}

.shopItem .text .addToCart.disabled:hover .error {
  opacity: 1;
}

.itemCount {
  display: flex;
  gap: 8px;
}

.itemCount__btn {
  width: 38px;
  height: 38px;
  border-radius: 99px;
  border: 1px solid var(--gray-primary, #99A1A5);
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

.itemCount__btn svg {
  display: block;
  width: 20px;
  height: auto;
}

.itemCount__btn svg * {
  fill: black;
}

.itemCount__input {
  width: 64px;
  height: 38px;
  border: none;
  background: transparent;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}

.shopB1 .container {
  display: flex;
  justify-content: space-between;
}

.shopB1 .mobTitle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.shopB1 .mobTitle h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  font-family: "Montserrat", sans-serif;
  text-transform: none;
}

.shopB1 .mobTitle p {
  color: var(--gray-primary, #99A1A5);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.shopB1__images {
  width: calc(46% - 20px);
  max-width: 520px;
}

.shopB1__images .sliders {
  width: 100%;
  position: sticky;
  top: 100px;
}

.shopB1__images img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.2s;
}

.shopB1__splideMain {
  margin-bottom: 20px;
}

.shopB1__splideMain .splide__slide {
  height: 520px !important;
  border-radius: 32px;
  background: var(--white-2, #E6E6E6);
  padding: 24px;
}

.shopB1__splideNav {
  width: calc(100% + 16px);
  margin: 0 -8px;
}

.shopB1__splideNav .splide__slide {
  height: 100px !important;
  padding: 0 8px;
  border: none !important;
}

.shopB1__splideNav .splide__slide img {
  border-radius: 16px;
  background: var(--white-2, #E6E6E6);
  padding: 12px;
}

.shopB1__splideNav .splide__slide.is-active img {
  opacity: 0.5;
}

.shopB1__text {
  width: calc(54% - 20px);
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shopB1__text .top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shopB1__text .top h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  font-family: "Montserrat", sans-serif;
  text-transform: none;
}

.shopB1__text .top p {
  color: var(--gray-primary, #99A1A5);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.shopB1__text .price-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shopB1__text .price-box .price {
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
}

.shopB1__text .price-box .btn {
  width: 100%;
}

.shopB1__text .price-box .btn svg {
  width: 24px;
  height: auto;
  margin-top: -2px;
}

.shopB1__text .price-box .link {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  transition: 0.2s;
}

.shopB1__text .price-box .link:hover {
  color: #B4E100;
}

.shopB1__text .radio-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shopB1__text .radio-container .label {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
}

.shopB1__text .radio-container .list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shopB1__text .radio-container .list input {
  display: none;
}

.shopB1__text .radio-container .list input:checked + label {
  background: #B4E100;
  border-color: #B4E100;
}

.shopB1__text .radio-container .list input.disabled_diameters + label,
.shopB1__text .radio-container .list input.disabled_lengths + label,
.shopB1__text .radio-container .list input.disabled_modes + label,
.shopB1__text .radio-container .list input.disabled_threads + label {
  opacity: 0.4;
}

.shopB1__text .radio-container .list label {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  padding: 6px 16px 4px 16px;
  border-radius: 99px;
  cursor: pointer;
  transition: 0.2s;
  border: 1px solid #99A1A5;
}

.shopB1__text .radio-container .list label:hover {
  border-color: #B4E100;
}

.shopB1__text .sub-buttons {
  display: flex;
  padding-top: 12px;
}

.shopB1__text .sub-buttons > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  border-right: 1px solid var(--gray-primary, #99A1A5);
}

.shopB1__text .sub-buttons > a:last-child {
  border-right: none;
}

.shopB1__text .sub-buttons > a svg {
  width: 32px;
  height: auto;
}

.shopB1__text .sub-buttons > a svg * {
  transition: 0.2s;
  fill: #99A1A5;
}

.shopB1__text .sub-buttons > a p {
  color: var(--gray-primary, #99A1A5);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-align: center;
  transition: 0.2s;
}

.shopB1__text .sub-buttons > a:hover svg * {
  fill: #B4E100;
}

.shopB1__text .sub-buttons > a:hover p {
  color: #B4E100;
}

.shopB1__text .acc {
  border-top: 1px solid var(--gray-primary, #99A1A5);
}

.shopB1__text .acc-box {
  border-bottom: 1px solid var(--gray-primary, #99A1A5);
}

.shopB1__text .acc-box.open .acc-ttl svg {
  transform: rotate(180deg);
}

.shopB1__text .acc-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  cursor: pointer;
  padding: 20px 0;
}

.shopB1__text .acc-ttl svg {
  display: block;
  width: 24px;
  min-width: 24px;
  height: auto;
  transition: 0.2s;
}

.shopB1__text .acc-ttl svg * {
  transition: 0.2s;
}

.shopB1__text .acc-ttl:hover svg * {
  stroke: #B4E100;
}

.shopB1__text .acc-body {
  padding-bottom: 20px;
}

.shopB1__text .acc-body .table .row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.shopB1__text .acc-body .table .row:nth-child(2n-1) {
  background: var(--white-2, #E6E6E6);
}

.shopB1__text .acc-body .table .row p {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  width: 50%;
}

.shopB1__text .acc-body .table .row p:last-child {
  text-align: right;
}

.shopB2 {
  transition: 0.2s;
}

.shopB2.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.shopB2 .container {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.shopB2 .sidebar {
  width: 308px;
}

.shopB2 .sidebar .filter-btn {
  width: 100%;
}

.shopB2 .sidebar .acc {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: -16px;
}

.shopB2 .sidebar .acc-box {
  border-bottom: 1px solid var(--white-2, #E6E6E6);
}

.shopB2 .sidebar .acc-box.open .acc-ttl svg {
  transform: rotate(180deg);
}

.shopB2 .sidebar .acc-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
}

.shopB2 .sidebar .acc-ttl p {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  cursor: pointer;
}

.shopB2 .sidebar .acc-ttl svg {
  display: block;
  width: 24px;
  min-width: 24px;
  height: auto;
  transition: 0.2s;
}

.shopB2 .sidebar .acc-body {
  padding-bottom: 16px;
  overflow: auto;
  max-height: 210px;
}

.shopB2 .sidebar .acc-body::-webkit-scrollbar {
  width: 5px;
  border-radius: 9px;
}

.shopB2 .sidebar .acc-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 9px;
}

.shopB2 .sidebar .acc-body::-webkit-scrollbar-thumb {
  background: #99A1A5;
  border-radius: 9px;
}

.shopB2 .sidebar .acc-body::-webkit-scrollbar-thumb:hover {
  background: #B4E100;
}

.shopB2 .sidebar .acc .check-box {
  margin-bottom: 16px;
}

.shopB2 .sidebar .acc .check-box:last-child {
  margin-bottom: 0;
}

.shopB2 .sidebar .acc .check-box input {
  display: none;
}

.shopB2 .sidebar .acc .check-box input:checked + label:after {
  opacity: 1;
}

.shopB2 .sidebar .acc .check-box label {
  display: block;
  color: var(--black-2, #1A1A1A);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  padding-left: 32px;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}

.shopB2 .sidebar .acc .check-box label:hover {
  color: #B4E100;
}

.shopB2 .sidebar .acc .check-box label:hover:before {
  border-color: #B4E100;
}

.shopB2 .sidebar .acc .check-box label:hover:after {
  background: #B4E100;
}

.shopB2 .sidebar .acc .check-box label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 1px solid #3A3D3F;
  box-sizing: border-box;
  transition: 0.2s;
}

.shopB2 .sidebar .acc .check-box label:after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #5d6265;
  box-sizing: border-box;
  opacity: 0;
  transition: 0.2s;
}

.shopB2 .mainShop {
  width: calc(100% - 308px - 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shopB2 .mainShop .filterTags {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.shopB2 .mainShop .filterTags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.shopB2 .mainShop .filterTags__list .box {
  border-radius: 32px;
  background: var(--white-2, #E6E6E6);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.shopB2 .mainShop .filterTags__list .box p {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  white-space: nowrap;
}

.shopB2 .mainShop .filterTags__list .box p span {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  white-space: nowrap;
}

.shopB2 .mainShop .filterTags__list .box .del {
  cursor: pointer;
}

.shopB2 .mainShop .filterTags__list .box .del:hover svg * {
  fill: red;
}

.shopB2 .mainShop .filterTags__list .box svg {
  display: block;
  width: 20px;
  min-width: 20px;
  height: auto;
}

.shopB2 .mainShop .filterTags__list .box svg * {
  transition: 0.2s;
}

.shopB2 .mainShop .filterTags .clearFilters {
  color: var(--pure-black, #000);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: 0.2s;
  cursor: pointer;
  padding: 8px 0;
  white-space: nowrap;
}

.shopB2 .mainShop .filterTags .clearFilters:hover {
  color: red;
}

.shopB2 .mainShop .secondRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shopB2 .mainShop .secondRow .prod_num {
  color: var(--gray-primary, #99A1A5);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.shopB2 .mainShop .secondRow .sort {
  display: flex;
  align-items: center;
  position: relative;
}

.shopB2 .mainShop .secondRow .sort p {
  color: var(--gray-primary, #99A1A5);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.shopB2 .mainShop .secondRow .sort select {
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  cursor: pointer;
  padding-right: 24px;
  padding-left: 4px;
  background: transparent;
}

.shopB2 .mainShop .secondRow .sort svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.shopB2 .mainShop .alm-listing {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.shopB2 .mainShop .pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}

.shopB2 .mainShop .pagination .alm-load-more-btn {
  color: var(--pure-black, #000);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: 0.2s;
  cursor: pointer;
  background: transparent;
}

.shopB2 .mainShop .pagination .alm-load-more-btn:hover {
  color: #B4E100;
}

.shopB2 .mainShop .pagination .alm-load-more-btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.shopB2 .mainShop .pagination .pages-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shopB2 .mainShop .pagination .pages-list a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  transition: 0.2s;
}

.shopB2 .mainShop .pagination .pages-list a svg {
  display: block;
  width: 26px;
  height: auto;
}

.shopB2 .mainShop .pagination .pages-list a svg * {
  transition: 0.2s;
}

.shopB2 .mainShop .pagination .pages-list a.arrow {
  width: 35px;
}

.shopB2 .mainShop .pagination .pages-list a.current {
  pointer-events: none;
  border-radius: 8px;
  border: 1px solid #E6E6E6;
  background: #E6E6E6;
}

.shopB2 .mainShop .pagination .pages-list a.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.shopB2 .mainShop .pagination .pages-list a:hover {
  color: #B4E100;
}

.shopB2 .mainShop .pagination .pages-list a:hover svg * {
  stroke: #B4E100;
}

.search .shopList {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.search .shopItem {
  width: calc(50% - 8px);
}

.faq h2 {
  margin-bottom: 32px;
}

.faq .acc-box {
  border-bottom: 1px solid var(--gray-primary, #99A1A5);
}

.faq .acc-ttl {
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  gap: 12px;
}

.faq .acc-ttl:hover h3 {
  color: #B4E100;
}

.faq .acc-ttl:hover svg path {
  fill: #B4E100;
}

.faq .acc-ttl h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  transition: 0.2s;
  max-width: 650px;
  text-transform: none;
}

.faq .acc-ttl svg {
  display: block;
  min-width: 56px;
  height: auto;
  transition: 0.2s;
}

.faq .acc-ttl svg * {
  transition: 0.2s;
}

.faq .acc-body {
  display: none;
  padding-bottom: 20px;
}

.faq .acc-body .txt-content {
  max-width: 850px;
}

@media screen and (min-width: 1025px) {
  .header__mob__btn {
    display: none;
  }

  .basketB2 .item .delete:hover svg * {
    stroke: red;
  }

  .contactsB1 h2 {
    font-size: 40px;
  }

  .homeB11__form h2 {
    font-size: 56px;
  }

  .shopItem .text > :nth-last-child(2) {
    margin-bottom: 8px;
  }

  .itemCount__btn:hover {
    background: #B4E100;
    border-color: #B4E100;
  }

  .shopB1 .mobTitle {
    display: none;
  }

  .shopB2 .sidebar .filter-btn {
    display: none;
  }
}

@media screen and (min-width: 1201px) {
  .homeB6 .box:nth-child(4n),
  .homeB6 .box:nth-child(4n-1) {
    flex-direction: row-reverse;
  }

  .homeB6 .box:nth-child(4n) svg,
  .homeB6 .box:nth-child(4n-1) svg {
    transform: scale(-1, 1);
    margin-left: auto;
  }
}

@media screen and (max-width: 1440px) {
  .blogItem img {
    height: calc((90vw - 54px - 32px) / 3 / 16 * 9);
  }

  .homeB9 .splide__slide .img img {
    height: calc((90vw - 54px - 32px) / 3 / 16 * 9);
  }
}

@media screen and (max-width: 1260px) {
  .search .shopItem {
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  main {
    padding-top: 73px;
  }

  .footer__main .menu {
    display: none;
  }

  .header__logo img {
    height: 36px;
  }

  .header__menu ul {
    gap: 0;
  }

  .header__icons {
    gap: 12px;
  }

  .orderB1 .form .input-box {
    width: 100%;
  }

  .homeB6 .box {
    width: 100%;
  }

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

  .homeB6 .box:nth-child(2n) svg {
    transform: scale(-1, 1);
    margin-left: auto;
  }
}

@media screen and (max-width: 1100px) {
  .basketB2 .item .text {
    width: 300%;
    min-width: unset;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    max-width: 500px;
  }

  h1 {
    font-size: 32px;
  }

  h1 b,
  h1 strong {
    text-underline-offset: 2px !important;
  }

  h2 {
    font-size: 28px;
  }

  h2 b,
  h2 strong {
    text-underline-offset: 2px !important;
  }

  h3,
  h4,
  h5,
  h6 {
    font-size: 24px;
  }

  .txt-content img,
  .txt-content video,
  .txt-content iframe {
    border-radius: 20px;
  }

  .btn {
    font-size: 14px;
    padding: 12px 24px 10px;
  }

  .btn svg {
    width: 20px;
    height: auto;
  }

  .btn-border {
    font-size: 14px;
    padding: 12px 24px 10px;
  }

  .btn-border svg {
    width: 20px;
    height: auto;
  }

  main {
    padding-top: 57px;
  }

  main section {
    padding: 32px 0;
  }

  main section.blackSection {
    margin: 32px 0;
  }

  main section.blackSection + .blackSection {
    margin-top: -32px;
  }

  main section.greySection {
    margin: 32px 0;
  }

  main section:last-child {
    padding-bottom: 64px;
  }

  .pageTitle .container {
    padding: 24px 0 8px;
  }

  .breadcrumbs {
    display: none;
  }

  .footer {
    padding: 32px 0;
  }

  .footer .logo {
    height: 36px;
  }

  .footer__main {
    flex-direction: column;
    padding: 32px 0;
    gap: 32px;
  }

  .footer__main .contacts {
    width: 100%;
    gap: 20px;
  }

  .footer__main .socials {
    width: 100%;
    gap: 20px 24px;
  }

  .footer__main .socials .item svg {
    width: 20px;
    height: auto;
  }

  .header .container {
    padding: 12px 0;
  }

  .header__logo img {
    height: 28px;
  }

  .header__menu {
    display: none;
  }

  .header__lang {
    display: none;
  }

  .header__icon {
    width: 32px;
    height: 32px;
  }

  .header__icon svg {
    width: 20px;
  }

  .header__icon.search {
    display: none;
  }

  .header__btn {
    display: none;
  }

  .header__mob__btn {
    margin-left: 12px;
  }

  .header__mob__container .container {
    padding: 80px 0 60px 0;
  }

  .popup .popup-container {
    max-width: 500px;
    border-radius: 20px;
  }

  .popup[data-popup=search] .popup-container {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 32px 24px;
    gap: 20px 16px;
  }

  .popup[data-popup=search] h2 {
    order: -2;
  }

  .popup[data-popup=search] form {
    gap: 12px;
  }

  .popup[data-popup=search] form input {
    font-size: 16px;
    padding: 12px 20px;
  }

  .popup[data-popup=search] form button {
    width: 45px;
    min-width: 45px;
    height: 45px;
  }

  .popup[data-popup=search] form button svg {
    width: 20px;
  }

  .popup[data-popup=search] .exit-btn {
    order: -1;
  }

  .popup[data-popup=form] h2 {
    padding-right: 32px;
  }

  .popup[data-popup=form] .popup-container {
    padding: 24px 20px;
  }

  .addedItemToCart .box {
    padding: 8px;
  }

  .addedItemToCart .box h3 {
    font-size: 16px;
  }

  .addedItemToCart .box p {
    font-size: 14px;
  }

  .aboutB1 {
    min-height: unset;
    padding: 64px 0 80px;
  }

  .aboutB1 h1 {
    font-size: 28px;
    margin-top: 20px;
  }

  .aboutB2__marquee {
    padding: 6px 0;
    gap: 4px;
  }

  .aboutB2__marquee .group {
    gap: 4px;
    animation: scrollMob 30s linear infinite;
  }

  .aboutB2__marquee p {
    font-size: 12px;
  }

  .aboutB2__marquee svg {
    width: 16px;
    height: auto;
    transform: translate(0, -1px);
  }

  .aboutB3 .container {
    flex-direction: column;
  }

  .aboutB3__left {
    width: 100%;
  }

  .aboutB3__left h2 {
    margin-bottom: 16px;
  }

  .aboutB3__right {
    width: 100%;
    margin-top: 20px;
  }

  .aboutB3__right img {
    border-radius: 20px;
  }

  .aboutB4 h2 {
    width: calc(100% - 100px);
  }

  .aboutB4 .deco.deco1 {
    height: auto;
    width: 100px;
  }

  .aboutB4 .deco.deco2 {
    height: 140px;
    bottom: -100px;
    left: unset;
    right: 0;
  }

  .aboutB4 .list {
    gap: 8px;
  }

  .aboutB4 .list > * {
    width: calc(50% - 4px);
  }

  .aboutB4 .list > *:not(.box) {
    display: none;
  }

  .aboutB4 .list .box {
    border-radius: 20px;
    min-height: 132px;
    padding: 12px;
    gap: 4px;
  }

  .aboutB4 .list .box span {
    font-size: 36px;
  }

  .aboutB4 .list .box p {
    font-size: 14px;
  }

  .aboutB5 {
    padding-bottom: 64px;
  }

  .aboutB5 h2 {
    margin-bottom: 20px;
  }

  .aboutB5 .splide .teamItem {
    height: 625px;
  }

  .aboutB5 .splide .teamItem .smallPart {
    display: none;
  }

  .aboutB5 .splide .teamItem .hiddenPart {
    opacity: 1;
  }

  .aboutB6 {
    padding-bottom: 92px;
  }

  .aboutB6 h2 {
    margin-bottom: 20px;
  }

  .aboutB6 .splide .item {
    border-radius: 20px;
    padding: 16px;
  }

  .blogItem {
    border-radius: 20px;
  }

  .blogItem img {
    height: 270px;
    border-radius: 12px;
  }

  .blogItem h2,
  .blogItem h3,
  .blogItem h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .blogItem .bottom .date {
    font-size: 14px;
  }

  .blogItem .bottom .link {
    font-size: 14px;
  }

  .blogB1 .container {
    padding: 24px 0 0;
    border: none;
  }

  .blogB1 .item {
    flex-direction: column;
    background: white;
    border-radius: 20px;
    padding: 8px 16px 16px;
    border: 2px solid transparent;
    transition: 0.2s;
    gap: 16px;
  }

  .blogB1 .item:hover {
    border-color: #99A1A5;
  }

  .blogB1 .item .image {
    width: calc(100% + 16px);
    margin: 0 -8px;
  }

  .blogB1 .item .image img {
    border-radius: 12px;
    height: 270px;
  }

  .blogB1 .item .text {
    width: 100%;
  }

  .blogB1 .item .text h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 20px;
  }

  .blogB1 .item .text .description {
    display: none;
  }

  .blogB1 .item .text .bottom {
    margin-top: 0;
  }

  .blogB1 .item .text .tags .date {
    font-size: 14px;
  }

  .blogB1 .item .text .tags .date:last-child {
    display: none;
  }

  .blogB1 .item .text .tags .date svg {
    display: none;
  }

  .blogB1 .item .text .link {
    font-size: 14px;
  }

  .blogB2 {
    padding-top: 16px;
  }

  .blogB2 .blogItem {
    width: 100%;
  }

  .blogB3 {
    padding: 16px 0 0;
  }

  .blogB3 .tags {
    gap: 32px;
    margin-bottom: 16px;
  }

  .blogB3 .tags .date {
    font-size: 14px;
    gap: 4px;
  }

  .blogB3 .tags .date svg {
    width: 20px;
    height: auto;
  }

  .blogB3 img {
    border-radius: 20px;
  }

  .blogB4 {
    padding-top: 20px;
  }

  .blogB4 .container {
    flex-direction: column;
  }

  .blogB4__others h2 {
    font-size: 28px;
    padding: 0;
    border: none;
    margin-bottom: 8px;
  }

  .basketB1 .container {
    gap: 20px;
  }

  .basketB1 .img {
    width: 32px;
  }

  .basketB1 .txt {
    gap: 4px;
  }

  .basketB1 .txt p {
    font-size: 14px;
  }

  .basketB2 .item {
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px 12px;
  }

  .basketB2 .item .img {
    width: 60px;
    height: 60px;
    min-width: 60px;
    padding: 8px;
    border-radius: 8px;
    align-self: flex-start;
  }

  .basketB2 .item .text {
    width: calc(100% - 60px - 12px);
    gap: 4px;
    align-self: flex-start;
  }

  .basketB2 .item .text .ttl {
    font-size: 16px;
  }

  .basketB2 .item .text .details {
    font-size: 12px;
  }

  .basketB2 .item .text .scu {
    font-size: 12px;
  }

  .basketB2 .item .itemCount {
    order: 3;
    width: -moz-max-content;
    width: max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }

  .basketB2 .item .price {
    order: 2;
    width: 80px;
  }

  .basketB2 .item .price p {
    font-size: 16px;
    display: block;
    height: -moz-max-content;
    height: max-content;
  }

  .basketB2 .item .delete {
    order: 3;
    width: 32px;
    height: 32px;
    min-width: 32px;
    margin-left: auto;
  }

  .basketB2 .item .delete:active svg * {
    stroke: red;
  }

  .basketB2 .item .delete svg {
    width: 20px;
  }

  .basketB2__total {
    border-radius: 20px;
    padding: 20px 16px;
  }

  .basketB2__total .top_row p {
    font-size: 16px;
  }

  .basketB2__total .btn {
    width: 100%;
  }

  .basketB2__total .link {
    font-size: 14px;
  }

  .orderB1 .container {
    flex-direction: column-reverse;
  }

  .orderB1 .form {
    width: 100%;
    padding: 16px;
    border-radius: 20px;
  }

  .orderB1 .form h3 {
    margin-bottom: 8px;
    margin-top: 24px;
  }

  .orderB1 .form .radio-list {
    padding-top: 0;
    gap: 8px;
  }

  .orderB1 .form .formContainer {
    gap: 24px;
    margin-top: 12px;
  }

  .orderB1 .form .btn {
    width: 100%;
  }

  .orderB1 .orderBasket {
    width: 100%;
    border-radius: 20px;
    padding: 16px;
  }

  .orderB1 .orderBasket .item {
    padding: 8px 0;
    gap: 8px;
  }

  .orderB1 .orderBasket .item .img {
    width: 60px;
    height: 60px;
  }

  .orderB1 .orderBasket .item .text {
    width: calc(100% - 60px - 8px);
    gap: 4px;
  }

  .orderB1 .orderBasket .item .text .details {
    font-size: 12px;
  }

  .orderB1 .orderBasket .item .text .bot {
    margin-top: 4px;
  }

  .orderB1 .orderBasket .item .text .bot p {
    font-size: 12px;
  }

  .orderB1 .orderBasket .item .text .bot p.price {
    font-size: 14px;
  }

  .orderB1 .orderBasket__total .price p,
  .orderB1 .orderBasket__total .price span {
    font-size: 16px;
  }

  .orderResults .bold {
    font-size: 16px;
  }

  .orderResults .box {
    border-radius: 20px;
    padding: 16px;
    gap: 12px;
  }

  .orderResults .box .row {
    gap: 12px;
  }

  .orderResults .box .row p {
    font-size: 14px;
  }

  .orderResults .box .row p:last-child {
    font-size: 14px;
  }

  .orderResults .soc p {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .orderResults .soc-list {
    gap: 16px;
    width: -moz-max-content;
    width: max-content;
  }

  .orderResults .soc .item svg {
    width: 20px;
    height: auto;
  }

  .contactsB1 .container {
    flex-direction: column;
    gap: 32px;
  }

  .contactsB1__left {
    width: 100%;
  }

  .contactsB1__left .contacts {
    width: 100%;
    gap: 20px;
  }

  .contactsB1__left .contacts__item {
    gap: 8px;
  }

  .contactsB1__left .contacts__item svg {
    width: 20px;
    height: auto;
    min-width: 20px;
  }

  .contactsB1__right {
    width: 100%;
    border-radius: 20px;
    padding: 24px 20px;
  }

  .contactsB1__right .form {
    margin-top: 20px;
  }

  .map iframe {
    height: 400px;
  }

  .form .input-box .error-text {
    font-size: 12px;
  }

  .homeB1 .js-tilt-item {
    width: 90%;
    margin: 0 auto -20px;
  }

  .homeB1 .window {
    flex-direction: column-reverse;
    border-radius: 20px;
    gap: 8px;
  }

  .homeB1 .window .splide {
    width: 100%;
    min-width: unset;
    border-radius: 12px;
    padding: 20px 16px 40px;
  }

  .homeB1 .window .splide__slide span {
    font-size: 40px;
  }

  .homeB1 .window .splide__slide p {
    font-size: 14px;
  }

  .homeB1 .window .splide__pagination {
    bottom: 12px;
  }

  .homeB1 .window .text {
    padding: 20px;
  }

  .homeB1 .window .text h1 {
    font-size: 28px;
  }

  .homeB1 .window .text p {
    font-size: 16px;
  }

  .homeB1 .window .text .btn {
    width: 100%;
  }

  .homeB2 {
    padding: 64px 0;
  }

  .homeB2__marquee {
    padding: 6px 0;
    transform-origin: -15% center;
  }

  .homeB2__marquee .group {
    gap: 4px;
    animation: scrollMob 20s linear infinite;
  }

  .homeB2__marquee p {
    font-size: 12px;
  }

  .homeB2__marquee svg {
    width: 16px;
    height: auto;
  }

  .homeB2 .deco {
    width: auto;
    height: 140px;
    top: -180px;
  }

  .homeB3 .container {
    flex-direction: column;
    gap: 20px;
  }

  .homeB3__video {
    width: 100%;
  }

  .homeB3__video img {
    border-radius: 20px;
  }

  .homeB3__video .circle {
    width: 60px;
    height: 60px;
  }

  .homeB3__video .circle svg {
    display: block;
    width: 24px;
    height: auto;
  }

  .homeB3__text {
    width: 100%;
  }

  .homeB3__text .btn-border {
    width: 100%;
  }

  .homeB4 .deco {
    height: 140px;
    top: -30px;
    right: 0px;
  }

  .homeB4 h2 {
    margin-bottom: 20px;
  }

  .homeB4 .accServices {
    gap: 0;
  }

  .homeB4 .accServices-ttl {
    padding: 16px 0;
  }

  .homeB4 .accServices-ttl h3 {
    font-size: 20px;
  }

  .homeB4 .accServices-ttl svg {
    width: 32px;
    min-width: 32px;
    height: auto;
  }

  .homeB4 .accServices-body {
    padding-bottom: 16px;
  }

  .homeB4 .accServices-body .descr {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .homeB4 .accServices-body .list {
    gap: 12px;
  }

  .homeB4 .accServices-body .list .box {
    width: 100%;
    border-radius: 20px;
    padding: 16px;
    gap: 16px;
  }

  .homeB4 .accServices-body .list .box.double {
    width: 100%;
  }

  .homeB4 .accServices-body .list .box h4 {
    font-size: 18px;
  }

  .homeB4 .accServices-body .list .box p {
    font-size: 14px;
  }

  .homeB5 {
    padding-bottom: 120px;
  }

  .homeB5 h2 {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .homeB5 .btn,
  .homeB5 .btn-border {
    top: calc(100% + 72px);
    right: 50%;
    transform: translate(50%, 0);
  }

  .homeB6 h2 {
    margin-bottom: 20px;
  }

  .homeB6__list {
    gap: 20px;
  }

  .homeB6 .box {
    gap: 8px;
    flex-direction: column !important;
  }

  .homeB6 .box .texture {
    width: 100%;
    padding: 16px 12px;
    border-radius: 20px;
    gap: 8px;
  }

  .homeB6 .box .simple {
    width: 100%;
    gap: 4px;
  }

  .homeB6 .box .simple svg {
    display: block;
    width: 32px;
    height: auto;
  }

  .homeB7 h2 {
    margin-bottom: 20px;
  }

  .homeB7__marquee img {
    border-radius: 12px;
    width: 100px;
    height: 50px;
    padding: 6px 12px;
  }

  .homeB8 .container {
    flex-direction: column;
    gap: 20px;
  }

  .homeB8 .left {
    width: 100%;
  }

  .homeB8 .left h2 {
    margin-bottom: 20px;
  }

  .homeB8 .left .window {
    border-radius: 20px;
    padding: 16px;
  }

  .homeB8 .right {
    width: 100%;
  }

  .homeB8 .right img {
    border-radius: 20px;
  }

  .homeB9 {
    padding-bottom: 64px;
  }

  .homeB9 h2 {
    margin-bottom: 20px;
  }

  .homeB9 .splide__slide .img img {
    height: 270px;
    border-radius: 20px;
  }

  .homeB10 {
    padding-bottom: 150px;
  }

  .homeB10 h2 {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .homeB10 .btn,
  .homeB10 .btn-border {
    top: calc(100% + 72px);
    right: 50%;
    transform: translate(50%, 0);
  }

  .homeB11 .container {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .homeB11 .deco {
    display: none;
  }

  .homeB11__img {
    display: none;
  }

  .homeB11__form {
    width: 100%;
    padding: 0;
  }

  .homeB11__form p {
    font-size: 14px;
  }

  .serviceB1 {
    min-height: unset;
    padding-bottom: 64px;
  }

  .serviceB1 h1 {
    font-size: 38px;
  }

  .serviceB1 h2 {
    font-size: 20px;
  }

  .serviceB2 .container {
    gap: 24px;
  }

  .serviceB2__top {
    gap: 8px;
  }

  .serviceB2__top p {
    font-size: 16px;
    font-weight: 400;
  }

  .serviceB2__main {
    flex-direction: column;
    gap: 24px;
  }

  .serviceB2__main .left {
    width: 100%;
  }

  .serviceB2__main .left p {
    font-size: 18px;
  }

  .serviceB2__main .right {
    width: 100%;
  }

  .serviceB2__main .right h3 {
    font-size: 18px;
    font-family: "Sofia Sans", sans-serif;
    letter-spacing: -1px;
    text-transform: uppercase;
  }

  .serviceB2__main .right ul {
    gap: 0;
  }

  .serviceB2__main .right ul li {
    font-size: 16px;
  }

  .serviceB3 .circle {
    width: 60px;
    height: 60px;
  }

  .serviceB3 .circle svg {
    width: 24px;
  }

  .serviceB4 h2 {
    margin-bottom: 20px;
    text-align: left;
  }

  .serviceB4 .table {
    border: 1px solid var(--gray-primary, #99A1A5);
  }

  .serviceB4 .row {
    flex-direction: column;
    padding: 16px;
    gap: 8px;
  }

  .serviceB4 .row:last-child {
    border-bottom: none;
  }

  .serviceB4 .row .col:nth-child(1) {
    width: 100%;
    border: none;
    padding: 0;
  }

  .serviceB4 .row .col:nth-child(1) h3 {
    font-size: 18px;
  }

  .serviceB4 .row .col:nth-child(2) {
    width: 100%;
    padding: 0;
  }

  .serviceB5 .container {
    flex-direction: column;
  }

  .serviceB5 .left {
    width: 100%;
  }

  .serviceB5 .left h2 {
    margin-bottom: 4px;
  }

  .serviceB5 .left ul {
    padding: 0;
  }

  .serviceB5 .left li {
    gap: 20px;
    padding: 16px 0;
  }

  .serviceB5 .left li span {
    font-size: 18px;
  }

  .serviceB5 .left li .text {
    gap: 8px;
  }

  .serviceB5 .left li h3 {
    font-size: 18px;
  }

  .serviceB5 .right {
    width: 100%;
    margin-top: 20px;
  }

  .serviceB5 .right img {
    border-radius: 20px;
  }

  .serviceB6 {
    padding-bottom: 92px;
  }

  .serviceB6 h2 {
    margin-bottom: 20px;
  }

  .serviceB6__main {
    flex-direction: column;
    padding: 16px 0;
  }

  .serviceB6__main .txt-content {
    width: 100%;
    padding: 0;
  }

  .serviceB6__main .video {
    width: 100%;
  }

  .serviceB6__main .video img {
    border-radius: 20px;
  }

  .serviceB6__main .video .circle {
    width: 60px;
    height: 60px;
  }

  .serviceB6__main .video .circle svg {
    width: 24px;
    height: auto;
  }

  .serviceB6 .splide {
    margin-top: 16px;
  }

  .serviceB6 .splide__slide .img .circle {
    width: 60px;
    height: 60px;
  }

  .serviceB6 .splide__slide .img .circle svg {
    width: 24px;
    height: auto;
  }

  .shopItem {
    flex-direction: column;
    padding: 16px;
    border-radius: 20px;
    gap: 0;
  }

  .shopItem .image img {
    width: 60px;
    height: 60px;
  }

  .shopItem .text {
    width: 100%;
    margin-top: -60px;
  }

  .shopItem .text h3 {
    min-height: 60px;
    display: flex;
    align-items: center;
    padding-left: 72px;
    font-size: 16px;
    text-transform: none;
    font-family: "Montserrat", sans-serif;
  }

  .shopItem .text .price {
    font-size: 20px;
  }

  .shopItem .text .addToCart {
    width: 40px;
    height: 40px;
  }

  .shopItem .text .addToCart svg {
    width: 20px;
  }

  .itemCount__btn {
    width: 32px;
    height: 32px;
  }

  .itemCount__btn:active {
    background: #B4E100;
    border-color: #B4E100;
  }

  .itemCount__btn svg {
    width: 16px;
  }

  .itemCount__input {
    font-size: 16px;
    height: 32px;
    width: 32px;
  }

  .shopB1 .container {
    flex-direction: column;
  }

  .shopB1__images {
    width: 100%;
  }

  .shopB1__images .sliders {
    position: static;
  }

  .shopB1__splideMain {
    margin-bottom: 8px;
  }

  .shopB1__splideMain .splide__slide {
    height: 500px !important;
    border-radius: 20px;
    padding: 16px;
  }

  .shopB1__splideNav {
    width: calc(100% + 8px);
    margin: 0 -4px;
  }

  .shopB1__splideNav .splide__slide {
    padding: 0 4px;
    height: 119px !important;
  }

  .shopB1__splideNav .splide__slide {
    height: calc((90vw - 24px) / 4) !important;
  }

  .shopB1__splideNav .splide__slide img {
    padding: 8px;
    border-radius: 12px;
  }

  .shopB1__text {
    width: 100%;
    padding-top: 20px;
  }

  .shopB1__text .top {
    display: none;
  }

  .shopB1__text .price-box {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
  }

  .shopB1__text .price-box .price {
    font-size: 28px;
    width: -moz-max-content;
    width: max-content;
  }

  .shopB1__text .price-box .link {
    font-size: 14px;
  }

  .shopB1__text .radio-container .label {
    font-size: 14px;
  }

  .shopB1__text .radio-container .list label {
    font-size: 14px;
    padding: 5px 12px 3px 12px;
  }

  .shopB1__text .sub-buttons > a {
    gap: 8px;
    padding: 0 8px;
    flex-grow: 1;
    width: unset;
  }

  .shopB1__text .sub-buttons > a svg {
    width: 28px;
  }

  .shopB1__text .sub-buttons > a p {
    font-size: 12px;
  }

  .shopB1__text .acc-ttl svg {
    width: 20px;
    min-width: 20px;
  }

  .shopB1__text .acc-body .table .row {
    padding: 8px;
  }

  .shopB1__text .acc-body .table .row p:first-child {
    font-weight: 500;
  }

  .shopB2 .container {
    flex-direction: column;
    gap: 20px;
  }

  .shopB2 .sidebar {
    width: 100%;
  }

  .shopB2 .sidebar .acc {
    display: none;
    padding: 4px 20px 12px;
    margin-top: 12px;
    background: #e6e6e6;
    border-radius: 20px;
    gap: 4px;
  }

  .shopB2 .mainShop {
    width: 100%;
  }

  .shopB2 .mainShop .filterTags {
    gap: 4px;
    flex-direction: column;
  }

  .shopB2 .mainShop .filterTags__list {
    gap: 4px;
  }

  .shopB2 .mainShop .filterTags__list .box {
    padding: 6px 12px 4px;
  }

  .shopB2 .mainShop .filterTags__list .box p {
    font-size: 12px;
  }

  .shopB2 .mainShop .filterTags__list .box p span {
    font-size: 12px;
  }

  .shopB2 .mainShop .filterTags__list .box svg {
    width: 16px;
    min-width: 16px;
  }

  .shopB2 .mainShop .secondRow .prod_num {
    display: none;
  }

  .shopB2 .mainShop .alm-listing {
    gap: 16px;
  }

  .shopB2 .mainShop .pagination {
    flex-direction: column;
    gap: 20px;
  }

  .faq h2 {
    margin-bottom: 8px;
  }

  .faq .acc-ttl {
    padding: 16px 0;
  }

  .faq .acc-ttl h3 {
    font-size: 18px;
  }

  .faq .acc-ttl svg {
    width: 32px;
    min-width: 32px;
  }
}

@media screen and (max-width: 560px) {
  .aboutB5 .splide .teamItem {
    height: 125vw;
  }

  .blogItem img {
    height: calc((90vw - 18px) / 16 * 9);
    margin-bottom: 8px;
  }

  .blogB1 .item .image img {
    height: calc((90vw - 18px) / 16 * 9);
  }

  .homeB9 .splide__slide .img img {
    height: calc((90vw - 18px) / 16 * 9);
  }

  .shopB1__splideMain .splide__slide {
    height: 90vw !important;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .homeB4 .accServices-body .list .box h4 {
    font-size: 28px;
  }
}

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