@charset "UTF-8";
/* stylelint-disable no-invalid-position-at-import-rule */
:root {
  --base-size: 1vw;
  --tr: 0.3s;
  --tr-regular: all var(--tr) ease;
  --p-container: 2rem;
  --w-container: 123rem;
  --z-above-header: 103;
  --z-burger: 102;
  --z-header: 100;
  --z-main: 99;
  --z-footer: 100;
  --tr-jolly-enter: cubic-bezier(0.5, 0, 0.5, 1);
}
@media (max-width: 992px) {
  :root {
    --w-container: 100%;
  }
}

:root {
  --c-primary: #D7BF7F;
  --gradient-gold: linear-gradient(266deg, #C4AD6F 0%, #FFECB8 100%);
  --fg-regular: #fff;
  --fg-second: #BDBDBD;
  --fg-on: #1a1a1a;
  --bg-app: #1A1A1A;
  --c-error: #E5042C;
  --c-success: #34C759;
}

/* stylelint-disable scss/operator-no-newline-after */
/*
  Подключает шфрит
  @include font('Inter', normal, 400, '../resources/fonts/Inter/Inter-Regular');
 */
/*
  Создает грид
 */
/*
  Делает маску из svg
 */
/*

  SCSS ONLY MIXINS

 */
/*
  Генерирует цвет по указанной яркости
*/
/*
  Создать цвет rgba из hex
*/
/*
 Кастомизирует скроллбар
*/
@font-face {
  font-family: "Muller";
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url("../resources/fonts/muller/mullerlightitalic.woff2") format("woff2"), url("../resources/fonts/muller/mullerlightitalic.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Muller";
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url("../resources/fonts/muller/mullerlight.woff2") format("woff2"), url("../resources/fonts/muller/mullerlight.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Muller";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url("../resources/fonts/muller/mullerregular.woff2") format("woff2"), url("../resources/fonts/muller/mullerregular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Muller";
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url("../resources/fonts/muller/mullermedium.woff2") format("woff2"), url("../resources/fonts/muller/mullermedium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Muller";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url("../resources/fonts/muller/mullerbold.woff2") format("woff2"), url("../resources/fonts/muller/mullerbold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url("../resources/fonts/georgia/georgia.woff2") format("woff2"), url("../resources/fonts/georgia/georgia.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url("../resources/fonts/georgia/georgia-bold.woff2") format("woff2"), url("../resources/fonts/georgia/georgia-bold.woff") format("woff");
  font-display: swap;
}
:root {
  --ff-regular: "Muller", sans-serif;
  --ff-title: "Georgia", serif;
  --fz-regular: 2rem;
  --fz-title: 5.5rem;
}
@media (max-width: 1100px) {
  :root {
    --fz-title: 4.5rem;
  }
}
@media (max-width: 768px) {
  :root {
    --fz-regular: 1rem;
    --fz-title: 2.5rem;
  }
}
/*
    1. Use a more-intuitive box-sizing model.
*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

/*
    2. Remove default margin
 */
* {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
}

/*
    3. Allow percentage-based heights in the application
*/
html,
body {
  width: 100%;
  height: 100%;
}

/*
    Typographic tweaks!
    4. Add accessible line-height
    5. Improve text rendering
 */
body {
  line-height: 1.5;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*
7. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button:active {
  outline: none;
}

input[type=submit] {
  cursor: pointer;
}

button {
  color: inherit;
  cursor: pointer;
  background: inherit;
}

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

a {
  color: inherit;
}

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

ul li {
  list-style: none;
  list-style-position: inside;
}

ol li {
  list-style-position: inside;
}

/*
    6. Improve media defaults
 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img,
svg {
  object-fit: contain;
}

/*
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
*/
/*
  8. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

fieldset {
  padding: 0;
  margin: 0;
}

html {
  overscroll-behavior: none;
  --fz-modifier: 0.520834;
  font-size: calc(var(--fz-modifier) * var(--base-size));
  background-color: var(--bg-app);
}
@media (max-width: 1100px) {
  html {
    --fz-modifier: 1.020834;
  }
}
@media (max-width: 768px) {
  html {
    --fz-modifier: 1.763894;
  }
}
@media (max-width: 601px) {
  html {
    --fz-modifier: 2.545;
  }
}
@media (max-width: 360px) {
  html {
    --fz-modifier: 2.777777;
  }
}

body {
  color: var(--fg-regular);
  font-family: var(--ff-regular);
  font-size: var(--fz-regular);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 111%;
  background: inherit;
  overscroll-behavior: none;
}
@media (max-width: 992px) and (min-width: 451px) {
  body {
    font-size: 2rem;
  }
}
@media (max-width: 414px) {
  body {
    font-size: 2rem;
  }
}

body._lock {
  overflow: hidden;
  touch-action: none;
}

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

.wrapper > .content {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
}

.container {
  max-width: calc(var(--w-container) + 2 * var(--p-container));
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--p-container);
  padding-right: var(--p-container);
}

@media (max-width: 1100px) {
  .main {
    margin-top: auto;
  }
}

/**
 * Swiper 7.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2021
 */
@font-face {
  font-family: swiper-icons;
  font-style: normal;
  font-weight: 400;
  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");
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  position: relative;
  z-index: 1;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  list-style: none;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  z-index: 1;
  box-sizing: content-box;
  display: flex;
  width: 100%;
  height: 100%;
  transition-property: transform;
}

.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 {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

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

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.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 {
  flex-shrink: 0;
  order: 9999;
  content: "";
}

.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 {
  width: var(--swiper-centered-offset-after);
  height: 100%;
  min-height: 1px;
}

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

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  content: "";
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  width: var(--swiper-virtual-size);
  height: 1px;
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  pointer-events: none;
  cursor: auto;
  opacity: 0.35;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  font-variant: initial;
  line-height: 1;
  text-transform: none !important;
  text-transform: none;
  letter-spacing: 0;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  right: auto;
  left: 10px;
}

.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-scrollbar {
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  bottom: 3px;
  left: 1%;
  z-index: 50;
  width: 98%;
  height: 5px;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  top: 1%;
  right: 3px;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

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

.swiper-zoom-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  box-sizing: border-box;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-top-color: transparent;
  border-radius: 50%;
  transform-origin: 50%;
  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 {
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1000;
  pointer-events: none;
  opacity: 0;
}

.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-direction: column;
  flex-wrap: wrap;
}

.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 {
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.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-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

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

.swiper-cube .swiper-cube-shadow:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: #000;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  z-index: 1;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.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-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

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

.swiper-cards {
  overflow: visible;
}

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

.js_use-bg {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.js_use-bg > * {
  position: absolute;
  left: 0;
  top: 0;
  width: inherit;
  height: inherit;
  background-size: inherit;
  background-repeat: inherit;
  background-position: inherit;
  object-fit: cover;
}

.text-bold {
  font-weight: 700;
}

.text-colored {
  color: var(--c-primary);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes minipulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.section {
  padding-top: 20rem;
  padding-bottom: 20rem;
}
@media (max-width: 1100px) {
  .section {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}
@media (max-width: 768px) {
  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.section--convex {
  background: linear-gradient(113deg, #303030 11.83%, #101010 87.31%);
  box-shadow: 0px 3.0570545197px 3.6409862041px rgba(0, 0, 0, 0.17), 0px 7.7315201759px 9.2083272934px rgba(0, 0, 0, 0.25), 0px 15.7715759277px 18.7841243744px rgba(0, 0, 0, 0.31), 0px 32.4864654541px 38.6917457581px rgba(0, 0, 0, 0.39), 0px 89px 106px rgba(0, 0, 0, 0.56);
}

.section-title {
  margin-bottom: 7rem;
  font-family: var(--ff-title);
  font-size: var(--fz-title);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.11rem;
  leading-trim: both;
  text-edge: cap;
}
@media (max-width: 1100px) {
  .section-title {
    margin-bottom: 4.5rem;
  }
}
@media (max-width: 768px) {
  .section-title {
    letter-spacing: 0.05rem;
    margin-bottom: 3rem;
  }
}

.section-buttons {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: inline-grid;
  row-gap: 3rem;
}
@media (max-width: 768px) {
  .section-buttons {
    row-gap: 1.2rem;
  }
}

.container.section-buttons {
  display: grid;
}

.text-sub {
  color: var(--fg-regular, #FFF);
  leading-trim: both;
  text-edge: cap;
  font-family: var(--ff-regular);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.096rem;
}

.text-sub--square::after {
  content: "2";
  font-size: 0.6em;
  position: relative;
  bottom: 0.45em;
  left: 0.1em;
}

.text-italic {
  font-style: italic;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .section__head {
    display: block;
  }
}

:root {
  --tr-jolly-enter: cubic-bezier(0.5, 0, 0.5, 1);
  --tr-jolly-leave: cubic-bezier(0.5, 0, 0.5, 1);
  --c-b_modal-closer-hover: #ff3b30;
  --z-b_modal: 1234567890;
  --bg-overlay: rgba(0, 0, 0, 0);
  --bg-overlay-visible: rgba(0, 0, 0, 0.8);
  --bg-b_modal-closer: rgba(222,222,222, 0.5);
}

.b_modal__storage {
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-b_modal);
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.b_modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: var(--bg-overlay);
  transition: all 0.5s var(--tr-jolly-leave);
}

.b_modal__overlay._show {
  pointer-events: initial;
  background-color: var(--bg-overlay-visible);
  transition: all 0.5s var(--tr-jolly-enter);
}

.b_modal__aligner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1em;
}

.b_modal__content {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  transition: all 0.3s ease;
  transition: all 0.5s var(--tr-jolly-enter);
  transform: scale(0.86);
}

.b_modal {
  transition: var(--tr-regular);
  opacity: 0;
  transform: translateY(25rem) scale(0.8);
  transition: all 0.5s var(--tr-jolly-leave), opacity 0.3s var(--tr-jolly-leave);
}

._show .b_modal {
  transform: translateY(0) scale(1);
  opacity: 1;
  transition: all 0.5s var(--tr-jolly-enter), opacity 0.3s var(--tr-jolly-leave);
}

.b_modal__closer {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: block;
  width: 2.5em;
  height: 2.5em;
  font-size: 1.4rem;
  color: transparent;
  transition: all 0.3s ease;
  background-color: var(--bg-b_modal-closer);
  border-radius: 1rem;
  transform: scale(0);
}

._show .b_modal__closer {
  transform: scale(1);
}

.b_modal__closer::before,
.b_modal__closer::after {
  --closer-color: rgba(0,0,0, 1);
  content: "";
  position: absolute;
  top: 44%;
  right: 0;
  left: 0;
  display: block;
  width: 80%;
  height: 13%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 1em;
  background-color: var(--closer-color);
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .b_modal__closer::before,
  .b_modal__closer::after {
    top: 46%;
    width: 70%;
  }
}

.b_modal__closer::before {
  transform: rotate(45deg);
}

.b_modal__closer::after {
  transform: rotate(-45deg);
}

@media (any-hover: hover) {
  .b_modal__closer:hover::before,
  .b_modal__closer:hover::after {
    --closer-color: var(--c-b_modal-closer-hover);
  }
}

.b_modal--scrollable {
  padding-bottom: 0;
}

.b_modal--scrollable._show .b_modal__aligner {
  align-items: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
}

.b_modal--slide-left {
  transform: translateX(100%);
  opacity: 1;
}

._show .b_modal--slide-left {
  transform: translateX(0);
}

.b_video {
  --play-button-icon: ;
  position: relative;
  overflow: hidden;
  padding-top: 52.4%;
}
@supports (aspect-ratio) {
  .b_video {
    padding-top: 0;
    aspect-ratio: 16/9;
  }
}

.b_video::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.45s var(--tr-jolly-enter);
}

@media (any-hover: hover) {
  .b_video:hover::before {
    background-color: transparent;
  }
}

.b_video__cover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transition: var(--tr);
}

.b_video--playing .b_video__cover {
  opacity: 0;
}

.b_video__cover-pic {
  width: 100%;
  height: 100%;
}

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

.b_video__media {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: var(--tr);
}

.b_video--playing .b_video__media {
  opacity: 1;
}

.b_video__video {
  width: 100%;
  height: 100%;
  border: none;
}

.b_video__play {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: var(--tr);
  opacity: 0;
}

.b_video--inited .b_video__play {
  opacity: 1;
}

.b_video--has-autoplay .b_video__play {
  display: none;
}

.b_video__play::before {
  content: "";
  --size: 10rem;
  max-width: var(--size);
  min-width: var(--size);
  width: var(--size);
  height: var(--size);
  background-image: url("../img/sklh_common/play.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.45s var(--tr-jolly-enter);
}
@media (max-width: 768px) {
  .b_video__play::before {
    --size: 4rem;
  }
}

@media (any-hover: hover) {
  .b_video__play:hover::before {
    transform: scale(1.1);
  }
}

.b_video--playing.b_video--ready .b_video__play::before {
  opacity: 0;
  transform: scale(1.3);
}

.b_video__player {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.swiper-button-prev {
  margin-top: unset;
  position: static;
  width: initial;
  height: initial;
  line-height: unset;
}

.swiper-button-next {
  margin-top: unset;
  position: static;
  width: initial;
  height: initial;
  line-height: unset;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

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

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

.swiper-pagination {
  display: flex;
  justify-content: space-between;
  max-width: 44rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-pagination-bullet {
  width: 100%;
  display: block;
  height: 0.2rem;
  background-color: rgba(255, 255, 255, 0.2);
  transition: var(--tr);
  margin-left: 0.8rem;
  margin-right: 0.8rem;
  border-radius: 0.2rem;
}
@media (max-width: 768px) {
  .swiper-pagination-bullet {
    margin-left: 0.4rem;
    margin-right: 0.4rem;
  }
}

.swiper-pagination-bullet:first-child {
  margin-left: 0;
}

.swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.swiper-pagination-bullet-active {
  background-color: var(--c-primary);
}

.swiper-button-next:empty,
.swiper-button-prev:empty {
  width: 5rem;
  height: 2.4rem;
  position: relative;
}

.swiper-button-next:empty::before,
.swiper-button-prev:empty::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.swiper-button-prev:empty::before {
  background-image: url("../img/sklh_common/arrow-left.svg");
}

.swiper-button-next:empty::before {
  background-image: url("../img/sklh_common/arrow-right.svg");
}

.swiper-button-next:empty::after,
.swiper-button-prev:empty::after {
  content: "";
  z-index: 1;
  left: 0;
  top: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: blur(0.7rem);
  transition: all 0.3s ease;
  background: rgba(215, 191, 127, 0.8);
}

@media (any-hover: hover) {
  .swiper-button-next:empty:hover::after,
  .swiper-button-prev:empty:hover::after {
    opacity: 0.5;
  }
}

.wysiwyg {
  --wysiwyg-fz: 1rem;
  --accent: var(--c-primary);
  --fg: var(--fg-regular);
  --fw-regular: 300;
  --fw-title: 700;
  --lh-regular: 1.4;
  --ls-regular: -0.8px;
  --bg-marker-ul: var(--fg);
  --size-marker-ul: 0.2em;
  --top-marker-ul: 0.5em;
  --left-marker-ul: -0.85em;
  --fz-ul: 2em;
  --lh-ul: 1.25;
  --ls-ul: var(--ls-regular);
  --margin-bottom-ul: 2em;
  --padding-left-ul: 1.55em;
  --margin-bottom-li: 0.2em;
  --fz-p: 2em;
  --lh-p: var(--lh-regular);
  --ls-p: var(--ls-regular);
  --margin-top-p: 1em;
  --margin-bottom-p: 1em;
  --fz-h1: 5.5em;
  --lh-h1: 1;
  --margin-top-h1: 0.72em;
  --margin-bottom-h1: 0.36em;
  --fz-h2: 5.5em;
  --lh-h2: 1;
  --margin-top-h2: 0.72em;
  --margin-bottom-h2: 0.36em;
  --fz-h3: 4.4em;
  --lh-h3: 1;
  --margin-top-h3: 0.9em;
  --margin-bottom-h3: 0.45em;
  --fz-h4: 3.5em;
  --lh-h4: 1;
  --margin-top-h4: 1.14em;
  --margin-bottom-h4: 0.57em;
  --fz-h5: 2.8em;
  --lh-h5: 1;
  --margin-top-h5: 1.42em;
  --margin-bottom-h5: 0.71em;
  --fz-h6: 2.0em;
  --lh-h6: 1;
  --margin-top-h6: 1em;
  --margin-bottom-h6: 1em;
  font-size: var(--wysiwyg-fz);
  font-weight: var(--fw-regular);
  color: var(--fg-text);
  line-height: var(--lh-regular);
  /* Стили для цитат */
  /* Стили для таблиц */
  /* Стили для кода */
  /* Дополнительные стили, которые могут понадобиться */
}
@media (max-width: 768px) {
  .wysiwyg {
    --ls-regular: -0.48px;
  }
}
@media (max-width: 768px) {
  .wysiwyg {
    --fz-ul: 1.2em;
    --top-marker-ul: 0.3em;
    --left-marker-ul: -0.85em;
  }
}
@media (max-width: 768px) {
  .wysiwyg {
    --fz-p: 1.2em;
    --margin-bottom-p: 1.4em;
  }
}
.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
  font-weight: var(--fw-title);
  color: var(--fg);
}
.wysiwyg h1 {
  font-size: var(--fz-h1);
  line-height: var(--lh-h1);
  margin-top: var(--margin-top-h1);
  margin-bottom: var(--margin-bottom-h1);
}
.wysiwyg h2 {
  font-size: var(--fz-h2);
  line-height: var(--lh-h2);
  margin-top: var(--margin-top-h2);
  margin-bottom: var(--margin-bottom-h2);
}
.wysiwyg h3 {
  font-size: var(--fz-h3);
  line-height: var(--lh-h3);
  margin-top: var(--margin-top-h3);
  margin-bottom: var(--margin-bottom-h3);
}
.wysiwyg h4 {
  font-size: var(--fz-h4);
  line-height: var(--lh-h4);
  margin-top: var(--margin-top-h4);
  margin-bottom: var(--margin-bottom-h4);
}
.wysiwyg h5 {
  font-size: var(--fz-h5);
  line-height: var(--lh-h5);
  margin-top: var(--margin-top-h5);
  margin-bottom: var(--margin-bottom-h5);
}
.wysiwyg h6 {
  font-size: var(--fz-h6);
  line-height: var(--lh-h6);
  margin-top: var(--margin-top-h6);
  margin-bottom: var(--margin-bottom-h6);
}
.wysiwyg p {
  font-size: var(--fz-p);
  line-height: var(--lh-p);
  letter-spacing: var(--ls-p);
  margin-top: var(--margin-top-p);
  margin-bottom: var(--margin-bottom-p);
}
.wysiwyg p + h1,
.wysiwyg p + h2,
.wysiwyg p + h3,
.wysiwyg p + h4,
.wysiwyg p + h5,
.wysiwyg p + h6 {
  margin-top: 1.5em;
}
.wysiwyg > *:first-child {
  margin-top: 0;
}
.wysiwyg > *:last-child {
  margin-bottom: 0;
}
.wysiwyg a {
  color: var(--accent);
  text-decoration: none;
  --border-color: var(--accent);
  background-image: linear-gradient(to bottom, var(--border-color) 0, var(--border-color) 100%);
  background-position: 0 90%;
  background-repeat: repeat-x;
  background-size: 0.1rem 0.1rem;
  text-decoration: none;
}
.wysiwyg blockquote {
  margin: 1.4em 0;
  padding: 1.5em 3em;
  font-size: var(--fz-p);
  border-left: 0.2rem solid var(--fg);
}
@media (max-width: 601px) {
  .wysiwyg blockquote {
    padding: 1.5em 1em;
    border-left: 0.5rem solid var(--fg);
  }
}
.wysiwyg blockquote *:first-child {
  margin-top: 0;
}
.wysiwyg img {
  width: 100%;
  display: block;
  margin-bottom: 7.2rem;
}
@media (max-width: 601px) {
  .wysiwyg img {
    margin-bottom: 3.5rem;
  }
}
.wysiwyg table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.4em;
  margin-bottom: 1.4em;
}
.wysiwyg th,
.wysiwyg td {
  padding: 0.5em;
  border-bottom: 1px solid #f8f8f8;
}
.wysiwyg pre {
  margin-top: 1.4em;
  margin-bottom: 1.4em;
  padding: 0.5em;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  overflow-x: auto;
  font-family: monospace;
}
.wysiwyg code {
  font-family: monospace;
  color: #333;
  background-color: #f8f8f8;
  padding: 0.2em 0.4em;
  border-radius: 3px;
}
.wysiwyg strong {
  font-weight: bold;
}
.wysiwyg em {
  font-style: italic;
}
.wysiwyg ul,
.wysiwyg ol {
  margin-bottom: var(--margin-bottom-ul);
  padding-left: var(--padding-left-ul);
  font-size: var(--fz-ul);
  line-height: var(--lh-ul);
  letter-spacing: var(--ls-ul);
}
.wysiwyg p + ul,
.wysiwyg p + ol {
  margin-top: calc(0px - (var(--margin-bottom-p) / 3.5));
}
.wysiwyg ol li,
.wysiwyg ul li {
  list-style: none;
  position: relative;
}
.wysiwyg ol {
  counter-reset: ol;
}
.wysiwyg ol > li {
  counter-increment: ol;
  list-style: none;
  position: relative;
}
.wysiwyg ol > li::before {
  content: counter(ol) ")";
  position: absolute;
  left: calc(0px - var(--list-gap));
  font-weight: 700;
}
.wysiwyg li {
  list-style: initial;
  margin-bottom: var(--margin-bottom-li);
}
.wysiwyg li:last-child {
  margin-bottom: 0;
}
.wysiwyg ol ul li {
  list-style: initial;
}
.wysiwyg button {
  margin-bottom: 3rem;
}
.wysiwyg img {
  margin-bottom: 3rem;
}
.wysiwyg ol ul li::before,
.wysiwyg ul li::before {
  content: "";
  top: var(--top-marker-ul);
  left: var(--left-marker-ul);
  position: absolute;
  display: block;
  --size: var(--size-marker-ul);
  max-width: var(--size);
  min-width: var(--size);
  width: var(--size);
  height: var(--size);
  border-radius: 9999px;
  background-color: var(--bg-marker-ul);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.wysiwyg ul > ul li::before {
  border-radius: 0;
}

.socials {
  display: flex;
  align-items: center;
  /*  --icon-size: 6rem;
    --icon-gap: 2.3rem;
    --link-padding: 1.4rem;
    --icon-brad: 9999px;

    @media (max-width: $mobile-lg) {
      --icon-size: 4rem;
      --icon-gap: 1.5rem;
      --link-padding: 0.9rem;
    }
  */
}

.socials__link {
  display: block;
  width: var(--icon-size);
  min-width: var(--icon-size);
  max-width: var(--icon-size);
  height: var(--icon-size);
  min-height: var(--icon-size);
  max-height: var(--icon-size);
  margin-right: var(--icon-gap);
  transition: var(--tr-regular);
  border-radius: var(--icon-brad);
  padding: var(--link-padding);
  border: 1px solid var(--c-border);
}

.socials__link:last-child {
  margin-right: 0;
}

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

.socials__icon--whatsapp {
  background: linear-gradient(0deg, #20B038 0%, #60D66A 100%);
}

.socials__icon--telegram {
  background: linear-gradient(180deg, #2AABEE 0%, #229ED9 99.26%);
}

.socials__icon--vk {
  background: linear-gradient(45deg, #025BC7 0.73%, #0089FD 91.97%);
}

.socials {
  --icon-size: 2.4rem;
  --icon-gap: 1.6rem;
  --link-padding: 0;
  --icon-brad: ;
}
@media (max-width: 414px) {
  .socials {
    --icon-size: 4rem;
    --icon-gap: 1.5rem;
    --link-padding: 0.9rem;
  }
}
@media (max-width: 768px) {
  .socials {
    --icon-size: 3.4rem;
    --icon-gap: 0rem;
    --link-padding: 0.8rem;
  }
}

.socials__link {
  position: relative;
  width: auto;
  max-width: 3rem;
}

.socials__icon {
  position: relative;
  z-index: 2;
}

.socials__link::before {
  content: "";
  z-index: 1;
  left: 0;
  top: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: blur(0.7rem);
  transition: all 0.3s ease;
  background: rgba(215, 191, 127, 0.8);
  transform: scale(1.4);
}

@media (any-hover: hover) {
  .socials__link:hover::before {
    opacity: 1;
  }
}

.input {
  /*
  --bg: #fff;
  --fg: #000;
  --fg-placeholder: #d0d0d0;

  --fz: 1.8rem;
  --padding-inline: 1.2em;
  --padding-block: 0.7em;
  --padding: var(--padding-block) var(--padding-inline);
  --letter-spacing: initial;

  --border-color: #dfdfdf;
  --border-width: 0.2rem;
  --border-radius: 0.5rem;
  --border-focus: var(--c-primary);

  --icon-size: 1rem;

  --error-color: #FF3B30;
  --error-fz: 1rem;

  */
  display: block;
  font-size: var(--fz);
  cursor: text;
  font-family: var(--ff-regular);
  transition: all 0.3s ease;
}

.input__area {
  position: relative;
  display: block;
  width: 100%;
  background: var(--bg, #fff);
  font-size: inherit;
  font-family: inherit;
  transition: inherit;
  border-radius: var(--border-radius, 0.5em);
}

.input__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: var(--icon-size);
  max-width: var(--icon-size);
  min-width: var(--icon-size);
  height: var(--icon-size);
  min-height: var(--icon-size);
  opacity: 0;
  pointer-events: none;
}

.input--has-icon .input__icon {
  opacity: 1;
}

.input__field {
  display: block;
  width: 100%;
  padding: var(--padding);
  border: var(--border-width, 0.2rem) solid var(--border-color, #dfdfdf);
  border-radius: var(--border-radius, 0.5em);
  background: transparent;
  color: var(--fg, #333);
  font-size: inherit;
  font-family: inherit;
  transition: inherit;
  letter-spacing: var(--letter-spacing, initial);
}

.input__field::placeholder {
  color: var(--fg-placdeholder);
}

.input__field:focus {
  --border-color: var(--border-focus);
}

.input__field:-webkit-autofill,
.input__field:-webkit-autofill:hover,
.input__field:-webkit-autofill:focus {
  --box-shadow: 0 0 0px 1000px var(--bg-app) inset !important;
  box-shadow: var(--box-shadow);
  -webkit-box-shadow: var(--box-shadow);
}

.input.is-invalid {
  --border-color: var(--error-color, #FF3b30);
  --fg: var(--error-color, #FF3b30);
  --fg-placeholder: var(--error-color, #FF3b30);
}

.input.is-invalid .input__field {
  --border-color: var(--error-color, #FF3b30);
}

.input--has-icon .input__field {
  padding-left: 3.2rem;
}

.input__error {
  display: block;
  padding-left: var(--padding-inline);
  padding-right: var(--padding-inline);
  font-family: sans-serif;
  font-size: var(--error-fz, 1rem);
  color: var(--error-color);
  line-height: 1;
  min-height: var(--error-fz);
  transition: inherit;
  padding-top: 0.5em;
  margin-top: -1.5em;
  opacity: 0;
  max-height: 1em;
}

.is-invalid .input__error {
  margin-top: 0;
  opacity: 1;
  max-height: 10rem;
}

.input {
  --bg: var(--bg-app);
  --fg: var(--fg-regular);
  --fz: 2rem;
  --padding-block: 1.25em;
  --padding-inline: 1.5em;
  --padding: var(--padding-block) var(--padding-inline);
  --letter-spacing: -0.08rem;
  --border-color: var(--fg-regular);
  --border-width: 0.1rem;
  --border-radius: 9999px;
  --border-focus: var(--c-primary);
  --error-color: #FF3B30;
  --error-fz: 1rem;
}
@media (max-width: 768px) {
  .input {
    --fz: 1rem;
    --padding-block: 1.08em;
  }
}

.button-primary,
.button-secondary {
  --padding: var(--padding-block) var(--padding-inline);
  --icon-width: 4rem;
  --icon-height: 2.4rem;
  --icon-gap: 0.8rem;
  --c-disabled: #4B4B4B;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: var(--padding);
  border: var(--border-width) solid var(--border-color);
  background: var(--bg);
  border-radius: var(--border-radius);
  font-family: var(--ff);
  font-size: var(--fz);
  font-weight: var(--fw);
  line-height: var(--lh);
  letter-spacing: var(--ls);
  color: var(--fg);
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-primary {
  /*
  --ff: var(--ff-regular);
  --fz: 2rem;
  --fw: 600;
  --lh: initial;
  --ls: initial;

  --padding-block: 1.25em;
  --padding-inline: 1.5em;

  --fg: #1a1a1a;
  --bg: var(--gradient-gold, linear-gradient(266deg, #C4AD6F 0%, #FFECB8 100%));

  --border-width: 0;
  --border-color: transparent;
  --border-radius: 9999px;
  */
}

.button-secondary {
  /*
  --ff: var(--ff-regular);
  --fz: 2rem;
  --fw: 500;
  --lh: initial;

  --padding-block: 1.25em;
  --padding-inline: 1.5em;

  --fg: var(--c-primary);
  --bg: var(--bg-app);

  --border-width: 0.1rem;
  --border-color: var(--c-primary);
  --border-radius: 9999px;
  */
}

.button__text {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

.button__icon {
  width: var(--icon-width);
  min-width: var(--icon-width);
  height: var(--icon-height);
  min-height: var(--icon-height);
  display: block;
  --icon-color: var(--fg);
  transition: inherit;
}

.button__icon:first-child {
  margin-right: var(--icon-gap);
}

.button__icon:last-child {
  margin-left: var(--icon-gap);
}

/*
.button-primary {
  --button-bg: var(--c-primary);
  --button-bg-hover: var(--c-primary);
  --button-color: var(--fg-on);
  --button-color-hover: var(--fg-on);
  --button-border-color: var(--c-primary);
  --button-border-color-hover: var(--c-primary);
}

.button-second {
  --button-bg: var(--c-second);
  --button-bg-hover: var(--c-second);
  --button-color: var(--fg-on);
  --button-color-hover: var(--fg-on);
  --button-border-color: var(--c-second);
  --button-border-color-hover: var(--c-second);
}

.button-third:not(span) {
  --button-bg: transparent;
  --button-bg-hover: var(--c-second);
  --button-color: #B4B4B4;
  --button-color-hover: var(--fg-on);
  --button-border-color: var(--c-border);
  --button-border-color-hover: var(--c-second);
}


.button-filled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2.8rem 4rem 2.9rem 4rem;

  border: 1px solid var(--button-border-color); //1

  font-size: var(--fz);
  font-weight: var(--fw);
  line-height: var(--lh);

  text-align: center;
  cursor: pointer;

  border-radius: 9999px;
  color: var(--button-color);
  --icon-color: var(--button-color);
  background-color: var(--button-bg, transparent);

  transition: var(--tr-regular);

  @media (max-width: $mobile-xlg) {
    // padding: 1.6rem 3.5rem 2.1rem 3.5rem;
    padding: 1.6rem 3.5rem 1.9rem 3.5rem;
  }
}

.button-filled:hover {
  @media (any-hover:hover) {
    background-color: var(--button-bg-hover);
    color: var(--button-color-hover);
    box-shadow: inset 10.4463px 11.9387px 11.9387px rgba(255, 255, 255, 0.16), inset -7.46167px -2.98467px 11.9387px rgba(255, 255, 255, 0.12);
  }
}

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

.button-stroke {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  padding: 1.5rem 1.5rem 1.7rem;
  border: 1px solid var(--button-border-color);
  background-color: transparent;
  color: var(--fg-regular);
  transition: var(--tr-regular);
  text-align: center;

  @media (max-width: $mobile-xlg) {
    padding: 0.9rem 1.5rem;
  }
}
.button-third.button-stroke {
  background-color: var(--button-bg, transparent);
  color: var(--button-color, var(--fg-regular));
}

.button-stroke:hover {
  @media (any-hover:hover) {
    background-color: var(--button-bg-hover);
    color: var(--button-color-hover);
    box-shadow: inset 10.4463px 11.9387px 11.9387px rgba(255, 255, 255, 0.16), inset -7.46167px -2.98467px 11.9387px rgba(255, 255, 255, 0.12);
  }
}

.button-ghost {
  --fz: 1.6rem;
  --button-bg: transparent;
  --button-color: var(--c-second--dark);
  --button-bg-hover: var(--c-second);
  --button-color-hover: var(--fg-on);

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.3rem 3.1rem 1.5rem 3.1rem;
  font-weight: var(--fw);
  line-height: var(--lh);
  text-align: center;
  cursor: pointer;
  border-radius: 9999px;
  color: var(--button-color);
  transition: var(--tr-regular);
}

.button-ghost::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: var(--button-bg, transparent);
  background-image: url("../img/common/draw-button.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: var(--tr-regular);
}

.button-ghost:hover {
  @media (any-hover:hover) {
    background-color: var(--button-bg-hover);
    color: var(--button-color-hover)
  }
}
.button-ghost:hover::after {
  @media (any-hover:hover) {
    opacity: 0;
  }
}

*/
/*
  Swiper Buttons
 */
/*
.swiper-button-prev {

}
.swiper-button-prev:after {
  color: transparent;
}
.swiper-button-prev .swiper-button__icon {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(-1, 1);
}
.swiper-button-next {

}
.swiper-button-next:after {
  color: transparent;
}
.swiper-button-next .swiper-button__icon {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
.swiper-button-prev .swiper-button__icon,
.swiper-button-next .swiper-button__icon {
  fill: var(--bg-element);
  stroke: var(--c-text-regular);
  transition: var(--tr);
}
.swiper-button-prev:hover .swiper-button__icon,
.swiper-button-next:hover .swiper-button__icon {
  @media (any-hover:hover) {
    fill: var(--c-text-regular);
    stroke: var(--bg-element);
  }
}
*/
.button--wait {
  opacity: 0.6;
  pointer-events: none;
}

.button-primary,
.button-secondary {
  --ff: var(--ff-regular);
  --fz: 2rem;
  --fw: 400;
  --lh: 1;
  --ls: -0.04rem;
  --padding-block: 1.25em;
  --padding-inline: 1.5em;
  min-width: 30rem;
}
@media (max-width: 768px) {
  .button-primary,
  .button-secondary {
    --fz: 1rem;
    min-width: 15rem;
  }
}

.button-primary {
  --fg: #1a1a1a;
  --bg: var(--gradient-gold, linear-gradient(266deg, #C4AD6F 0%, #FFECB8 100%));
  --border-width: 0;
  --border-color: transparent;
  --border-radius: 9999px;
}

.button-secondary {
  --fg: var(--c-primary);
  --bg: var(--bg-app);
  --border-width: 0.1rem;
  --border-color: var(--c-primary);
  --border-radius: 9999px;
}

@media (any-hover: hover) {
  .button-primary:hover,
  .button-secondary:hover {
    box-shadow: 0 0 3rem 0.5rem rgba(223, 183, 172, 0.3);
  }
}

.button-primary:active,
.button-secondary:active {
  --padding-inline: 1.47em;
  --fw: 600;
}

.button-primary.is-disabled,
.button-secondary.is-disabled {
  --fg: var(--c-disabled);
  --border-color: var(--c-disabled) ;
}

.link {
  --icon-width: 4rem;
  --icon-height: 2.4rem;
  --icon-gap: 0.8rem;
  --c-disabled: #4B4B4B;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  --padding: var(--padding-block) var(--padding-inline);
  padding: var(--padding);
  font-family: var(--ff);
  font-size: var(--fz);
  font-weight: var(--fw);
  line-height: var(--lh);
  color: var(--fg);
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: var(--ls);
  background-image: linear-gradient(to bottom, var(--border-color) 0, var(--border-color) 100%);
  background-position: 0 110%;
  background-repeat: repeat-x;
  background-size: 0.1rem 0.1rem;
  text-decoration: none;
}

.link {
  /*
  --ff: var(--ff-regular);
  --fz: 2rem;
  --fw: 500;
  --lh: initial;
  --ls: initial;

  --padding-block: 1.25em;
  --padding-inline: 1.5em;

  --fg: var(--c-primary);
  --bg: var(--bg-app);

  --border-width: 0.1rem;
  --border-color: var(--c-primary);
  --border-radius: 9999px;
  */
}

.link__text {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  transition: inherit;
  padding: var(--text-padding);
}

.link__icon {
  width: var(--icon-width);
  min-width: var(--icon-width);
  height: var(--icon-height);
  min-height: var(--icon-height);
  display: block;
  --icon-color: var(--fg);
  transition: inherit;
}

.link__icon:first-child {
  margin-right: var(--icon-gap);
}

.link__icon:last-child {
  margin-left: var(--icon-gap);
}

.link {
  --ff: var(--ff-regular);
  --fz: 1.8rem;
  --fw: 500;
  --lh: initial;
  --ls: -0.27px;
  --padding-block: 1.25em;
  --padding-inline: 1.5em;
  --padding: 0;
  --text-padding: 0.4em 0 0.44rem 0;
  --fg: var(--c-primary);
  --bg: transparent;
  --border-width: 0.1rem;
  --border-color: var(--fg);
  --border-radius: 0;
}
@media (max-width: 768px) {
  .link {
    --fz: 1rem;
    --lh: 1;
    --ls: -0.15px;
  }
}

@media (any-hover: hover) {
  .link:hover {
    background-position: 0 90%;
    text-shadow: 0 0 15px rgba(215, 191, 127, 0.5), 0 0 10px rgba(215, 191, 127, 0.6);
  }
}

.link:active {
  --fw: 700;
}

/**

radio.html

<label class="radio @@className">
  <input type="radio" name="@@name" class="radio__input" value="@@value" @@attributes >
  <span class="radio__check"></span>
  <p class="radio__label">@@label</p>
</label>

*/
.radio {
  /*
  --size-check: 2.4rem;
  --border-width-check: 0.1rem;
  --border-color-check: var(--fg-regular);
  --margin-right-check: 0.5em;
  --padding-check-active: 1.2rem;
  --height-media: 40rem;

  @media (max-width: $tablet) {
    --height-media: 18rem;
  }

  --border-width-check--checked: 0.7rem;
  --border-color-check--checked: var(--c-primary);


  --fz-label: 2.4rem;
  --fg-label: var(--fg-regular);
  --fw-label: 500;
  --lh-label: 1.15;
  --ls-label: -0.096rem;
  //*/
  font-size: var(--fz-label);
  font-family: var(--ff-regural);
  font-style: normal;
  font-weight: var(--fw-label);
  line-height: var(--lh-label);
  letter-spacing: var(--ls-label);
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  cursor: pointer;
  flex-wrap: wrap;
}

.radio__input {
  appearance: none;
  visibility: hidden;
  opacity: 0;
  position: absolute;
}

.radio__check {
  font-size: inherit;
  position: relative;
  width: var(--size-check);
  min-width: var(--size-check);
  height: var(--size-check);
  min-height: var(--size-check);
  border-radius: var(--size-check);
  border: var(--border-width-check) solid var(--border-color-check);
  margin-right: var(--margin-right-check);
  transition: all 0.3s ease;
}

.radio__input:checked ~ .radio__check {
  border-width: var(--border-width-check--checked);
  border-color: var(--border-color-check--checked);
}

.radio__label {
  flex-basis: 75%;
}

.radio__media {
  display: block;
  flex-basis: 100%;
  margin-bottom: 1.6rem;
  transition: all 0.25s var(--tr-jolly-enter);
  height: var(--height-media);
}

.radio__media-pic {
  display: block;
  height: 100%;
  width: 100%;
  transition: inherit;
}

.radio__media-img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: inherit;
}

.radio__input:checked ~ .radio__media {
  border: 0.1rem solid var(--c-primary);
  padding: var(--padding-check-active);
}

.radio {
  --size-check: 2.4rem;
  --border-width-check: 0.1rem;
  --border-color-check: var(--fg-regular);
  --margin-right-check: 0.5em;
  --padding-check-active: 1.2rem;
  --height-media: 40rem;
  --border-width-check--checked: 0.7rem;
  --border-color-check--checked: var(--c-primary);
  --fz-label: 2.4rem;
  --fg-label: var(--fg-regular);
  --fw-label: 500;
  --lh-label: 1.15;
  --ls-label: -0.096rem;
}
@media (max-width: 768px) {
  .radio {
    --height-media: 18rem;
  }
}
@media (max-width: 768px) {
  .radio {
    --fz-label: 1.6rem;
    --size-check: 2rem;
    --margin-right-check: 0.65em;
  }
}

.form__hidden-fieldset {
  display: none;
}

.form__fieldset {
  display: grid;
  row-gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .form__fieldset {
    row-gap: 1rem;
    margin-bottom: 2rem;
  }
}

.form__submit {
  width: 100%;
}

.modal {
  background: var(--bg-app);
  padding: 4rem;
  padding-bottom: 8rem;
  max-width: 49.5rem;
  width: 100%;
}
@media (max-width: 768px) {
  .modal {
    padding: 1.2rem 2rem 5.3rem;
  }
}

.modal--wide {
  max-width: 123rem;
}

.modal__head {
  margin-bottom: 14rem;
}
@media (max-width: 768px) {
  .modal__head {
    margin-bottom: 6rem;
  }
}

.modal--wide .modal__head {
  margin-bottom: 6rem;
}

.modal__logo {
  max-width: 10.5rem;
}

.modal__title {
  color: var(--fg-regular, #FFF);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: var(--ff-regular);
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.08rem;
}
@media (max-width: 768px) {
  .modal__title {
    font-size: 1.2rem;
    letter-spacing: -0.048rem;
  }
}

.modal__desc {
  color: var(--fg-regular, #FFF);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: var(--ff-regular);
  font-size: 2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.08rem;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .modal__desc {
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    letter-spacing: -0.048rem;
    margin-bottom: 2rem;
  }
}

.modal__form {
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .modal__form {
    max-width: 15rem;
  }
}

.b_modal__closer {
  background-color: transparent;
  top: 4rem;
  right: 4.5rem;
}
@media (max-width: 768px) {
  .b_modal__closer {
    top: 1.8rem;
    right: 1.65rem;
    font-size: 0.9rem;
  }
}

.b_modal__closer::before,
.b_modal__closer::after {
  background-color: var(--c-primary);
  border-radius: 0;
  width: 90%;
  height: 8%;
}

.menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  background: rgba(0, 0, 0, 0.9);
  padding: 3rem 4rem 3rem;
  height: 100%;
  max-width: 40rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  transform: translateX(-100%);
  transition: all 0.45s var(--tr-jolly-enter);
  overflow-y: auto;
}
@media (max-width: 768px) {
  .menu {
    max-width: 100%;
    padding: 2.1rem 2rem;
  }
}

.menu--visible {
  transform: translateX(0);
  pointer-events: initial;
}

.menu__head {
  margin-bottom: 11.6rem;
}
@media (max-width: 1366px) {
  .menu__head {
    margin-bottom: 5.5rem;
  }
}

.menu__body {
  margin-bottom: auto;
  margin-top: auto;
}
@media (max-width: 768px) and (min-width: 601px) {
  .menu__body {
    margin-top: 0;
  }
}

.menu__nav {
  counter-reset: menu-nav;
  margin-top: auto;
  margin-bottom: auto;
  padding-left: 4rem;
}
@media (max-width: 768px) {
  .menu__nav {
    padding-left: 3rem;
  }
}

.menu__logo {
  display: block;
  max-width: 17rem;
}
@media (max-width: 768px) {
  .menu__logo {
    max-width: 10.1rem;
  }
}

.menu__nav-item {
  counter-increment: menu-nav;
  color: var(--fg-regular, #FFF);
  leading-trim: both;
  text-edge: cap;
  font-family: var(--ff-regular);
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: -0.8px;
  margin-bottom: 3rem;
  transition: var(--tr);
}
@media (max-width: 768px) {
  .menu__nav-item {
    font-size: 1.6rem;
    margin-bottom: 1.7rem;
  }
}

.menu__nav-item:last-of-type {
  margin-bottom: 0;
}

.menu__nav-link {
  transition: inherit;
  display: inline-block;
}

@media (any-hover: hover) {
  .menu__nav-link:hover {
    transform: translateX(1rem);
  }
}

.menu__nav-link::before {
  content: counters(menu-nav, ".", decimal-leading-zero);
  color: var(--c-primary);
  transition: var(--tr);
  margin-right: 0.3em;
}

.menu__nav-link:hover::before {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 40px rgba(255, 255, 255, 0.7), 0 0 1rem var(--c-primary), 0 0 70px var(--c-primary), 0 0 30px var(--c-primary);
}

.menu__button-callback {
  width: 95%;
}
@media (max-width: 768px) {
  .menu__button-callback {
    width: 100%;
    font-size: 1rem;
  }
}

.menu__footer {
  margin-top: 11.6rem;
  padding-top: 3.4rem;
  border-top: 0.1rem solid var(--c-primary);
}
@media (max-width: 1366px) {
  .menu__footer {
    margin-top: 5.5rem;
  }
}
@media (max-width: 768px) {
  .menu__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "links contacts" "buttons contacts" "footnote socials";
    gap: 1rem 2rem;
  }
}

.menu__linklist {
  grid-area: links;
  color: var(--c-primary);
  leading-trim: both;
  text-edge: cap;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: var(--ff-regular);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .menu__linklist {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}

.menu__linklist-link {
  transition: var(--tr);
}

@media (any-hover: hover) {
  .menu__linklist-link:hover {
    color: var(--fg-regular);
  }
}

.menu__contacts {
  grid-area: contacts;
  color: var(--fg-regular);
  leading-trim: both;
  text-edge: cap;
  font-family: var(--ff-regular);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: -0.04rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .menu__contacts {
    font-size: 1rem;
    margin-bottom: 0;
  }
}

.menu__contacts-item {
  display: block;
  margin-bottom: 1.2rem;
  transition: var(--tr);
}
@media (max-width: 768px) {
  .menu__contacts-item {
    margin-bottom: 1.3rem;
  }
}

.menu__contacts-item * {
  transition: inherit;
}

@media (any-hover: hover) {
  a.menu__contacts-item:hover {
    color: var(--c-primary);
  }
}

@media (any-hover: hover) {
  a.menu__contacts-item:hover > *:first-child {
    color: var(--fg-regular);
  }
}

.menu__contacts-item:last-child {
  margin-bottom: 0;
}

.menu__contacts-item > *:first-child {
  margin-right: 0.3em;
  display: inline-block;
}

.menu__footbuttons {
  grid-area: buttons;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .menu__footbuttons {
    margin-bottom: 0;
  }
}

.menu__socials {
  margin-bottom: 2rem;
  padding-top: 2rem;
  grid-area: socials;
}
@media (max-width: 768px) {
  .menu__socials {
    margin-bottom: 1rem;
  }
}

.menu__footnotes {
  align-self: center;
  padding-top: 2rem;
  grid-area: footnote;
  color: rgba(255, 255, 255, 0.6);
  leading-trim: both;
  text-edge: cap;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: -0.04rem;
}
@media (max-width: 768px) {
  .menu__footnotes {
    font-size: 1rem;
    padding-top: 2rem;
  }
}

.features-card {
  position: relative;
  counter-increment: card;
  padding-left: 12.6rem;
  padding-right: 0rem;
  min-height: 16.4rem;
}
@media (max-width: 768px) {
  .features-card {
    min-height: initial;
    padding-left: 8.2rem;
  }
}

.features-card::before {
  content: counters(card, ".", decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-primary);
  leading-trim: both;
  text-edge: cap;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: var(--ff-regulavar(--ff-regular));
  font-size: 8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 105.625%;
}
@media (max-width: 768px) {
  .features-card::before {
    top: -1.8rem;
    font-size: 5rem;
    line-height: 169%;
  }
}

.features-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -4rem;
  display: block;
  width: 0.1rem;
  height: 90%;
  background-color: var(--c-primary);
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .features-card::after {
    content: none;
  }
}

@media (min-width: 1101px) {
  .features-card:last-of-type::after,
  .features-card:nth-of-type(3n)::after {
    display: none;
  }
}

.features-card__title {
  margin-bottom: 1.4rem;
  color: var(--fg-regular);
  leading-trim: both;
  text-edge: cap;
  font-family: var(--ff-regular);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 119%;
  letter-spacing: -0.096rem;
}
@media (max-width: 768px) {
  .features-card__title {
    font-size: 1.6rem;
    margin-bottom: 0.5em;
    line-height: 1.15;
    letter-spacing: -0.064rem;
  }
}

@media (max-width: 768px) {
  .features-card__title br {
    display: none;
  }
}

.features-card__desc {
  color: var(--fg-second);
  leading-trim: both;
  text-edge: cap;
  font-family: var(--ff-regular);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.072rem;
}
@media (max-width: 768px) {
  .features-card__desc {
    font-size: 1rem;
    letter-spacing: -0.04rem;
  }
}

.portfolio-gallery-card {
  position: relative;
  z-index: 1;
}

.portfolio-gallery-card .b_video {
  pointer-events: none;
}

.portfolio-gallery-card .b_video:before {
  content: none;
}

.portfolio-gallery-card .b_video__play {
  pointer-events: none;
}

.portfolio-gallery-card__media {
  position: relative;
  height: 28rem;
  transition: var(--tr);
}
@media (max-width: 768px) {
  .portfolio-gallery-card__media {
    height: 11rem;
  }
}

@media (any-hover: hover) {
  .portfolio-gallery-card:hover {
    z-index: 2;
  }
}

.portfolio-gallery-card--active {
  z-index: 2;
}

@media (any-hover: hover) {
  .portfolio-gallery-card:hover .portfolio-gallery-card__media {
    z-index: 4;
    transform: scale(1.2);
  }
}

.portfolio-gallery-card--active .portfolio-gallery-card__media {
  z-index: 4;
  transform: scale(1.2);
}

.portfolio-gallery-card__media::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  transition: all 0.35s var(--tr-jolly-enter);
}

@media (any-hover: hover) {
  .portfolio-gallery-card:hover .portfolio-gallery-card__media::before {
    background-color: rgba(0, 0, 0, 0);
  }
}

.portfolio-gallery-card--active .portfolio-gallery-card__media::before {
  background-color: rgba(0, 0, 0, 0);
}

.portfolio-gallery-card__media-pic,
.portfolio-gallery-card__media-content-hover {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio-gallery-card__media-content-hover > *,
.portfolio-gallery-card__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-gallery-card__media-content-hover {
  pointer-events: none;
  opacity: 0;
  transition: all 0.45s var(--tr-jolly-enter);
}

@media (any-hover: hover) {
  .portfolio-gallery-card:hover .portfolio-gallery-card__media-content-hover {
    opacity: 1;
  }
}

.portfolio-gallery-card--active .portfolio-gallery-card__media-content-hover {
  opacity: 1;
}

.portfolio-gallery-card__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
}

@media (any-hover: hover) {
  .portfolio-gallery-card__link:hover {
    transform: scale(1.2);
  }
}

.portfolio-gallery-card__logo {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  width: 16rem;
  height: 12rem;
  margin: auto;
  pointer-events: none;
  transition: all 0.35s var(--tr-jolly-enter);
}
@media (max-width: 768px) {
  .portfolio-gallery-card__logo {
    width: 6.2rem;
    height: 4.7rem;
  }
}

@media (any-hover: hover) {
  .portfolio-gallery-card:hover .portfolio-gallery-card__logo {
    transform: scale(0.5);
    opacity: 0;
  }
}

.portfolio-gallery-card--active .portfolio-gallery-card__logo {
  transform: scale(0.5);
  opacity: 0;
}

.price-table {
  padding-top: 2rem;
  z-index: 1;
  position: relative;
}
@media (max-width: 601px) {
  .price-table {
    padding-top: 0.6rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 414px) {
  .price-table {
    max-width: 26rem;
  }
}

@media (min-width: 769px) {
  .price-table-swiper {
    overflow: visible;
  }
}

.price-table-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  width: auto;
  min-height: 51rem;
  border-left: 0.1rem solid var(--c-primary);
  border-right: 0.1rem solid var(--c-primary);
  padding-top: 9.2rem;
  padding-bottom: 7.5rem;
  text-align: center;
  transition: all 0.45s var(--tr-jolly-enter);
}
@media (max-width: 992px) {
  .price-table-slide {
    min-height: initial;
    padding-top: 3.7rem;
    padding-bottom: 3.7rem;
  }
}
@media (max-width: 601px) {
  .price-table-slide {
    flex: none;
    border: none;
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
  }
}

.price-table-slide__body {
  transition: inherit;
}

.price-table-slide:first-of-type {
  border-left: none;
}

.price-table-slide:nth-of-type(2) {
  border: none;
}

.price-table-slide:last-of-type {
  border-right: none;
}

@media (any-hover: hover) and (min-width: 769px) {
  .price-table-slide:hover {
    flex: 1.1;
    background: var(--Black, #1A1A1A);
    box-shadow: 0px 0px 100px 0px rgba(1, 1, 1, 0.5);
  }
}

.price-table-swiper {
  border-left: 0.1rem solid var(--c-primary);
  border-right: 0.1rem solid var(--c-primary);
}

.price-table-slide__title {
  margin-bottom: 5.3rem;
  color: var(--fg-regular, #FFF);
  leading-trim: both;
  text-edge: cap;
  font-family: var(--ff-title);
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 40px */
  letter-spacing: 0.08rem;
  transition: all 0.45s var(--tr-jolly-enter);
}
@media (max-width: 768px) {
  .price-table-slide__title {
    margin-bottom: 2.9rem;
    font-size: 2rem;
  }
}

.swiper-initialized .price-table-slide__title {
  opacity: 0;
  transform: translateY(-2rem);
}

.swiper-initialized .swiper-slide-active .price-table-slide__title {
  opacity: 1;
  transform: translateY(0);
}

@media (any-hover: hover) {
  .price-table-slide:hover .price-table-slide__title {
    font-weight: 700;
    animation: minipulse 0.75s;
  }
}

.price-table-slide__cost {
  color: var(--c-primary);
  leading-trim: both;
  text-edge: cap;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: var(--ff-regular);
  font-size: 6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 133.333%;
  transition: all 0.55s var(--tr-jolly-enter);
}
@media (max-width: 768px) {
  .price-table-slide__cost {
    font-size: 3rem;
  }
}
@media (max-width: 601px) {
  .price-table-slide__cost {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
}

.swiper-initialized .price-table-slide__cost {
  opacity: 0;
  transform: scale(0.6);
}

.swiper-initialized .swiper-slide-active .price-table-slide__cost {
  opacity: 1;
  transform: scale(1);
}

.price-table-slide__cost-value {
  margin-right: 0.1em;
}

.price-table-slide__cost .text-sub--square {
  margin-left: 0.2em;
}

.price-table-slide__desc {
  color: var(--fg-second, #BDBDBD);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: var(--ff-regular);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.072rem;
  margin-bottom: 3rem;
  transition: all 0.55s var(--tr-jolly-enter);
}
@media (max-width: 768px) {
  .price-table-slide__desc {
    font-size: 1rem;
    letter-spacing: -0.04rem;
  }
}

.swiper-initialized .price-table-slide__desc {
  opacity: 0;
  transform: translateY(2rem);
}

.swiper-initialized .swiper-slide-active .price-table-slide__desc {
  opacity: 1;
  transform: translateY(0);
}

.price-table-slide__button-more {
  margin-top: auto;
}
@media (max-width: 768px) {
  .price-table-slide__button-more {
    margin-top: 5.3rem;
  }
}

.price-table-slide__button-more::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 601px) {
  .price-table-swiper {
    margin-bottom: 6rem;
  }
}

@media (min-width: 602px) {
  .price-table__pagination {
    display: none;
  }
}
@media (max-width: 601px) {
  .price-table__pagination {
    max-width: 13.6rem;
  }
}

.quiz {
  position: relative;
  font-size: 2.4rem;
}

.quiz-slide {
  display: grid;
  grid-template-columns: 6fr 5fr;
  column-gap: 13.5rem;
}
@media (max-width: 1100px) {
  .quiz-slide {
    column-gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .quiz-slide {
    grid-template-columns: 100%;
  }
}

.quiz-slide__title {
  padding-top: 11.4rem;
  transition: all 0.3s var(--tr-jolly-enter) 0.2s;
}
@media (max-width: 768px) {
  .quiz-slide__title {
    padding-top: 5.2rem;
    margin-bottom: 2.6rem;
  }
}

.swiper-slide .quiz-slide__title {
  opacity: 0;
  transform: translateY(2rem);
}

.swiper-slide-active .quiz-slide__title {
  opacity: 1;
  transform: translateY(0);
}

.quiz-slide__question {
  padding-bottom: 10rem;
}

.quiz--slide-final .quiz-slide__question {
  padding-bottom: 3rem;
}

.quiz-slide__content {
  padding-top: 2rem;
  padding-left: 10.5rem;
  padding-right: 10.5rem;
  display: grid;
  row-gap: 2.7rem;
}
@media (max-width: 1100px) {
  .quiz-slide__content {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }
}
@media (max-width: 768px) {
  .quiz-slide__content {
    padding-left: 3.1rem;
    padding-right: 3.1rem;
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .quiz-slide__media {
    order: -1;
    padding-top: 5rem;
    margin-bottom: -3rem;
    display: none;
  }
}

@media (max-width: 768px) {
  .quiz-slide--has-mobile-image .quiz-slide__media {
    display: block;
  }
}

.quiz-slide__media-pic {
  display: block;
  height: 100%;
}

.quiz-slide__media-img {
  display: block;
  height: 100%;
  object-fit: cover;
}

.quiz-slide--wide {
  grid-template-columns: 100%;
}

.quiz-slide--wide .quiz-slide__content {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.quiz-slide__answer:nth-of-type(1) {
  transition: all 0.3s var(--tr-jolly-enter) 0.05s;
}

.quiz-slide__answer:nth-of-type(2) {
  transition: all 0.3s var(--tr-jolly-enter) 0.1s;
}

.quiz-slide__answer:nth-of-type(3) {
  transition: all 0.3s var(--tr-jolly-enter) 0.15s;
}

.quiz-slide__answer:nth-of-type(4) {
  transition: all 0.3s var(--tr-jolly-enter) 0.2s;
}

.quiz-slide__answer:nth-of-type(5) {
  transition: all 0.3s var(--tr-jolly-enter) 0.25s;
}

.quiz-slide__answer:nth-of-type(6) {
  transition: all 0.3s var(--tr-jolly-enter) 0.3s;
}

.quiz-slide__answer:nth-of-type(7) {
  transition: all 0.3s var(--tr-jolly-enter) 0.35s;
}

.quiz-slide__answer:nth-of-type(8) {
  transition: all 0.3s var(--tr-jolly-enter) 0.4s;
}

.quiz-slide__answer:nth-of-type(9) {
  transition: all 0.3s var(--tr-jolly-enter) 0.45s;
}

.quiz-slide__answer:nth-of-type(10) {
  transition: all 0.3s var(--tr-jolly-enter) 0.5s;
}

.swiper-slide .quiz-slide__answer {
  opacity: 0;
  transform: translateY(2rem);
}

.swiper-slide-active .quiz-slide__answer {
  opacity: 1;
  transform: translateY(0);
}

.quiz-slide__answerlist {
  display: grid;
  row-gap: 2.7rem;
}
@media (max-width: 768px) {
  .quiz-slide__answerlist {
    row-gap: 2.1rem;
  }
}

.quiz-slide__answerlist--horizontal-list {
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1.5rem;
}
@media (max-width: 768px) {
  .quiz-slide__answerlist--horizontal-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.quiz__buttons {
  width: 49%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 768px) {
  .quiz__buttons {
    width: 100%;
  }
}

.quiz__progress {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 50%;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .quiz__progress {
    max-width: 100%;
  }
}

.quiz__progress-pagination {
  max-width: 53rem;
  width: 100%;
  height: 0.3rem;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .quiz__progress-pagination {
    margin-right: 1rem;
  }
}

.quiz__progress-value {
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  font-family: var(--ff-regular);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.096rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .quiz__progress-value {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: -0.064rem;
  }
}

.quiz__progress-value-current {
  color: var(--fg-regular);
}

.quiz__button-next {
  max-width: 30rem;
  width: 100%;
}
@media (max-width: 768px) {
  .quiz__button-next {
    max-width: 18rem;
    -padding-block: 0.4em;
  }
}

.quiz__buttons {
  transition: var(--tr);
}

.quiz--slide-final .b_swiper__buttons {
  opacity: 0;
  pointer-events: none;
}

.problems-carousel {
  counter-reset: slide;
  position: relative;
}

.swiper-creative .problems-carousel-slide.swiper-slide {
  overflow: visible;
}

.problems-carousel-slide {
  counter-increment: slide;
  position: relative;
  display: grid;
  grid-template-columns: 5fr 7fr;
  column-gap: 3rem;
}
@media (max-width: 768px) {
  .problems-carousel-slide {
    display: block;
  }
}

.problems-carousel-slide::after {
  content: counters(slide, ".", decimal-leading-zero);
  position: absolute;
  right: 0;
  top: 0;
  color: var(--c-primary);
  text-align: right;
  leading-trim: both;
  text-edge: cap;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: var(--ff-regular);
  font-size: 8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 105.625%;
}
@media (max-width: 768px) {
  .problems-carousel-slide::after {
    right: unset;
    left: 0;
    font-size: 4rem;
  }
}

.problems-carousel-slide__media {
  position: relative;
  max-width: 45.2rem;
  width: 100%;
  height: 48rem;
  filter: drop-shadow(0px 0px 100px rgba(1, 1, 1, 0.5));
  -webkit-filter: drop-shadow(0px 0px 100px rgba(1, 1, 1, 0.5));
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media (max-width: 992px) and (min-width: 601px) {
  .problems-carousel-slide__media {
    height: 37rem;
  }
}
@media (max-width: 768px) {
  .problems-carousel-slide__media {
    position: absolute;
    right: 0;
    top: 0;
    width: 15rem;
    height: 16rem;
    filter: none;
  }
}

.problems-carousel-slide__media::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 9.7rem;
  height: 15.2rem;
  background-image: url("../img/sklh_problems/quesions.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s var(--tr-jolly-enter) 0.2s;
  transform-origin: bottom left;
}
@media (max-width: 768px) {
  .problems-carousel-slide__media::after {
    width: 3.3rem;
    height: 5rem;
    top: 0.4rem;
  }
}

.swiper-slide .problems-carousel-slide__media::after {
  opacity: 0;
  transform: translate(2rem, -2rem) scale(0.8);
}

.swiper-slide-active .problems-carousel-slide__media::after {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.problems-carousel-slide__media-pic {
  width: 80%;
  height: 90%;
  transition: all 0.3s var(--tr-jolly-enter) 0.2s;
  transform-origin: left;
}
@media (max-width: 768px) {
  .problems-carousel-slide__media-pic {
    transform-origin: right;
  }
}

.swiper-slide .problems-carousel-slide__media-pic {
  opacity: 0;
  transform: translateY(-2rem) scale(0.8);
}

.swiper-slide-active .problems-carousel-slide__media-pic {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.problems-carousel-slide__media-img {
  width: 100%;
  height: 100%;
}

.problems-carousel-slide__content {
  padding-top: 12rem;
  padding-right: 10rem;
}
@media (max-width: 992px) and (min-width: 601px) {
  .problems-carousel-slide__content {
    padding-top: 5rem;
    padding-right: 5rem;
  }
}
@media (max-width: 768px) {
  .problems-carousel-slide__content {
    padding-top: 9.5rem;
    padding-right: 0;
  }
}

.problems-carousel-slide__title {
  margin-bottom: 5.6rem;
  color: var(--fg-regular);
  leading-trim: both;
  text-edge: cap;
  font-family: var(--ff-regular);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.096rem;
  transition: all 0.3s var(--tr-jolly-enter) 0.2s;
}
@media (max-width: 768px) {
  .problems-carousel-slide__title {
    font-size: 1.6rem;
    letter-spacing: -0.064rem;
    margin-bottom: 2rem;
    max-width: 40%;
  }
}

@media (max-width: 768px) {
  .problems-carousel-slide__title br {
    display: none;
  }
}

.swiper-slide .problems-carousel-slide__title {
  opacity: 0;
  transform: translateY(2rem);
}

.swiper-slide-active .problems-carousel-slide__title {
  opacity: 1;
  transform: translateY(0);
}

.problems-carousel-slide__desc {
  padding-left: 7rem;
  transition: all 0.3s var(--tr-jolly-enter) 0.25s;
}
@media (max-width: 768px) {
  .problems-carousel-slide__desc {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .problems-carousel-slide__desc p:first-child {
    --margin-bottom-p: 0;
  }
}

@media (max-width: 768px) {
  .problems-carousel-slide__desc p:first-child + p {
    --margin-top-p: 0;
  }
}

.swiper-slide .problems-carousel-slide__desc {
  opacity: 0;
  transform: translateY(2rem);
}

.swiper-slide-active .problems-carousel-slide__desc {
  opacity: 1;
  transform: translateY(0);
}

.tabs__tablist {
  margin-top: -2rem;
  margin-bottom: 10.5rem;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1100px) {
  .tabs__tablist {
    margin-top: -1rem;
    justify-content: flex-start;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .tabs__tablist {
    margin-bottom: 3.2rem;
  }
}

.aggregated-reviews .tabs__tablist {
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tabs__panel {
  max-height: 0.01rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.45s var(--tr-jolly-enter);
  transform: scale(0.7);
}

.tabs__panel.active {
  max-height: 100rem;
  pointer-events: initial;
}

.tabs__panel.tab--animated {
  opacity: 1;
  transform: scale(1);
}

.tabs__button {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
@media (max-width: 768px) {
  .tabs__button {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}

.tabs__button-icon-horizontal {
  height: 2.4rem;
}
@media (max-width: 768px) {
  .tabs__button-icon-horizontal {
    height: 2rem;
  }
}

.aggregated-reviews .tabs__button {
  margin-bottom: 0.5em;
}

.aggregated-reviews .tabs__button-icon-horizontal {
  filter: contrast(0.1) grayscale(1);
  -webkit-filter: contrast(0.1) grayscale(1);
  transition: var(--tr);
}

@media (any-hover: hover) {
  .aggregated-reviews .tabs__button:hover .tabs__button-icon-horizontal {
    filter: contrast(1) grayscale(0);
    -webkit-filter: contrast(1) grayscale(0);
  }
}

.aggregated-reviews .active .tabs__button-icon-horizontal {
  filter: contrast(1) grayscale(0);
  -webkit-filter: contrast(1) grayscale(0);
}

.team-card {
  display: grid;
  grid-template-columns: 42rem auto;
  grid-template-areas: "media head" "media body" "media body";
  align-items: start;
  column-gap: 11rem;
  row-gap: 2.8rem;
}
@media (max-width: 1100px) {
  .team-card {
    grid-template-columns: 30rem auto;
    column-gap: 4rem;
  }
}
@media (max-width: 768px) {
  .team-card {
    grid-template-columns: 20rem auto;
    column-gap: 2rem;
  }
}
@media (max-width: 601px) {
  .team-card {
    grid-template-columns: 100%;
    grid-template-areas: "head" "media" "body";
    row-gap: 2.4rem;
  }
}

.team-card__media {
  grid-area: media;
  max-width: 42rem;
}
@media (max-width: 768px) {
  .team-card__media {
    max-width: 14.8rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.team-card__head {
  grid-area: head;
  padding-top: 5.5rem;
}
@media (max-width: 1100px) {
  .team-card__head {
    padding-top: 2.5rem;
  }
}
@media (max-width: 768px) {
  .team-card__head {
    padding-top: 0;
  }
}

.team-card__name {
  color: var(--c-primary);
  leading-trim: both;
  text-edge: cap;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: var(--ff-regular);
  font-size: 6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 133.333%;
  margin-bottom: 1.6rem;
  transition: all 0.3s var(--tr-jolly-enter) 0.2s;
}
@media (max-width: 1100px) {
  .team-card__name {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .team-card__name {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
}

.swiper-slide .team-card__name {
  opacity: 0;
  transform: translateY(2rem);
}

.swiper-slide-active .team-card__name {
  opacity: 1;
  transform: translateY(0);
}

.team-card__subtitle {
  color: var(--fg-regular);
  leading-trim: both;
  text-edge: cap;
  font-family: var(--ff-regular);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.096rem;
  transition: all 0.3s var(--tr-jolly-enter) 0.25s;
}
@media (max-width: 768px) {
  .team-card__subtitle {
    font-size: 1.6rem;
  }
}

.swiper-slide .team-card__subtitle {
  opacity: 0;
  transform: translateY(2rem);
}

.swiper-slide-active .team-card__subtitle {
  opacity: 1;
  transform: translateY(0);
}

.team-card__body {
  grid-area: body;
  padding-left: 6.5rem;
  padding-right: 6.5rem;
  padding-bottom: 6rem;
  transition: all 0.3s var(--tr-jolly-enter) 0.3s;
}
@media (max-width: 1100px) {
  .team-card__body {
    padding-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .team-card__body {
    padding-left: 2rem;
    padding-right: 0;
  }
}
@media (max-width: 414px) {
  .team-card__body {
    padding-top: 0.4rem;
    padding-left: 8.4rem;
    padding-right: 0;
  }
}

.swiper-slide .team-card__body {
  opacity: 0;
  transform: translateY(2rem);
}

.swiper-slide-active .team-card__body {
  opacity: 1;
  transform: translateY(0);
}

.blinds-carousel {
  padding-top: 2rem;
  z-index: 1;
  position: relative;
}
@media (max-width: 601px) {
  .blinds-carousel {
    padding-top: 0.6rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 414px) {
  .blinds-carousel {
    max-width: 28rem;
  }
}

.blinds-carousel-slide {
  transition: all 0.45s var(--tr-jolly-enter);
}

.blinds-carousel-slide:first-of-type {
  border-left: none;
}

.blinds-carousel-slide:nth-of-type(2n+2) {
  border-left: 0.1rem solid var(--c-primary);
  border-right: 0.1rem solid var(--c-primary);
}

.blinds-carousel-slide:last-of-type {
  border-right: none;
}

@media (any-hover: hover) and (min-width: 769px) {
  .blinds-carousel-slide:hover {
    background: var(--Black, #1A1A1A);
    box-shadow: 0px 0px 100px 0px rgba(1, 1, 1, 0.5);
  }
}

.blinds-carousel-swiper {
  border-left: 0.1rem solid var(--c-primary);
  border-right: 0.1rem solid var(--c-primary);
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .blinds-carousel-swiper {
    margin-bottom: 5.5rem;
  }
}

@media (max-width: 601px) {
  .blinds-carousel__pagination {
    max-width: 23.6rem;
  }
}

@media (max-width: 768px) {
  .blinds-carousel__button-prev,
  .blinds-carousel__button-next {
    display: none;
  }
}

.review-card {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 48rem;
}
@media (max-width: 992px) {
  .review-card {
    min-height: initial;
    padding: 2rem;
  }
}

.modal .review-card {
  padding: 0;
}

.review-card__body {
  transition: inherit;
}

.review-card__button-more::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

.review-card__source {
  display: inline-block;
  height: 3rem;
  width: auto;
  margin-bottom: 2.7rem;
  transition: var(--tr);
  filter: contrast(0.1) grayscale(1);
  -webkit-filter: contrast(0.1) grayscale(1);
}
@media (max-width: 768px) {
  .review-card__source {
    height: 1.6rem;
    margin-bottom: 1.6rem;
  }
}

@media (any-hover: hover) {
  .review-card__source:hover {
    filter: contrast(1) grayscale(0);
    -webkit-filter: contrast(1) grayscale(0);
  }
}

.review-card__source-img {
  display: block;
  width: 100%;
  height: 100%;
}

.review-card__name {
  color: var(--c-primary);
  font-family: var(--ff-regular);
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .review-card__name {
    font-size: 2.4rem;
    margin-bottom: 0.7rem;
  }
}

.review-card__date {
  margin-bottom: 1.2rem;
  color: var(--fg-second, #BDBDBD);
  font-family: var(--ff-regular);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.072rem;
}
@media (max-width: 768px) {
  .review-card__date {
    font-size: 1.2rem;
    letter-spacing: -0.048rem;
    margin-bottom: 1rem;
  }
}

.review-card__rating {
  --star-size: 2.4rem;
  --star-gap: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .review-card__rating {
    margin-bottom: 3rem;
  }
}

.review-card__rating-star {
  --size: var(--star-size);
  display: block;
  min-width: var(--size);
  width: var(--size);
  max-width: var(--size);
  min-height: var(--size);
  height: var(--size);
  margin-right: var(--star-gap);
}

.review-card__rating-star:last-child {
  margin-right: 0;
}

.review-card__title {
  margin-bottom: 1.7rem;
  font-family: var(--ff-regular);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.096rem;
}
@media (max-width: 768px) {
  .review-card__title {
    font-size: 1.6rem;
    letter-spacing: -0.064rem;
    margin-bottom: 0.9rem;
  }
}

.review-card__feedback {
  margin-bottom: 2rem;
  color: var(--fg-second, #BDBDBD);
  font-family: var(--ff-regular);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.072rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 992px) {
  .review-card__feedback {
    padding-bottom: 2.6rem;
    font-size: 1.2rem;
    letter-spacing: -0.048rem;
  }
}

.review-card__feedback.wysiwyg {
  -webkit-line-clamp: unset;
}

.review-card__foot {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.review-card__button-more {
  text-align: center;
}

/*
    <button class="burger header__burger">
      <span class="burger__line"></span>
      <span class="burger__line"></span>
      <span class="burger__line"></span>
    </button>
*/
.burger {
  --line-width: 47.5%;
  --line-height: 3px;
  --line-offset: 0.8rem;
  --c-burger-line: #000;
  position: relative;
  width: var(--burger-width, 40px);
  height: var(--burger-height, 40px);
  transition: var(--tr);
  margin-left: 3rem;
  cursor: pointer;
}
@media (min-width: 993px) {
  .burger {
    display: none;
  }
}

.burger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: var(--line-width, 47.5%);
  height: var(--line-height, 0.2rem);
  background: var(--c-burger-line);
  transition: var(--tr);
  border-radius: 2rem;
  pointer-events: none;
}

.burger__line:nth-child(1) {
  transform: translate(-50%, calc(-50% - var(--line-offset)));
}

.burger__line:nth-child(2) {
  transform: translate(-50%, calc(-50% + 0px));
}

.burger__line:nth-child(3) {
  transform: translate(-50%, calc(-50% + var(--line-offset)));
  transform-origin: left;
}

.burger.is-active .burger__line:nth-child(1) {
  transform: translate(-50%, calc(-50% - 0px)) rotate(45deg);
}

.burger.is-active .burger__line:nth-child(2) {
  width: 0;
}

.burger.is-active .burger__line:nth-child(3) {
  transform: translate(-50%, calc(-50% - 0px)) rotate(-45deg);
  transform-origin: unset;
}

.header {
  background: rgba(0, 0, 0, 0.7);
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  margin-bottom: -10.3rem;
}
@media (max-width: 768px) {
  .header {
    margin-bottom: -7.795rem;
  }
}

.header--no-overlap {
  margin-bottom: 0;
}

.header .burger {
  --c-burger-line: var(--c-primary);
  --line-width: 100%;
  --line-offset: 1.1rem;
  --burger-width: 4rem;
  --burger-height: 2.8rem;
  margin-left: 0;
  margin-top: 0.7rem;
  margin-right: 1rem;
  z-index: 3;
  transition: all 0.3s ease;
}
@media (min-width: 993px) {
  .header .burger {
    display: block;
  }
}
@media (max-width: 992px) {
  .header .burger {
    position: absolute;
    left: var(--p-container);
  }
}
@media (max-width: 768px) {
  .header .burger {
    --burger-width: 2.8rem;
    --line-height: 2px;
    --line-offset: 0.8rem;
    margin-top: 0;
  }
}
@media (max-width: 601px) {
  .header .burger {
    --burger-width: 2rem;
    --line-height: 1px;
  }
}

@media (max-width: 992px) {
  .header--burger-opened .burger {
    left: 34rem;
    transition: all 0.7s ease;
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .header--burger-opened .burger {
    left: 89.5%;
    transition: all 0.55s ease;
  }
}

.header__container {
  padding-top: 2.6rem;
  padding-bottom: 3.5rem;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header__container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.header__socials {
  margin-left: auto;
}
@media (max-width: 992px) {
  .header__socials {
    display: none;
  }
}

.header__logo {
  margin-left: auto;
  margin-right: auto;
  max-width: 17rem;
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 10.1rem;
  }
}

.header__menu {
  margin-left: 4rem;
  margin-right: 3.6rem;
}
@media (max-width: 768px) {
  .header__menu {
    display: none;
  }
}

.header__menu-link {
  --text-padding: 1rem 0 0 0;
}

.header__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .header__contacts {
    text-align: right;
    align-items: flex-end;
  }
}

.header__contacts-item {
  leading-trim: both;
  text-edge: cap;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  transition: all 0.4s var(--tr-jolly-enter);
}
@media (max-width: 768px) {
  .header__contacts-item {
    font-size: 0.8rem;
    letter-spacing: 0.8px;
  }
}

@media (any-hover: hover) {
  .header__contacts-item:hover {
    color: var(--c-primary);
  }
}

.header__button-callback {
  font-size: 1.8rem;
  --text-padding: 0;
}
@media (max-width: 768px) {
  .header__button-callback {
    font-size: 1rem;
  }
}

.hero {
  position: relative;
  padding-top: 21rem;
  min-height: 101.6rem;
}
@media (max-width: 1100px) {
  .hero {
    min-height: 73.4rem;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 16.5rem;
    min-height: 63.4rem;
  }
}

@media (min-width: 769px) {
  .hero--archive-reviews {
    padding-top: 36.5rem;
  }
}
@media (max-width: 768px) {
  .hero--archive-reviews {
    padding-top: 8.5rem;
    padding-bottom: 4rem;
    min-height: 32rem;
  }
}

.hero__container {
  position: relative;
  z-index: 2;
}

.hero__bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  pointer-events: none;
}

.hero__bg--dimmed::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .hero__bg--dimmed::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  }
}

@media (max-width: 768px) {
  .hero__title {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .hero:not(.hero--portfolio):not(.hero--archive-reviews) .hero__title br {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero--portfolio .hero__title {
    letter-spacing: 0.05rem;
  }
}

.hero__offer {
  position: relative;
  z-index: 2;
}

.hero--portfolio .hero__offer {
  max-width: 60rem;
}

.hero__caption {
  margin-bottom: 5.4rem;
  margin-top: -3rem;
  font-size: 2rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .hero__caption {
    font-size: 1.6rem;
    margin-top: 0;
    max-width: 24rem;
    line-height: 1.4;
    margin-bottom: 3.4rem;
  }
}
@media (max-width: 601px) {
  .hero__caption {
    font-size: 1.2rem;
  }
}

@media (max-width: 601px) {
  .hero__caption br {
    display: none;
  }
}

.hero__summary {
  font-size: 1rem;
  font-weight: 300;
  line-height: 140%;
  --ls-regular: -0.08rem;
  margin-bottom: 7.4rem;
}
@media (max-width: 768px) {
  .hero__summary {
    max-width: 24rem;
    --ls-regular: -0.048rem;
    margin-bottom: 1.4rem;
  }
}

.features {
  padding-bottom: 18.3rem;
  overflow: hidden;
  background: linear-gradient(180deg, #000 0%, #1A1A1A 100%);
}
@media (max-width: 768px) {
  .features {
    padding-top: 2.3rem;
    padding-bottom: 5.4rem;
  }
}

@media (max-width: 768px) {
  .features__container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.features__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 6.8rem;
  row-gap: 10.8rem;
}
@media (max-width: 1100px) {
  .features__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .features__gallery {
    grid-template-columns: 100%;
    row-gap: 3.5rem;
  }
}

.features__gallery-button {
  align-self: center;
  justify-self: end;
  min-width: 30rem;
}
@media (max-width: 1100px) {
  .features__gallery-button {
    justify-self: start;
  }
}
@media (max-width: 768px) {
  .features__gallery-button {
    min-width: initial;
    justify-self: center;
    min-width: 15rem;
  }
}

@media (min-width: 769px) {
  .portfolio-gallery {
    padding-bottom: 18rem;
  }
}

.features + .portfolio-gallery {
  padding-top: 0;
}

.portfolio-gallery__showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  margin-bottom: 8rem;
}
@media (max-width: 1100px) {
  .portfolio-gallery__showcase {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 0.5rem;
    margin-bottom: 1.6rem;
  }
}

@media (max-width: 768px) {
  .portfolio-gallery__buttons {
    display: grid;
    justify-items: center;
    padding-bottom: 0;
  }
}

.price {
  padding-top: 12rem;
  background: linear-gradient(113deg, #303030 11.83%, #101010 87.31%);
  box-shadow: 0px 3.0570545197px 3.6409862041px rgba(0, 0, 0, 0.17), 0px 7.7315201759px 9.2083272934px rgba(0, 0, 0, 0.25), 0px 15.7715759277px 18.7841243744px rgba(0, 0, 0, 0.31), 0px 32.4864654541px 38.6917457581px rgba(0, 0, 0, 0.39), 0px 89px 106px rgba(0, 0, 0, 0.56);
}
@media (max-width: 1100px) and (min-width: 769px) {
  .price {
    padding-bottom: 12rem;
  }
}
@media (max-width: 768px) {
  .price {
    padding-top: 5.4rem;
  }
}

.narrative-cta__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3rem;
  position: relative;
}
@media (max-width: 768px) {
  .narrative-cta__container {
    grid-template-columns: 100%;
  }
}

@media (min-width: 769px) {
  .narrative-cta--small-media .narrative-cta__container {
    grid-template-columns: 2fr 1fr;
  }
}

@media (max-width: 768px) {
  .narrative-cta--mobile-vertical .narrative-cta__container {
    grid-template-columns: 100%;
  }
}

@media (max-width: 768px) {
  .narrative-cta__title {
    max-width: 60%;
  }
}
@media (max-width: 601px) {
  .narrative-cta__title {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .narrative-cta__title br:not([class]) {
    display: none;
  }
}

.narrative-cta__desc {
  margin-top: -1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .narrative-cta__desc {
    max-width: 60%;
    margin-top: -0.7rem;
    margin-bottom: 2.5rem;
  }
}

.narrative-cta--mobile-vertical .narrative-cta__desc {
  max-width: 100%;
}

.narrative-cta--mobile-vertical .b_video {
  margin-bottom: 3rem;
}
@media (min-width: 769px) {
  .narrative-cta--mobile-vertical .b_video {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    padding-top: 26.4%;
  }
}
@media (max-width: 768px) {
  .narrative-cta--mobile-vertical .b_video {
    padding-top: 54.4%;
  }
}
@media (max-width: 601px) {
  .narrative-cta--mobile-vertical .b_video {
    padding-top: 66.4%;
  }
}

@media (max-width: 768px) {
  .narrative-cta--small-media .narrative-cta__desc {
    max-width: 70%;
  }
}

.narrative-cta__media {
  max-height: 53.5rem;
  margin-left: -2rem;
  margin-top: -1rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .narrative-cta:not(.narrative-cta--mobile-vertical) .narrative-cta__media {
    position: absolute;
    height: 14rem;
    right: 2.1rem;
    top: 64%;
    bottom: 0;
    transform: translateY(-50%);
  }
}

.narrative-cta--small-media .narrative-cta__media {
  top: 75%;
}

@media (max-width: 768px) {
  .narrative-cta--mobile-vertical .narrative-cta__media {
    margin-top: 0;
    margin-left: 0;
  }
}

.narrative-cta__media-pic {
  height: 100%;
  max-height: inherit;
}

.narrative-cta__media-img {
  height: 100%;
  max-height: inherit;
}

.narrative-cta__buttons:last-child {
  margin-top: 9.2rem;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .narrative-cta__buttons:last-child {
    margin-top: 3.4rem;
  }
}

.narrative-cta__button {
  min-width: 30rem;
}
@media (max-width: 768px) {
  .narrative-cta__button {
    min-width: 15rem;
  }
}

.narrative-cta__desc-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3rem;
}
@media (max-width: 768px) {
  .narrative-cta__desc-group {
    column-gap: 2rem;
  }
}

.narrative-cta__desc-group:last-child {
  margin-bottom: -3rem;
}

.narrative-cta__desc-group-item *:first-child {
  margin-top: 0;
}

.narrative-cta__desc-group-item *:last-child {
  margin-bottom: 0;
}

.section-quiz {
  padding-top: 13.5rem;
  padding-bottom: 14rem;
  background: linear-gradient(113deg, #303030 11.83%, #101010 87.31%);
  box-shadow: 0px 3.0570545197px 3.6409862041px rgba(0, 0, 0, 0.17), 0px 7.7315201759px 9.2083272934px rgba(0, 0, 0, 0.25), 0px 15.7715759277px 18.7841243744px rgba(0, 0, 0, 0.31), 0px 32.4864654541px 38.6917457581px rgba(0, 0, 0, 0.39), 0px 89px 106px rgba(0, 0, 0, 0.56);
  transition: all 0.45s var(--tr-jolly-enter);
}
@media (max-width: 768px) {
  .section-quiz {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
}

.problems {
  padding-top: 12rem;
  padding-bottom: 12rem;
  background: linear-gradient(113deg, #303030 11.83%, #101010 87.31%);
  overflow-x: hidden;
  box-shadow: 0px 3.0570545197px 3.6409862041px rgba(0, 0, 0, 0.17), 0px 7.7315201759px 9.2083272934px rgba(0, 0, 0, 0.25), 0px 15.7715759277px 18.7841243744px rgba(0, 0, 0, 0.31), 0px 32.4864654541px 38.6917457581px rgba(0, 0, 0, 0.39), 0px 89px 106px rgba(0, 0, 0, 0.56);
}
@media (max-width: 768px) {
  .problems {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (max-width: 992px) and (min-width: 601px) {
  .problems__title {
    margin-bottom: 2rem;
  }
}

.problems__desc {
  margin-bottom: 9rem;
}
@media (max-width: 992px) and (min-width: 601px) {
  .problems__desc {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .problems__desc {
    margin-top: -0.8em;
    margin-bottom: 5rem;
  }
}

.problems-carousel {
  position: relative;
}

.problems-carousel__swiper {
  margin-bottom: 10rem;
  overflow: visible;
}
@media (max-width: 1100px) {
  .problems-carousel__swiper {
    margin-bottom: 6.2rem;
  }
}

@media (max-width: 768px) {
  .problems-carousel__button-prev,
  .problems-carousel__button-next {
    display: none;
  }
}

@media (max-width: 768px) {
  .problems-carousel__nav {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}

.team {
  padding-top: 11rem;
  padding-bottom: 11rem;
  background: linear-gradient(113deg, #303030 11.83%, #101010 87.31%);
  transition: all 0.45s var(--tr-jolly-enter);
  box-shadow: 0px 3.0570545197px 3.6409862041px rgba(0, 0, 0, 0.17), 0px 7.7315201759px 9.2083272934px rgba(0, 0, 0, 0.25), 0px 15.7715759277px 18.7841243744px rgba(0, 0, 0, 0.31), 0px 32.4864654541px 38.6917457581px rgba(0, 0, 0, 0.39), 0px 89px 106px rgba(0, 0, 0, 0.56);
}
@media (max-width: 768px) {
  .team {
    padding-top: 5.6rem;
    padding-bottom: 2.6rem;
  }
}

.team__container {
  overflow: hidden;
}

.team__tabs .tabs__button {
  margin-left: 4.4rem;
  margin-right: 4.4rem;
}
@media (max-width: 768px) {
  .team__tabs .tabs__button {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.team__tabs .tabs__button:first-of-type {
  margin-left: 0;
}

.team__tabs .tabs__button:last-of-type {
  margin-right: 0;
}

.team__tabs .tabs__button.active {
  background-position: 0 90%;
  text-shadow: 0 0 15px rgba(215, 191, 127, 0.5), 0 0 10px rgba(215, 191, 127, 0.6);
}

.team-carousel {
  position: relative;
  overflow: hidden;
  padding-bottom: 1rem;
}

.team-carousel__swiper {
  overflow: visible;
  margin-bottom: 8rem;
}
@media (max-width: 1100px) {
  .team-carousel__swiper {
    margin-bottom: 1.6rem;
  }
}

.team-carousel__swiper .swiper-wrapper {
  overflow: inherit;
}

@media (max-width: 768px) {
  .team-carousel__button-prev,
  .team-carousel__button-next {
    display: none;
  }
}

@media (max-width: 768px) {
  .team-carousel__nav {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}

.contacts {
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .contacts {
    padding-bottom: 3rem;
  }
}

.contacts__container {
  border-top: 0.1rem solid var(--c-primary);
  padding-top: 12rem;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .contacts__container {
    padding-top: 5.6rem;
  }
}

.contacts__head-socials {
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .contacts__head-socials {
    display: none;
  }
}

@media (min-width: 769px) {
  .contacts__title {
    margin-bottom: 13rem;
  }
}

.contacts__linklist {
  grid-area: links;
  color: var(--c-primary);
  leading-trim: both;
  text-edge: cap;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: var(--ff-regular);
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 133.3%;
  margin-bottom: 7rem;
}
@media (max-width: 768px) {
  .contacts__linklist {
    font-size: 2rem;
    margin-bottom: 1.9rem;
  }
}

.contacts__linklist-link {
  transition: var(--tr);
}

@media (any-hover: hover) {
  .contacts__linklist-link:hover {
    color: var(--fg-regular);
  }
}

.contacts__entries {
  grid-area: contacts;
  color: var(--fg-regular);
  leading-trim: both;
  text-edge: cap;
  font-family: var(--ff-regular);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: -0.04rem;
  margin-bottom: 10rem;
  max-width: 46rem;
}
@media (max-width: 768px) {
  .contacts__entries {
    font-size: 1.6rem;
    letter-spacing: -0.064rem;
    line-height: 125%;
    margin-bottom: 3.3rem;
  }
}

.contacts__entries-item {
  display: block;
  margin-bottom: 2rem;
  transition: var(--tr);
}
@media (max-width: 768px) {
  .contacts__entries-item {
    margin-bottom: 1.1rem;
  }
}

.contacts__entries-item * {
  transition: inherit;
}

@media (any-hover: hover) {
  a.contacts__entries-item:hover {
    color: var(--c-primary);
  }
}

@media (any-hover: hover) {
  a.contacts__entries-item:hover > *:first-child {
    color: var(--fg-regular);
  }
}

.contacts__entries-item:last-child {
  margin-bottom: 0;
}

.contacts__entries-item > *:first-child {
  margin-right: 0.3em;
  display: inline-block;
}

.contacts__footer {
  margin-bottom: 12.5rem;
}
@media (max-width: 768px) {
  .contacts__footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 16rem;
  }
}

@media (min-width: 769px) {
  .contacts__footer-socials {
    display: none;
  }
}
@media (max-width: 768px) {
  .contacts__footer-socials {
    justify-self: end;
  }
}

@media (min-width: 769px) {
  .contacts__button-callback {
    min-width: 30rem;
  }
}

.contacts__footnotes {
  color: rgba(255, 255, 255, 0.6);
  leading-trim: both;
  text-edge: cap;
  font-family: var(--ff-regular);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: -0.072rem;
}
@media (max-width: 768px) {
  .contacts__footnotes {
    letter-spacing: -0.04rem;
    font-size: 1rem;
  }
}

.contacts__list {
  position: relative;
  z-index: 2;
}

.contacts__media {
  position: absolute;
  width: 108rem;
  display: block;
  right: 0;
  bottom: 0;
  mix-blend-mode: difference;
  -webkit-mix-blend-mode: difference;
  z-index: 1;
}
@media (max-width: 1100px) {
  .contacts__media {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .contacts__media {
    width: 80%;
  }
}

.footer {
  position: relative;
}

.article {
  padding-top: 8rem;
  padding-bottom: 8rem;
  --margin-top-h2: 12rem;
  --margin-bottom-h2: 7rem;
  --fz-h2: var(--fz-title);
}
@media (max-width: 768px) {
  .article {
    padding-top: 0rem;
    padding-bottom: 0rem;
    --margin-top-h2: 6rem;
    --margin-bottom-h2: 2.3rem;
    --ls-h2: -0.05rem;
    --ls-p: -0.048rem;
  }
}

.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
  font-family: var(--ff-title);
  color: var(--c-primary);
  font-weight: 400;
}

.article h2 + p {
  margin-bottom: 7rem;
}
@media (max-width: 768px) {
  .article h2 + p {
    margin-bottom: 3rem;
  }
}

.article img {
  height: 90vh;
}
@media (max-width: 992px) {
  .article img {
    height: 40vh;
  }
}
@media (max-width: 601px) {
  .article img {
    height: 21vh;
  }
}

/**
	BEGIN patterns
*/
.article > .wp-block-group.alignfull {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media (max-width: 768px) {
  .article > .wp-block-group.alignfull {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}

.article > .wp-block-group.alignfull:nth-of-type(even) {
  background: linear-gradient(113deg, #303030 11.83%, #101010 87.31%);
  box-shadow: 0px 3.0570545197px 3.6409862041px rgba(0, 0, 0, 0.17), 0px 7.7315201759px 9.2083272934px rgba(0, 0, 0, 0.25), 0px 15.7715759277px 18.7841243744px rgba(0, 0, 0, 0.31), 0px 32.4864654541px 38.6917457581px rgba(0, 0, 0, 0.39), 0px 89px 106px rgba(0, 0, 0, 0.56);
}

.article > .wp-block-group.alignfull .wp-block-group *:first-child {
  margin-top: 0;
}

.article > .wp-block-group.alignfull .wp-block-group *:last-child {
  margin-bottom: 0;
}

.article > *:not(.alignfull),
.article > .wp-block-group > .wp-block-group > *:not(.wp-block-gallery),
.article > .wp-block-group > .wp-block-group__inner-container > .wp-block-group > .wp-block-group__inner-container > *:not(.wp-block-gallery) {
  max-width: calc(var(--w-container) + 2 * var(--p-container));
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--p-container);
  padding-right: var(--p-container);
}

.article > .alignwide {
  max-width: calc(var(--w-container) * 1.3 + 2 * var(--p-container)) !important;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

/**
	END patterns
*/
.article > .wp-block-group.alignfull .wp-block-columns {
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .article > .wp-block-group.alignfull .wp-block-columns {
    margin-bottom: 2rem;
  }
}

.article .wp-block-column:last-child:not(:empty) > * {
  padding-left: 3rem;
}
@media (max-width: 601px) {
  .article .wp-block-column:last-child:not(:empty) > * {
    padding-left: 0;
    padding-top: 3rem;
  }
}

.article .wp-block-column:last-child:not(:empty) > *:empty {
  display: none;
}

.article img {
  object-fit: cover;
}

.article .wp-block-gallery {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}
@media (max-width: 768px) {
  .article .wp-block-gallery {
    padding-bottom: 2.4rem;
  }
}

.article .wp-block-gallery .swiper-wrapper {
  margin-bottom: 7rem;
  height: 80vh;
}
@media (max-width: 768px) {
  .article .wp-block-gallery .swiper-wrapper {
    margin-bottom: 6.5rem;
    height: 50vh;
  }
}

.article .wp-block-gallery .b_swiper__nav {
  max-width: calc(var(--w-container) + 2 * var(--p-container));
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 601px) {
  .article .wp-block-gallery .b_swiper__nav {
    max-width: 64%;
  }
}

.article .wp-block-gallery .wp-block-image {
  width: var(--w-container);
}

.article .wp-block-gallery .swiper-slide {
  transition: all 0.45s var(--tr-jolly-enter);
}

.article .wp-block-gallery .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.5;
}

.article .wp-block-columns {
  display: flex;
}
@media (max-width: 601px) {
  .article .wp-block-columns {
    flex-direction: column;
  }
}

@media (max-width: 601px) {
  .article .swiper-button-next,
  .article .swiper-button-prev {
    display: none;
  }
}

.floor-plan {
  background-image: url("../img/sklh_case/plan-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  --margin-top-media: -35rem;
}

.floor-plan__desc {
  font-size: 1.2rem;
  max-width: 45rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .floor-plan__desc {
    margin-bottom: 2rem;
  }
}

.floor-plan__desc:empty {
  display: none;
}

.floor-plan__media {
  margin-top: var(--margin-top-media);
  pointer-events: none;
}
@media (max-width: 992px) {
  .floor-plan__media {
    margin-top: calc(var(--margin-top-media) + 20rem);
  }
}
@media (max-width: 768px) {
  .floor-plan__media {
    margin-top: calc(var(--margin-top-media) + 28rem);
  }
}

.review-section {
  position: relative;
  z-index: 1;
  --review-desc-gap: 7.5rem;
}
@media (min-width: 769px) {
  .review-section {
    padding-bottom: 14.3rem;
  }
}
@media (max-width: 601px) {
  .review-section {
    --review-desc-gap: 3.5rem;
  }
}

.review-section--has-bg::before {
  content: "";
  position: absolute;
  bottom: -14%;
  right: 0;
  display: block;
  width: 50%;
  height: 50%;
  background-image: url("../img/sklh_common/quote-big.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .review-section--has-bg::before {
    bottom: -20%;
  }
}
@media (max-width: 601px) {
  .review-section--has-bg::before {
    bottom: -5%;
  }
}

.review-section__container {
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3rem;
}
@media (max-width: 992px) {
  .review-section__container {
    grid-template-columns: 100%;
  }
}

.review-section__container--only-text {
  grid-template-columns: 100%;
}

.review-section__title {
  margin-bottom: 4.2rem;
}
@media (max-width: 768px) {
  .review-section__title {
    margin-bottom: 2.8rem;
  }
}

.review-section__source {
  display: inline-block;
  height: 3rem;
  width: auto;
  margin-bottom: 5.3rem;
  transition: var(--tr);
  filter: contrast(0.1) grayscale(1);
  -webkit-filter: contrast(0.1) grayscale(1);
}
@media (max-width: 768px) {
  .review-section__source {
    height: 2rem;
    margin-bottom: 2.8rem;
  }
}

.review-section__desc .review-section__source {
  margin-left: calc(0px - var(--review-desc-gap));
}

@media (any-hover: hover) {
  .review-section__source:hover {
    filter: contrast(1) grayscale(0);
    -webkit-filter: contrast(1) grayscale(0);
  }
}

.review-section__source-img {
  display: block;
  width: 100%;
  height: 100%;
}

.review-section .review-section__source-img {
  margin-bottom: 0;
  margin-top: 0;
}

.review-section__desc {
  padding-left: var(--review-desc-gap);
  font-size: 1.5rem;
  position: relative;
  padding-right: 3rem;
}

.review-section .review-section__desc {
  --ls-regular: initial;
}
@media (max-width: 768px) {
  .review-section .review-section__desc {
    --fz-p: 1.6rem;
    --lh-p: 1.4;
    --ls-regular: initial;
  }
}

.review-section__desc::before {
  content: "";
  position: absolute;
  top: 8rem;
  left: 0;
  display: block;
  width: 5.8rem;
  height: 4.3rem;
  background-image: url(../img/sklh_common/quote.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 768px) {
  .review-section__desc::before {
    top: 4rem;
    width: 3.3rem;
    height: 3.6rem;
  }
}

.review-section__source + p {
  margin-top: 0;
}

.review-section__media {
  padding-top: 10rem;
  grid-row-end: span 2;
}
@media (max-width: 992px) {
  .review-section__media {
    padding-top: 2.8rem;
    display: flex;
    flex-direction: column;
    grid-row-end: initial;
  }
}

.review-section__media-video {
  margin-bottom: 7rem;
}
@media (min-width: 769px) {
  .review-section__media-video {
    padding-top: 66.4%;
  }
}
@media (max-width: 992px) {
  .review-section__media-video {
    order: 2;
    margin-bottom: 4rem;
  }
}

.review-section__media-caption {
  font-size: 2.4rem;
  text-align: right;
}
@media (max-width: 992px) {
  .review-section__media-caption {
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 768px) {
  .review-section__media-caption {
    font-size: 1.2rem;
  }
}

.review-section__media-caption-title {
  font-size: 3rem;
  letter-spacing: initial;
  margin-bottom: 1rem;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .review-section__media-caption-title {
    font-size: 1.6rem;
    letter-spacing: -0.064rem;
    margin-bottom: 0;
  }
}

.review-section__media-caption-desc {
  letter-spacing: -0.096rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .review-section__media-caption-desc {
    line-height: 140%;
    letter-spacing: -0.048rem;
  }
}

.review-section__buttons {
  margin-top: 1em;
  padding: 0;
  align-self: end;
  justify-self: start;
}

.content-reviews {
  position: relative;
  z-index: 1;
  --review-desc-gap: 7.5rem;
}
@media (min-width: 769px) {
  .content-reviews {
    padding-bottom: 14.3rem;
  }
}
@media (max-width: 601px) {
  .content-reviews {
    --review-desc-gap: 3.5rem;
  }
}

.content-reviews:nth-of-type(even) {
  background: linear-gradient(113deg, #303030 11.83%, #101010 87.31%);
  box-shadow: 0px 3.0570545197px 3.6409862041px rgba(0, 0, 0, 0.17), 0px 7.7315201759px 9.2083272934px rgba(0, 0, 0, 0.25), 0px 15.7715759277px 18.7841243744px rgba(0, 0, 0, 0.31), 0px 32.4864654541px 38.6917457581px rgba(0, 0, 0, 0.39), 0px 89px 106px rgba(0, 0, 0, 0.56);
}

.content-reviews:nth-of-type(even) + .content-reviews__buttons {
  margin-top: 6rem;
}

.content-reviews--has-bg::before {
  content: "";
  position: absolute;
  bottom: -14%;
  right: 0;
  display: block;
  width: 50%;
  height: 50%;
  background-image: url("../img/sklh_common/quote-big.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  z-index: 1;
}
@media (max-width: 768px) {
  .content-reviews--has-bg::before {
    bottom: -20%;
  }
}
@media (max-width: 601px) {
  .content-reviews--has-bg::before {
    bottom: -5%;
  }
}

.content-reviews__container {
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3rem;
}
@media (max-width: 992px) {
  .content-reviews__container {
    grid-template-columns: 100%;
  }
}

.content-reviews__title {
  margin-bottom: 8.2rem;
}
@media (max-width: 768px) {
  .content-reviews__title {
    margin-bottom: 2.8rem;
  }
}

.content-reviews__source {
  display: inline-block;
  height: 3rem;
  width: auto;
  margin-bottom: 1.2rem;
  transition: var(--tr);
  filter: contrast(0.1) grayscale(1);
  -webkit-filter: contrast(0.1) grayscale(1);
}
@media (max-width: 768px) {
  .content-reviews__source {
    height: 2rem;
    margin-bottom: 2.8rem;
  }
}

.content-reviews__feedback .content-reviews__source {
  margin-left: calc(0px - var(--review-desc-gap));
}

@media (any-hover: hover) {
  .content-reviews__source:hover {
    filter: contrast(1) grayscale(0);
    -webkit-filter: contrast(1) grayscale(0);
  }
}

.content-reviews__source-img {
  display: block;
  width: 100%;
  height: 100%;
}

.content-reviews .content-reviews__source-img {
  margin-bottom: 0;
  margin-top: 0;
}

.content-reviews__desc {
  position: relative;
  transition: var(--tr);
  padding-bottom: 10rem;
}
@media (max-width: 992px) {
  .content-reviews__desc {
    padding-bottom: 0rem;
  }
}

.content-reviews__feedback {
  padding-left: var(--review-desc-gap);
  font-size: 1.5rem;
  position: relative;
  padding-right: 3rem;
  margin-bottom: 2rem;
  max-height: 1000rem;
  overflow: hidden;
  transition: all 0.45s ease;
}

.content-reviews--closed .content-reviews__feedback {
  max-height: 30rem;
}
@media (max-width: 992px) {
  .content-reviews--closed .content-reviews__feedback {
    max-height: 10.5em;
  }
}
.content-reviews .content-reviews__feedback {
  --ls-regular: initial;
}
@media (max-width: 768px) {
  .content-reviews .content-reviews__feedback {
    --fz-p: 1.6rem;
    --lh-p: 1.4;
    --ls-regular: initial;
  }
}

.content-reviews__desc::before {
  content: "";
  position: absolute;
  top: -1.4rem;
  left: 0;
  display: block;
  width: 5.8rem;
  height: 4.3rem;
  background-image: url(../img/sklh_common/quote.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 992px) {
  .content-reviews__desc::before {
    top: 4rem;
    width: 3.3rem;
    height: 3.6rem;
  }
}
@media (max-width: 601px) {
  .content-reviews__desc::before {
    top: -1rem;
  }
}

.content-reviews__source + p {
  margin-top: 0;
}

.content-reviews__media {
  padding-top: 15rem;
  grid-row-end: span 2;
}
@media (max-width: 992px) {
  .content-reviews__media {
    padding-top: 2.8rem;
    display: flex;
    flex-direction: column;
    grid-row-end: initial;
  }
}

.content-reviews__media-video {
  margin-bottom: 6.6rem;
}
@media (min-width: 769px) {
  .content-reviews__media-video {
    padding-top: 66.4%;
  }
}
@media (max-width: 992px) {
  .content-reviews__media-video {
    order: 2;
    margin-bottom: 3rem;
  }
}

.content-reviews__media-caption {
  font-size: 2.4rem;
  text-align: right;
}
@media (max-width: 992px) {
  .content-reviews__media-caption {
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 768px) {
  .content-reviews__media-caption {
    font-size: 1.2rem;
  }
}

.content-reviews__media-caption-title {
  font-size: 3rem;
  letter-spacing: initial;
  margin-bottom: 1rem;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .content-reviews__media-caption-title {
    font-size: 1.6rem;
    letter-spacing: -0.064rem;
    margin-bottom: 0;
  }
}

.content-reviews__media-caption-desc {
  letter-spacing: -0.096rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .content-reviews__media-caption-desc {
    line-height: 140%;
    letter-spacing: -0.048rem;
  }
}

.content-reviews__buttons {
  padding: 0;
  align-self: end;
  justify-self: start;
}

.content-reviews__button-fold {
  margin-left: var(--review-desc-gap);
  font-size: 1.8rem;
}
@media (max-width: 601px) {
  .content-reviews__button-fold {
    font-size: 1rem;
  }
}

.content-reviews__button-more {
  justify-self: center;
  padding-left: 2.8rem;
  padding-right: 2.8rem;
}

.content-reviews__buttons.container {
  justify-content: center;
  padding-bottom: 12rem;
}

.project-shifter {
  position: relative;
  padding-top: 14rem;
  padding-bottom: 14rem;
}
@media (max-width: 768px) {
  .project-shifter {
    padding-top: 5.8rem;
    padding-bottom: 5.8rem;
  }
}

.project-shifter__media {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.project-shifter__media::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.project-shifter__media-pic {
  display: block;
  width: 100%;
  height: 100%;
}

.project-shifter__media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-shifter__offer {
  position: relative;
  z-index: 2;
  max-width: 60rem;
}

.project-shifter__suptitle {
  leading-trim: both;
  text-edge: cap;
  font-family: var(--ff-regular);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.096rem;
  margin-bottom: 5.4rem;
}
@media (max-width: 768px) {
  .project-shifter__suptitle {
    font-size: 1.6rem;
    line-height: 115%;
    letter-spacing: -0.064rem;
    margin-bottom: 3rem;
  }
}

.project-shifter__title {
  margin-bottom: 3.2rem;
}
@media (max-width: 768px) {
  .project-shifter__title {
    letter-spacing: 0.05rem;
    margin-bottom: 2.2rem;
  }
}

.project-shifter__desc {
  max-width: 34rem;
  margin-bottom: 7rem;
}
@media (max-width: 768px) {
  .project-shifter__desc {
    max-width: 23rem;
    margin-bottom: 3.5rem;
  }
}

.project-shifter__buttons {
  padding-bottom: 0;
}

.project-shifter__button .button__icon {
  margin-top: -2rem;
  margin-bottom: -2rem;
}
@media (min-width: 769px) {
  .project-shifter__button .button__icon {
    --icon-width: 9rem;
    --icon-height: 3.5rem;
    margin-right: -2rem;
  }
}

.is-hidden {
  visibility: hidden !important;
  display: none !important;
}

@media (min-width: 451px) {
  .only-mobile {
    display: none;
  }
}

.is-transparent {
  opacity: 0 !important;
  pointer-events: none !important;
}
/*# sourceMappingURL=../maps/style.css.map */
