

/* Start:/local/js/swiper-bundle.css?177037265619546*/
/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.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-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .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-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.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-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);
  }
}
/* Slide styles end */

.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-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --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-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.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: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .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: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &: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: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .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-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}


/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
/* Zoom container styles end */

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}


/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}




.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.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-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.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-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }

  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;

    &:before {
      content: '';
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}
.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}
/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Cube slide shadows end */

.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Flip slide shadows end */

.swiper-coverflow {
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}

/* End */


/* Start:/local/templates/main/template_styles.css?177200238322422*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700&display=swap");
:root {
  --color-primary: #788864;
  --color-primary-hover: #5d665c;
  --color-text: #1b1b1b;
  --color-text-on-dark: #effae4;
  --color-bg: #f3f5f1;
  --color-white: #fff;
  --color-dark: #2a2a2a;
  --color-accent: #494b40;
  --color-accent-light: #788864;
  --color-accent-dark: #5d665c;
  --color-border: #dfe4dc;
  --color-soft-bg: #eef1ec;
  --color-muted: #6b7367;
  --color-muted-dark: #5d665c;
  --color-card-bg: #e2e8df;
  --color-input-border: #cfd6cd;
  --color-footer-text: #d2d9cf;
  --color-footer-muted: #c3cbc0;
  --color-text-soft: #60685e;
  --color-muted-rgb: 107, 115, 103;
  --color-white-rgb: 255, 255, 255;
  --color-gradient-start: #f2f6f0;
  --color-gradient-end: #dfe8d7;
}

:root {
  --section-padding: 40px 0;
  --h1-font-size: 48px;
  --h2-font-size: 36px;
  --h3-font-size: 28px;
  --h4-font-size: 22px;
  --h5-font-size: 18px;
  --h6-font-size: 16px;
}

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

body {
  font-family: "Montserrat", "Arial", sans-serif;
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.4;
}

.section {
  padding: var(--section-padding);
}

.mw-1 {
  max-width: 520px;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--color-accent);
}

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

p {
  margin-bottom: 8px;
}

strong,
b {
  font-weight: 500;
}

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

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: inherit;
}

.py--xl {
  padding-top: 40px;
  padding-bottom: 40px;
}
.py--lg {
  padding-top: 32px;
  padding-bottom: 32px;
}
.py--md {
  padding-top: 24px;
  padding-bottom: 24px;
}

h1,
.h1 {
  font-size: var(--h1-font-size);
  padding-bottom: 12px;
}

h2,
.h2 {
  font-size: var(--h2-font-size);
  padding-top: 12px;
  padding-bottom: 12px;
}

h3,
.h3 {
  font-size: var(--h3-font-size);
  padding-top: 12px;
  padding-bottom: 12px;
}

h4,
.h4 {
  font-size: var(--h4-font-size);
  padding-bottom: 12px;
}

h5,
.h5 {
  font-size: var(--h5-font-size);
}

h6,
.h6 {
  font-size: var(--h6-font-size);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

ul {
  margin-left: 16px;
}

.page__wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-content {
  flex: 1;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  color: var(--color-text-on-dark);
}
.btn--outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--color-primary-hover);
  color: var(--color-primary-hover);
}
.btn i,
.btn svg {
  margin-right: 8px;
  font-size: 16px;
  vertical-align: middle;
  flex-shrink: 0;
}

.section-tag {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-head {
  margin-bottom: 24px;
}
.section-head .link a {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  transition: color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  padding: 6px 12px;
  font-weight: 600;
  border: 1px solid var(--color-primary);
  background: transparent;
}
.section-head .link a:hover {
  color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}
.section-head--flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.section-head h2 {
  font-size: 32px;
}

.link-arrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.header-top {
  background: var(--color-soft-bg);
  padding: 10px 0;
}
.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-top__messengers {
  display: flex;
  gap: 10px;
}
.header-top__contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-text);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.03em;
}

.phone-link {
  font-weight: 600;
  margin-right: 16px;
}

.header-main {
  padding: 18px 0;
}
.header-main__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.header-main__inner .logo img {
  height: 56px;
}

.header-filter__label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.header-filter__list {
  list-style: none;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--color-muted);
}

.header-nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.header-nav__item {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.header-nav__item:hover {
  color: var(--color-accent);
}
.header-nav__item--active {
  color: var(--color-accent);
  font-weight: 600;
  cursor: default;
}
.header-nav .header-top {
  display: none;
}

.header-burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-text);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.header-burger:hover {
  color: var(--color-accent);
}
.header-burger__line {
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
  transition: background 0.2s ease;
}

.hero {
  padding: 64px 0;
  background: var(--color-bg);
}
.hero__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}
.hero__subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.hero__title {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero__description {
  color: var(--color-muted-dark);
  margin-bottom: 24px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.banner {
  background: var(--color-card-bg);
  border-radius: 16px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 14px;
  background-size: cover;
}
.banner--hero {
  min-height: 360px;
}
.banner__slider {
  padding: 24px;
  border: 1px dashed rgba(var(--color-muted-rgb), 0.4);
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.philosophy,
.specialists_main,
.license {
  padding: 70px 0;
}

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

.license__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: start;
}

.founder {
  background: var(--color-accent-light);
  color: var(--color-text-on-dark);
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.12);
}
.founder .section-tag {
  color: var(--color-text-on-dark);
}
.founder__inner {
  display: flex;
  gap: 40px;
  align-items: center;
}
.founder__photo {
  border-radius: 16px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder__photo img {
  width: 420px;
  max-width: -moz-max-content;
  max-width: max-content;
}
.founder__content {
  padding-top: 40px;
  padding-bottom: 40px;
}

.infographics {
  padding: 40px 0 60px;
}
.infographics__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.info-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  font-weight: 600;
  display: grid;
  gap: 10px;
}
.info-card__text {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.interiors,
.reviews,
.before-after,
.map,
.promotions,
.appointment {
  padding: 30px 0;
}

.interiors__grid,
.reviews__grid,
.before-after__grid,
.prices__grid,
.promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.price-card {
  background: var(--color-white);
  padding: 24px;
  border-radius: 16px;
  display: grid;
  gap: 12px;
}

.review-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
.review-card__inner {
  height: 280px;
}
.review-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review-card strong {
  font-size: 14px;
  color: var(--color-muted);
}

.reviews-slider__controls {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.specialists p {
  margin-bottom: 20px;
  color: var(--color-muted);
}
.specialists__section-title {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 24px;
  color: var(--color-text);
}
.specialists__section-title:first-of-type {
  margin-top: 0;
}
.specialists__section-title a {
  color: inherit;
  text-decoration: none;
}
.specialists__section-title a:hover {
  color: var(--color-accent);
}
.specialists__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.specialists__pager {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.specialists__pager--top {
  margin-bottom: 24px;
}
.specialists__empty {
  text-align: center;
  color: var(--color-muted);
  padding: 40px 0;
}

.services {
  padding: var(--section-padding);
}
.services__current-section-title {
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 32px;
  color: var(--color-text);
}
.services__section-title {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 24px;
  color: var(--color-text);
}
.services__section-title:first-of-type {
  margin-top: 40px;
}
.services__section-title a {
  color: inherit;
  text-decoration: none;
}
.services__section-title a:hover {
  color: var(--color-accent);
}
.services__empty {
  text-align: center;
  color: var(--color-muted);
  padding: 40px 0;
}
.services__sections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.service-section-card {
  background: linear-gradient(135deg, var(--color-gradient-start, #ffffff), var(--color-gradient-end, #f8f9fa));
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}
.service-section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.service-section-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.service-section-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-card-bg);
}
.service-section-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.service-section-card:hover .service-section-card__image img {
  transform: scale(1.05);
}
.service-section-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-section-card__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
  transition: color 0.3s ease;
}
.service-section-card:hover .service-section-card__title {
  color: var(--color-accent);
}
.service-section-card__description {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
}

.interior-card,
.before-after__item,
.map__placeholder,
.license__card {
  background: var(--color-card-bg);
  border-radius: 16px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
}

.interior-card,
.before-after__item {
  min-height: 220px;
}

.appointment {
  background: var(--color-white);
}
.appointment__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}
.appointment__form {
  display: grid;
  gap: 12px;
}
.appointment__form input {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--color-input-border);
  background: var(--color-white);
}

.map__placeholder {
  min-height: 320px;
}

.site-footer {
  background: var(--color-accent-dark);
  color: var(--color-white);
  padding: 60px 0 20px;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.footer__inner ul {
  margin-left: 0;
}
.footer__column h3 {
  font-size: 16px;
  margin-bottom: 12px;
}
.footer__text {
  color: var(--color-footer-text);
  margin-bottom: 8px;
}
.footer__list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--color-footer-text);
}
.footer__link {
  color: var(--color-footer-text);
}
.footer__bottom {
  border-top: 1px solid rgba(var(--color-white-rgb), 0.1);
  padding-top: 16px;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--color-footer-muted);
  font-size: 10px;
}

.error-page {
  padding: 80px 0 40px;
}
.error-page__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}
.error-page__code {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}
.error-page__title {
  font-size: 32px;
  margin: 12px 0;
}
.error-page__text {
  color: var(--color-text-soft);
  max-width: 520px;
  margin-bottom: 24px;
}
.error-page__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.error-page__card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  gap: 12px;
  border: 1px solid var(--color-border);
}
.error-page__links {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--color-text-soft);
}
.error-page__links a:hover {
  color: var(--color-text);
}
.error-page__sitemap {
  padding: 20px 0 70px;
}

@media (max-width: 768px) {
  .header-main__inner {
    flex-wrap: wrap;
  }
  .header-main .logo img {
    height: 36px;
  }
  .header-filter__list,
  .header-nav {
    justify-content: center;
  }
  .header-burger {
    display: inline-flex;
  }
  .header-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
  }
  .is-menu-open .header-nav {
    display: flex;
  }
  .header-top__inner,
  .header-top__contact {
    flex-direction: row;
  }
  .header-top__inner {
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .header-top__contact {
    gap: 8px;
  }
  .header-top__messengers {
    justify-content: flex-start;
  }
  .phone-link {
    margin-right: 0;
    font-size: 18px;
    padding-top: 12px;
    padding-bottom: 20px;
  }
  .section-head {
    flex-direction: column;
    align-items: center;
  }
  .hero__title {
    font-size: 32px;
  }
  .site-header > .header-top {
    display: none;
  }
  .header-nav .header-top {
    display: block;
    padding: 12px 0 0;
    width: 100%;
    margin-top: 24px;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
  }
  .header-nav .header-top__inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .header-nav .header-top__contact {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .header-nav .btn {
    width: 100%;
    justify-content: center;
  }
}
.contacts {
  padding: 40px 0 60px;
}

.contacts .container {
  margin: 0 auto;
  padding: 0 20px;
}

.contacts h1 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 24px;
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contacts__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.04);
}

.contacts__item + .contacts__item {
  margin-top: 16px;
}

.contacts__label {
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 6px;
}

.contacts__value {
  font-size: 18px;
  line-height: 1.5;
  color: #222222;
}

.contacts__value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 34, 34, 0.2);
}

.contacts__right h2 {
  font-size: 22px;
  margin: 0 0 12px;
}

.contacts__right p {
  margin: 0 0 16px;
  color: #444444;
  line-height: 1.6;
}

.contacts__video .btn {
  cursor: pointer;
}

.contacts__video iframe,
.contacts__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contacts__video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.contacts__video-modal.is-open {
  display: flex;
}

.contacts__video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.contacts__video-modal__content {
  position: relative;
  z-index: 1;
  width: min(90vw, 1200px);
  height: 90vh;
  box-sizing: border-box;
  background: #000;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.contacts__video-modal__content video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contacts__video-modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  font-size: 18px;
  line-height: 32px;
  cursor: pointer;
  z-index: 1;
}

.contacts__note {
  font-size: 13px;
  color: #777777;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .contacts__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1200px) {
  :root {
    --h1-font-size: 42px;
    --h2-font-size: 32px;
    --h3-font-size: 24px;
    --h4-font-size: 20px;
    --h5-font-size: 16px;
  }
  .section-head h2 {
    font-size: 28px;
  }
  .hero__title {
    font-size: 36px;
  }
  .banner {
    min-height: 280px;
  }
  .founder__inner {
    gap: 24px;
  }
}
@media (max-width: 1024px) {
  .header-top__inner {
    flex-wrap: wrap;
  }
  .header-nav {
    gap: 12px;
    font-size: 12px;
  }
  .hero {
    padding: 48px 0;
  }
  .hero__inner {
    gap: 24px;
  }
  .infographics__cards {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .interiors__grid,
  .reviews__grid,
  .before-after__grid,
  .prices__grid,
  .promotions__grid {
    gap: 16px;
  }
  .appointment__inner {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .error-page__code {
    font-size: 56px;
  }
  .services__sections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  :root {
    --section-padding: 32px 0;
    --h1-font-size: 34px;
    --h2-font-size: 26px;
    --h3-font-size: 22px;
    --h4-font-size: 18px;
  }
  .section-head {
    margin-bottom: 16px;
  }
  .reviews-slider__controls {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .banner {
    min-height: 240px;
  }
  .founder__photo {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1/1;
    margin: 12px auto 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .founder__photo .img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .founder__photo .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
  }
  .founder__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .founder__content {
    padding-top: 0;
  }
  .price-card,
  .review-card,
  .info-card {
    padding: 0px;
  }
  .review-card__image {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .review-card strong {
    font-size: 14px;
    color: var(--color-muted);
  }
  .error-page {
    padding: 60px 0 30px;
  }
  .error-page__title {
    font-size: 26px;
  }
  .services__sections-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-section-card__image {
    height: 160px;
  }
  .service-section-card__body {
    padding: 18px;
  }
  .service-section-card__title {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(1200px, 94%);
  }
  .hero {
    padding: 40px 0;
  }
  .hero__title {
    font-size: 30px;
  }
  .btn {
    width: 100%;
  }
  .contacts__card {
    padding: 18px;
  }
  .contacts__value {
    font-size: 16px;
  }
  .site-footer {
    padding: 40px 0 16px;
  }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-section-card__image {
    height: 140px;
  }
  .service-section-card__body {
    padding: 16px;
  }
}
@media (max-width: 480px) {
  :root {
    --h1-font-size: 28px;
    --h2-font-size: 22px;
    --h3-font-size: 20px;
  }
  .header-top__inner,
  .header-top__contact {
    flex-wrap: wrap;
  }
  .section-tag {
    font-size: 10px;
  }
  .hero__title {
    font-size: 26px;
  }
  .banner {
    min-height: 200px;
  }
  .contacts h1 {
    font-size: 26px;
  }
  .review-card__inner {
    height: 220px;
  }
  .error-page__code {
    font-size: 48px;
  }
}
/* End */
/* /local/js/swiper-bundle.css?177037265619546 */
/* /local/templates/main/template_styles.css?177200238322422 */
