/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  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
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
figcaption,
figure {
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 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 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

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

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

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

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

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

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * 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
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * Known issues:
 * - `select`:
 *   By default, Chrome on OS X and Safari on OS X allow very limited styling of
 *   select, unless a border property is set. The default font weight on
 *   optgroup elements cannot safely be changed in Chrome on OSX and Safari on
 *   OS X.
 * - `[type="checkbox"]`:
 *   It is recommended that you do not style checkbox and radio inputs as
 *   Firefox's implementation does not respect box-sizing, padding, or width.
 * - `[type="number"]`:
 *   Certain font size values applied to number inputs cause the cursor style of
 *   the decrement button to change from `default` to `text`.
 * - `[type="search"]`:
 *   The search input is not fully stylable by default. In Chrome and Safari on
 *   OSX/iOS you can't control `font`, `padding`, `border`, or `background`. In
 *   Chrome and Safari on Windows you can't control `border` properly. It will
 *   apply `border-width` but will only show a border color (which cannot be
 *   controlled) for the outer 1px of that border. Applying
 *   `-webkit-appearance: textfield` addresses these issues without removing the
 *   benefits of search inputs (e.g. showing past searches). Safari (but not
 *   Chrome) will clip the cancel button on when it has padding (and `textfield`
 *   appearance).
 * - `::placeholder`:
 *   In Edge, placeholders will disappear on `relative` or `absolute` positioned
 *   `<input>` elements if you use `opacity` less than `1` due to a
 *   [bug](https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/3901363/).
 */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  line-height: 1.15;
  /* 1 */
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 */
button {
  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;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
   * Remove the inner border and padding in Firefox.
   */
  /**
   * Restore the focus styles unset by the previous rule.
   */
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Show the overflow in Edge.
 */
input {
  overflow: visible;
}

/**
 * 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 and cancel buttons in Chrome and Safari on macOS.
   */
}

[type="search"]::-webkit-search-cancel-button,
[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 */
}

/**
 * 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 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

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

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

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

/*
 * Add the correct display in IE 9-.
 */
menu {
  display: block;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

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

@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Montserrat/Montserrat-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/Montserrat/Montserrat-Regular.woff") format("woff"),
    url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/Montserrat/Montserrat-Italic.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/Montserrat/Montserrat-Italic.woff") format("woff"),
    url("../fonts/Montserrat/Montserrat-Italic.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Montserrat/Montserrat-Bold.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/Montserrat/Montserrat-Bold.woff") format("woff"),
    url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  font-style: italic;
  src: url("../fonts/Montserrat/Montserrat-BoldItalic.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/Montserrat/Montserrat-BoldItalic.woff") format("woff"),
    url("../fonts/Montserrat/Montserrat-BoldItalic.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Medium.woff2") format("woff2"),
    url("../fonts/MontserratMontserrat-Medium.woff") format("woff"),
    url("../fonts/MontserratMontserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  height: 100vh;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #202020;
  display: flex;
  flex-direction: column;
}

.dialog-off-canvas-main-canvas {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  margin-bottom: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.5s;
  outline: none;
}

a[href^="tel"],
a[href^="mailto"] {
  white-space: nowrap;
}

p {
  margin-top: 0;
}

input,
button,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
  border-radius: 0;
  outline: none;
  font-family: "Montserrat", sans-serif;
}

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

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

picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  opacity: 1;
  transition: opacity 0.3s;
}

img[data-src] {
  opacity: 0;
}

svg {
  max-width: 100%;
  max-height: 100%;
  transition: fill 0.5s;
}

.container {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 543px) {
  .container {
    padding: 0 15px;
  }
}

.container-small {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 1024px) {
  .container-small {
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .container-small {
    padding: 0 20px;
  }
}

@media (max-width: 543px) {
  .container-small {
    padding: 0 15px;
  }
}

.page__title {
  margin-bottom: 70px;
}

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

.page-top {
  height: 400px;
  background-color: #efeff2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (max-width: 767px) {
  .page-top {
    height: auto;
    padding-top: 40px;
  }
  .page-top img {
    max-height: 180px;
  }
}

.page__tag {
  height: 30px;
  margin: 77px 0 27px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #75767e;
  border-left: 2px solid #75767e;
  background-color: #efeff2;
}

@media (max-width: 767px) {
  .page__tag {
    margin-top: 30px;
  }
}

.btn {
  min-width: 168px;
  width: auto;
  height: 40px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #ffffff;
  border: 1px solid #ed1c24;
  border-radius: 20px;
  background-color: #ed1c24;
  transition: color 0.5s, background-color 0.5s, border-color 0.5s, opacity 0.5s;
  cursor: pointer;
}

.btn:focus {
  border-color: #ff434a;
  background-color: #ff434a;
}

.btn:active {
  border-color: #d60a0a;
  background-color: #d60a0a;
}

@media (min-width: 1025px) {
  .btn:hover {
    border-color: #ff434a;
    background-color: #ff434a;
  }
}

.btn .svg-icon {
  margin-left: 13px;
  width: 10px;
  height: 12px;
  fill: currentColor;
}

.btn:disabled,
.btn.disable {
  color: #ffffff;
  border-color: #cfd0d6;
  background-color: #cfd0d6;
  pointer-events: none;
}

.btn:disabled .svg-icon,
.btn.disable .svg-icon {
  fill: currentColor;
}

.btn-big {
  min-width: 210px;
  height: 52px;
  font-size: 14px;
  border-radius: 26px;
}

.btn-o {
  color: #202020;
  background-color: transparent;
}

.btn-o .svg-icon {
  fill: #ed1c24;
}

.btn-o:focus {
  color: #ff434a;
  background-color: transparent;
}

.btn-o:focus .svg-icon {
  fill: currentColor;
}

.btn-o:active {
  color: #ffffff;
  border-color: #d60a0a;
  background-color: #d60a0a;
}

.btn-o:active .svg-icon {
  fill: currentColor;
}

@media (min-width: 1025px) {
  .btn-o:hover {
    color: #ff434a;
    background-color: transparent;
  }
  .btn-o:hover .svg-icon {
    fill: currentColor;
  }
}

.btn-o:disabled,
.btn-o.disable {
  color: #202020;
  opacity: 0.5;
  background-color: transparent;
}

.btn-o-dark {
  color: #202020;
  border-color: #75767e;
  background-color: transparent;
}

@media (min-width: 1025px) {
  .btn-o-dark:hover {
    border-color: #ed1c24;
    background-color: transparent;
  }
}

.btn-o-dark:focus {
  border-color: #ed1c24;
  background-color: transparent;
}

.btn-o-dark:active {
  color: #ffffff;
  border-color: #d60a0a;
  background-color: #d60a0a;
}

.btn-o-dark:disabled,
.btn-o-dark.disable {
  color: #202020;
  opacity: 0.5;
  border-color: #75767e;
  background-color: transparent;
}

.btn-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background-color: transparent;
}

.btn-light .svg-icon {
  fill: currentColor;
}

.btn-light:focus {
  border-color: #ffffff;
  background-color: transparent;
}

.btn-light:active {
  color: #202020;
  border-color: #ffffff;
  background-color: #ffffff;
}

@media (min-width: 1025px) {
  .btn-light:hover {
    border-color: #ffffff;
    background-color: transparent;
  }
}

.btn-light:disabled,
.btn-light.disable {
  color: #202020;
  border-color: #ffffff;
  background-color: #ffffff;
  opacity: 0.5;
}

.btn-square {
  min-width: 262px;
  height: 68px;
  font-size: 14px;
  border-radius: 0;
}

@media (max-width: 543px) {
  .btn-square {
    min-width: 0;
    width: 100%;
  }
}

.btn-up {
  position: absolute;
  top: -26px;
  left: 3%;
  z-index: 1;
  margin-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transform-origin: right;
  transform: translate(-100%, 0) rotate(-90deg);
}

.btn-up .svg-icon {
  width: 36px;
  height: 10px;
  margin-left: 13px;
  fill: #ed1c24;
  transition: transform 0.5s;
}

@media (min-width: 1025px) {
  .btn-up:hover .svg-icon {
    transform: translate(10px, 0);
  }
}

.link {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  transition: color 0.5s;
}

.link .svg-icon {
  width: 8px;
  height: 10px;
  margin: 0 13px;
  flex: none;
  fill: #ed1c24;
}

@media (min-width: 1025px) {
  .link:hover {
    color: #ff434a;
  }
  .link:hover .svg-icon {
    fill: currentColor;
  }
}

.link:focus {
  color: #ff434a;
}

.link:focus .svg-icon {
  fill: currentColor;
}

.link:active {
  color: #d60a0a;
}

.link:active .svg-icon {
  fill: currentColor;
}

.link:disabled,
.link.disabled {
  color: #cfd0d6;
}

.link:disabled .svg-icon,
.link.disabled .svg-icon {
  fill: currentColor;
}

.link-left .svg-icon {
  margin-left: 0;
  transform: rotate(180deg);
}

.file {
  width: 262px;
  max-width: 100%;
  height: 68px;
  margin-bottom: 8px;
  padding-right: 17px;
  display: grid;
  grid-template-columns: 64px 1fr;
  background-color: #efeff2;
  grid-gap: 8px 17px;
  align-content: center;
}

@media (max-width: 543px) {
  .file {
    width: 100%;
  }
}

.file__icon {
  height: 68px;
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #ffffff;
  transition: background-color 0.5s;
}

.file__icon .svg-icon {
  width: 20px;
  height: 24px;
  fill: #ed1c24;
}

.file__title {
  align-self: end;
  font-size: 12px;
  font-weight: 700;
  transition: color 0.5s;
}

.file__type {
  align-self: start;
  font-size: 12px;
  color: #75767e;
}

@media (min-width: 1025px) {
  .file:hover .file__icon {
    background-color: #ed1c24;
  }
  .file:hover .file__icon .svg-icon {
    fill: #ffffff;
  }
  .file:hover .file__title {
    color: #ed1c24;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: normal;
}

h1 {
  font-size: 36px;
}

@media (max-width: 767px) {
  h1 {
    font-size: 26px;
  }
}

@media (max-width: 319px) {
  h1 {
    font-size: 22px;
  }
}

h2 {
  font-size: 26px;
}

@media (max-width: 767px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  font-size: 20px;
}

@media (max-width: 767px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  font-size: 16px;
}

.content {
  font-size: 14px;
  line-height: 22px;
}

.content p {
  margin-top: 0;
  margin-bottom: 18px;
}

.content a {
  font-weight: 700;
  color: #ed1c24;
}

.content a:active {
  color: #ed1c24;
}

.content a:visited {
  color: #5858b2;
}

@media (min-width: 1025px) {
  .content a:hover {
    border-bottom: 1px solid currentColor;
  }
}

.content ul {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.content ul li {
  position: relative;
  padding-left: 20px;
}

.content ul li:not(:last-child) {
  margin-bottom: 20px;
}

.content ul li::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ed1c24;
  content: "";
}

.content ol {
  margin: 20px 0;
  padding: 0;
  list-style: none;
  counter-reset: list;
}

.content ol li {
  position: relative;
  padding-left: 20px;
}

.content ol li:not(:last-child) {
  margin-bottom: 27px;
}

.content ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #75767e;
  counter-increment: list;
  content: counter(list) ".";
}

.content table {
  width: 100%;
  margin: 40px 0;
  border-collapse: collapse;
}

@media (max-width: 767px) {
  .content table {
    display: inline-block;
    overflow-x: auto;
  }
}

.content table th {
  padding: 10px 22px;
  font-weight: 700;
  text-align: left;
  border: 1px solid #d9dae4;
}

.content table td {
  padding: 10px 22px;
  border: 1px solid #d9dae4;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 20px 0;
  border-bottom: 1px solid #efeff2;
  background-color: #ffffff;
  transition: background-color 0.5s, box-shadow 0.5s, border-color 0.5s;
}

.header-light {
  color: #ffffff;
  background-color: transparent;
  border-color: transparent;
}

.header-light .phone .svg-icon,
.header-light .email .svg-icon {
  fill: #ffffff;
}

.header-light .burger__wrap {
  background-color: transparent;
}

.header .container {
  max-width: 1680px;
  display: flex;
  align-items: center;
}

.header .btn {
  margin-left: 9px;
}

@media (max-width: 1550px) {
  .header .btn {
    margin-left: 0;
  }
}

@media (max-width: 1550px) {
  .header .container {
    padding: 0 20px;
  }
}

@media (max-width: 1279px) {
  .header {
    padding: 0;
    height: 70px;
  }
  .header .menu,
  .header .email,
  .header .btn {
    display: none;
  }
  .header .phone {
    margin-left: auto;
  }
  .header .container {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .header {
    height: 54px;
  }
  .header .phone {
    margin-right: 26px;
    font-size: 12px;
  }
  .header .phone .svg-icon {
    display: none;
  }
}

@media (max-width: 543px) {
  .header .container {
    padding-left: 15px;
  }
}

@media (max-width: 319px) {
  .header .phone {
    margin-right: 18px;
  }
}

.logo {
  width: 136px;
  height: 60px;
  display: block;
  flex: none;
}

.logo img {
  max-height: 100%;
}

@media (max-width: 1366px) {
  .logo {
    width: 112px;
    height: 50px;
  }
}

@media (max-width: 1279px) {
  .logo {
    margin: 10px 0;
  }
}

@media (max-width: 767px) {
  .logo {
    width: 78px;
    height: 34px;
  }
}

.menu {
  margin: 0 auto;
}

.menu ul {
  margin: 0 50px;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

@media (max-width: 1550px) {
  .menu ul {
    margin: 0 30px;
  }
}

@media (max-width: 1366px) {
  .menu ul {
    margin: 0 20px;
  }
}

.menu ul li {
  white-space: nowrap;
}

.menu ul li:not(:last-of-type) {
  margin-right: 50px;
}

@media (max-width: 1550px) {
  .menu ul li:not(:last-of-type) {
    margin-right: 30px;
  }
}

@media (max-width: 1366px) {
  .menu ul li:not(:last-of-type) {
    margin-right: 20px;
  }
}

.menu ul li a {
  position: relative;
  transition: opacity 0.5s, color 0.5s;
}

.menu ul li a::before {
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 1px;
  background-color: #ed1c24;
  content: "";
  opacity: 0;
  transform: translate(-50%, 5px);
  transition: width 0.5s, transform 0.5s, opacity 0.5s 0.1s;
}

@media (min-width: 1025px) {
  .menu ul li a:hover::before {
    width: 100%;
    transform: translate(-50%, 0);
    opacity: 1;
    transition: width 0.5s, transform 0.5s, opacity 0.1s;
  }
}

.phone,
.email {
  margin-right: 50px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1550px) {
  .phone,
  .email {
    margin-right: 30px;
  }
}

@media (max-width: 1366px) {
  .phone,
  .email {
    margin-right: 20px;
  }
}

.phone .svg-icon,
.email .svg-icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  flex: none;
  fill: #c4c5cf;
}

@media (min-width: 1025px) {
  .phone:hover,
  .email:hover {
    color: #ed1c24;
  }
}

.address {
  max-width: 234px;
  font-size: 14px;
  line-height: 22px;
}

.burger {
  position: relative;
  width: 30px;
  height: 20px;
}

@media (max-width: 767px) {
  .burger {
    width: 16px;
    height: 14px;
  }
}

.burger__wrap {
  width: 70px;
  height: 70px;
  flex: none;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #ff0000;
  transition: background-color 0.5s;
}

.burger__wrap.active {
  background-color: #efeff2;
}

.burger__wrap.active .burger span {
  opacity: 0;
}

.burger__wrap.active .burger::before,
.burger__wrap.active .burger::after {
  transform-origin: center;
  background-color: #75767e;
}

.burger__wrap.active .burger::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.burger__wrap.active .burger::after {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 1279px) {
  .burger__wrap {
    display: flex;
  }
}

@media (max-width: 767px) {
  .burger__wrap {
    width: 54px;
    height: 54px;
  }
}

.burger span,
.burger::before,
.burger::after {
  position: absolute;
  right: 0;
  left: auto;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  content: "";
  transform-origin: right center;
  transition: all 0.5s;
}

.burger span {
  top: 50%;
  transform: translateY(-50%);
}

.burger::before {
  top: 0;
}

.burger::after {
  top: 100%;
  transform: translateY(-100%);
}

.burger-menu {
  position: fixed;
  top: 70px;
  left: -110%;
  z-index: 5;
  width: 100vw;
  height: calc(100vh - 70px);
  padding: 0 15px 30px;
  text-align: center;
  background-color: #ffffff;
  transition: left 0.5s;
}

.burger-menu.active {
  left: 0;
}

.burger-menu .menu {
  margin-bottom: 30px;
  border-bottom: 1px solid #efeff2;
}

.burger-menu .menu ul {
  margin: 30px 0;
  display: block;
}

.burger-menu .menu ul li:not(:last-of-type) {
  margin-right: 0;
  margin-bottom: 20px;
}

.burger-menu .address {
  max-width: 210px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 18px;
}

.burger-menu .email {
  margin: 16px 0 0;
  justify-content: center;
  font-size: 12px;
}

.burger-menu .btn {
  margin-top: 27px;
  width: 100%;
  max-width: 290px;
}

@media (max-width: 767px) {
  .burger-menu {
    top: 54px;
    height: calc(100vh - 54px);
  }
}

.footer {
  position: relative;
  margin-top: 140px;
  padding-top: 85px;
  /* color: #ffffff;
  background-color: #181a37; */
  border-top: 1px solid #efeff2;
}

@media (max-width: 767px) {
  .footer {
    margin-top: 60px;
    padding-top: 50px;
  }
}

.footer__main {
  margin-bottom: 90px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-column-gap: 30px;
}

@media (max-width: 767px) {
  .footer__main {
    margin-bottom: 40px;
    text-align: center;
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
  }
  .footer__main .logo {
    width: 136px;
    height: 60px;
    margin: 0 auto;
  }
}

.footer__main .menu {
  margin: 30px 0 0;
  max-width: 100%;
}

.footer__main .menu ul {
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  grid-column-gap: 30px;
}

.footer__main .menu ul li {
  margin-bottom: 26px;
}

@media (max-width: 767px) {
  .footer__main .menu {
    display: none;
  }
}

.footer__contacts {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .footer__contacts {
    margin-top: 0;
    display: grid;
    justify-content: center;
  }
}

.footer .phone {
  font-size: 16px;
}

.footer .phone,
.footer .email {
  position: relative;
  margin-bottom: 24px;
  display: inline-block;
  /* color: #ffffff; */
}

.footer .phone::before,
.footer .email::before {
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 1px;
  background-color: #ed1c24;
  content: "";
  transform: translate(-50%, 5px);
  opacity: 0;
  transition: width 0.5s, transform 0.5s, opacity 0.5s 0.1s;
}

@media (min-width: 1025px) {
  .footer .phone:hover,
  .footer .email:hover {
    color: inherit;
  }

  .footer .phone:hover::before,
  .footer .email:hover::before {
    width: 100%;
    transform: translate(-50%, 0);
    opacity: 1;
    transition: width 0.5s, transform 0.5s, opacity 0.1s;
  }
}

@media (max-width: 767px) {
  .footer .phone,
  .footer .email {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .footer .address {
    margin: 0 auto;
  }
}

.footer .btn {
  margin-top: 24px;
  /* color: #ffffff; */
}

@media (min-width: 1025px) {
  .footer .btn:hover {
    color: #ff434a;
  }
}

.footer .btn:focus {
  color: #ff434a;
}

/* .footer .btn:active {
  color: #ffffff;
} */

.footer__bottom {
  padding: 20px 0;
  font-size: 12px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
  border-top: 1px solid #efeff2;
}

.footer__bottom .container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  grid-column-gap: 30px;
}

@media (max-width: 767px) {
  .footer__bottom {
    text-align: center;
  }
  .footer__bottom .container {
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
  }
  .footer__bottom .made {
    justify-content: center;
  }
}

.copy + a {
  position: relative;
}

.copy + a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  transition: width 0.5s;
}

@media (min-width: 1025px) {
  .copy + a:hover {
    color: #ed1c24;
  }
  .copy + a:hover::after {
    width: 0;
  }
}

@media (max-width: 1024px) {
  .copy + a {
    margin-bottom: 5px;
  }
  .copy a a {
    text-decoration: underline;
  }
  .copy a a::after {
    display: none;
  }
}

.made {
  display: flex;
  align-items: center;
  transition: opacity 0.5s;
}

.made picture {
  width: 60px;
  height: 10px;
  margin-top: 1px;
  margin-left: 9px;
}

@media (min-width: 1025px) {
  .made:hover {
    opacity: 0.7;
  }
}

.form__item {
  position: relative;
  margin-bottom: 35px;
}

.form__item .error-message {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 7px;
  font-size: 12px;
  color: #ff4800;
}

.form__item input,
.form__item textarea {
  width: 100%;
  height: 33px;
  padding: 8px;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid #d9dae4;
}

.form__item input.error,
.form__item textarea.error {
  background-color: rgba(255, 72, 0, 0.08);
  border-color: #ff4800;
}

.form__item textarea {
  resize: vertical;
  min-height: 33px;
  height: 33px;
  max-height: 100px;
}

.form__item label {
  position: absolute;
  padding: 8px 0;
  top: 0;
  left: 0;
  font-size: 14px;
  transition: font-size 0.5s, transform 0.5s;
}

.form__item label span {
  color: #ed1c24;
}

.form__item.active label {
  font-size: 12px;
  transform: translateY(-100%);
}

.form__item-two {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .form__item-two {
    margin-top: 10px;
    display: block;
  }
}

@media (max-width: 767px) {
  .form__item-two .btn {
    margin-top: 15px;
  }
}

.form-file {
  flex: none;
}

.form-file input {
  display: none;
}

.form-file label {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}

.form-file label .svg-icon {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  fill: #ed1c24;
  position: relative;
  transition: opacity 0.5s;
}

.form-file label span {
  position: relative;
}

.form-file label span::before {
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 1px;
  background-color: #ed1c24;
  content: "";
  transform: translate(-50%, 5px);
  opacity: 0;
  transition: width 0.5s, transform 0.5s, opacity 0.5s 0.1s;
}

@media (min-width: 1024px) {
  .form-file label:hover {
    cursor: pointer;
  }
  .form-file label:hover .svg-icon {
    fill: #d60a0a;
  }
  .form-file label:hover span::before {
    width: 100%;
    transform: translate(-50%, 0);
    opacity: 1;
    transition: width 0.5s, transform 0.5s, opacity 0.1s;
  }
}

.form__agree {
  margin-top: 30px;
  font-size: 12px;
  line-height: 18px;
  color: #75767e;
}

@media (max-width: 767px) {
  .form__agree {
    margin-top: 20px;
  }
}

.form__agree:not(:last-child) {
  margin-bottom: 36px;
}

@media (max-width: 767px) {
  .form__agree:not(:last-child) {
    margin-bottom: 20px;
  }
}

.form__agree a {
  text-decoration: underline;
}

@media (min-width: 1025px) {
  .form__agree a:hover {
    color: #202020;
  }
}

.form__agree a:focus {
  color: #202020;
}

.form__agree span {
  color: #ed1c24;
}

.popup {
  position: absolute;
  z-index: 1;
  max-width: calc(100% - 24px);
  width: 690px;
  padding: 77px 100px 80px;
  max-height: calc(100vh - 24px);
  opacity: 0;
  background-color: #ffffff;
  border-bottom: 16px solid #181a37;
  transform: scale(0.95);
  transition: opacity 0.5s, transform 0.5s;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}

@media (max-width: 767px) {
  .popup {
    overflow-y: auto;
    padding: 50px;
  }
}

@media (max-width: 543px) {
  .popup {
    padding: 30px 20px;
  }
}

.popup::-webkit-scrollbar {
  width: 0;
}

.popup-big {
  width: 947px;
  padding: 0;
}

@media (max-width: 543px) {
  .popup .btn {
    width: 100%;
  }
}

.popup__wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  min-height: 100vh;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(12, 13, 29, 0.86);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.popup__wrap.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s 0s, visibility 0.5s 0s;
}

.popup__wrap.active .popup {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 0.5s 0.5s, transform 0.5s 0.5s;
}

.popup__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background-color: #efeff2;
}

@media (max-width: 767px) {
  .popup__close {
    width: 40px;
    height: 40px;
  }
}

.popup__close::before,
.popup__close::after {
  position: absolute;
  display: block;
  width: 22px;
  height: 2px;
  background-color: #d9dae4;
  content: "";
  transition: background-color 0.5s;
}

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

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

@media (min-width: 1025px) {
  .popup__close:hover {
    cursor: pointer;
  }
  .popup__close:hover::before,
  .popup__close:hover::after {
    background-color: #75767e;
  }
}

.popup__title {
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 700;
  line-height: 38px;
}

@media (max-width: 767px) {
  .popup__title {
    max-width: calc(100% - 20px);
    font-size: 22px;
    line-height: 26px;
  }
}

.popup__text {
  margin-bottom: 30px;
  font-size: 14px;
}

.popup__img {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  bottom: -16px;
  width: 270px;
  overflow: hidden;
}

.popup__img::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(12, 13, 29, 0.5);
  content: "";
}

.popup__img img {
  -o-object-fit: cover;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}

@media (max-width: 767px) {
  .popup__img {
    display: none;
  }
}

.popup__content {
  margin-left: 260px;
  padding: 70px 100px;
}

@media (max-width: 1024px) {
  .popup__content {
    padding: 70px 50px;
  }
}

@media (max-width: 992px) {
  .popup__content {
    padding: 50px;
  }
}

@media (max-width: 767px) {
  .popup__content {
    margin-left: 0;
    padding: 50px;
  }
}

@media (max-width: 543px) {
  .popup__content {
    padding: 30px 20px;
  }
}

.breadcrumbs {
  margin: 70px 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  color: #75767e;
}

@media (max-width: 1024px) {
  .breadcrumbs {
    margin: 20px 0;
  }
}

@media (max-width: 767px) {
  .breadcrumbs {
    line-height: normal;
  }
}

.breadcrumbs__item {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

@media (min-width: 1025px) {
  .breadcrumbs__item:hover {
    color: #ed1c24;
  }
}

@media (max-width: 767px) {
  .breadcrumbs__item {
    margin-bottom: 2px;
  }
}

.breadcrumbs__item:not(:last-child)::after {
  margin: 0 4px;
  content: "/";
  color: #75767e;
}

.breadcrumbs__item:last-child {
  pointer-events: none;
  color: #202020;
}

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

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

@media (max-width: 543px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

.gallery__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 210px;
  overflow: hidden;
  background-color: #ff434a;
}

@media (max-width: 767px) {
  .gallery__item {
    height: 180px;
  }
}

.gallery__item img {
  -o-object-fit: cover;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  transition: transform 0.5s;
}

.gallery__item picture {
  position: relative;
}

.gallery__item picture::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #0c0d1d;
  content: "";
  opacity: 0;
  transition: opacity 0.5s;
}

.gallery__item::before {
  position: absolute;
  z-index: 3;
  width: 2px;
  height: 18px;
  background-color: #ffffff;
  opacity: 0;
  transition: opacity 0.5s;
  content: "";
}

.gallery__item::after {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 2px;
  background-color: #ffffff;
  opacity: 0;
  transition: opacity 0.5s;
  content: "";
}

@media (min-width: 1025px) {
  .gallery__item:hover picture::before {
    opacity: 0.4;
  }
  .gallery__item:hover::before,
  .gallery__item:hover::after {
    opacity: 1;
  }
}

.gallery-slider__wrap {
  position: relative;
  overflow: hidden;
}

.gallery-slider__item {
  height: 350px;
  overflow: hidden;
}

@media (max-width: 1550px) {
  .gallery-slider__item {
    height: 300px;
  }
}

.gallery-slider__item img {
  -o-object-fit: cover;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}

.pager {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .pager {
    margin-top: 40px;
  }
}

.pager__prev,
.pager__next {
  width: 40px;
  height: 40px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #efeff2;
}

.pager__prev .svg-icon,
.pager__next .svg-icon {
  width: 8px;
  height: 10px;
  fill: #75767e;
}

@media (max-width: 767px) {
  .pager__prev,
  .pager__next {
    width: 38px;
    height: 38px;
  }
}

@media (min-width: 1025px) {
  .pager__prev:hover .svg-icon,
  .pager__next:hover .svg-icon {
    fill: #322f2d;
  }
}

.pager__prev {
  margin-right: 18px;
}

.pager__prev .svg-icon {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .pager__prev {
    margin-right: 10px;
  }
}

.pager__next {
  margin-left: 18px;
}

@media (max-width: 767px) {
  .pager__next {
    margin-left: 10px;
  }
}

.pager ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  list-style: none;
}

.pager ul li:not(:last-of-type) {
  margin-right: 34px;
}

@media (max-width: 767px) {
  .pager ul li:not(:last-of-type) {
    margin-right: 15px;
  }
}

.pager ul li a {
  font-size: 12px;
  color: #75767e;
}

@media (min-width: 1025px) {
  .pager ul li a:hover {
    color: #ed1c24;
  }
}

.pager ul li a.active {
  pointer-events: none;
  color: #202020;
}

.main-block {
  position: relative;
  height: 800px;
  overflow: hidden;
  padding-top: 100px;
}

@media (max-width: 1024px) {
  .main-block {
    padding-top: 70px;
    height: 600px;
  }
}

@media (max-width: 767px) {
  .main-block {
    padding-top: 54px;
    height: 400px;
  }
}

.main-block .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.main-block__img {
  position: absolute;
  bottom: 0;
  right: -60px;
  z-index: 1;
  max-width: 511px;
  height: 680px;
  display: flex;
}

@media (max-width: 1024px) {
  .main-block__img {
    max-width: 411px;
    height: 500px;
    right: -20px;
    opacity: 0.8;
  }
}

@media (max-width: 767px) {
  .main-block__img {
    height: 280px;
    right: -10px;
  }
}

.main-block__img img {
  max-height: 100%;
}

.main-block__img-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.main-block__img-bg img {
  -o-object-fit: cover;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}

.main-block__content {
  position: relative;
  z-index: 2;
}

.main-block__title {
  max-width: 670px;
  margin-bottom: 50px;
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 3px 4px 10px rgba(16, 26, 39, 0.2);
}

@media (max-width: 767px) {
  .main-block__title {
    margin-bottom: 30px;
    font-size: 36px;
  }
}

@media (max-width: 543px) {
  .main-block__title {
    max-width: 380px;
    font-size: 26px;
  }
}

@media (max-width: 319px) {
  .main-block__title {
    font-size: 22px;
  }
}

.catalog {
  position: relative;
  margin-top: 100px;
  margin-bottom: 140px;
}

@media (max-width: 767px) {
  .catalog {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.catalog__title {
  position: absolute;
  top: -25px;
  left: 3%;
  z-index: 1;
  margin: 0 0 0 15px;
  font-size: 36px;
  font-weight: 700;
  color: #efeff2;
  transform-origin: right;
  transform: translate(-100%, 0) rotate(-90deg);
}

/* .catalog__title::after {
  position: absolute;
  top: 50%;
  right: -40px;
  width: 200px;
  height: 1px;
  background-color: #efeff2;
  content: '';
  transform: translate(100%, 0);
} */

@media (max-width: 1366px) {
  .catalog__title {
    left: 1%;
  }
}

@media (max-width: 1279px) {
  .catalog__title {
    display: none;
  }
}

.catalog-block {
  position: relative;
  height: 350px;
  padding: 47px 47px 40px;
  display: flex;
  flex-direction: column;
  background-color: #efeff2;
}

.catalog-block::before {
  position: absolute;
  top: 0;
  right: 32px;
  bottom: 0;
  width: 278px;
  background: url("../img/light-detail1.svg") center no-repeat;
  background-size: contain;
  content: "";
  opacity: 0;
  transform: translate(10px, 0);
  transition: opacity 0.5s, transform 0.5s;
}

@media (min-width: 1025px) {
  .catalog-block:hover::before {
    max-width: 300px;
    opacity: 1;
    transform: translate(0, 0);
  }
  .catalog-block:hover .catalog-block__link span {
    max-width: 100px;
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .catalog-block {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .catalog-block {
    height: 300px;
  }
}

.catalog-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 12px;
}

@media (max-width: 767px) {
  .catalog-blocks {
    grid-template-columns: 1fr;
  }
}

.catalog-block__title {
  position: relative;
  z-index: 2;
  max-width: 230px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

@media (max-width: 767px) {
  .catalog-block__title {
    font-size: 18px;
    line-height: 28px;
  }
}

.catalog-block__subtitle {
  position: relative;
  z-index: 2;
  font-size: 16px;
  line-height: 32px;
  color: #75767e;
}

.catalog-block__link {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #ed1c24;
}

.catalog-block__link span {
  margin-right: 11px;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.5s, transform 0.5s, opacity 0.5s;
}

.catalog-block__link .svg-icon {
  width: 36px;
  height: 10px;
  fill: #ed1c24;
}

.catalog-block__img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
}

.catalog-block__img img {
  max-height: 100%;
}

@media (max-width: 1024px) {
  .catalog-block__img {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .catalog-block__img {
    height: 180px;
  }
}

@media (max-width: 319px) {
  .catalog-block__img {
    height: 160px;
  }
}

.catalog-seoblock {
  position: relative;
  margin-top: 80px;
  max-height: 340px;
  overflow: hidden;
  transition: max-height 0.5s;
}

@media (max-width: 767px) {
  .catalog-seoblock {
    margin-top: 60px;
  }
}

.catalog-seoblock p:last-of-type {
  margin-bottom: 40px;
}

.catalog-seoblock__btn {
  position: absolute;
  left: 0;
  bottom: 0;
  cursor: pointer;
  margin-top: 30px;
  z-index: 3;
}

.catalog-seoblock__btn .svg-icon {
  transform: rotate(90deg);
  transition: fill 0.5s, transform 0.5s;
}

.catalog-seoblock__btn.active .svg-icon {
  transform: rotate(-90deg);
}

@media (max-width: 1024px) {
  .catalog-seoblock {
    margin-top: 60px;
    max-height: 190px;
  }
}

@media (max-width: 767px) {
  .catalog-seoblock {
    margin-top: 40px;
  }
}

.catalog-seoblock.long::before {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 154px;
  display: block;
  background-image: linear-gradient(
    to top,
    #ffffff 20%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.5s, height 0.5s;
  z-index: 2;
}

.catalog-seoblock.active::before {
  opacity: 0;
  height: 0;
}

.catalog-list__item {
  position: relative;
  min-height: 100px;
  margin-bottom: 12px;
  padding: 34px 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  background-color: #efeff2;
}

@media (max-width: 767px) {
  .catalog-list__item {
    padding: 25px 30px;
    min-height: 70px;
    font-size: 18px;
  }
}

.catalog-list__item::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 0;
  background-color: #ed1c24;
  content: "";
  opacity: 0;
  transform: translate(-10px, -50%);
  transition: height 0.5s, transform 0.5s, opacity 0.5s 0.1s;
}

.catalog-list__item .svg-icon {
  width: 36px;
  height: 10px;
  fill: #ed1c24;
  opacity: 0;
  transform: translate(-10px, 0);
  transition: opacity 0.5s, transform 0.5s;
}

@media (min-width: 1025px) {
  .catalog-list__item:hover::before {
    height: 100%;
    opacity: 1;
    transform: translate(0, -50%);
    transition: height 0.5s, transform 0.5s, opacity 0.1s;
  }
  .catalog-list__item:hover .svg-icon {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.cursor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-60%, -60%);
  pointer-events: none;
  opacity: 0;
  transition: width 0.5s, height 0.5s, opacity 0.5s;
}

.cursor.active {
  width: 64px;
  height: 64px;
  opacity: 1;
}

.cursor .svg-icon {
  width: 22px;
  height: 12px;
  fill: #ed1c24;
}

.advantages {
  position: relative;
  margin-top: 190px;
  margin-bottom: 140px;
}

@media (max-width: 1024px) {
  .advantages {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .advantages {
    margin-bottom: 60px;
  }
}

.advantages__title {
  max-width: 450px;
  margin-bottom: 100px;
  font-size: 36px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .advantages__title {
    margin-bottom: 50px;
  }
}

.advantages__title::before {
  width: 44px;
  height: 5px;
  display: block;
  margin-bottom: 30px;
  background-color: #ed1c24;
  content: "";
}

.advantages__img {
  position: absolute;
  top: -66px;
  left: calc(50% - 70px);
  z-index: -1;
  max-width: 828px;
}

@media (max-width: 767px) {
  .advantages__img {
    display: none;
  }
}

.advantages-block {
  max-width: 220px;
  line-height: 24px;
}

@media (max-width: 767px) {
  .advantages-block {
    max-width: none;
  }
}

.advantages-block::before {
  margin-bottom: 20px;
  display: block;
  font-size: 14px;
  color: #75767e;
  counter-increment: list;
  content: "0" counter(list) ".";
}

@media (max-width: 767px) {
  .advantages-block::before {
    margin-bottom: 14px;
  }
}

.advantages-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  counter-reset: list;
}

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

@media (max-width: 767px) {
  .advantages-blocks {
    grid-template-columns: 1fr;
  }
}

.advantages-block__title {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .advantages-block__title {
    margin-bottom: 20px;
  }
}

.partners {
  margin: 120px 0 190px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
  grid-row-gap: 100px;
}

@media (max-width: 1024px) {
  .partners {
    margin: 60px 0 90px;
    grid-template-columns: repeat(3, auto);
    grid-gap: 30px;
  }
}

@media (max-width: 767px) {
  .partners {
    margin: 30px 0 0;
  }
}

@media (max-width: 543px) {
  .partners {
    justify-content: space-around;
    grid-template-columns: repeat(2, 35%);
  }
}

.partners__wrap {
  padding: 130px 0 0;
  background-color: #efeff2;
}

@media (max-width: 1024px) {
  .partners__wrap {
    padding: 60px 0 0;
  }
}

@media (max-width: 767px) {
  .partners__wrap {
    padding: 60px 0 90px;
  }
}

.partners__title {
  font-size: 36px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .partners__title {
    font-size: 28px;
  }
}

.partners__item {
  max-width: 240px;
  max-height: 100px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: filter 0.5s, opacity 0.5s;
}

.partners__item img {
  max-height: 100%;
}

@media (min-width: 1024px) {
  .partners__item:hover {
    cursor: pointer;
    opacity: 1;
    filter: grayscale(0);
  }
}

@media (max-width: 992px) {
  .partners__item {
    filter: grayscale(0);
    opacity: 1;
  }
}

.request-block {
  position: relative;
  top: 15px;
  z-index: 1;
  min-height: 190px;
  padding: 64px 130px;
  /* margin-bottom: -15px; */
  margin-top: -15px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(32, 32, 32, 0.08);
}

@media (max-width: 1024px) {
  .request-block {
    padding: 20px 30px;
  }
}

@media (max-width: 767px) {
  .request-block {
    display: none;
    min-height: 0;
    text-align: center;
  }
}

.request-block::after {
  position: absolute;
  top: -1px;
  right: 31px;
  bottom: 0;
  z-index: -1;
  width: 220px;
  height: 100%;
  background: url("../img/light-detail2.svg") center no-repeat;
  background-size: contain;
  content: "";
}

@media (max-width: 767px) {
  .request-block::after {
    display: none;
  }
}

.request-block__title {
  margin-right: 30px;
  font-size: 26px;
  font-weight: 700;
  line-height: 38px;
}

@media (max-width: 767px) {
  .request-block__title {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 30px;
    margin-right: 0;
  }
}

@media (max-width: 319px) {
  .request-block__title {
    font-size: 18px;
    line-height: 26px;
  }
}

.request-block .btn {
  margin-left: auto;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 262px;
  grid-column-gap: 65px;
}

@media (max-width: 767px) {
  .detail-content {
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
  }
}

.detail-content .btn-o {
  margin-top: 20px;
}

.detail-aside {
  position: -webkit-sticky;
  position: sticky;
  top: 130px;
}

.detail-characteristic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid #d9dae4;
}

@media (max-width: 543px) {
  .detail-characteristic {
    grid-template-columns: 1fr;
  }
}

.detail-characteristic__wrap {
  margin-top: 100px;
}

@media (max-width: 767px) {
  .detail-characteristic__wrap {
    margin-top: 60px;
  }
}

.detail-characteristic__title {
  padding: 10px 22px;
  border-top: 1px solid #d9dae4;
  border-right: 1px solid #d9dae4;
  border-left: 1px solid #d9dae4;
}

.detail-characteristic__valed {
  padding: 10px 22px;
  border-top: 1px solid #d9dae4;
  border-right: 1px solid #d9dae4;
}

@media (max-width: 543px) {
  .detail-characteristic__valed {
    border-top: none;
    border-left: 1px solid #d9dae4;
  }
}

.project {
  height: 280px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 390px 1fr;
  grid-template-rows: 1fr 68px;
  border: 1px solid #efeff2;
  cursor: pointer;
}

@media (max-width: 992px) {
  .project {
    grid-template-columns: 290px 1fr;
    height: 240px;
  }
}

@media (max-width: 767px) {
  .project {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.project__img {
  grid-row: span 2;
}

.project__img img {
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 100%;
  min-width: 100%;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .project__img {
    height: calc((100vw - 40px) * (28 / 39));
  }
}

.project__subtitle {
  margin-bottom: 18px;
  font-size: 12px;
}

@media (max-width: 992px) {
  .project__subtitle {
    margin-bottom: 16px;
  }
}

.project__title {
  max-width: 480px;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

@media (max-width: 992px) {
  .project__title {
    font-size: 18px;
    line-height: 26px;
  }
}

.project__content {
  padding-top: 40px;
  padding-left: 67px;
}

@media (max-width: 992px) {
  .project__content {
    padding-top: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .project__content {
    padding: 20px;
  }
}

.project__bottom {
  padding-left: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #efeff2;
}

.project__bottom .tag {
  margin-right: 10px;
}

.project__bottom .file {
  margin-bottom: 0;
  max-width: 60%;
}

@media (max-width: 992px) {
  .project__bottom {
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .project__bottom {
    padding-left: 20px;
  }
  .project__bottom .file {
    width: 64px;
  }
  .project__bottom .file__icon {
    border-right: none;
  }
  .project__bottom .file__title,
  .project__bottom .file__type {
    display: none;
  }
}

@media (max-width: 543px) {
  .project__bottom {
    padding-left: 0;
  }
  .project__bottom .tag {
    padding: 20px;
  }
}

.tag {
  font-size: 12px;
  font-weight: 700;
  color: #75767e;
}

.filter {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .filter {
    margin-bottom: 30px;
  }
}

.filter .btn {
  margin-right: 10px;
  margin-bottom: 10px;
  min-width: 146px;
}

@media (max-width: 767px) {
  .filter .btn {
    margin-right: 5px;
    margin-bottom: 5px;
  }
}

.filter .btn.active {
  pointer-events: none;
}

.article {
  min-height: 226px;
  display: flex;
  flex-direction: column;
  border: 1px solid #efeff2;
}

.article__title {
  max-width: 415px;
  margin: 30px 33px;
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  transition: color 0.5s;
}

@media (min-width: 1025px) {
  .article__title:hover {
    color: #ed1c24;
  }
}

@media (max-width: 543px) {
  .article__title {
    max-width: none;
    margin: 20px;
    font-size: 18px;
    line-height: 26px;
  }
}

.article__bottom {
  height: 68px;
  margin-top: auto;
  padding: 0 33px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #efeff2;
}

@media (max-width: 543px) {
  .article__bottom {
    height: auto;
    padding: 20px 20px 10px;
    flex-wrap: wrap;
  }
  .article__bottom .tag {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .article__bottom .link {
    margin-bottom: 10px;
  }
}

.articles__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 12px;
}

@media (max-width: 992px) {
  .articles__content {
    grid-template-columns: 1fr;
  }
}

.articles-detail .link {
  margin-top: 77px;
}

@media (max-width: 767px) {
  .articles-detail .link {
    margin-top: 40px;
  }
}

/* .index .header {
  position: fixed;
} */

.index ~ .footer {
  margin-top: 0;
}

.index ~ .footer .footer__contacts .btn {
  display: none;
}

@media (max-width: 767px) {
  .index ~ .footer .footer__contacts .btn {
    display: inline-flex;
  }
}

.page404-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}
.page404-body__img {
  width: 334px;
  height: 403px;
}

.page404-body__img img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.page404-body__text {
  color: #202020;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

.page404-body__text a {
  color: #ed1c24;
  font-weight: 700;
}

.detail-swiper {
  width: 100%;
  overflow: hidden;
}
.detail-swiper .swiper-slide {
  width: 286px;
  height: 210px;
}

.detail-swiper .swiper-slide a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.detail-swiper .swiper-slide a::before {
  content: url("../img/zoom.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  width: fit-content;
  height: fit-content;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.detail-swiper .swiper-slide a:hover::before {
  opacity: 1;
}

.slider-block {
  margin-top: 100px;
}

.slider-block h2 {
  margin-bottom: 54px;
}

.detail-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 700px) {
  .slider-block {
    margin-top: 60px;
  }
  .slider-block h2 {
    margin-bottom: 30px;
  }
  .detail-swiper .swiper-slide {
    width: 200px;
    height: 147px;
  }
}

/* documentation-page */
.documentation {
}

.documentation__title {
  font-weight: 700;
  font-size: 36px;
  color: #202020;
  margin-bottom: 70px;
}

.documentation__body {
  display: -ms-grid;
  display: grid;
  gap: 40px;
  max-width: 753px;
}

.documentation__group {
  display: -ms-grid;
  display: grid;
  gap: 24px;
  color: #202020;
}

.group-doc {
}

.group-doc__caption {
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
}

.accordion-doc {
}

.accordion-doc__item {
  border-top: 1px solid #efeff2;
  border-bottom: 1px solid #efeff2;
  margin-top: -1px;
  padding: 0 24px;
}

.accordion-doc__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #202020;
  padding: 14px 0px;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.accordion-doc__item.active .accordion-doc__header::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.accordion-doc__item.active .accordion-doc__header + .accordion-doc__content {
  opacity: 1;
}

.accordion-doc__header::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url("../img/icons/arrow.svg");
          mask-image: url("../img/icons/arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: currentColor;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, background-color 0.3s;
  transition: transform 0.3s, background-color 0.3s;
  transition: transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;
}

.accordion-doc__content {
  height: 0px;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s, opacity 0.3s;
  -o-transition: height 0.3s, opacity 0.3s;
  transition: height 0.3s, opacity 0.3s;
}

.accordion-doc__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 2px 0 14px;
}

.accordion-doc__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  padding-left: 24px;
  position: relative;
}

@media (any-hover: hover) and (pointer: fine) {
  .accordion-doc__list-item:hover {
    cursor: pointer;
  }
  .accordion-doc__list-item:hover::before {
    background-color: #ed1c24;
  }
  .accordion-doc__list-item:hover .accordion-doc__name {
    color: #ed1c24;
  }
  .accordion-doc__header {
    cursor: pointer;
  }
  .accordion-doc__header:hover {
    color: #ed1c24;
  }
}

.accordion-doc__list-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-mask-image: url("../img/icons/file.svg");
          mask-image: url("../img/icons/file.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #202020;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.accordion-doc__name::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.accordion-doc__name {
  font-size: 14px;
  line-height: 18px;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.accordion-doc__params {
  font-size: 11px;
  color: #75767e;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.accordion-doc__param {
  position: relative;
}

.accordion-doc__param + .accordion-doc__param {
  padding-left: 11px;
}

.accordion-doc__param + .accordion-doc__param::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #b4b5b9;
}

@media screen and (max-width: 767px) {
  .group-doc__caption {
    font-size: 20px;
    line-height: 24px;
  }
  .accordion-doc__item {
    padding: 0 16px;
  }
}
.page-top img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}
.partners {
    margin: 90px 0 120px;
    grid-template-columns: repeat(3, auto);
    grid-row-gap: 75px;
}
.partners__item {
    filter: none;
}
/*# sourceMappingURL=maps/main.css.map */
header nav#block-menu-main li a[href="/services/"] {
display: none;
}




/* Доставка */
 .delivery-page-container {
      line-height: 1.6;
      /* color: #333333; */
    }
    .delivery-page-container h2 {
      color: #111111;
      margin-top: 1.2em;
      margin-bottom: 0.6em;
      font-weight: 700;
    }
    .delivery-page-container h3 {
      color: #111111;
      margin-top: 1.2em;
      margin-bottom: 0.6em;
      font-weight: 700;
    }
    .delivery-page-container p {
      margin-bottom: 1.2em;
    }
    .delivery-page-container ul {
      margin-bottom: 1.2em;
      padding-left: 24px;
    }
    .delivery-page-container li {
      margin-bottom: 0.5em;
    }
    
    /* Сетка основных информационных карточек */
    .delivery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin: 35px 0;
    }
    .delivery-card {
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .delivery-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    }
    .delivery-card-icon {
      width: 54px;
      height: 54px;
      background-color: #fef2f2;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .delivery-card-icon svg, .delivery-card-icon img {
      width: 28px;
      height: 28px;
      object-fit: contain;
    }
    .delivery-card h4 {
      font-size: 1.2em;
      color: #111111;
      margin-top: 0;
      margin-bottom: 12px;
      font-weight: 700;
    }
    .delivery-card p {
      margin-bottom: 10px;
      font-size: 0.95em;
      /* color: #4b5563; */
    }
    .delivery-card p:last-child {
      margin-bottom: 0;
    }
    .delivery-card ul {
      margin-bottom: 0;
      padding-left: 20px;
    }

    /* --- НОВЫЙ БЛОК ПРЕИМУЩЕСТВ С ИКОНКАМИ --- */
    .advantages-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      margin: 50px 0;
      padding: 30px 15px;
      background: #ffffff;
      border-top: 1px solid #e5e7eb;
      border-bottom: 1px solid #e5e7eb;
    }
    .advantage-item {
      flex: 1 1 calc(25% - 15px);
      min-width: 170px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-sizing: border-box;
    }
    .advantage-icon-wrapper {
      width: 64px;
      height: 64px;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .advantage-icon-wrapper svg, .advantage-icon-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .advantage-title {
      font-size: 0.9em;
      line-height: 1.4;
      color: #000000;
    }
    /* Первые два пункта: стиль uppercase (как на макете) */
    .advantage-item:nth-child(1) .advantage-title,
    .advantage-item:nth-child(2) .advantage-title {
      font-size: 0.8em;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: #111111; /* Тёмно-синий акцент */
    }
    /* Третий и четвертый пункты: классический шрифт (как на макете) */
    .advantage-item:nth-child(3) .advantage-title,
    .advantage-item:nth-child(4) .advantage-title {
      font-size: 0.95em;
      font-weight: 700;
      color: #111111;
    }

    /* Блок контактов */
    .phone-section {
      background: #fcfcfc;
      border: 1px dashed #e5e7eb;
      border-radius: 12px;
      padding: 24px;
      text-align: center;
      margin-top: 40px;
    }
    .phone-section p {
      margin-bottom: 8px;
      font-size: 1.05em;
    }
    .phone-link {
      font-size: 1.55em;
      font-weight: 800;
      color: #e51b24;
      text-decoration: none;
      display: inline-block;
      transition: color 0.2s;
    }
    .phone-link:hover {
      color: #b91c1c;
      text-decoration: underline;
    }
    
    /* Адаптивность под планшеты и мобильные */
    @media (max-width: 992px) {
      .advantage-item {
        flex: 1 1 calc(50% - 15px);
        margin-bottom: 20px;
      }
    }
    @media (max-width: 768px) {
      .delivery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
    }
    @media (max-width: 480px) {
      .advantage-item {
        flex: 1 1 100%;
      }
    }









/* Главная */

 .dx-hero {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    padding: 80px 0 70px;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: image-set(url(/themes/dextra/assets/img/main_hero/DSC_0042-min.jpg) 1x) top center / cover no-repeat;
  }
  .dx-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgb(26 34 90 / 85%) 0%, rgb(15 21 88 / 95%) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Контейнер формы на баннере */
  .dx-hero__form-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    max-width: 440px;
    width: 100%;
    z-index: 2;
    position: relative;
    box-sizing: border-box;
  }
  
  /* Заголовок формы */
  .dx-hero__form-title {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a2634;
    margin-bottom: 24px;
    line-height: 1.3;
  }

  /* Небольшие корректировки внутренних отступов формы на первом экране */
  .dx-hero__form-container form {
    margin: 0;
  }
  .dx-hero__form-container .form__item {
    margin-bottom: 16px;
  }
  .dx-hero__form-container .form-actions {
    margin-top: 20px;
  }
  .dx-hero__form-container .form__agree {
    margin-top: 15px;
    font-size: 11px;
    line-height: 1.4;
    color: #8a9aaa;
  }

  /* Корректировка пропорций колонок баннера для десктопов */
  @media (min-width: 1025px) {
    .dx-hero__container {
      grid-template-columns: 1.1fr 1fr; /* Даем чуть больше пространства правой колонке с формой */
      gap: 50px;
    }
  }
  .dx-hero__accent {
    position: absolute;
    top: 0; right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, #ed1c24 200%);
    opacity: 0.03;
    pointer-events: none;
  }
  .dx-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 6px 16px;
    border: 1px solid rgba(237, 28, 36, 0.25);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ed1c24;
    text-transform: uppercase;
    background-color: rgb(255 255 255 / 95%);
  }
  .dx-hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ed1c24;
    flex-shrink: 0;
  }
  .dx-hero__container {
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
  }
  .dx-hero__title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #f7f7f7;
    margin: 0 0 20px;
  }
  .dx-hero__title span {
    color: #ed1c24;
  }
  .dx-hero__subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    color: #f7f7f7;
    margin: 0 0 36px;
    max-width: 520px;
  }
  .dx-hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .dx-hero__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 50px;
    padding: 0 36px;
    border-radius: 25px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #ffffff;
    background-color: #ed1c24;
    border: 1px solid #ed1c24;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, border-color 0.3s;
  }
  .dx-hero__btn-primary:hover {
    background-color: #c1121a;
    border-color: #c1121a;
  }
  .dx-hero__btn-primary svg {
    width: 14px;
    height: 14px;
    fill: #ffffff;
  }
  .dx-hero__btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 50px;
    padding: 0 28px;
    border-radius: 25px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #2c3e4e;
    background-color: #f8f9fc;
    border: 1px solid #dce2ea;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.3s, background-color 0.3s, color 0.3s;
  }
  .dx-hero__btn-secondary:hover {
    border-color: #ed1c24;
    background-color: #fff5f5;
    color: #c1121a;
  }
  .dx-hero__stats {
    display: flex;
    gap: 36px;
    margin-top: 42px;
    padding-top: 32px;
    border-top: 1px solid #e5e9f0;
  }
  .dx-hero__stat-value {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #f7f7f7;
    line-height: 1;
    margin-bottom: 4px;
  }
  .dx-hero__stat-value span {
    color: #ed1c24;
  }
  .dx-hero__stat-label {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #f7f7f7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
  }
  .dx-hero__cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 220px;
  }
  .dx-hero__card {
    background: #fefefe;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
  }
  .dx-hero__card:hover {
    background: #ffffff;
    border-color: #ed1c24;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }
  .dx-hero__card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(237, 28, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .dx-hero__card-icon svg {
    width: 18px;
    height: 18px;
    fill: #ed1c24;
  }
  .dx-hero__card-name {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #1a2634;
    line-height: 1.2;
    margin-bottom: 2px;
  }
  .dx-hero__card-abbr {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    color: #8a9aaa;
  }
  .dx-hero__card-arrow {
    margin-left: auto;
    width: 16px;
    height: 16px;
    fill: #cad2db;
    flex-shrink: 0;
    transition: fill 0.3s;
  }
  .dx-hero__card:hover .dx-hero__card-arrow {
    fill: #ed1c24;
  }

  @media (max-width: 1024px) {
    .dx-hero__container {
      padding: 0 30px;
      gap: 40px;
    }
    .dx-hero__title {
      font-size: 34px;
    }
    .dx-hero__cards {
      min-width: 190px;
    }
  }
  @media (max-width: 767px) {
    .dx-hero {
      padding: 50px 0 50px;
      min-height: auto;
    }
    .dx-hero__container {
      grid-template-columns: 1fr;
      padding: 0 20px;
      gap: 32px;
    }
    .dx-hero__title {
      font-size: 26px;
    }
    .dx-hero__subtitle {
      font-size: 14px;
    }
    .dx-hero__cards {
      flex-direction: row;
      flex-wrap: wrap;
      min-width: auto;
    }
    .dx-hero__card {
      flex: 1 1 calc(50% - 5px);
      min-width: 140px;
    }
    .dx-hero__stats {
      gap: 24px;
      flex-wrap: wrap;
    }
    .dx-hero__stat-value {
      font-size: 22px;
    }
  }
  @media (max-width: 543px) {
    .dx-hero__container {
      padding: 0 15px;
    }
    .dx-hero__card {
      flex: 1 1 100%;
    }
    .dx-hero__actions {
      flex-direction: column;
      align-items: flex-start;
    }
    .dx-hero__btn-primary,
    .dx-hero__btn-secondary {
      width: 100%;
      justify-content: center;
    }
  }

















  /* Контейнер списка карточек */
.document-cards-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 15px;
  margin-bottom: 30px;
}

/* Карточка документа, аналогичная карточке проекта */
.document-card {
  display: flex;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  min-height: 220px; /* Минимальная высота для выравнивания */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.document-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

/* Левая колонка: Обложка во всю высоту без рамок и отступов */
.document-card__cover {
  flex-shrink: 0;
  width: 350px; /* Фиксированная ширина обложки, как у проектов */
  background: #f8fafc;
  border-right: 1px solid #e5e7eb;
  position: relative;
}

.document-card__cover picture,
.document-card__cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Заглушка, если обложка не загружена */
.document-card__no-cover {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
}

.document-card__no-cover svg {
  width: 56px;
  height: 56px;
  fill: #cbd5e1;
}

/* Правая колонка: Контентная область */
.document-card__content {
  flex-grow: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Выталкивает нижнюю панель вниз */
}

/* Верхняя секция с текстом */
.document-card__info {
  margin-bottom: 15px;
}

/* Главный заголовок документа */
.document-card__title {
  font-size: 22px; /* Крупный размер шрифта как в проектах */
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

/* Дополнительное описание */
.document-card__desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

/* Нижняя секция: линия разделения и позиционирование элементов */
.document-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Распределяет тег влево, кнопку вправо */
  border-top: 1px solid #f1f5f9; /* Серая линия разделителя как в проектах */
  padding-top: 20px;
  margin-top: auto;
}

/* Тег категории слева внизу */
.document-card__tag {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Кнопка скачивания */
.document-card__download {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 4px;
  padding: 12px 24px;
  text-decoration: none !important;
  color: #0f172a !important;
  transition: background-color 0.2s ease;
  min-width: 220px;
}

.document-card__download:hover {
  background: #e2e8f0;
}

.document-card__download-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
}

.document-card__download-icon svg {
  width: 24px;
  height: 24px;
  fill: #e31e24; /* Фирменный красный Dextra */
}

.document-card__download-text {
  display: flex;
  flex-direction: column;
}

.document-card__download-label {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.document-card__download-mime {
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 992px) {
  .document-card {
    flex-direction: column;
  }
  
  .document-card__cover {
    width: 100%;
    height: 200px;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .document-card__content {
    padding: 20px;
  }
  
  .document-card__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  
  .document-card__tag {
    text-align: center;
  }
  
  .document-card__download {
    width: 100%;
    justify-content: center;
  }
}





/* Контейнер для всех картинок */
.project-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px; /* Расстояние между картинками */
  margin-top: 20px;
  width: 100%;
}

/* Сетка: каждая картинка занимает треть ширины строки (минус отступы) */
.project-gallery__item {
  flex: 0 0 calc(33.333% - 10px);
  max-width: calc(33.333% - 10px);
}

/* Оформление самих изображений */
.project-gallery__item img {
  width: 100%;
  height: 250px; /* Фиксированная высота, чтобы сетка была ровной */
  object-fit: cover; /* Изображение аккуратно впишется без искажения пропорций */
  border-radius: 4px; /* Легкое скругление углов */
}


/* ======================================================
   1. ОБЩИЕ СТИЛИ (УБИРАЕМ КРАСНЫЙ ФОН И КОРРЕКТИРУЕМ СЕТКУ)
   ====================================================== */
/* ======================================================
   1. ОБЩИЕ СТИЛИ ГАЛЕРЕИ В ЛЕВОЙ КОЛОНКЕ (450px)
   ====================================================== */
.project-detail-page .gallery {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important; /* Ограничений нет, ширина задается колонкой в 450px */
}

/* Убираем фоновые цвета и обводки, чтобы ничего не просвечивало */
.project-detail-page .gallery__item,
.project-detail-page .gallery__item picture {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}


/* ======================================================
   2. КЕЙС: ЕСЛИ В ГАЛЕРЕЕ ВСЕГО ОДНА КАРТИНКА (only-child)
   ====================================================== */
.project-detail-page .gallery__item:only-child {
  flex: 0 0 100% !important; /* Крупная одиночная картинка на всю ширину левой колонки */
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: auto !important;
  display: block !important;
}

.project-detail-page .gallery__item:only-child picture,
.project-detail-page .gallery__item:only-child img {
  width: 100% !important;
  height: auto !important;
  max-height: 600px !important;
  object-fit: contain !important; /* Одиночная картинка видна полностью */
}


/* ======================================================
   3. КЕЙС: ЕСЛИ КАРТИНОК НЕСКОЛЬКО (2 ИЛИ БОЛЕЕ) — Сетка из 2 колонок
   ====================================================== */
.project-detail-page .gallery__item:not(:only-child) {
  /* Выстраиваем по 2 миниатюры в ряд (примерно по 217px каждая) */
  flex: 0 0 calc(50% - 7.5px) !important; 
  max-width: calc(50% - 7.5px) !important;
  height: auto !important;
  aspect-ratio: 3 / 4 !important; /* Вертикальный формат миниатюр */
}

.project-detail-page .gallery__item:not(:only-child) picture {
  height: 100% !important;
  width: 100% !important;
}

.project-detail-page .gallery__item:not(:only-child) img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; /* Миниатюры ровно заполняют ячейки */
}




/* Показываем картинку в списке целиком без обрезки */
.project__img img {
  object-fit: contain !important;
  background: none !important; /* Убираем возможный фоновый цвет */
}



/* ========================================================
   Адаптивность для страницы проекта и видео
   ======================================================== */

.project-detail-page {
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Убираем жесткие ограничения flexbox для сжатия */
.project-detail__grid {
    box-sizing: border-box;
    width: 100%;
}

.project-detail__image,
.project-detail__info {
    box-sizing: border-box;
    min-width: 0; /* Позволяет flex-элементам сжиматься меньше содержимого */
}

/* Автоматическая адаптация iframe (Rutube / YouTube) */
.project-detail__info iframe,
.project-detail__info video,
.project-detail__info embed {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9; /* Сохраняет пропорции 16:9 */
}

/* Адаптация изображений и таблиц */
.project-detail__info img {
    max-width: 100% !important;
    height: auto !important;
}

.project-detail__info table {
    max-width: 100% !important;
    width: 100% !important;
    display: block;
    overflow-x: auto;
}

/* Перенос длинных строк и заголовков */
.project-detail__info h1,
.project-detail__info h2,
.project-detail__info p,
.project-detail__info li {
    overflow-wrap: break-word;
    word-break: normal;
}

/* Мобильная версия (экраны до 768px) */
@media (max-width: 768px) {
    .project-detail-page {
        padding: 15px 10px !important;
    }

    .project-detail__grid {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .project-detail__image,
    .project-detail__info {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .project-detail__info h1 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    .project-detail__info h2 {
        font-size: 18px !important;
        line-height: 1.3 !important;
        margin-top: 25px !important;
    }

    /* Кнопка "Запросить КП" на всю ширину для удобного клика */
    .project-detail__info a[data-popup] {
        display: block !important;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
}






/* Кнопка "Назад" в статьях */
.btn-back-wrap {
    margin: 20px 0 30px 0;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #f4f6f8;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-back:hover {
    background-color: #e51a24;
    color: #ffffff;
    border-color: #e51a24;
}

.btn-back svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}