:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}
.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
} /**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}
.swiper-button-lock {
  display: none;
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube {
  overflow: visible;
}
.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.swiper-flip {
  overflow: visible;
}
.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}
.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}
.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("/assets/video/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
:root {
  --color-white: #fff;
  --color-black: #000;
  --colog-bg: #eeeff0;
  --color-text: #2f3333;
  --color-accent: #3ec936;
  --color-descr: #383d3d;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

h1 {
  font-family: "Extatica", sans-serif;
  font-size: 72px;
  font-size: clamp(32px, -0.057rem + 5.06vw, 72px);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 32px;
}

@media (max-width: 650px) {
  h1 {
    margin-bottom: 20px;
  }
}

h2 {
  font-size: 48px;
  font-size: clamp(32px, 1.177rem + 2.03vw, 48px);
  margin-bottom: 40px;
  font-family: "Extatica", sans-serif;
  font-weight: 600;
  color: var(--color-text);
}

@media (max-width: 650px) {
  h2 {
    margin-bottom: 20px;
  }
}

h3 {
  font-size: 28px;
  font-size: clamp(20px, 0.839rem + 1.01vw, 28px);
  line-height: 110%;
  margin-bottom: 8px;
  font-family: "Extatica", sans-serif;
  font-weight: 600;
  color: var(--color-text);
}

h4 {
  font-size: 24px;
  font-size: clamp(18px, 0.816rem + 0.76vw, 24px);
  line-height: 110%;
  font-family: "Extatica", sans-serif;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-text);
}

img {
  vertical-align: top;
}

.bold {
  font-weight: 700;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "PT", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 18px;
  background-color: var(--colog-bg);
  color: var(--color-text);
}

body._lock {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0);
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.main {
  flex: 1 1 auto;
}

[class*="__container"] {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  padding: 0 clamp(20px, -5rem + 8.33vw, 40px);
}

.grid {
  display: grid;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
}

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.67%;
}

.col-3 {
  width: 24.99%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 46.47%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.67%;
}

.col-12 {
  width: 100%;
}

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

.accent {
  color: var(--color-accent);
}

.modal-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-color: hsla(0, 0%, 0%, 0.3);
  opacity: 0;
  visibility: hidden;
}

.btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  background-color: var(--color-accent);
  border-radius: 4px;
  font-size: 18px;
  font-family: "Extatica", sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.btn-reset {
  cursor: pointer;
  border: none;
}

@media (max-width: 650px) {
  .btn {
    font-size: 16px;
  }
}

.btn:hover {
  background-color: #57b952;
}

.btn-primary {
  padding: 16px 20px;
}

.pl {
  padding-left: 50px;
}

@media (max-width: 650px) {
  .pl {
    padding-left: 0;
  }
}

.pr {
  padding-right: 50px;
}

@media (max-width: 650px) {
  .pr {
    padding-right: 0;
  }
}

.section {
  padding-top: clamp(40px, 1.4rem + 4.69vw, 90px);
  padding-bottom: clamp(40px, 1.4rem + 4.69vw, 90px);
}

.section__text {
  max-width: 670px;
  font-size: 24px;
  line-height: 140%;
  font-size: clamp(18px, 0.816rem + 0.76vw, 24px);
}

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

.section__subcontainer {
  padding-left: 50px;
  padding-right: 50px;
}

@media (max-width: 650px) {
  .section__subcontainer {
    padding-left: 0;
    padding-right: 0;
  }
}

.section__advantages {
  padding: 20px 40px;
  border-radius: 12px;
  border: 1px solid var(--color-accent);
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 1100px) {
  .section__advantages {
    padding: 20px;
  }
}

@media (max-width: 650px) {
  .section__advantages {
    width: 100%;
  }
}

.section__advantages-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}

@media (max-width: 1100px) {
  .section__advantages-item {
    padding: 10px 0;
  }
}

@media (max-width: 650px) {
  .section__advantages-item {
    justify-content: space-between;
  }
}

.section__advantages-item:not(:last-child) {
  border-bottom: 1px solid #e2e3e3;
}

.section__advantages-item span {
  font-size: 20px;
  max-width: 280px;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .section__advantages-item span {
    font-size: 18px;
  }
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

@media (max-width: 900px) {
  .section__head {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .section__head {
    margin-bottom: 20px;
  }
}

.section__link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.section__link:hover {
  color: var(--color-accent);
}

.section-tabs {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
}

@media (max-width: 850px) {
  .section-tabs {
    width: -webkit-fill-available;
    padding-bottom: 10px;
    white-space: nowrap;
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
    overflow-x: auto;
    gap: 14px;
  }
}

.section-tabs__link {
  color: var(--color-text);
  transition: color 0.2s ease;
}
.detail-product .section-tabs__link {
}
.section-tabs__link:hover {
  color: var(--color-accent);
}

.section-tabs__link.current {
  color: var(--color-accent);
}
.current {
  color: var(--color-accent) !important;
}

.section-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
}

@media (max-width: 650px) {
  .section-wrapper {
    flex-direction: column;
  }
}

.js-error {
  display: none;
  position: absolute;
  bottom: -40%;
  left: 0px;
  color: #da1033;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  font-family: "PT", sans-serif;
}

.js-error._active {
  display: block;
}

.detail-page .products__list {
  margin-bottom: 0;
}

.pt {
  padding-top: 200px;
}

@media (max-width: 650px) {
  .pt {
    padding-top: 130px;
  }
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 10px;
}

.breadcrumbs__item {
  position: relative;
}

.breadcrumbs__item::after {
  position: absolute;
  top: 7px;
  right: -15px;
  width: 7px;
  height: 7px;
  border: 1px solid #5e6262;
  transform: rotate(45deg);
  content: "";
}

.breadcrumbs__link {
  color: #4c5050;
  font-size: 16px;
}

.detail-page .projects__name {
  font-size: clamp(22px, -0.5rem + 2.5vw, 28px);
  left: clamp(20px, -1.875rem + 4.17vw, 30px);
  bottom: clamp(20px, -1.875rem + 4.17vw, 30px);
}

.detail-page .projects__head {
  left: clamp(20px, -1.875rem + 4.17vw, 30px);
  top: clamp(20px, -1.875rem + 4.17vw, 30px);
}

@media (max-width: 996px) {
  .detail-page .projects__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .detail-page .projects__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

button:disabled {
  opacity: 0.5;
}

.hero__pagination.swiper-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 !important;
  padding: 12px;
}

@font-face {
  font-family: "Extatica";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/ttf/Extatica-SemiBold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Extatica";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/ttf/Extatica-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: "PT";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/ttf/pt-root-ui_medium.ttf");
  font-display: swap;
}

@font-face {
  font-family: "PT";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/ttf/pt-root-ui_regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: "PT";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/ttf/pt-root-ui_bold.ttf");
  font-display: swap;
}

:root {
  --color-white: #fff;
  --color-black: #000;
  --colog-bg: #eeeff0;
  --color-text: #2f3333;
  --color-accent: #3ec936;
  --color-descr: #383d3d;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 40px;
  padding: clamp(20px, -5rem + 8.33vw, 40px);
  max-width: 1440px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.header__container {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(50px, -28.125rem + 41.67vw, 150px);
  max-width: none;
  background-color: var(--color-text);
  border-radius: 12px;
  min-height: 80px;
  min-height: clamp(60px, 2.722rem + 2.53vw, 80px);
  padding: 0 clamp(20px, -8.125rem + 12.5vw, 50px);
  justify-content: space-between;
}

.header__logo svg {
  width: clamp(180px, 8.165rem + 7.59vw, 240px);
  margin-top: 5px;
}

.header__contacts {
  margin-left: auto;
  display: flex;
  gap: clamp(20px, -1.827rem + 4.81vw, 32px);
  align-items: center;
}

@media (max-width: 1200px) {
  .header__contacts {
    margin: initial;
    flex-direction: column;
  }
}

.header__phone {
  color: #eeeff0;
  font-size: 16px;
  transition: color 0.2s ease;
}

.header__phone:hover {
  color: var(--color-accent);
}

.menu {
  width: 100%;
}

@media (max-width: 1200px) {
  .menu {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.menu__icon {
  position: relative;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: none;
}

.menu__icon span {
  transform: scale(1) translate(-50%, -50%);
}

@media (max-width: 1200px) {
  .menu__icon {
    display: flex;
  }
}

.menu__body {
  width: 100%;
  height: calc(100% - clamp(76px, 3.703rem + 4.47vw, 105px));
  left: -300%;
  gap: 30px;
  display: flex;
  align-items: center;
}

@media (max-width: 1200px) {
  .menu__body {
    position: fixed;
    justify-content: flex-start !important;
  }
}

.menu__list {
  display: flex;
  gap: clamp(20px, -0.596rem + 2.88vw, 32px);
}

@media (max-width: 1200px) {
  .menu__list {
    flex-direction: column;
    width: 100%;
  }
}

.menu__link {
  color: #eeeff0;
  font-weight: 500;
  transition: color 0.2s ease;
}

.menu__link:hover {
  color: var(--color-accent);
}

@media (max-width: 1200px) {
  .menu__link {
    width: 100%;
  }
}

.menu__icon::after,
.menu__icon::before {
  content: "";
}

.menu__icon span,
.menu__icon::after,
.menu__icon::before {
  position: absolute;
  background-color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  width: 20px;
  transition: all 0.3s ease 0s;
}

.burger-open .menu__body {
  top: initial;
  left: 0;
  padding: clamp(12px, 0.574rem + 0.75vw, 20px);
  padding-top: 40px;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  overflow: auto;
  height: -webkit-fill-available;
}

.burger-open {
  background-color: var(--color-text);
  height: 100%;
}

.menu__icon::before {
  top: 16px;
}

.menu__icon::after {
  top: 28px;
}

.menu__icon.active::before {
  top: 21px;
  left: 12px;
  transform: rotate(-45deg);
}

.menu__icon.active span {
  transform: scale(0);
}

.menu__icon.active::after {
  top: 21px;
  left: 12px;
  transform: rotate(45deg);
}

.hero {
  height: 100%;
  position: relative;
}

.hero__container {
  height: 100%;
  min-height: 100%;
  display: flex;
  padding-top: 70px;
}

.hero__text {
  margin-bottom: 40px;
  margin-bottom: clamp(20px, 0.222rem + 2.53vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__text p {
  font-size: 20px;
  font-size: clamp(16px, 0.794rem + 0.51vw, 20px);
  color: #eeeff0;
}

.hero__subtitle {
  color: #eeeff0;
  font-size: 24px;
  margin-bottom: 16px;
  display: block;
  font-size: clamp(18px, 0.816rem + 0.76vw, 24px);
}

.hero__img {
  position: relative;
  height: 0;
  padding-top: 100%;
}

.hero__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 40px;
}

.hero__title {
  max-width: 590px;
  letter-spacing: 0.2px;
  line-height: 105%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}

@media (max-width: 650px) {
  .hero__title {
    max-width: 320px;
  }
}

.hero__title.active {
  display: block;
  position: relative;
}

.hero__wrapper {
  align-items: flex-end;
}

@media (max-width: 650px) {
  .hero__wrapper {
    flex-direction: column;
  }
}

.hero__link {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--colog-bg);
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
}

.hero__link:hover svg {
  transform: translateX(5px);
}

@media (max-width: 650px) {
  .hero__link {
    font-size: 16px;
  }
}

.hero__link svg {
  transition: transform 0.2s ease;
}

.hero__list {
  padding-bottom: 60px;
  padding-bottom: clamp(30px, 0.332rem + 3.8vw, 60px);
  position: relative;
  min-height: 200px;
}

@media (max-width: 650px) {
  .hero__list {
    width: 100%;
    padding-bottom: 20px;
    min-height: 150px;
  }
}

@media (max-width: 650px) {
  .hero__slider {
    width: 80%;
  }
}

.hero__pagination {
  z-index: 2;
  bottom: 75px !important;
  bottom: clamp(45px, 1.27rem + 3.8vw, 75px) !important;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50% !important;
  width: 140px !important;
  transform: translateX(-50%) !important;
}

@media (max-width: 650px) {
  .hero__pagination {
    bottom: 30px !important;
  }
}

.hero__pagination .swiper-pagination-bullet {
  position: relative;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  opacity: 1;
  padding: 8px;
  cursor: pointer;
}

.hero__pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: #5e6262;
  transform: rotate(45deg);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.hero__pagination .swiper-pagination-bullet-active::before {
  background: #3ec936;
  opacity: 1;
}

.hero__navigation {
  position: absolute;
  bottom: 75px;
  bottom: clamp(45px, 1.27rem + 3.8vw, 75px) !important;
  right: 20px;
  display: flex;
  gap: 25px;
  gap: clamp(16px, 0.537rem + 1.14vw, 25px);
  z-index: 3;
}

@media (max-width: 650px) {
  .hero__navigation {
    right: 10px;
    display: none;
  }
}

.hero__nav-btn {
  width: 42px;
  width: clamp(30px, 1.258rem + 1.52vw, 42px);
  height: 42px;
  height: clamp(30px, 1.258rem + 1.52vw, 42px);
  background: #3ec936;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
}

.hero__nav-btn svg {
  transform: rotate(-45deg);
  width: clamp(10px, 0.522rem + 0.25vw, 12px);
  height: clamp(16px, 0.691rem + 0.76vw, 22px);
}

.hero__nav-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  padding-top: 100px;
}

@media (max-width: 650px) {
  .hero__content {
    padding-top: 50px;
  }
}

.hero-decor {
  position: absolute;
  z-index: 1;
  top: 200px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
}

@media (max-width: 650px) {
  .hero-decor {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.hero-decor svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero__images {
  background-image: url("/public/img/hero/bbg.png");
  background-repeat: no-repeat;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.hero-subtext {
  padding-bottom: 0;
}

.products__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 100px;
  margin-bottom: clamp(40px, -0.585rem + 7.59vw, 100px);
}

@media (max-width: 1100px) {
  .products__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .products__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .products__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.item-products {
  background-color: #fff;
  border-radius: 12px;
  cursor: pointer;
}

.item-products:hover .item-products__title {
  color: var(--color-accent);
}

.item-products__link {
  display: block;
  padding: 20px;
}

.item-products__img {
  position: relative;
  height: 0;
  padding-top: 100%;
  margin-bottom: 12px;
}

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

.item-products__descr {
  margin-bottom: 32px;
}

.item-products__info {
  color: #383d3d;
  margin-bottom: 6px;
  display: inline-block;
  font-size: 14px;
}

.item-products__title {
  transition: color 0.2s ease;
}

.item-products__colors {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-products__colors span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #bababa;
}

.item-products__value {
  color: #383d3d;
  font-size: 14px;
}

.perks-products__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
}

.trust__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 60px;
  row-gap: clamp(30px, 0.332rem + 3.8vw, 60px);
}

@media (max-width: 1100px) {
  .trust__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 800px) {
  .trust__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 650px) {
  .trust__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.trust__img {
  position: relative;
  height: 0;
  padding-top: 50%;
  width: 200px;
  height: 100px;
}

@media (max-width: 900px) {
  .trust__img {
    width: 150px;
    height: 50px;
  }
}

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

.projects__slider {
  position: relative;
  margin-right: -1000%;
  padding-right: 1000%;
  overflow: visible;
}

.projects__btn {
  width: 42px;
  width: clamp(30px, 1.258rem + 1.52vw, 42px);
  height: 42px;
  height: clamp(30px, 1.258rem + 1.52vw, 42px);
  background: #3ec936;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
}

.projects__btn svg {
  transform: rotate(-45deg);
  width: clamp(10px, 0.522rem + 0.25vw, 12px);
  height: clamp(16px, 0.691rem + 0.76vw, 22px);
}

.projects__btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.projects__card {
  position: relative;
}

.projects__card:hover .projects__img img {
  transform: scale(1.2) translateZ(0);
}

.projects__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.projects__img {
  position: relative;
  height: 0;
  padding-top: 115%;
  border-radius: 12px;
  overflow: hidden;
}

.projects__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transform: scale(1) translateZ(0);
  transition: transform 0.2s ease;
}

.projects__nav {
  display: flex;
  gap: 25px;
  gap: clamp(16px, 0.537rem + 1.14vw, 25px);
  align-items: center;
  /* width: 100%; */
  justify-content: flex-end;
  /* margin-bottom: 32px; */
}
.projects__title {
  margin-bottom: 0;
}
.detail .projects__title {
  margin-bottom: 30px;
}

.projects__head {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 30px;
  left: 30px;
  gap: 18px;
}

.projects-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 650px) {
  .projects-wrapper {
    flex-direction: column;
  }
}

.projects__head span {
  font-size: 20px;
  color: #ffffff;
}

.projects__name {
  color: #ffffff;
  position: absolute;
  bottom: 30px;
  left: 30px;
  max-width: 330px;
}

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

.contacts {
  padding-bottom: 12px;
}

.contacts__inner {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 12px;
  padding: clamp(30px, 0.847rem + 2.53vw, 50px);
}

@media (max-width: 650px) {
  .contacts__title {
    margin-bottom: 40px;
  }
}

.contacts__form {
  align-items: center;
}

@media (max-width: 1100px) {
  .contacts__form .col-4 {
    display: none;
  }
}

@media (max-width: 1100px) {
  .contacts__inner-form {
    width: 66.66%;
  }
}

@media (max-width: 650px) {
  .contacts__inner-form {
    width: 100%;
  }
}

.contacts__wrapper {
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin-bottom: 48px;
  max-width: 445px;
}

@media (max-width: 650px) {
  .contacts__wrapper {
    max-width: none;
    margin-bottom: 32px;
  }
}

.contacts__input {
  position: relative;
}

.contacts__input input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 4px;
  background-color: #eeeff0;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "PT", sans-serif;
  color: #393a3a;
}

.contacts__label {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
  pointer-events: none;
  color: var(--color-text);
  font-family: "PT", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  color: #2f3333;
  transition: top 0.1s ease 0s;
}

@media (max-width: 650px) {
  .contacts__label {
    font-size: 14px;
  }
}

.contacts__btns {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}

.contacts__img {
  position: relative;
  height: 0;
  padding-top: 18%;
}

@media (max-width: 650px) {
  .contacts__img {
    display: none;
  }
}

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

.contacts__svg {
  overflow: visible;
}

.contacts__input input:focus ~ .contacts__label,
.contacts__input input:not(:placeholder-shown) ~ .contacts__label {
  top: -25%;
  left: 0;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  min-height: 51px;
  border-radius: 4px;
  background-color: #eeeff0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-select__trigger:hover {
  background-color: #e0e1e2;
}

.custom-select__value {
  font-size: 16px;
  font-weight: 400;
  font-family: "PT", sans-serif;
  color: #2f3333;
  flex: 1;
}

.custom-select__arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 10px;
}

.custom-select__options {
  display: flex;
  flex-direction: column;
  position: absolute;
  padding: 10px 20px;
  top: 110%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid #e0e1e2;
}

.custom-select__option {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  gap: 60px;
  gap: clamp(20px, -0.807rem + 5.06vw, 60px);
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}

.custom-select__option:last-child {
  border-bottom: none;
}

.custom-select__option:hover .custom-select__option-title {
  color: var(--color-accent);
}

.custom-select__option.is-selected .custom-select__option-check {
  opacity: 1;
  visibility: visible;
}

.custom-select__option-image {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.custom-select__option-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-select__option-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.custom-select__option-title {
  font-size: 18px;
  font-weight: 600;
  font-family: "Extatica", sans-serif;
  color: #2f3333;
  transition: color 0.2s ease;
}

.custom-select__option-desc {
  font-size: 12px;
  font-family: "PT", sans-serif;
  color: #383d3d;
}

.custom-select__option-check {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.custom-select__option-check svg {
  width: 15px;
  height: 11px;
}

.custom-select__hidden-input {
  display: none;
}

.custom-select__label {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
  pointer-events: none;
  color: var(--color-text);
  font-family: "PT", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  color: #2f3333;
  transition: top 0.1s ease 0s;
  z-index: 1;
}

@media (max-width: 650px) {
  .custom-select__label {
    font-size: 14px;
  }
}

.custom-select.is-open .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select.is-open .custom-select__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select.is-selected .custom-select__value {
  color: #2f3333;
}

.custom-select.is-selected .custom-select__label {
  top: -25%;
  left: 0;
}

@media (max-width: 768px) {
  .custom-select__options {
    max-height: 210px;
  }
  .custom-select__option {
    padding: 10px 0px;
  }
  .custom-select__option-image {
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }
  .custom-select__option-title {
    font-size: 13px;
  }
  .custom-select__option-desc {
    font-size: 11px;
  }
}

.form-check-input {
  display: none;
}

.custom-checkbox-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--color-accent);
  border-radius: 2px;
  background-color: #fff;
  position: relative;
  margin-right: 8px;
  transition: all 0.2s ease;
  transform: rotate(45deg);
}

.form-check-input:checked + .form-check-label .custom-checkbox-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #2f3333;
  border-width: 0 2px 2px 0;
  transform: rotate(0deg);
}

.form-check p {
  font-size: 14px;
  max-width: 370px;
  line-height: 1.3;
  color: #3d3d3d;
}
.form-check p a {
  color: #3d3d3d;
  display: inline-block;
  border-bottom: 1px solid #3d3d3d;
  transition: all 0.2s ease;
  &:hover {
    color: var(--color-accent);
    border-bottom: 1px solid var(--color-accent);
  }
}

.form-check-label {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.form-check {
  width: -moz-fit-content;
  width: fit-content;
}

.modal .form-check p a {
  color: white;
  display: inline-block;
  border-bottom: 1px solid white;
  transition: all 0.2s ease;
  &:hover {
    color: var(--color-accent);
    border-bottom: 1px solid var(--color-accent);
  }
}

.about__bg {
  position: relative;
  height: 0;
  padding-top: 14%;
  margin-bottom: 150px;
  margin-bottom: clamp(40px, -3.157rem + 13.92vw, 150px);
}

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

.about__text {
  margin-bottom: 140px;
  margin-bottom: clamp(40px, -2.642rem + 12.66vw, 140px);
}

.about__info {
  display: flex;
  flex-direction: column;
  gap: 50px;
  gap: clamp(20px, -0.293rem + 3.8vw, 50px);
}

.about__info-value {
  color: var(--color-accent);
  font-size: 100px;
  font-family: "Extatica", sans-serif;
  font-weight: 600;
  font-size: clamp(40px, -0.585rem + 7.59vw, 100px);
}

.about__info-text {
  font-size: 24px;
  color: #2f3333;
  font-size: clamp(20px, 1.044rem + 0.51vw, 24px);
}

@media (max-width: 996px) {
  .detail-product__info {
    flex-direction: column;
    gap: 40px;
  }
  .detail-product__info .col-1 {
    display: none;
  }
}

.info-product {
  margin-bottom: 100px;
  margin-bottom: clamp(40px, -0.585rem + 7.59vw, 100px);
}

@media (max-width: 996px) {
  .info-product__desc {
    width: 70%;
  }
}

@media (max-width: 650px) {
  .info-product__desc {
    width: 100%;
  }
}

.info-product__value {
  color: #4c5050;
  font-size: 20px;
  margin-bottom: 48px;
  margin-bottom: clamp(24px, 0.266rem + 3.04vw, 48px);
  display: block;
}

.info-product__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
  margin-bottom: clamp(24px, 0.266rem + 3.04vw, 48px);
}

.info-product__text p {
  font-size: 20px;
  color: #2f3333;
  line-height: 140%;
  font-size: clamp(18px, 0.816rem + 0.76vw, 20px);
}

.info-product__image {
  position: relative;
  height: 0;
  padding-top: 47%;
}

@media (max-width: 996px) {
  .info-product__image {
    width: 70%;
    padding-top: 70%;
  }
}

@media (max-width: 650px) {
  .info-product__image {
    width: 100%;
    padding-top: 100%;
  }
}

.info-product__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.perk-product {
  margin-bottom: 140px;
  margin-bottom: clamp(60px, -2.642rem + 12.66vw, 140px);
}
.perk-product.dop-gap {
  gap: 60px;
}

@media (max-width: 1100px) {
  .perk-product {
    flex-direction: column;
    gap: 40px;
  }
  .perk-product .col-1 {
    display: none;
  }
}

@media (max-width: 996px) {
  .perk-product__styling {
    width: 70%;
  }
}

@media (max-width: 650px) {
  .perk-product__styling {
    width: 100%;
  }
}

.perk-product__title {
  margin-bottom: 48px;
  margin-bottom: clamp(20px, -0.19rem + 3.54vw, 48px);
}

@media (max-width: 996px) {
  .perk-product__color {
    width: 70%;
  }
}

@media (max-width: 650px) {
  .perk-product__color {
    width: 100%;
  }
}

.styling__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 650px) {
  .styling__list {
    gap: 12px;
  }
}

.styling__img {
  position: relative;
  height: 0;
  padding-top: 87%;
}

.styling__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.color__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 650px) {
  .color__list {
    gap: 12px;
  }
}

.color__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.color__circle {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 12px;
  overflow: hidden;
}

@media (max-width: 650px) {
  .color__circle {
    width: 50px;
    height: 50px;
  }
}

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

.color__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  opacity: 0.8;
}

.color__name {
  font-size: 14px;
}

@media (max-width: 996px) {
  .feature-product .col-5 {
    display: none;
  }
}

@media (max-width: 996px) {
  .feature-product__info {
    width: 70%;
  }
}

@media (max-width: 650px) {
  .feature-product__info {
    width: 100%;
  }
}

.feature-product__table {
  margin-top: 48px;
  margin-top: clamp(20px, -0.19rem + 3.54vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-product__description {
  margin-top: 48px;
  margin-top: clamp(20px, -0.19rem + 3.54vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-product__description p {
  font-size: 20px;
  color: #2f3333;
  line-height: 140%;
  font-size: clamp(18px, 0.816rem + 0.76vw, 20px);
}

.table-product__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.table-product__item::after {
  position: absolute;
  width: 100%;
  height: 1px;
  content: "";
  left: 0;
  bottom: -6px;
  background-color: #e2e3e3;
}

.map__content {
  margin-bottom: 40px;
}

.map__link {
  font-size: 64px;
  font-size: clamp(28px, -0.101rem + 4.56vw, 64px);
  color: #2f3333;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  transition: color 0.2s ease;
}

@media (max-width: 650px) {
  .map__link {
    margin-bottom: 20px;
  }
}

.map__link:hover {
  color: var(--color-accent);
}

.map__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 900px) {
  .map__info {
    flex-direction: column;
    align-items: flex-start;
  }
}

.map__info a {
  font-size: 24px;
  font-size: clamp(18px, 0.816rem + 0.76vw, 24px);
  color: #2f3333;
  transition: color 0.2s ease;
}

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

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

.map__adress span {
  font-size: clamp(18px, 0.816rem + 0.76vw, 24px);
}

.map__card {
  height: 410px;
}

.map__card ymaps {
  border-radius: 12px;
}

.map__card ymaps img {
  width: 48px;
}

.map-marker {
  position: relative;
  transform: translate(-50%, -50%);
}

.map-marker img {
  display: block;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px 20px 0;
  overflow: auto;
  overflow-y: scroll;
  justify-content: center;
  align-items: center;
  display: none;
}

@media (max-height: 650px) {
  .modal {
    align-items: flex-start;
  }
}

.modal.active {
  display: flex;
}

.modal__title {
  font-size: 36px;
  font-size: clamp(24px, 0.883rem + 1.52vw, 36px);
  color: #fff;
  margin-bottom: 0px;
}

.modal__body {
  vertical-align: middle;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease 0s;
  text-align: left;
  display: inline-block;
}

.modal__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.modal__content {
  position: relative;
  background-color: #2f3333;
  padding: 45px 40px;
  width: 550px;
  min-height: 575px;
  border-radius: 8px;
  display: none;
}

@media (max-width: 650px) {
  .modal__content {
    min-height: 550px;
    width: 100%;
    padding: 50px 20px 20px 20px;
  }
}

.modal .custom-checkbox-icon {
  background-color: transparent;
}

.modal .contacts__input input:focus ~ .contacts__label,
.modal .contacts__input input:not(:placeholder-shown) ~ .contacts__label {
  color: #fff;
}

.modal
  .form-check-input:checked
  + .form-check-label
  .custom-checkbox-icon::after {
  border: solid #fff;
  border-width: 0 2px 2px 0;
}

.modal__close {
  padding: 10px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.modal .form-check p {
  color: #fff;
}

@media (max-width: 1100px) {
  .modal .contacts__inner-form {
    width: 100%;
  }
}

.modal.active .modal__body {
  opacity: 1;
  visibility: visible;
}

.modal.active .modal__content {
  display: flex;
}

.succes {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px 20px 0;
  overflow: auto;
  overflow-y: scroll;
  justify-content: center;
  align-items: center;
  display: none;
}

@media (max-height: 650px) {
  .succes {
    align-items: flex-start;
  }
}

.succes.active {
  display: flex;
}

.succes__close {
  padding: 10px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.succes__text {
  font-size: 24px;
  font-size: clamp(18px, 0.816rem + 0.76vw, 24px);
  color: #fff;
}

.succes__title {
  font-size: 36px;
  font-size: clamp(24px, 0.883rem + 1.52vw, 36px);
  color: #fff;
  margin-bottom: 0px;
}

.succes__body {
  vertical-align: middle;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease 0s;
  text-align: left;
  display: inline-block;
}

.succes__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 650px) {
  .succes__wrapper {
    gap: 10px;
  }
}

.succes__content {
  position: relative;
  background-color: #2f3333;
  padding: 45px 40px;
  width: 550px;
  min-height: 260px;
  border-radius: 8px;
  display: none;
  align-items: center;
}

@media (max-width: 650px) {
  .succes__content {
    min-height: 150px;
    width: 100%;
    padding: 20px 20px 20px 20px;
  }
}

.succes.active .succes__body {
  opacity: 1;
  visibility: visible;
}

.succes.active .succes__content {
  display: flex;
}

.footer {
  padding-top: 12px;
  padding-bottom: 50px;
}

@media (max-width: 650px) {
  .footer {
    padding-bottom: 20px;
  }
}

.footer__inner {
  background-color: #2f3333;
  padding: 50px;
  padding: clamp(30px, 0.847rem + 2.53vw, 50px);
  border-radius: 12px;
}

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

@media (max-width: 800px) {
  .footer__info {
    width: 100%;
  }
}

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

.footer__item a {
  color: #e2e3e3;
  font-size: 16px;
  transition: color 0.2s ease;
}

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

.footer__country {
  color: var(--color-accent) !important;
}

.footer__country a {
  color: var(--color-accent) !important;
}

.footer__content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: space-between;
}

@media (max-width: 1150px) {
  .footer__content.pl {
    padding-left: 0;
  }
}

@media (max-width: 1080px) {
  .footer__content {
    gap: 50px;
    width: 58.33%;
    justify-content: initial;
  }
}

@media (max-width: 800px) {
  .footer__content {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }
}

.footer__wrapper {
  margin-bottom: 200px;
}

@media (max-width: 1150px) {
  .footer__wrapper .col-2,
  .footer__wrapper .col-1 {
    display: none;
  }
}

@media (max-width: 800px) {
  .footer__wrapper {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
  }
}

.info-footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-footer__list span,
.info-footer__list a {
  color: #e2e3e3;
  font-size: 16px;
}

.footer__bot span,
.footer__bot a {
  color: #e2e3e3;
  font-size: 16px;
}

.footer__bot-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1080px) {
  .footer__bot-info {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
  }
}

@media (max-width: 1150px) {
  .footer__bot .col-4.pl {
    padding-left: 0;
  }
  .footer__bot .col-2,
  .footer__bot .col-1 {
    display: none;
  }
}

@media (max-width: 1080px) {
  .footer__bot {
    flex-direction: column;
    gap: 20px;
  }
  .footer__bot .col-4 {
    width: 100%;
  }
}

@media (max-width: 1250px) {
  .projects__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects__name {
    bottom: 20px;
    left: 20px;
  }
}
@media (max-width: 650px) {
  .projects__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
