@charset "UTF-8";
/* Шрифты */
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: MontserratAlternates;
  font-display: swap;
  src: url("../fonts/MontserratAlternates-ExtraBold.woff2") format("woff2"), url("../fonts/MontserratAlternates-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
body {
  overflow-y: scroll;
  scroll-behavior: smooth;
  font-family: Montserrat;
  font-style: normal;
  color: #333;
  font-weight: 400;
  font-size: 18rem;
}
@media (max-width: 992px) {
  body {
    font-size: 16rem;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 16rem;
  }
}
/* Шапка сайта */
.header-fixheight {
  display: block;
  position: absolute;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}
.header-fixheight--active {
  position: relative;
}
.header_block {
    width: 100%;
    max-width: 1666rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header {
  position: absolute;
  max-width: 100%;
  width: 100%;
  background-color: transparent;
  z-index: 10000;
  transition-property: padding-top, padding-bottom, box-shadow, background-color;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  box-shadow: unset;
  padding-top: 39rem;
  padding-bottom: 20rem;
}
@media (max-width: 992px) {
  .header {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }
}
@media (max-width: 768px) {
  .header {
    padding-top: 18rem;
    padding-bottom: 18rem;
  }
}
.header__container {
  display: flex;
  align-items: center;
  margin-left: 50rem;
  margin-right: 20rem;
}
@media (max-width: 992px) {
  .header__container {
    margin-left: 40rem;
    margin-right: 40rem;
  }
}
@media (max-width: 768px) {
  .header__container {
    margin-left: 15rem;
    margin-right: 15rem;
  }
}
@media (max-width: 768px) {
  .header__container {
    justify-content: space-between;
  }
}
@media (max-width: 992px) {
  .header__wrapper-button {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .header__wrapper-button {
    order: 2;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .header__wrapper-button .btn {
    min-height: 32rem;
    max-height: 32rem;
    padding-left: 12rem;
    padding-right: 12rem;
    font-size: 12rem;
    line-height: 14rem;
  }
}
.header__hamburger {
  transition: opacity 0.3s linear;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 47rem;
  min-width: 47rem;
  row-gap: 10rem;
  margin-right: 66rem;
  top: -2rem;
}
.header__hamburger:hover {
  opacity: 0.8;
}
@media (max-width: 1440px) {
  .header__hamburger {
    margin-right: 1.6666666667vw;
  }
}
@media (max-width: 992px) {
  .header__hamburger {
    width: 40rem;
    min-width: 40rem;
    row-gap: 8rem;
    margin-right: 24rem;
    top: 1rem;
  }
}
@media (max-width: 768px) {
  .header__hamburger {
    width: 35rem;
    min-width: 35rem;
    row-gap: 7rem;
    margin-right: 13.4rem;
  }
}
@media (max-width: 768px) {
  .header__hamburger {
    order: 0;
  }
}
.header__hamburger:hover {
  cursor: pointer;
  opacity: 0.7;
}
.header__hamburger::before, .header__hamburger::after {
  content: "";
  position: relative;
  top: 0;
  left: 0;
  transition-property: top, left, transform;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.header__hamburger::before, .header__hamburger::after, .header__hamburger span {
  display: block;
  width: 100%;
  border-bottom-color: #333;
  border-bottom-style: solid;
  border-bottom-width: 3rem;
  border-radius: 8rem;
}
.header__hamburger span {
  opacity: 1;
  transition: opacity 0.3s linear;
}
.header__hamburger--close {
  transition: transform 0.3s linear;
}
.header__hamburger--close:hover {
  transform: rotate(-90deg);
  opacity: 1;
}
.header__hamburger--close span {
  opacity: 0;
}
.header__hamburger--close::before {
  transform: rotate(-45deg);
  top: 14rem;
}
@media (max-width: 992px) {
  .header__hamburger--close::before {
    top: 11.5rem;
  }
}
@media (max-width: 768px) {
  .header__hamburger--close::before {
    top: 11rem;
  }
}
.header__hamburger--close::after {
  transform: rotate(45deg);
  top: -12rem;
}
@media (max-width: 992px) {
  .header__hamburger--close::after {
    top: -10rem;
  }
}
@media (max-width: 768px) {
  .header__hamburger--close::after {
    top: -8rem;
  }
}
.header__logo {
    margin-right: 16rem;
}
@media (max-width: 1440px) {
  .header__logo {
    margin-right: 0.5555555556vw;
  }
}
@media (max-width: 768px) {
  .header__logo {
    margin-right: 16rem;
  }
}
.header__logo:hover {
  opacity: 1;
}
.header__menu {
  padding: 0;
  margin: 0;
  margin-left: auto;
  margin-right: 66rem;
}
@media (max-width: 1600px) {
  .header__menu {
    margin-right: 1.5vw;
  }
}
@media (max-width: 1440px) {
  .header__menu {
    margin-right: 1.6666666667vw;
  }
}
@media (max-width: 992px) {
  .header__menu {
    margin-right: 3.125vw;
  }
}
@media (max-width: 992px) {
  .header__menu.header__menu {
    display: none;
  }
}
.header__menu li {
  position: relative;
}
.header__menu li::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FF2E2E;
  pointer-events: none;
  z-index: 0;
  border-left-color: #FF2E2E;
  border-left-style: solid;
  transition-property: top;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  border-radius: 50%;
  width: 1.25vw;
  min-width: 1.25vw;
  height: 1.25vw;
  min-height: 1.25vw;
  top: -7.8125vw;
}
@media (max-width: 1600px) {
  .header__menu li::after {
    width: 1.5vw;
    min-width: 1.5vw;
    height: 1.5vw;
    min-height: 1.5vw;
  }
}
@media (max-width: 1440px) {
  .header__menu li::after {
    width: 1.6666666667vw;
    min-width: 1.6666666667vw;
    height: 1.6666666667vw;
    min-height: 1.6666666667vw;
  }
}
@media (max-width: 1600px) {
  .header__menu li::after {
    top: -9.375vw;
  }
}
@media (max-width: 1440px) {
  .header__menu li::after {
    top: -10.4166666667vw;
  }
}
.header__menu li a::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom-style: solid;
  border-bottom-color: #FF2E2E;
  position: absolute;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s linear;
  border-bottom-width: 3rem;
  bottom: -6rem;
}
.header__menu li:hover a::after, .header__menu li.active a::after {
  opacity: 1;
}
.header__menu li:hover::after, .header__menu li.active::after {
  top: -3.75vw;
}
@media (max-width: 1600px) {
  .header__menu li:hover::after, .header__menu li.active::after {
    top: -4.5vw;
  }
}
@media (max-width: 1440px) {
  .header__menu li:hover::after, .header__menu li.active::after {
    top: -5vw;
  }
}

.main-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 64rem;
}
@media (max-width: 1600px) {
  .main-list {
    column-gap: 2vw;
  }
}
@media (max-width: 1440px) {
  .main-list {
    column-gap: 1.6666666667vw;
  }
}
@media (max-width: 992px) {
  .main-list {
    column-gap: 2.0833333333vw;
  }
}
.main-list li {
  margin: 0;
  padding: 0;
}
.main-list li:hover a {
  opacity: 1;
}
.main-list li a {
  color: #000;
  text-decoration: none;
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  position: relative;
}
.main-list .sub-menu__wrapper {
  background: white;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  list-style: none;
  display: flex;
  flex-direction: column;
  padding-top: 0.8333333333vw;
  padding-bottom: 0.8333333333vw;
  border-radius: 0.5208333333vw;
}
@media (max-width: 1600px) {
  .main-list .sub-menu__wrapper {
    padding-top: 1vw;
    padding-bottom: 1vw;
    border-radius: 0.625vw;
  }
}
@media (max-width: 1440px) {
  .main-list .sub-menu__wrapper {
    padding-top: 1.1111111111vw;
    padding-bottom: 1.1111111111vw;
    border-radius: 0.6944444444vw;
  }
}
.main-list .sub-menu {
  position: absolute;
  z-index: 4;
  left: 0;
  top: 100%;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  width: 13.0208333333vw;
  padding-top: 1.5625vw;
}
@media (max-width: 1600px) {
  .main-list .sub-menu {
    width: 15.625vw;
    padding-top: 1.875vw;
  }
}
@media (max-width: 1440px) {
  .main-list .sub-menu {
    width: 17.3611111111vw;
    padding-top: 2.0833333333vw;
  }
}
.main-list li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
.main-list .sub-menu__item::after {
  display: none;
}
.main-list .sub-menu__item {
  border-bottom: 0px solid #dedede;
  padding-bottom: 0.8333333333vw;
}
@media (max-width: 1600px) {
  .main-list .sub-menu__item:first-child {
    padding-bottom: 1vw;
  }
}
@media (max-width: 1440px) {
  .main-list .sub-menu__item {
    padding-bottom: 1.1111111111vw;
  }
}
.main-list .sub-menu__item:last-child {
  padding-top: 0;
}

@media (max-width: 1440px) {
  .main-list .sub-menu__item:last-child {
    padding-top: 0;
  }
}
.main-list .sub-menu__link {
  font-weight: 500;
  transition: color 0.3s linear;
  padding-left: 1.0416666667vw;
  font-size: 0.9375vw;
}
@media (max-width: 1600px) {
  .main-list .sub-menu__link {
    padding-left: 1.25vw;
    font-size: 1.125vw;
  }
}
@media (max-width: 1440px) {
  .main-list .sub-menu__link {
    padding-left: 1.3888888889vw;
    font-size: 1.25vw;
  }
}
.main-list .sub-menu__link::after {
  display: none;
}
.main-list .sub-menu__link:hover {
  color: #ff2e2e;
}

.header--fixed {
  background-color: #fff;
  position: fixed;
  box-shadow: 0rem 0rem 20rem rgba(0, 0, 0, 0.15);
  padding-top: 20rem;
  padding-bottom: 20rem;
}
@media (max-width: 992px) {
  .header--fixed {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}
.header--fixed .header__menu li:hover::after,
.header--fixed .header__menu li.active::after {
  top: -2.7083333333vw;
}
@media (max-width: 1600px) {
  .header--fixed .header__menu li:hover::after,
.header--fixed .header__menu li.active::after {
    top: -3.25vw;
  }
}
@media (max-width: 1440px) {
  .header--fixed .header__menu li:hover::after,
.header--fixed .header__menu li.active::after {
    top: -3.6111111111vw;
  }
}
.hero_padding {
    padding-top: 120rem;
}
@media (max-width: 992px){
	.hero_padding {
		padding-top: 65rem;
	}
}
/* Импортные CSS / SCSS файлы, плагины, модули */
/* Обнуление стилей */
/*! 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;
}

/* Slider: swiper */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

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

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

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

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

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  /* background: var(--swiper-pagination-color, var(--swiper-theme-color)); */
  background: #FF2E2E;
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

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

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: var(--swiper-navigation-color, var(--swiper-theme-color)); */
  color: #FF2E2E;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  /* left: 10px; */
  left: 0;
  right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  /* right: 10px; */
  right: 0;
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

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

/* Переменные */
/* Миксины */
/* 
  @include Layout((( 'large',
    (
      font-size: 24,
      line-height: 32,
      margin-left: 19
    )),
  )); 
*/
/* Резиновая верстка (авторасчет vw) */
/*
  @include Layout-boxshadow(0, -5, 15, rgba(#000, .25), all);
*/
/* Адаптивный box-shadow */
/*
  @include adaptive(
    (
      (
        1440px,
        (
          font-size: 24px,
          line-height: 32px
        )
      ),
      (
        992px,
        (
          font-size: 24px,
          line-height: 32px
        )
      )
    )
  );
*/
/* Адаптивность */
/* Подключение шрифта вручную */
/* Работа с типографией */
/* Удобная Сетка */
/* Обнуление стилей */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 0.0520833333vw;
}
@media (max-width: 1600px) {
  html {
    font-size: 0.0625vw;
  }
}
@media (max-width: 1440px) {
  html {
    font-size: 0.0694444444vw;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 0.1302083333vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 0.3125vw;
  }
}


img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

dl,
ol,
ul,
a,
p,
span,
div,
img,
nav,
header,
footer,
button,
input,
h1,
h2,
h3,
h4,
h5,
h6,
textarea {
  margin: 0;
  padding: 0;
}

input,
textarea,
button {
  box-sizing: border-box;
  border: none;
  outline: none;
  background: none;
  display: block;
}
input::placehloder,
textarea::placehloder,
button::placehloder {
  box-sizing: border-box;
}

textarea {
  resize: none;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex;
}

.d-block {
  display: block !important;
}

.fancybox__container {
  z-index: 99999 !important;
}


/* Типографика */
@media (max-width: 768px) {
  h1,
h2,
h3,
h4,
p,
span,
strong,
b,
a {
    hyphens: auto;
  }
}

h1,
.title-h1,
.wrapper-h1 h1 {
  font-size: 48rem;
  line-height: 56rem;
  font-weight: 800;
}
@media (max-width: 992px) {
  h1,
.title-h1,
.wrapper-h1 h1 {
    font-size: 40rem;
    line-height: 48rem;
  }
}
@media (max-width: 768px) {
  h1,
.title-h1,
.wrapper-h1 h1 {
    font-size: 22rem;
    line-height: 26rem;
  }
}

.main-title {
  font-size: 120rem;
  line-height: 100rem;
  font-weight: 800;
  font-family: MontserratAlternates;
}
@media (max-width: 1600px) {
  .main-title {
    font-size: 6.25vw;
    line-height: 5vw;
  }
}
@media (max-width: 1440px) {
  .main-title {
    font-size: 8.3333333333vw;
    line-height: 6.9444444444vw;
  }
}
@media (max-width: 768px) {
  .main-title {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }
}
@media (max-width: 992px) {
  .main-title {
    font-size: 64rem;
    line-height: 56rem;
  }
}
@media (max-width: 768px) {
  .main-title {
    font-size: 32rem;
    line-height: 36rem;
  }
}

h2,
.title-h2,
.wrapper-h2 h2 {
  font-size: 32rem;
  line-height: 42rem;
  font-weight: 800;
  color: #000;
}
.title h2 {
    font-size: 22rem;
    line-height: 32rem;
    font-weight: 600;
    color: #000;
}
@media (max-width: 992px) {
  h2,
.title-h2,
.wrapper-h2 h2 {
    font-size: 40rem;
    line-height: 48rem;
  }
  .title h2 {
	font-size: 20rem;
    line-height: 28rem;
	  }
}
@media (max-width: 768px) {
  h2,
.title-h2,
.wrapper-h2 h2 {
    font-size: 20rem;
    line-height: 26rem;
  }
  .title h2 {
	  font-size: 18rem;
    line-height: 26rem;
	  }
}

h3,
h4,
h5,
.title-h3,
.wrapper-h3 {
  font-size: 22rem;
  line-height: 32rem;
  font-weight: 600;
  color: #000;
}
@media (max-width: 992px) {
  h3,
h4,
h5,
.title-h3,
.wrapper-h3 {
    font-size: 20rem;
    line-height: 28rem;
  }
}
@media (max-width: 768px) {
  h3,
h4,
h5,
.title-h3,
.wrapper-h3 {
    font-size: 18rem;
    line-height: 26rem;
  }
}

p,
span,
b,
strong,
li {
  font-size: 18rem;
  line-height: 28rem;
  font-weight: 400;
}
@media (max-width: 992px) {
  p,
span,
b,
strong,
li {
    font-size: 16rem;
    line-height: 24rem;
  }
}

strong,
b {
  font-weight: 600;
}

p span,
span span,
strong span,
a span,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-family: inherit;
}

sup {
  font-weight: inherit;
  font-size: 75%;
  line-height: inherit;
  color: inherit;
  font-family: inherit;
}

a {
  display: inline-block;
  transition: opacity 0.3s linear;

  line-height: 20rem;
  font-weight: 400;
  color: #000;
  text-decoration: underline;
}
a:hover {
  opacity: 0.8;
}

.wrapper-desc {
  display: flex;
  flex-direction: column;
  row-gap: 20rem;
}
@media (max-width: 992px) {
  .wrapper-desc {
    row-gap: 16rem;
  }
}
@media (max-width: 768px) {
  .wrapper-desc {
    row-gap: 12rem;
  }
}

.main-link {
  font-size: 20rem;
  line-height: 24rem;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}
@media (max-width: 1600px) {
	.main-link {
		font-size: 17rem;    
	}
}
@media (max-width: 992px) {
  .main-link {
    font-size: 18rem;
    line-height: 22rem;
  }
}
@media (max-width: 768px) {
  .main-link {
    font-size: 16rem;
    line-height: 20rem;
  }
}

.text-red,
.text-red p,
.text-red span,
.text-red a,
.text-red strong,
.text-red b {
  color: #FF2E2E !important;
}

.text-dark,
.text-dark p,
.text-dark span,
.text-dark a,
.text-dark strong,
.text-dark b {
  color: #333 !important;
}

.text-black,
.text-black p,
.text-black span,
.text-black a,
.text-black strong,
.text-black b {
  color: #000 !important;
}

.text-white,
.text-white p,
.text-white span,
.text-white a,
.text-white strong,
.text-white b {
  color: #fff !important;
}

.text-uppercase,
.text-uppercase p,
.text-uppercase span,
.text-uppercase a,
.text-uppercase strong,
.text-uppercase b {
  text-transform: uppercase !important;
}

.text-lowercase,
.text-lowercase p,
.text-lowercase span,
.text-lowercase a,
.text-lowercase strong,
.text-lowercase b {
  text-transform: lowercase !important;
}

.bg-red {
  background-color: #FF2E2E !important;
}

.bg-dark {
  background-color: #333 !important;
}

.bg-black {
  background-color: #000 !important;
}

.bg-white {
  background-color: #fff !important;
}

.font-400 {
  font-weight: 400 !important;
}

.font-500 {
  font-weight: 500 !important;
}

.font-600 {
  font-weight: 600 !important;
}

.font-700 {
  font-weight: 700 !important;
}

.font-800 {
  font-weight: 800 !important;
}

.mt-16 {
  margin-top: 16rem;
}

.mb-16 {
  margin-bottom: 16rem;
}

@media (max-width: 768px) {
  .break-mob {
    display: block;
    clear: both;
  }
}

/* Анимации */
@keyframes updateOpacity {
  to {
    opacity: 0;
  }
  from {
    opacity: 1;
  }
}
@keyframes updateOpacityRevert {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Компоненты */
/* Иконки */
.icon svg,
.icon path {
  transition-property: fill, stroke;
  transition-timing-function: linear;
  transition-duration: 0.3s;
}
.icon--close-open svg {
  width: 49rem;
  min-width: 49rem;
  height: 48rem;
  min-height: 48rem;
}
@media (max-width: 992px) {
  .icon--close-open svg {
    width: 40.83rem;
    min-width: 40.83rem;
    height: 40rem;
    min-height: 40rem;
  }
}
@media (max-width: 768px) {
  .icon--close-open svg {
    width: 34rem;
    min-width: 34rem;
    height: 33.333rem;
    min-height: 33.333rem;
  }
}
.icon--close-open path {
  fill: #777;
}
.icon--arrow-left svg {
  width: 72rem;
  min-width: 72rem;
  height: 24rem;
  min-height: 24rem;
}
@media (max-width: 992px) {
  .icon--arrow-left svg {
    width: 64rem;
    min-width: 64rem;
    height: 24rem;
    min-height: 24rem;
  }
}
@media (max-width: 768px) {
  .icon--arrow-left svg {
    width: 53.33rem;
    min-width: 53.33rem;
    height: 24rem;
    min-height: 24rem;
  }
}
.icon--arrow-left path {
  fill: #000;
}
.icon--app1 svg {
  width: 55rem;
  min-width: 55rem;
  height: 48rem;
  min-height: 48rem;
}
@media (max-width: 1080px) {
  .icon--app1 svg {
    width: 5.0925925926vw;
    height: 4.4444444444vw;
    min-width: 5.0925925926vw;
    min-height: 4.4444444444vw;
  }
}
@media (max-width: 768px) {
  .icon--app1 svg {
    width: 42rem;
    min-width: 42rem;
    height: 34rem;
    min-height: 34rem;
  }
}
.icon--app2 svg {
  width: 84rem;
  min-width: 84rem;
  height: 48rem;
  min-height: 48rem;
}
@media (max-width: 1080px) {
  .icon--app2 svg {
    width: 7.7777777778vw;
    height: 4.4444444444vw;
    min-width: 7.7777777778vw;
    min-height: 4.4444444444vw;
  }
}
@media (max-width: 768px) {
  .icon--app2 svg {
    width: 64.9rem;
    min-width: 64.9rem;
    height: 37rem;
    min-height: 37rem;
  }
}
.icon--app3 svg {
  width: 48rem;
  min-width: 48rem;
  height: 48rem;
  min-height: 48rem;
}
@media (max-width: 1080px) {
  .icon--app3 svg {
    width: 4.4444444444vw;
    height: 4.4444444444vw;
    min-width: 4.4444444444vw;
    min-height: 4.4444444444vw;
  }
}
@media (max-width: 768px) {
  .icon--app3 svg {
    width: 37.5rem;
    min-width: 37.5rem;
    height: 37.5rem;
    min-height: 37.5rem;
  }
}
.icon--app4 svg {
  width: 32rem;
  min-width: 32rem;
  height: 48rem;
  min-height: 48rem;
}
@media (max-width: 1080px) {
  .icon--app4 svg {
    width: 2.962962963vw;
    height: 4.4444444444vw;
    min-width: 2.962962963vw;
    min-height: 4.4444444444vw;
  }
}
@media (max-width: 768px) {
  .icon--app4 svg {
    width: 33rem;
    min-width: 33rem;
    height: 33.5rem;
    min-height: 33.5rem;
  }
}
.icon--ch1 svg {
  width: 60rem;
  min-width: 60rem;
  height: 83rem;
  min-height: 83rem;
}
@media (max-width: 992px) {
  .icon--ch1 svg {
    width: 50rem;
    min-width: 50rem;
    height: 69.16rem;
    min-height: 69.16rem;
  }
}
.icon--ch2 svg {
  width: 60rem;
  min-width: 60rem;
  height: 74rem;
  min-height: 74rem;
}
@media (max-width: 992px) {
  .icon--ch2 svg {
    width: 50rem;
    min-width: 50rem;
    height: 61.666rem;
    min-height: 61.666rem;
  }
}
.icon--ch3 svg {
  width: 76rem;
  min-width: 76rem;
  height: 98rem;
  min-height: 98rem;
}
@media (max-width: 992px) {
  .icon--ch3 svg {
    width: 63.333rem;
    min-width: 63.333rem;
    height: 81.666rem;
    min-height: 81.666rem;
  }
}
.icon--ch4 svg {
  width: 64rem;
  min-width: 64rem;
  height: 64rem;
  min-height: 64rem;
}
@media (max-width: 992px) {
  .icon--ch4 svg {
    width: 53.333rem;
    min-width: 53.333rem;
    height: 53.333rem;
    min-height: 53.333rem;
  }
}
.icon--ch5 svg {
  width: 118rem;
  min-width: 118rem;
  height: 73rem;
  min-height: 73rem;
}
@media (max-width: 992px) {
  .icon--ch5 svg {
    width: 98.333rem;
    min-width: 98.333rem;
    height: 60.83rem;
    min-height: 60.83rem;
  }
}
.icon--ch6 svg {
  width: 108rem;
  min-width: 108rem;
  height: 64rem;
  min-height: 64rem;
}
@media (max-width: 992px) {
  .icon--ch6 svg {
    width: 90rem;
    min-width: 90rem;
    height: 53.333rem;
    min-height: 53.333rem;
  }
}
.icon--ch7 svg {
  width: 48rem;
  min-width: 48rem;
  height: 64rem;
  min-height: 64rem;
}
@media (max-width: 992px) {
  .icon--ch7 svg {
    width: 40rem;
    min-width: 40rem;
    height: 53.333rem;
    min-height: 53.333rem;
  }
}
.icon--arrow-slide-next svg, .icon--arrow-slide-prev svg {
  fill: #000;
}
@media (max-width: 992px) {
  .icon--arrow-slide-next svg, .icon--arrow-slide-prev svg {
    width: 32rem;
    min-width: 32rem;
    height: 32rem;
    min-height: 32rem;
  }
}
@media (max-width: 768px) {
  .icon--arrow-slide-next svg, .icon--arrow-slide-prev svg {
    width: 40rem;
    min-width: 40rem;
    height: 40rem;
    min-height: 40rem;
  }
}
.icon--arrow-slide-prev svg {
  transform: rotate(180deg);
}
.icon--eye-mini svg {
  width: 48rem;
  min-width: 48rem;
  height: 48rem;
  min-height: 48rem;
  fill: #828282;
}
@media (max-width: 992px) {
  .icon--eye-mini svg {
    width: 40rem;
    min-width: 40rem;
    height: 40rem;
    min-height: 40rem;
  }
}
@media (max-width: 768px) {
  .icon--eye-mini svg {
    width: 48rem;
    min-width: 48rem;
    height: 48rem;
    min-height: 48rem;
  }
}
.icon--date svg, .icon--clock svg, .icon--shared svg {
  width: 24rem;
  min-width: 24rem;
  height: 24rem;
  min-height: 24rem;
}
.icon--date path, .icon--clock path, .icon--shared path {
  fill: #777;
}
.icon--arrow-right-line svg {
  fill: #fff;
}
@media (max-width: 992px) {
  .icon--arrow-right-line svg {
    width: 48rem;
    min-width: 48rem;
    height: 48rem;
    min-height: 48rem;
  }
}
@media (max-width: 768px) {
  .icon--arrow-right-line svg {
    width: 32rem;
    min-width: 32rem;
    height: 32rem;
    min-height: 32rem;
  }
}
.icon--play svg {
  width: 80rem;
  min-width: 80rem;
  height: 80rem;
  min-height: 80rem;
}
@media (max-width: 1440px) {
  .icon--play svg {
    width: 6.9444444444vw;
    height: 6.9444444444vw;
    min-width: 6.9444444444vw;
    min-height: 6.9444444444vw;
  }
}
@media (max-width: 992px) {
  .icon--play svg {
    width: 72rem;
    min-width: 72rem;
    height: 72rem;
    min-height: 72rem;
  }
}
@media (max-width: 768px) {
  .icon--play svg {
    width: 48rem;
    min-width: 48rem;
    height: 48rem;
    min-height: 48rem;
  }
}

/* Кнопки */
/* Кнопка: перейти */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition-property: background-color, color, box-shadow, border-color;
  transition-timing-function: linear;
  transition-duration: 0.3s;
  max-width: 100%;
  width: 100%;
  outline: none;
  user-select: none;
  text-decoration: none;
}
.btn:hover {
  cursor: pointer;
}
.btn span {
  display: block;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}
.btn--gradient {
  background: linear-gradient(94deg, #FF2E2E 0%, #FF6868 100%);
  color: #fff;
  transition-property: filter;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  border-radius: 40rem;
}
.btn--gradient:hover {
  opacity: 1;
  filter: brightness(130%);
}
.btn--transparent-dark {
  border-color: #333;
  background-color: transparent;
  color: #333;
  border-style: solid;
  border-width: 3rem;
  border-radius: 40rem;
}
.btn--transparent-dark:hover {
  opacity: 1;
  background-color: #333;
  color: #fff;
}
.btn--bigsize {
  font-size: 20rem;
  line-height: 24rem;
  font-weight: 600;
  min-height: 64rem;
  max-height: 64rem;
  padding-left: 40rem;
  padding-right: 40rem;
}
@media (max-width: 992px) {
  .btn--bigsize {
    font-size: 18rem;
    line-height: 22rem;
  }
}
@media (max-width: 992px) {
  .btn--bigsize {
    min-height: 56rem;
    max-height: 56rem;
    padding-left: 32rem;
    padding-right: 32rem;
  }
}
@media (max-width: 768px) {
  .btn--bigsize {
    font-size: 16rem;
    line-height: 20rem;
  }
}
@media (max-width: 768px) {
  .btn--bigsize {
    min-height: 48rem;
    max-height: 48rem;
    padding-left: 24rem;
    padding-right: 24rem;
  }
}

/* Контейнер */
.container {
  padding-left: 180rem;
  padding-right: 180rem;
}
@media (max-width: 1600px) {
  .container {
    padding-left: 10vw;
    padding-right: 10vw;
  }
}
@media (max-width: 1440px) {
  .container {
    padding-left: 8.3333333333vw;
    padding-right: 8.3333333333vw;
  }
}
@media (max-width: 992px) {
  .container {
    padding-left: 40rem;
    padding-right: 40rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 15rem;
    padding-right: 15rem;
  }
}

/* Логотип */
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #000;
}
.logo span {
  color: inherit;
  white-space: nowrap;
}
.logo__title {
  font-size: 36rem;
  line-height: 40rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .logo__title {
    font-size: 28rem;
    line-height: 36rem;
  }
}
@media (max-width: 768px) {
  .logo__title {
    font-size: 25rem;
    line-height: 25rem;
  }
}
.logo__subtext {
  position: relative;
  font-size: 16rem;
  line-height: 20rem;
  font-weight: 400;
  top: -4rem;
}
@media (max-width: 992px) {
  .logo__subtext {
    font-size: 14rem;
    line-height: 18rem;
  }
}
@media (max-width: 768px) {
  .logo__subtext {
    font-size: 11rem;
    line-height: 14rem;
  }
}
@media (max-width: 768px) {
  .logo__subtext {
    top: -1rem;
  }
}

/* arrow */
.inter-arrow {
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.inter-arrow:hover {
  cursor: pointer;
  opacity: 0.7;
}
.inter-arrow.swiper-button-disabled {
  opacity: 0.1;
}

/* pagination */
.pagination.swiper-pagination-fraction, .pagination.swiper-pagination-custom, .pagination.swiper-horizontal > .swiper-pagination-bullets, .pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  left: unset;
  bottom: unset;
  width: auto;
}

.pag-bullet:hover {
  cursor: pointer;
}
@media (max-width: 768px) {
  .pag-bullet:last-child .pag-bullet__wrap::after {
    display: none;
  }
}
.pag-bullet__wrap {
  display: flex;
  align-items: center;
  position: relative;
  column-gap: 15rem;
  width: 123rem;
  min-width: 123rem;
}
@media (max-width: 992px) {
  .pag-bullet__wrap {
    column-gap: 8rem;
    width: 94rem;
    min-width: 94rem;
  }
}
@media (max-width: 768px) {
  .pag-bullet__wrap {
    flex-direction: column;
    min-width: unset;
    width: auto;
  }
}
@media (max-width: 768px) {
  .pag-bullet__wrap {
    width: 44rem;
    min-width: 44rem;
  }
}
@media (max-width: 768px) {
  .pag-bullet__wrap::after {
    content: "";
    position: absolute;
    display: block;
    border-bottom-color: #D9D9D9;
    border-bottom-style: solid;
    pointer-events: none;
    transition-property: top, right;
    transition-duration: 0.3s;
    transition-timing-function: linear;
  }
}
@media (max-width: 768px) {
  .pag-bullet__wrap::after {
    width: 18rem;
    min-width: 18rem;
    border-bottom-width: 1rem;
    top: -24rem;
    right: -16rem;
  }
}
.pag-bullet__line {
  display: block;
  border-bottom-style: solid;
  position: relative;
  transition-property: left, border-bottom-width, width, min-width, border-bottom-color;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  left: 0;
  width: 30rem;
  min-width: 30rem;
  border-bottom-width: 1rem;
}
@media (max-width: 992px) {
  .pag-bullet__line {
    width: 20rem;
    min-width: 20rem;
  }
}
@media (max-width: 768px) {
  .pag-bullet__line {
    display: none;
  }
}
.pag-bullet__circle {
  display: block;
  border-radius: 50%;
  width: 11rem;
  min-width: 11rem;
  height: 11rem;
  min-height: 11rem;
  border-style: solid;
  transition-property: border-color, background-color, width, min-width, height, min-height, top;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  border-width: 2rem;
}
@media (max-width: 768px) {
  .pag-bullet__circle {
    order: 1;
    position: absolute;
    top: 0;
  }
}
.pag-bullet__number {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20rem;
  line-height: 20rem;
  font-weight: 400;
  text-align: left;
  transition-property: color, font-size, line-height, font-weight, margin-bottom, top;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  min-width: 50rem;
  width: 50rem;
}
@media (max-width: 992px) {
  .pag-bullet__number {
    font-size: 18rem;
    line-height: 18rem;
  }
}
@media (max-width: 768px) {
  .pag-bullet__number {
    font-size: 20rem;
    line-height: 20rem;
  }
}
@media (max-width: 768px) {
  .pag-bullet__number {
    height: 44rem;
    margin-bottom: 5rem;
    top: -44rem;
  }
}
@media (max-width: 768px) {
  .pag-bullet__number {
    color: #D9D9D9;
    right: unset;
    transform: unset;
    order: 0;
    width: auto;
    min-width: unset;
    text-align: center;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .pag-bullet--active .pag-bullet__wrap::after {
    top: -24rem;
    right: -18rem;
  }
}
.pag-bullet--active .pag-bullet__number {
  font-size: 36rem;
  line-height: 40rem;
  font-weight: 700;
}
@media (max-width: 992px) {
  .pag-bullet--active .pag-bullet__number {
    font-size: 28rem;
    line-height: 36rem;
  }
}
@media (max-width: 768px) {
  .pag-bullet--active .pag-bullet__number {
    font-size: 32rem;
    line-height: 32rem;
  }
}
.pag-bullet--active .pag-bullet__circle {
  width: 16rem;
  min-width: 16rem;
  height: 16rem;
  min-height: 16rem;
}
@media (max-width: 768px) {
  .pag-bullet--active .pag-bullet__circle {
    width: 16.5rem;
    min-width: 16.5rem;
    height: 16.5rem;
    min-height: 16.5rem;
  }
}
@media (max-width: 768px) {
  .pag-bullet--active .pag-bullet__circle {
    top: 0rem;
  }
}
.pag-bullet--active .pag-bullet__line {
  left: -15rem;
  border-bottom-width: 2rem;
  width: 34rem;
  min-width: 34rem;
}
@media (max-width: 992px) {
  .pag-bullet--active .pag-bullet__line {
    left: -10rem;
    width: 24rem;
    min-width: 24rem;
  }
}
@media (max-width: 768px) {
  .pag-bullet--active .pag-bullet__line {
    left: unset;
    width: auto;
    min-width: unset;
    display: none;
  }
}

.pagination--black .pag-bullet .pag-bullet__line {
  border-bottom-color: #000;
}
.pagination--black .pag-bullet .pag-bullet__circle {
  border-color: #000;
  background-color: #000;
}
@media (max-width: 768px) {
  .pagination--black .pag-bullet .pag-bullet__circle {
    border-color: #D9D9D9;
    background-color: #D9D9D9;
  }
}
.pagination--black .pag-bullet .pag-bullet__number {
  color: #333;
}
@media (max-width: 768px) {
  .pagination--black .pag-bullet .pag-bullet__number {
    color: #D9D9D9;
  }
}
.pagination--black .pag-bullet--active .pag-bullet__number {
  color: #000;
}
@media (max-width: 768px) {
  .pagination--black .pag-bullet--active .pag-bullet__number {
    color: #fff;
  }
}

.pagination--white .pag-bullet .pag-bullet__line {
  border-bottom-color: #fff;
}
.pagination--white .pag-bullet .pag-bullet__circle {
  border-color: #fff;
  background-color: #fff;
}
@media (max-width: 768px) {
  .pagination--white .pag-bullet .pag-bullet__circle {
    border-color: #D9D9D9;
    background-color: #D9D9D9;
  }
}
.pagination--white .pag-bullet .pag-bullet__number {
  color: #fff;
}
@media (max-width: 768px) {
  .pagination--white .pag-bullet .pag-bullet__number {
    color: #D9D9D9;
  }
}

.pagination--white .pag-bullet:hover .pag-bullet__number,
.pagination--black .pag-bullet:hover .pag-bullet__number {
  color: #FF2E2E;
}
@media (max-width: 768px) {
  .pagination--white .pag-bullet:hover .pag-bullet__number,
.pagination--black .pag-bullet:hover .pag-bullet__number {
    color: #fff;
  }
}
.pagination--white .pag-bullet:hover .pag-bullet__circle,
.pagination--black .pag-bullet:hover .pag-bullet__circle {
  background-color: #FF2E2E;
  border-color: #FF2E2E;
}
@media (max-width: 768px) {
  .pagination--white .pag-bullet:hover .pag-bullet__circle,
.pagination--black .pag-bullet:hover .pag-bullet__circle {
    background-color: #fff;
    border-color: #fff;
  }
}
.pagination--white .pag-bullet--active:hover .pag-bullet__circle,
.pagination--black .pag-bullet--active:hover .pag-bullet__circle {
  background-color: transparent;
}
.pagination--white .pag-bullet--active:hover .pag-bullet__line,
.pagination--black .pag-bullet--active:hover .pag-bullet__line {
  border-bottom-color: #FF2E2E;
}
@media (max-width: 768px) {
  .pagination--white .pag-bullet--active:hover .pag-bullet__line,
.pagination--black .pag-bullet--active:hover .pag-bullet__line {
    border-bottom-color: unset;
  }
}
.pagination--white .pag-bullet--active .pag-bullet__circle,
.pagination--black .pag-bullet--active .pag-bullet__circle {
  background-color: transparent;
}
@media (max-width: 768px) {
  .pagination--white .pag-bullet--active .pag-bullet__circle,
.pagination--black .pag-bullet--active .pag-bullet__circle {
    border-color: #fff;
  }
}

/* section */
.section-circle {
  position: relative;
}
.section-circle::after {
  content: "";
  pointer-events: none;
  background-color: #FFEBEB;
  filter: blur(100px);
  border-radius: 50%;
  width: 591rem;
  min-width: 591rem;
  height: 480.774rem;
  min-height: 480.774rem;
  position: absolute;
  top: 0;
  z-index: 0;
  left: -286rem;
}
@media (max-width: 992px) {
  .section-circle::after {
    width: 394rem;
    min-width: 394rem;
    height: 320.35rem;
    min-height: 320.35rem;
  }
}
@media (max-width: 992px) {
  .section-circle::after {
    width: 295.5rem;
    min-width: 295.5rem;
    height: 240.4rem;
    min-height: 240.4rem;
  }
}
@media (max-width: 992px) {
  .section-circle::after {
    left: -190rem;
  }
}
@media (max-width: 768px) {
  .section-circle::after {
    left: -143rem;
  }
}
.section-circle h1,
.section-circle .container {
  position: relative;
  z-index: 1;
}

.section-circle h2 {
    position: relative;
    z-index: 1;
    font-size: 24rem;
    line-height: 32rem;
    font-weight: 600;
}

/* swiper */
.swiper-container {
  max-width: 100%;
  width: 100%;
}

/* inter arrow */
.inter-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.inter-arrow:hover {
  opacity: 0.8;
  cursor: pointer;
}

/* modals */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition-property: top, opacity;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.modal__dialog {
  position: relative;
  margin: 0 auto;
  z-index: 9998;
}
.modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  outline: 0;
}

.modal--addmenu {
  background-color: #fff;
  top: -100vw;
  transition-timing-function: ease-in;
}
.modal--addmenu .modal__dialog {
  width: 100%;
  position: relative;
  z-index: 100;
}
@media (max-width: 768px) {
  .modal--addmenu .modal__dialog {
    height: auto;
    max-height: 100vh;
    overflow-y: scroll;
  }
}
.modal--addmenu .modal__dialog,
.modal--addmenu .modal__content,
.modal--addmenu .modal__container,
.modal--addmenu .modal__wrap-content {
  height: 100%;
}
.modal--addmenu .modal__wrap-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 40rem;
  padding-top: 40rem;
  padding-bottom: 40rem;
}
@media (max-width: 768px) {
  .modal--addmenu .modal__wrap-content {
    row-gap: 32rem;
    padding-top: 32rem;
    padding-bottom: 32rem;
  }
}
.modal--addmenu .modal__menu {
  display: flex;
  flex-direction: column;
  row-gap: 24rem;
}
@media (max-width: 992px) {
  .modal--addmenu .modal__menu {
    row-gap: 20rem;
  }
}
@media (max-width: 768px) {
  .modal--addmenu .modal__menu {
    row-gap: 16rem;
  }
}
.modal--addmenu .modal__menu .main-link {
  font-size: 24rem;
  line-height: 32rem;
}
@media (max-width: 992px) {
  .modal--addmenu .modal__menu .main-link {
    font-size: 22rem;
    line-height: 30rem;
  }
}
@media (max-width: 768px) {
  .modal--addmenu .modal__menu .main-link {
    font-size: 20rem;
    line-height: 28rem;
  }
}
.modal--addmenu .modal__menu .main-link:hover {
  color: #FF2E2E;
}
.modal--addmenu.modal--fadeTop {
  opacity: 1;
  pointer-events: auto;
}

/* Beadcrumbs */
.breadcrumbs {
  font-size: 20rem;
  line-height: 24rem;
  font-weight: 400;
  color: #777;
  column-gap: 6rem;
  margin-bottom: 16rem;
}
@media (max-width: 992px) {
  .breadcrumbs {
    font-size: 18rem;
    line-height: 22rem;
  }
}
@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 16rem;
    line-height: 20rem;
  }
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-bottom: 12rem;
  }
}
@media (max-width: 768px) {
  .breadcrumbs {
    column-gap: 4rem;
    margin-bottom: 8rem;
  }
}
.breadcrumbs a {
  transition: opacity 0.3s linear;
  display: inline-block;
}
.breadcrumbs a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .breadcrumbs a {
    position: relative;
  }
}
.breadcrumbs a,
.breadcrumbs span {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.breadcrumbs a {
  font-weight: inherit;
}
.breadcrumbs span {
  font-weight: 600;
}

/* Nav mob */
.nav-mob__wrapper-button {
  display: none;
}
.nav-mob__content {
  transition-property: right;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}

@media (max-width: 768px) {
  .nav-mob--mobile {
    position: relative;
    z-index: 9999;
  }
}
@media (max-width: 768px) {
  .nav-mob--mobile .nav-mob__content {
    position: fixed !important;
    top: 50% !important;
    left: unset !important;
    transform: translateY(-50%);
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    transition-property: right;
    transition-duration: 0.3s;
    transition-timing-function: linear;
  }
}
@media (max-width: 768px) {
  .nav-mob--mobile .nav-mob__content {
    right: -320rem;
    border-top-left-radius: 16rem;
    border-bottom-left-radius: 16rem;
  }
}
@media (max-width: 768px) {
  .nav-mob--mobile .nav-mob__wrapper-content {
    background-color: #333;
  }
}
@media (max-width: 768px) {
  .nav-mob--mobile .nav-mob__wrapper-content {
    width: 280rem;
    padding-top: 32rem;
    padding-bottom: 32rem;
    padding-left: 16rem;
    padding-right: 16rem;
    border-top-left-radius: 16rem;
    border-bottom-left-radius: 16rem;
  }
}
@media (max-width: 768px) {
  .nav-mob--mobile .nav-mob__wrapper-button {
    width: 40rem;
    min-width: 40rem;
    height: 48rem;
    min-height: 48rem;
  }
}
@media (max-width: 768px) {
  .nav-mob--mobile .nav-mob__wrapper-button {
    border-top-left-radius: 8rem;
    border-bottom-left-radius: 8rem;
  }
}
@media (max-width: 768px) {
  .nav-mob--mobile .nav-mob__wrapper-button {
    background-color: #333;
    display: flex;
    align-items: center;
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 768px) {
  .nav-mob--mobile .nav-mob__wrapper-button button {
    outline: none;
    border: unset;
    position: relative;
    transition-property: top, left;
    transition-duration: 0.3s;
    transition-timing-function: linear;
  }
}
@media (max-width: 768px) {
  .nav-mob--mobile .nav-mob__wrapper-button button {
    top: 2rem;
    left: 2rem;
  }
}
@media (max-width: 768px) {
  .nav-mob--mobile .nav-mob__wrapper-button .icon svg {
    transform: rotate(180deg);
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: linear;
  }
}

@media (max-width: 992px) {
  .nav-mob--large {
    position: relative;
    z-index: 9999;
  }
}
@media (max-width: 992px) {
  .nav-mob--large .nav-mob__content {
    position: fixed !important;
    top: 50% !important;
    left: unset !important;
    transform: translateY(-50%);
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (max-width: 992px) {
  .nav-mob--large .nav-mob__content {
    right: -380rem;
  }
}
@media (max-width: 768px) {
  .nav-mob--large .nav-mob__content {
    right: -260rem;
  }
}
@media (max-width: 992px) {
  .nav-mob--large .nav-mob__wrapper-content {
    background-color: #333;
  }
}
@media (max-width: 992px) {
  .nav-mob--large .nav-mob__wrapper-content {
    width: 380rem;
    padding-top: 48rem;
    padding-bottom: 48rem;
    padding-left: 24rem;
    padding-right: 24rem;
    border-top-left-radius: 32rem;
    border-bottom-left-radius: 32rem;
  }
}
@media (max-width: 768px) {
  .nav-mob--large .nav-mob__wrapper-content {
    width: 260rem;
    padding-top: 32rem;
    padding-bottom: 32rem;
    padding-left: 16rem;
    padding-right: 16rem;
    border-top-left-radius: 16rem;
    border-bottom-left-radius: 16rem;
  }
}
@media (max-width: 992px) {
  .nav-mob--large .nav-mob__wrapper-button {
    width: 40rem;
    min-width: 40rem;
    height: 64rem;
    min-height: 64rem;
  }
}
@media (max-width: 768px) {
  .nav-mob--large .nav-mob__wrapper-button {
    width: 32rem;
    min-width: 32rem;
    height: 48rem;
    min-height: 48rem;
  }
}
@media (max-width: 992px) {
  .nav-mob--large .nav-mob__wrapper-button {
    border-top-left-radius: 8rem;
    border-bottom-left-radius: 8rem;
    left: -40rem;
  }
}
@media (max-width: 768px) {
  .nav-mob--large .nav-mob__wrapper-button {
    left: -32rem;
  }
}
@media (max-width: 992px) {
  .nav-mob--large .nav-mob__wrapper-button {
    background-color: #333;
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    z-index: 1000;
    transform: translateY(-50%);
  }
}
@media (max-width: 992px) {
  .nav-mob--large .nav-mob__wrapper-button button {
    outline: none;
    border: unset;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: top, left;
    transition-duration: 0.3s;
    transition-timing-function: linear;
  }
}
@media (max-width: 992px) {
  .nav-mob--large .nav-mob__wrapper-button button {
    top: 1rem;
    left: -4rem;
  }
}
@media (max-width: 768px) {
  .nav-mob--large .nav-mob__wrapper-button button {
    top: 2rem;
    left: 0rem;
  }
}
@media (max-width: 992px) {
  .nav-mob--large .nav-mob__wrapper-button .icon svg {
    transform: rotate(180deg);
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: linear;
  }
}

@media (max-width: 992px) {
  .nav-mob--active .nav-mob__content {
    right: -15vw;
  }
}
@media (max-width: 992px) {
  .nav-mob--active .nav-mob__wrapper-button button {
    left: -1rem;
  }
}
@media (max-width: 768px) {
  .nav-mob--active .nav-mob__wrapper-button button {
    left: 2rem;
  }
}
.nav-mob--active .nav-mob__wrapper-button .icon svg {
  transform: rotate(0deg);
}

/* Radio */
.wrapper-radio {
  position: relative;
}
.wrapper-radio input + label::before {
  transition-property: background-color, color, box-shadow, border-color;
  transition-timing-function: linear;
  transition-duration: 0.3s;
  content: "";
  display: inline-block;
  flex-shrink: 0;
  flex-grow: 0;
  border-style: solid;
  border-color: #000000;
  background-color: #fff;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  width: 24rem;
  min-width: 24rem;
  height: 24rem;
  min-height: 24rem;
  border-width: 1rem;
  margin-right: 16rem;
}
@media (max-width: 768px) {
  .wrapper-radio input + label::before {
    width: 18rem;
    min-width: 18rem;
    height: 18rem;
    min-height: 18rem;
  }
}
@media (max-width: 992px) {
  .wrapper-radio input + label::before {
    margin-right: 14rem;
  }
}
@media (max-width: 768px) {
  .wrapper-radio input + label::before {
    margin-right: 12rem;
  }
}
.wrapper-radio input + label::before:hover {
  cursor: pointer;
}
.wrapper-radio input:focus + label::before {
  box-shadow: 0 0 0 0.2rem rgba(255, 46, 46, 0.25);
}
.wrapper-radio input:focus:not(:checked) + label::before {
  box-shadow: 0 0 0 0.2rem rgba(255, 46, 46, 0.25);
}
.wrapper-radio input:checked + label::after {
  content: "";
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  background-color: #DD1C25;
  width: 24rem;
  min-width: 24rem;
  height: 24rem;
  min-height: 24rem;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .wrapper-radio input:checked + label::after {
    width: 18rem;
    min-width: 18rem;
    height: 18rem;
    min-height: 18rem;
  }
}
.wrapper-radio input:disabled + label::before {
  background-color: rgba(0, 0, 0, 0.4);
}
.wrapper-radio input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.wrapper-radio input:hover {
  cursor: pointer;
}
.wrapper-radio input + label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}
.wrapper-radio input + label:hover {
  cursor: pointer;
}
.wrapper-radio label {
  font-size: 20rem;
  line-height: 24rem;
  font-weight: 400;
  color: #333;
}
@media (max-width: 992px) {
  .wrapper-radio label {
    font-size: 16rem;
    line-height: 20rem;
  }
}
@media (max-width: 768px) {
  .wrapper-radio label {
    font-size: 14rem;
    line-height: 16rem;
  }
}

/* Блоки */


/* Подвал сайта */
.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
  }
}
.footer__content-top {
  background-color: #EDECEC;
  padding-top: 39rem;
  padding-bottom: 35rem;
}
@media (max-width: 992px) {
  .footer__content-top {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }
}
@media (max-width: 768px) {
  .footer__content-top {
    padding-top: 32rem;
    padding-bottom: 32rem;
  }
}
.footer__content-top .footer__container {
  column-gap: 32rem;
}
@media (max-width: 768px) {
  .footer__content-top .footer__container {
    flex-direction: column;
    column-gap: unset;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer__content-top .footer__container {
    row-gap: 12rem;
  }
}
.footer__content-bottom {
  background-color: #F5F5F5;
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media (max-width: 992px) {
  .footer__content-bottom {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
@media (max-width: 768px) {
  .footer__content-bottom {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }
}
@media (max-width: 768px) {
  .footer__content-bottom {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer__content-bottom .footer__container {
    row-gap: 8rem;
  }
}
.footer__menu {
  margin: 0;
  padding: 0;
}
@media (max-width: 1440px) {
  .footer__menu {
    column-gap: 1.1111111111vw;
  }
}
@media (max-width: 992px) {
  .footer__menu {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
@media (max-width: 992px) {
  .footer__menu {
    column-gap: 32rem;
    row-gap: 24rem;
  }
}
@media (max-width: 768px) {
  .footer__menu {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer__menu {
    column-gap: 16rem;
    row-gap: 12rem;
  }
}
.footer__menu li:hover a {
  color: #FF2E2E;
}
.footer__wrapper-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__wrapper-links li a {
  text-decoration: none;
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.footer__wrapper-links li a:hover {
  opacity: 1;
  color: #FF2E2E;
}
.footer__copy span, .footer__wrapper-links li a, .footer__author p {
  font-size: 16rem;
  line-height: 20rem;
  color: #000;
}
@media (max-width: 992px) {
  .footer__copy span, .footer__wrapper-links li a, .footer__author p {
    font-size: 12rem;
    line-height: 16rem;
  }
}
.footer__author p {
  text-align: right;
  line-height: 30rem;
}
@media (max-width: 992px) {
  .footer__author p {
    line-height: 24rem;
  }
}
@media (max-width: 768px) {
  .footer__author p {
    line-height: 18rem;
  }
}
@media (max-width: 768px) {
  .footer__author p {
    text-align: center;
  }
}

/* Схемы секции sc-about-product */
.about-schemes {
  position: relative;
  display: flex;
  justify-content: center;
  top: -3.125vw;
}
@media (max-width: 1600px) {
  .about-schemes {
    top: -3.75vw;
  }
}
@media (max-width: 1440px) {
  .about-schemes {
    top: -4.1666666667vw;
  }
}
.about-schemes__wrapper-img {
  position: relative;
  top: 70rem;
  left: 30rem;
}
@media (max-width: 1600px) {
  .about-schemes__wrapper-img {
    top: 3.125vw;
    left: 2.5vw;
  }
}
@media (max-width: 1080px) {
  .about-schemes__wrapper-img {
    top: 13.5185185185vw;
    left: 2.7777777778vw;
  }
}
@media (max-width: 992px) {
  .about-schemes__wrapper-img {
    top: 5rem;
  }
}
@media (max-width: 768px) {
  .about-schemes__wrapper-img {
    top: 114rem;
    left: 2rem;
  }
}
.about-schemes__wrapper-img img {
  width: 827rem;
  min-width: 827rem;
  height: 534rem;
  min-height: 534rem;
}
@media (max-width: 1080px) {
  .about-schemes__wrapper-img img {
    width: 76.5740740741vw;
    min-width: 76.5740740741vw;
    height: 49.4416666667vw;
    min-height: 49.4416666667vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__wrapper-img img {
    width: 363rem;
    min-width: 363rem;
    height: 234rem;
    min-height: 234rem;
  }
}
.about-schemes__scheme {
  width: intrinsic;
  width: -moz-max-content;
  width: -webkit-max-content;
  position: absolute;
}
.about-schemes__scheme-wrap {
  position: relative;
  display: flex;
}
.about-schemes__scheme-text p {
  font-size: 24rem;
  line-height: 32rem;
  font-weight: 600;
  color: #000;
}
@media (max-width: 1080px) {
  .about-schemes__scheme-text p {
    font-size: 2.2222222222vw;
    line-height: 2.962962963vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme-text p {
    font-size: 18rem;
    line-height: 22rem;
  }
}
.about-schemes__scheme-icon, .about-schemes__scheme-icon::before {
  border-radius: 50%;
}
.about-schemes__scheme-icon {
  box-shadow: 5rem 5rem 40rem rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100rem;
  min-width: 100rem;
  height: 100rem;
  min-height: 100rem;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
  transition-property: background-color;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
@media (max-width: 1080px) {
  .about-schemes__scheme-icon {
    width: 9.2592592593vw;
    min-width: 9.2592592593vw;
    height: 9.2592592593vw;
    min-height: 9.2592592593vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme-icon {
    width: 78rem;
    min-width: 78rem;
    height: 78rem;
    min-height: 78rem;
  }
}
.about-schemes__scheme-icon:hover {
  background-color: rgb(255, 255, 255);
}
.about-schemes__scheme-icon::before {
  content: "";
  position: absolute;
  width: 70rem;
  min-width: 70rem;
  height: 70rem;
  min-height: 70rem;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 0;
}
@media (max-width: 1080px) {
  .about-schemes__scheme-icon::before {
    width: 6.4814814815vw;
    min-width: 6.4814814815vw;
    height: 6.4814814815vw;
    min-height: 6.4814814815vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme-icon::before {
    width: 54rem;
    min-width: 54rem;
    height: 54rem;
    min-height: 54rem;
  }
}
.about-schemes__scheme-icon .icon {
  position: relative;
  z-index: 1;
}
.about-schemes__line {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: absolute;
}
.about-schemes__scheme--scheme1 {
  top: 140rem;
  left: 200rem;
}
@media (max-width: 1600px) {
  .about-schemes__scheme--scheme1 {
    top: 10.625vw;
    left: 5vw;
  }
}
@media (max-width: 1440px) {
  .about-schemes__scheme--scheme1 {
    top: 12.5vw;
    left: 4.1666666667vw;
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme1 {
    top: 19.4444444444vw;
    left: -14.8148148148vw;
  }
}
@media (max-width: 992px) {
  .about-schemes__scheme--scheme1 {
    top: 55rem;
    left: -100rem;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme1 {
    top: 73rem;
    left: -130rem;
  }
}
.about-schemes__scheme--scheme1 .about-schemes__scheme-text {
  position: relative;
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme1 .about-schemes__scheme-text {
    top: -11.1111111111vw;
    left: 14.8148148148vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme1 .about-schemes__scheme-text {
    top: -90rem;
    left: 130rem;
  }
}
.about-schemes__scheme--scheme1 .about-schemes__scheme-text p {
  text-align: right;
  max-width: 257rem;
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme1 .about-schemes__scheme-text p {
    text-align: left;
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme1 .about-schemes__scheme-text p {
    max-width: 25.6481481481vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme1 .about-schemes__scheme-text p {
    max-width: 120rem;
  }
}
.about-schemes__scheme--scheme1 .about-schemes__line {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='88' height='6' viewBox='0 0 88 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M87.6667 3C87.6667 1.52724 86.4728 0.333333 85 0.333333C83.5272 0.333333 82.3333 1.52724 82.3333 3C82.3333 4.47276 83.5272 5.66667 85 5.66667C86.4728 5.66667 87.6667 4.47276 87.6667 3ZM85 2.5L4.37114e-08 2.49999L-4.37114e-08 3.49999L85 3.5L85 2.5Z' fill='black'/%3E%3C/svg%3E%0A");
  width: 85rem;
  min-width: 85rem;
  height: 6rem;
  min-height: 6rem;
  margin-left: 17rem;
  margin-right: 9rem;
  top: 12rem;
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme1 .about-schemes__line {
    background-image: url("data:image/svg+xml,%3Csvg width='85' height='66' wviewBox='0 0 89 66' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M88.6667 63C88.6667 61.5272 87.4728 60.3333 86 60.3333C84.5272 60.3333 83.3333 61.5272 83.3333 63C83.3333 64.4728 84.5272 65.6667 86 65.6667C87.4728 65.6667 88.6667 64.4728 88.6667 63ZM86 62.5L1 62.5L1 63.5L86 63.5L86 62.5Z' fill='black'/%3E%3Cpath d='M1 63L1 6.55651e-07' stroke='black'/%3E%3C/svg%3E%0A");
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme1 .about-schemes__line {
    width: 7.8703703704vw;
    min-width: 7.8703703704vw;
    height: 6.1111111111vw;
    min-height: 6.1111111111vw;
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme1 .about-schemes__line {
    top: -4.4444444444vw;
    left: -1.7592592593vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme1 .about-schemes__line {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='49' viewBox='0 0 6 49' fill='none'%3E%3Cpath d='M3 0.333333C1.52724 0.333333 0.333333 1.52724 0.333333 3C0.333333 4.47276 1.52724 5.66667 3 5.66667C4.47276 5.66667 5.66667 4.47276 5.66667 3C5.66667 1.52724 4.47276 0.333333 3 0.333333ZM2.5 3L2.5 49H3.5L3.5 3H2.5Z' fill='black'/%3E%3C/svg%3E");
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme1 .about-schemes__line {
    width: 6rem;
    min-width: 6rem;
    height: 49rem;
    min-height: 49rem;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme1 .about-schemes__line {
    left: 56rem;
  }
}
.about-schemes__scheme--scheme1 .about-schemes__scheme-icon {
  top: -1.875vw;
}
@media (max-width: 1600px) {
  .about-schemes__scheme--scheme1 .about-schemes__scheme-icon {
    top: -2.25vw;
  }
}
@media (max-width: 1440px) {
  .about-schemes__scheme--scheme1 .about-schemes__scheme-icon {
    top: -2.5vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme1 .about-schemes__scheme-icon {
    top: 42rem;
  }
}
.about-schemes__scheme--scheme1 .about-schemes__scheme-icon .icon {
  left: -0.15625vw;
  top: 0.1041666667vw;
}
@media (max-width: 1600px) {
  .about-schemes__scheme--scheme1 .about-schemes__scheme-icon .icon {
    left: -0.1875vw;
    top: 0.125vw;
  }
}
@media (max-width: 1440px) {
  .about-schemes__scheme--scheme1 .about-schemes__scheme-icon .icon {
    left: -0.2083333333vw;
    top: 0.1388888889vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme1 .about-schemes__scheme-icon .icon {
    left: -2rem;
    top: 2rem;
  }
}
.about-schemes__scheme--scheme2 {
  top: 110rem;
  right: -10rem;
}
@media (max-width: 1600px) {
  .about-schemes__scheme--scheme2 {
    top: 5.625vw;
    right: -8.75vw;
  }
}
@media (max-width: 1440px) {
  .about-schemes__scheme--scheme2 {
    top: 6.25vw;
    right: -11.1111111111vw;
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme2 {
    top: 17.2222222222vw;
    right: -19.9074074074vw;
  }
}
@media (max-width: 992px) {
  .about-schemes__scheme--scheme2 {
    top: 33rem;
    right: -130rem;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme2 {
    top: 88rem;
    right: -130rem;
  }
}
.about-schemes__scheme--scheme2 .about-schemes__line {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='104' height='56' viewBox='0 0 104 56' fill='none'%3E%3Cpath d='M0.333333 3C0.333333 4.47276 1.52724 5.66667 3 5.66667C4.47276 5.66667 5.66667 4.47276 5.66667 3C5.66667 1.52724 4.47276 0.333333 3 0.333333C1.52724 0.333333 0.333333 1.52724 0.333333 3ZM3 3.5L77 3.50001L77 2.50001L3 2.5L3 3.5Z' fill='black'/%3E%3Cline x1='76.5' y1='56' x2='76.5' y2='4' stroke='black'/%3E%3Cline x1='77' y1='54.5' x2='104' y2='54.5' stroke='black'/%3E%3C/svg%3E");
  width: 5.2604166667vw;
  min-width: 5.2604166667vw;
  height: 2.7604166667vw;
  min-height: 2.7604166667vw;
  margin-left: 20rem;
  margin-right: 18rem;
}
@media (max-width: 1600px) {
  .about-schemes__scheme--scheme2 .about-schemes__line {
    width: 6.3125vw;
    min-width: 6.3125vw;
    height: 3.3125vw;
    min-height: 3.3125vw;
  }
}
@media (max-width: 1440px) {
  .about-schemes__scheme--scheme2 .about-schemes__line {
    width: 7.0138888889vw;
    min-width: 7.0138888889vw;
    height: 3.6805555556vw;
    min-height: 3.6805555556vw;
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme2 .about-schemes__line {
    background-image: url("data:image/svg+xml,%3Csvg width='56' height='65' viewBox='0 0 60 68' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline y1='-0.5' x2='65.0077' y2='-0.5' transform='matrix(0 -1 -1 0 59 65.0078)' stroke='black'/%3E%3Cpath d='M5.66667 65.0078C5.66667 66.4806 4.47276 67.6745 3 67.6745C1.52724 67.6745 0.333332 66.4806 0.333332 65.0078C0.333332 63.5351 1.52724 62.3411 3 62.3411C4.47276 62.3411 5.66667 63.5351 5.66667 65.0078ZM59 65.5078H3V64.5078H59V65.5078Z' fill='black'/%3E%3C/svg%3E%0A");
    position: relative;
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme2 .about-schemes__line {
    width: 5.2777777778vw;
    min-width: 5.2777777778vw;
    height: 6.0185185185vw;
    min-height: 6.0185185185vw;
    top: -5.5555555556vw;
    left: 0.1851851852vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme2 .about-schemes__line {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='49' viewBox='0 0 6 49' fill='none'%3E%3Cpath d='M3 0.333333C1.52724 0.333333 0.333333 1.52724 0.333333 3C0.333333 4.47276 1.52724 5.66667 3 5.66667C4.47276 5.66667 5.66667 4.47276 5.66667 3C5.66667 1.52724 4.47276 0.333333 3 0.333333ZM2.5 3L2.5 49H3.5L3.5 3H2.5Z' fill='black'/%3E%3C/svg%3E");
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme2 .about-schemes__line {
    width: 6rem;
    min-width: 6rem;
    height: 49rem;
    min-height: 49rem;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme2 .about-schemes__line {
    top: -70rem;
    left: -42rem;
  }
}
.about-schemes__scheme--scheme2 .about-schemes__scheme-text {
  margin-top: auto;
  max-width: 313rem;
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme2 .about-schemes__scheme-text {
    max-width: 23.7037037037vw;
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme2 .about-schemes__scheme-text {
    margin-top: 0;
    margin-bottom: auto;
    position: relative;
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme2 .about-schemes__scheme-text {
    top: -11.8518518519vw;
    left: -14.537037037vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme2 .about-schemes__scheme-text {
    top: -140rem;
    left: -136rem;
    max-width: 140rem;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme2 .about-schemes__scheme-text {
    text-align: right;
  }
}
.about-schemes__scheme--scheme2 .about-schemes__scheme-icon {
  top: -46rem;
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme2 .about-schemes__scheme-icon {
    top: -4.2592592593vw;
  }
}
.about-schemes__scheme--scheme2 .about-schemes__scheme-icon .icon {
  left: 16rem;
  top: 2rem;
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme2 .about-schemes__scheme-icon .icon {
    left: 1.4814814815vw;
    top: 0.1851851852vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme2 .about-schemes__scheme-icon .icon {
    left: 14rem;
    top: 2rem;
  }
}
.about-schemes__scheme--scheme3 {
  bottom: -30rem;
  left: 180rem;
}
@media (max-width: 1600px) {
  .about-schemes__scheme--scheme3 {
    bottom: -1.25vw;
    left: 5vw;
  }
}
@media (max-width: 1440px) {
  .about-schemes__scheme--scheme3 {
    bottom: 0.6944444444vw;
    left: 2.7777777778vw;
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme3 {
    bottom: -20.3703703704vw;
    left: -2.7777777778vw;
  }
}
@media (max-width: 992px) {
  .about-schemes__scheme--scheme3 {
    bottom: -400rem;
    left: 0rem;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme3 {
    bottom: -238rem;
    left: -30rem;
  }
}
.about-schemes__scheme--scheme3 .about-schemes__line {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='69' viewBox='0 0 48 69' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M45 5.66667C43.5272 5.66667 42.3333 4.47276 42.3333 3C42.3333 1.52724 43.5272 0.333336 45 0.333336C46.4728 0.333336 47.6667 1.52724 47.6667 3C47.6667 4.47276 46.4728 5.66667 45 5.66667ZM44.5 68.0077L44.5 3H45.5L45.5 68.0077H44.5Z' fill='black'/%3E%3Cline x1='45' y1='67.5' y2='67.5' stroke='black'/%3E%3C/svg%3E%0A");
  width: 48rem;
  min-width: 48rem;
  height: 69rem;
  min-height: 69rem;
  margin-left: auto;
  left: -48rem;
  margin-top: 7rem;
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme3 .about-schemes__line {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='144' viewBox='0 0 6 144' fill='none'%3E%3Cpath d='M3.00001 5.66667C4.47277 5.66667 5.66667 4.47276 5.66667 3C5.66667 1.52724 4.47277 0.333328 3.00001 0.333328C1.52725 0.333328 0.333339 1.52724 0.333339 3C0.333339 4.47276 1.52725 5.66667 3.00001 5.66667ZM3.5 144L3.50001 3L2.50001 3L2.5 144L3.5 144Z' fill='black'/%3E%3C/svg%3E");
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme3 .about-schemes__line {
    width: 0.462962963vw;
    min-width: 0.462962963vw;
    height: 13.0555555556vw;
    min-height: 13.0555555556vw;
    left: -4.2592592593vw;
    top: 0.3703703704vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme3 .about-schemes__line {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='49' viewBox='0 0 6 49' fill='none'%3E%3Cpath d='M3 43.3333C1.52724 43.3333 0.333333 44.5272 0.333333 46C0.333333 47.4728 1.52724 48.6667 3 48.6667C4.47276 48.6667 5.66667 47.4728 5.66667 46C5.66667 44.5272 4.47276 43.3333 3 43.3333ZM2.5 0L2.5 46H3.5L3.5 0L2.5 0Z' fill='black'/%3E%3C/svg%3E");
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme3 .about-schemes__line {
    width: 6rem;
    min-width: 6rem;
    height: 51rem;
    min-height: 51rem;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme3 .about-schemes__line {
    left: -36rem;
    top: 8rem;
  }
}
.about-schemes__scheme--scheme3 .about-schemes__scheme-text {
  margin-right: auto;
  position: relative;
  left: -121rem;
  top: -18rem;
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme3 .about-schemes__scheme-text {
    margin-right: 0;
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme3 .about-schemes__scheme-text {
    max-width: 18.8888888889vw;
    left: 13.7037037037vw;
    top: 1.1111111111vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme3 .about-schemes__scheme-text {
    max-width: 140rem;
    left: 30rem;
    top: 20rem;
  }
}
.about-schemes__scheme--scheme3 .about-schemes__scheme-icon {
  margin-left: auto;
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme3 .about-schemes__scheme-icon .icon {
    position: relative;
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme3 .about-schemes__scheme-icon .icon {
    top: 0.3703703704vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme3 .about-schemes__scheme-icon .icon {
    top: 2rem;
  }
}
.about-schemes__scheme--scheme3 .about-schemes__scheme-wrap {
  flex-direction: column;
}
.about-schemes__scheme--scheme4 {
  bottom: -40rem;
  right: -40rem;
}
@media (max-width: 1600px) {
  .about-schemes__scheme--scheme4 {
    bottom: -2.5vw;
    right: -7.5vw;
  }
}
@media (max-width: 1440px) {
  .about-schemes__scheme--scheme4 {
    bottom: 0.6944444444vw;
    right: -12.5vw;
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme4 {
    bottom: -12.962962963vw;
    right: -33.3333333333vw;
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme4 {
    bottom: -12.962962963vw;
    right: -33.3333333333vw;
  }
}
@media (max-width: 992px) {
  .about-schemes__scheme--scheme4 {
    bottom: 5rem;
    right: -240rem;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme4 {
    bottom: -215rem;
    right: -124rem;
  }
}
.about-schemes__scheme--scheme4 .about-schemes__scheme-text {
  position: relative;
  margin-top: 5.8333333333vw;
  left: -0.4166666667vw;
}
@media (max-width: 1600px) {
  .about-schemes__scheme--scheme4 .about-schemes__scheme-text {
    margin-top: 7vw;
    left: -0.5vw;
  }
}
@media (max-width: 1440px) {
  .about-schemes__scheme--scheme4 .about-schemes__scheme-text {
    margin-top: 7.7777777778vw;
    left: -0.5555555556vw;
  }
}
.about-schemes__scheme--scheme4 .about-schemes__line {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='69' viewBox='0 0 60 69' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='59.5' y1='3' x2='59.5' y2='68.0077' stroke='black'/%3E%3Cpath d='M5.66667 3C5.66667 1.52724 4.47276 0.333333 3 0.333333C1.52724 0.333333 0.333332 1.52724 0.333332 3C0.333332 4.47276 1.52724 5.66667 3 5.66667C4.47276 5.66667 5.66667 4.47276 5.66667 3ZM59 2.5L3 2.5V3.5L59 3.5V2.5Z' fill='black'/%3E%3C/svg%3E%0A");
  width: 3.125vw;
  min-width: 3.125vw;
  height: 3.59375vw;
  min-height: 3.59375vw;
  margin-left: 0.6770833333vw;
  top: 2.0833333333vw;
}
@media (max-width: 1600px) {
  .about-schemes__scheme--scheme4 .about-schemes__line {
    width: 3.75vw;
    min-width: 3.75vw;
    height: 4.3125vw;
    min-height: 4.3125vw;
  }
}
@media (max-width: 1440px) {
  .about-schemes__scheme--scheme4 .about-schemes__line {
    width: 4.1666666667vw;
    min-width: 4.1666666667vw;
    height: 4.7916666667vw;
    min-height: 4.7916666667vw;
  }
}
@media (max-width: 1600px) {
  .about-schemes__scheme--scheme4 .about-schemes__line {
    margin-left: 0.8125vw;
    top: 2.5vw;
  }
}
@media (max-width: 1440px) {
  .about-schemes__scheme--scheme4 .about-schemes__line {
    margin-left: 0.9027777778vw;
    top: 2.7777777778vw;
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme4 .about-schemes__line {
    background-image: url("data:image/svg+xml,%3Csvg width='56' height='260' viewBox='0 0 60 264' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='59.5' y1='3' x2='59.5' y2='263' stroke='black'/%3E%3Cpath d='M5.66667 3C5.66667 1.52724 4.47276 0.333333 3 0.333333C1.52724 0.333333 0.333332 1.52724 0.333332 3C0.333332 4.47276 1.52724 5.66667 3 5.66667C4.47276 5.66667 5.66667 4.47276 5.66667 3ZM59 2.5L3 2.5V3.5L59 3.5V2.5Z' fill='black'/%3E%3Cpath d='M59 263H28' stroke='black'/%3E%3C/svg%3E%0A");
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme4 .about-schemes__line {
    width: 5.1851851852vw;
    min-width: 5.1851851852vw;
    height: 24.0740740741vw;
    min-height: 24.0740740741vw;
    top: 3.7037037037vw;
    left: 0.3703703704vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme4 .about-schemes__line {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='49' viewBox='0 0 6 49' fill='none'%3E%3Cpath d='M3 43.3333C1.52724 43.3333 0.333333 44.5272 0.333333 46C0.333333 47.4728 1.52724 48.6667 3 48.6667C4.47276 48.6667 5.66667 47.4728 5.66667 46C5.66667 44.5272 4.47276 43.3333 3 43.3333ZM2.5 0L2.5 46H3.5L3.5 0L2.5 0Z' fill='black'/%3E%3C/svg%3E");
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme4 .about-schemes__line {
    width: 6rem;
    min-width: 6rem;
    height: 51rem;
    min-height: 51rem;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme4 .about-schemes__line {
    top: 90rem;
    left: -44rem;
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme4 .about-schemes__scheme-icon .icon {
    top: 0.1851851852vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme4 .about-schemes__scheme-icon .icon {
    top: 1rem;
  }
}
.about-schemes__scheme--scheme4 .about-schemes__scheme-text {
  max-width: 316rem;
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme4 .about-schemes__scheme-text {
    position: relative;
  }
}
@media (max-width: 1080px) {
  .about-schemes__scheme--scheme4 .about-schemes__scheme-text {
    max-width: 30.9259259259vw;
    top: 17.7777777778vw;
    left: -32.962962963vw;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme4 .about-schemes__scheme-text {
    max-width: 150rem;
    top: 130rem;
    left: -130rem;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme4 .about-schemes__scheme-text {
    text-align: right;
  }
}
@media (max-width: 768px) {
  .about-schemes__scheme--scheme4 .about-schemes__scheme-text p {
    hyphens: none;
  }
}

/* Benefits items */
.benefit-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 104rem;
  row-gap: 118rem;
}
@media (max-width: 1600px) {
  .benefit-items {
    column-gap: 0.625vw;
    row-gap: 5.625vw;
  }
}
@media (max-width: 1440px) {
  .benefit-items {
    column-gap: 2.7777777778vw;
    row-gap: 3.8888888889vw;
  }
}
@media (max-width: 992px) {
  .benefit-items {
    column-gap: 24rem;
    row-gap: 48rem;
  }
}
@media (max-width: 992px) {
  .benefit-items {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .benefit-items {
    flex-direction: column;
    column-gap: unset;
  }
}
@media (max-width: 768px) {
  .benefit-items {
    row-gap: 32rem;
  }
}
.benefit-items__item {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  width: 305rem;
  row-gap: 8rem;
}
@media (max-width: 1440px) {
  .benefit-items__item {
    width: 18.0555555556vw;
  }
}
@media (max-width: 992px) {
  .benefit-items__item {
    column-gap: 20rem;
  }
}
@media (max-width: 992px) {
  .benefit-items__item {
    flex-direction: row;
    width: calc(50% - 3.125vw);
    row-gap: unset;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .benefit-items__item {
    width: 100%;
    flex-direction: column;
    text-align: center;
    align-items: center;
    column-gap: unset;
  }
}
@media (max-width: 768px) {
  .benefit-items__item {
    row-gap: 8rem;
  }
}
.benefit-items__item:nth-child(5) .benefit-items__wrapper-icon .icon {
  position: relative;
  left: 20rem;
}
@media (max-width: 992px) {
  .benefit-items__item:nth-child(5) .benefit-items__wrapper-icon .icon {
    left: unset;
  }
}
@media (max-width: 768px) {
  .benefit-items__item:nth-child(5) .benefit-items__wrapper-icon .icon {
    left: 8rem;
  }
}
.benefit-items__item p {
  color: #000;
}
@media (max-width: 768px) {
  .benefit-items__item p {
    display: block;
  }
}
@media (max-width: 768px) {
  .benefit-items__item p {
    max-width: 240rem;
  }
}
.benefit-items__wrapper-icon {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 97.5rem;
}
@media (max-width: 992px) {
  .benefit-items__wrapper-icon {
    min-width: 98.333rem;
  }
}
@media (max-width: 992px) {
  .benefit-items__wrapper-icon {
    min-height: unset;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .benefit-items__wrapper-icon {
    min-width: 81.94rem;
  }
}

/* Recommend items */
.recommend-items {
  min-height: 563rem;
}
@media (max-width: 1440px) {
  .recommend-items {
    min-height: 32.9166666667vw;
  }
}
@media (max-width: 992px) {
  .recommend-items {
    min-height: 400rem;
  }
}
@media (max-width: 768px) {
  .recommend-items {
    min-height: 310rem;
  }
}
.recommend-items .inter-arrow--next,
.recommend-items .inter-arrow--prev {
  position: absolute;
}
@media (max-width: 768px) {
  .recommend-items .inter-arrow--next,
.recommend-items .inter-arrow--prev {
    top: unset;
    transform: unset;
  }
}
@media (max-width: 768px) {
  .recommend-items .inter-arrow--next,
.recommend-items .inter-arrow--prev {
    bottom: -56rem;
  }
}
@media (max-width: 992px) {
  .recommend-items .inter-arrow--next {
    right: -32rem;
  }
}
@media (max-width: 768px) {
  .recommend-items .inter-arrow--next {
    right: -4rem;
  }
}
@media (max-width: 992px) {
  .recommend-items .inter-arrow--prev {
    left: -32rem;
  }
}
@media (max-width: 768px) {
  .recommend-items .inter-arrow--prev {
    left: -4rem;
  }
}
.recommend-items .swiper-wrapper {
  height: auto;
}
.recommend-items__wrapper-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 78rem;
}
@media (max-width: 992px) {
  .recommend-items__wrapper-items {
    display: block;
    column-gap: unset;
    grid-template-columns: unset;
  }
}
.recommend-items__item {
  position: relative;
}
.recommend-items__item:hover .recommend-items__wrapper-img img {
  transform: scale(1.05);
}
.recommend-items__item:hover .recommend-items__background {
  filter: blur(1.02vw);
}
.recommend-items__wrapper-img {
  overflow: hidden;
}
.recommend-items__wrapper-img img {
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  height: 470rem;
}
@media (max-width: 1440px) {
  .recommend-items__wrapper-img img {
    height: 26.3888888889vw;
  }
}
@media (max-width: 992px) {
  .recommend-items__wrapper-img img {
    height: 320rem;
  }
}
@media (max-width: 768px) {
  .recommend-items__wrapper-img img {
    height: 240rem;
  }
}
.recommend-items__block-content {
  width: 100%;
  position: absolute;
  border-color: #fff;
  overflow: hidden;
  border-style: solid;
  height: 185rem;
  left: 28rem;
  bottom: -93rem;
  border-width: 1rem;
}
@media (max-width: 992px) {
  .recommend-items__block-content {
    height: 140rem;
    left: 14rem;
    bottom: -80rem;
  }
}
@media (max-width: 768px) {
  .recommend-items__block-content {
    height: auto;
    position: static;
    bottom: unset;
    left: unset;
  }
}
@media (max-width: 768px) {
  .recommend-items__block-content {
    min-height: 150rem;
    border-width: 1rem;
  }
}
.recommend-items__content-wrap {
  position: relative;
  width: 100%;
  height: auto;
  padding-left: 40rem;
  padding-right: 40rem;
  padding-top: 38rem;
  padding-bottom: 12rem;
}
@media (max-width: 1600px) {
  .recommend-items__content-wrap {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    padding-top: 1vw;
    padding-bottom: 0.75vw;
  }
}
@media (max-width: 992px) {
  .recommend-items__content-wrap {
    padding-left: 16rem;
    padding-right: 16rem;
    padding-top: 16rem;
    padding-bottom: 8rem;
  }
}
@media (max-width: 768px) {
  .recommend-items__content-wrap {
    min-height: inherit;
  }
}
@media (max-width: 768px) {
  .recommend-items__content-wrap {
    padding-left: 12rem;
    padding-right: 24rem;
    padding-top: 12rem;
  }
}
.recommend-items__content-wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  background: rgba(255, 235, 235, 0.5);
}
.recommend-items__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(0.26vw);
  z-index: 0;
  transition-property: filter;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.recommend-items__content-wrap p {
  display: block;
  position: relative;
  z-index: 2;
  font-weight: 500;
  color: #000;
}
.recommend-items__content-wrap p::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-color: #fff;
  filter: blur(50px);
}
.recommend-items__content-wrap p span {
  position: relative;
  z-index: 1;
}
.recommend-items__content-wrap p strong {
  font-weight: 700;
}

/* Way items */
.way-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 80rem;
}
@media (max-width: 1600px) {
  .way-items {
    column-gap: 1vw;
  }
}
@media (max-width: 992px) {
  .way-items {
    display: flex;
    flex-direction: column;
    column-gap: unset;
  }
}
@media (max-width: 992px) {
  .way-items {
    row-gap: 16rem;
  }
}
@media (max-width: 768px) {
  .way-items {
    row-gap: 32rem;
  }
}
.way-items__item {
  display: flex;
  flex-direction: column;
  row-gap: 35rem;
}
@media (max-width: 992px) {
  .way-items__item {
    flex-direction: row;
    row-gap: unset;
  }
}
@media (max-width: 992px) {
  .way-items__item {
    column-gap: 24rem;
  }
}
@media (max-width: 768px) {
  .way-items__item {
    flex-direction: column;
    column-gap: unset;
  }
}
@media (max-width: 768px) {
  .way-items__item {
    row-gap: 16rem;
  }
}
.way-items__item:hover .way-items__wrapper-img {
  box-shadow: 5rem 5rem 40rem rgba(0, 0, 0, 0.45);
}
@media (max-width: 768px) {
  .way-items__item:hover .way-items__wrapper-img {
    box-shadow: unset;
  }
}
@media (max-width: 768px) {
  .way-items__item:hover .way-items__wrapper-img img {
    box-shadow: 5rem 5rem 40rem rgba(0, 0, 0, 0.45);
  }
}
@media (max-width: 992px) {
  .way-items__item:nth-child(even) .way-items__wrapper-img {
    order: 1;
  }
}
@media (max-width: 768px) {
  .way-items__item:nth-child(even) .way-items__wrapper-img {
    order: 0;
  }
}
@media (max-width: 992px) {
  .way-items__item:nth-child(even) p {
    order: 0;
    text-align: right;
  }
}
@media (max-width: 768px) {
  .way-items__item:nth-child(even) p {
    order: 1;
    text-align: center;
  }
}
.way-items__wrapper-img {
  transition-property: box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  box-shadow: 5rem 5rem 40rem rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
@media (max-width: 992px) {
  .way-items__wrapper-img {
    width: 160rem;
    min-width: 160rem;
    height: 140rem;
    min-height: 140rem;
  }
}
@media (max-width: 768px) {
  .way-items__wrapper-img {
    min-width: unset;
    min-height: unset;
    width: 100%;
    box-shadow: unset;
  }
}
@media (max-width: 768px) {
  .way-items__wrapper-img {
    height: 180rem;
  }
}
.way-items__wrapper-img img {
  transition-property: box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  object-fit: contain;
  height: 223rem;
}
@media (max-width: 768px) {
  .way-items__wrapper-img img {
    box-shadow: 5rem 5rem 40rem rgba(0, 0, 0, 0.25);
  }
}
@media (max-width: 1440px) {
  .way-items__wrapper-img img {
    height: 14.5833333333vw;
  }
}
@media (max-width: 992px) {
  .way-items__wrapper-img img {
    width: 100%;
    height: 100%;
  }
}
.way-items__item p {
  color: #000;
}
@media (max-width: 992px) {
  .way-items__item p {
    margin: auto 0;
  }
}
@media (max-width: 768px) {
  .way-items__item p {
    margin: unset;
    text-align: center;
  }
}

/* Tab items */
.tab-items {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 16rem;
}
@media (max-width: 992px) {
  .tab-items {
    row-gap: 14rem;
  }
}
@media (max-width: 768px) {
  .tab-items {
    row-gap: 16rem;
  }
}

.tab-item {
  overflow: hidden;
}
.tab-item__wrapper-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom-style: solid;
  border-bottom-color: #D9D9D9;
  border-bottom-width: 2rem;
  padding-bottom: 4rem;
  padding-left: 30rem;
  padding-right: 30rem;
  column-gap: 4rem;
}
@media (max-width: 992px) {
  .tab-item__wrapper-title {
    padding-left: 24rem;
    padding-right: 24rem;
  }
}
@media (max-width: 768px) {
  .tab-item__wrapper-title {
    padding-left: 16rem;
    padding-right: 8rem;
  }
}
.tab-item__wrapper-title:hover {
  cursor: pointer;
}
.tab-item__wrapper-title h3 {
  color: #333;
  font-size: 20rem;
  line-height: 24rem;
  font-weight: 600;
}
@media (max-width: 992px) {
  .tab-item__wrapper-title h3 {
    font-size: 18rem;
    line-height: 22rem;
  }
}
.tab-item__wrapper-icon i svg {
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.tab-item__wrapper-content {
  position: relative;
  opacity: 0;
  height: 0;
  pointer-events: none;
  padding-top: 0;
  transition-property: opacity, height, padding-top, padding-bottom, top;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  top: -5vw;
  display: flex;
  flex-direction: column;
  padding-left: 30rem;
  padding-right: 30rem;
  row-gap: 24rem;
}
@media (max-width: 992px) {
  .tab-item__wrapper-content {
    padding-left: 24rem;
    padding-right: 24rem;
    row-gap: 20rem;
  }
}
@media (max-width: 768px) {
  .tab-item__wrapper-content {
    padding-left: 16rem;
    padding-right: 8rem;
    row-gap: 16rem;
  }
}
.tab-item__way-items {
  column-gap: 64rem;
  margin-top: 8rem;
}
@media (max-width: 1600px) {
  .tab-item__way-items {
    column-gap: 2.5vw;
  }
}
@media (max-width: 1440px) {
  .tab-item__way-items {
    column-gap: 2.2222222222vw;
  }
}
@media (max-width: 992px) {
  .tab-item__way-items {
    margin-top: 8rem;
    padding-bottom: 32rem;
  }
}
@media (max-width: 768px) {
  .tab-item__way-items {
    margin-top: 4rem;
    padding-bottom: 24rem;
    row-gap: 16rem;
  }
}
@media (max-width: 768px) {
  .tab-item__way-items .way-items__item {
    row-gap: 8rem;
  }
}
@media (max-width: 768px) {
  .tab-item__way-items .way-items__item:hover .way-items__wrapper-img {
    box-shadow: unset;
  }
}
.tab-item__way-items .way-items__wrapper-img {
  box-shadow: 5rem 5rem 30rem rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .tab-item__way-items .way-items__wrapper-img {
    box-shadow: unset;
  }
}
.tab-item__way-items .way-items__wrapper-img img {
  height: 219.72rem;
  min-height: 219.72rem;
}
@media (max-width: 992px) {
  .tab-item__way-items .way-items__wrapper-img img {
    height: 140rem;
    min-height: 140rem;
  }
}
@media (max-width: 768px) {
  .tab-item__way-items .way-items__wrapper-img img {
    box-shadow: 5rem 5rem 30rem rgba(0, 0, 0, 0.05);
  }
}
@media (max-width: 768px) {
  .tab-item__way-items .way-items__wrapper-img img {
    height: 180rem;
    min-height: 180rem;
  }
}
.tab-item__content-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 64rem;
  row-gap: 40rem;
  margin-bottom: 8rem;
}
@media (max-width: 992px) {
  .tab-item__content-column {
    column-gap: 24rem;
    row-gap: 32rem;
  }
}
@media (max-width: 768px) {
  .tab-item__content-column {
    row-gap: 16rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 768px) {
  .tab-item__content-column {
    display: flex;
    flex-direction: column;
    column-gap: unset;
  }
}
.tab-item--active .tab-item__wrapper-content {
  opacity: 1;
  top: 0;
  pointer-events: all;
  padding-top: 16rem;
  padding-bottom: 48rem;
}
@media (max-width: 992px) {
  .tab-item--active .tab-item__wrapper-content {
    padding-bottom: 32rem;
  }
}
.tab-item--active .tab-item__wrapper-icon i svg {
  transform: rotate(-45deg);
}

/* Section Wherebuy */
.sc-wherebuy__title {
  margin-bottom: 64rem;
}
@media (max-width: 992px) {
  .sc-wherebuy__title {
    margin-bottom: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-wherebuy__title {
    margin-bottom: 32rem;
  }
}
@media (max-width: 768px) {
  .sc-wherebuy__title {
    text-align: center;
  }
}

.sc-wherebuy--mainpage {
  background: linear-gradient(52deg, #F2F1F1 0%, #FFEBEB 100%);
  padding-top: 40rem;
  padding-bottom: 80rem;
}
@media (max-width: 992px) {
  .sc-wherebuy--mainpage {
    padding-top: 32rem;
    padding-bottom: 64rem;
  }
}
@media (max-width: 768px) {
  .sc-wherebuy--mainpage {
    padding-top: 24rem;
    padding-bottom: 48rem;
  }
}

.sc-wherebuy--shared {
  background: linear-gradient(159deg, #F2F1F1 0%, #FFEBEB 100%);
  padding-top: 58rem;
  padding-bottom: 117rem;
}
@media (max-width: 992px) {
  .sc-wherebuy--shared {
    padding-top: 48rem;
    padding-bottom: 80rem;
  }
}
@media (max-width: 768px) {
  .sc-wherebuy--shared {
    padding-top: 32rem;
    padding-bottom: 48rem;
  }
}
@media (max-width: 768px) {
  .sc-wherebuy--shared .sc-wherebuy__title {
    font-size: 24rem;
    line-height: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-wherebuy--shared .sc-wherebuy__title {
    text-align: left;
  }
}

/* Wherebuy items */
.wherebuy-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 78rem;
  row-gap: 35rem;
}
@media (max-width: 1600px) {
  .wherebuy-items {
    column-gap: 2.5vw;
    row-gap: 2vw;
  }
}
@media (max-width: 1440px) {
  .wherebuy-items {
    column-gap: 2.7777777778vw;
    row-gap: 2.4305555556vw;
  }
}
@media (max-width: 992px) {
  .wherebuy-items {
    column-gap: 24rem;
    row-gap: 20rem;
  }
}
@media (max-width: 992px) {
  .wherebuy-items {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .wherebuy-items {
    column-gap: 10rem;
    row-gap: 10rem;
  }
}
@media (max-width: 768px) {
  .wherebuy-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.wherebuy-items__item {
  box-shadow: 5rem 4rem 40rem rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  transition-property: box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  height: 200rem;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .wherebuy-items__item {
    height: 12.5vw;
  }
}
@media (max-width: 992px) {
  .wherebuy-items__item {
    height: 120rem;
  }
}
.wherebuy-items__item:hover {
  opacity: 1;
  box-shadow: 5rem 4rem 40rem rgba(0, 0, 0, 0.4);
}
.wherebuy-items__item:not(.no_hover):hover img {
  transform: scale(1.1);
  top: -16rem;
}
@media (max-width: 992px) {
  .wherebuy-items__item:hover img {
    top: -12rem;
  }
}
@media (max-width: 768px) {
  .wherebuy-items__item:hover img {
    top: 0;
  }
}
.wherebuy-items__item img {
  width: fit-content;
  object-fit: contain;
  position: relative;
  top: 0;
  transition-property: top, transform;
  transition-duration: 0.3s;
  transition-timing-function: linear;
 max-width: 200px;
}
@media (max-width: 1440px) {
  .wherebuy-items__item img {
    width: 80%;
  }
}
.wherebuy-items__item--mob img {
  display: block;
}
@media (max-width: 768px) {
  .wherebuy-items__item--mob img {
    display: none;
  }
}
.wherebuy-items__item--mob img.img-mob {
  display: none;
}
@media (max-width: 768px) {
  .wherebuy-items__item--mob img.img-mob {
    display: block;
  }
}

/* Предупреждение */
.block-warning {
  position: relative;
  bottom: 0;
  left: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  max-width: 100vw;
  width: 100%;
  pointer-events: all;
  z-index: 9;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  padding-top: 24rem;
  padding-bottom: 24rem;
  column-gap: 16rem;
  padding-left: 48rem;
  padding-right: 48rem;
}
@media (max-width: 992px) {
  .block-warning {
    padding-top: 12rem;
    padding-bottom: 12rem;
    padding-left: 24rem;
    padding-right: 24rem;
  }
}
@media (max-width: 768px) {
  .block-warning {
    padding-top: 8rem;
    padding-bottom: 8rem;
    column-gap: 8rem;
    padding-left: 12rem;
    padding-right: 12rem;
  }
}
.block-warning span {
  font-size: 40rem;
  line-height: 42rem;
  font-weight: 600;
  color: #828282;
  user-select: none;
  white-space: nowrap;
}
@media (max-width: 1600px) {
  .block-warning span {
    font-size: 2.125vw;
    line-height: 2.5vw;
  }
}
@media (max-width: 1440px) {
  .block-warning span {
    font-size: 1.9444444444vw;
    line-height: 2.5vw;
  }
}
@media (max-width: 992px) {
  .block-warning span {
    font-size: 22rem;
    line-height: 30rem;
  }
}
@media (max-width: 992px) {
  .block-warning span {
    white-space: wrap;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .block-warning span {
    font-size: 15rem;
    line-height: 18rem;
  }
}
@media (max-width: 768px) {
  .block-warning span {
    max-width: 240rem;
    width: 240rem;
  }
}
@media (max-width: 768px) {
  .block-warning span {
    text-align: left;
    display: block;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    white-space: unset;
  }
}
.block-warning__wrapper-button {
  position: relative;
}
@media (max-width: 768px) {
  .block-warning__wrapper-button {
    top: -8rem;
  }
}
.block-warning__wrapper-button:hover {
  cursor: pointer;
}
.block-warning__wrapper-button:hover .block-warning__wrapper-icon {
  opacity: 0.8;
}
.block-warning__wrapper-button:hover .block-warning__hidden-text {
  opacity: 1;
}
.block-warning__wrapper-icon {
  position: relative;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  top: 4rem;
}
@media (max-width: 992px) {
  .block-warning__wrapper-icon {
    top: 1.5625vw;
  }
}
.block-warning__hidden-text {
  position: absolute;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  top: -12rem;
  left: -8rem;
}
@media (max-width: 992px) {
  .block-warning__hidden-text {
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .block-warning__hidden-text {
    top: -1rem;
    left: -6rem;
  }
}
@media (max-width: 768px) {
  .block-warning__hidden-text {
    top: unset;
    left: 0;
  }
}
@media (max-width: 768px) {
  .block-warning__hidden-text {
    bottom: -6rem;
  }
}
.block-warning__hidden-text p {
  user-select: none;
  color: #828282;
  font-size: 16rem;
  line-height: 20rem;
  font-weight: 500;
}
@media (max-width: 992px) {
  .block-warning__hidden-text p {
    font-size: 13rem;
    line-height: 17rem;
  }
}
@media (max-width: 768px) {
  .block-warning__hidden-text p {
    font-size: 12rem;
    line-height: 16rem;
  }
}

.block-warning--fixed {
  position: fixed;
  opacity: 1;
}

.block-warning--not-fixed {
  position: relative;
  opacity: 1;
  animation: updateOpacityRevert 0.3s linear;
}

.block-warning--hidden {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  left: -100vw;
}

/* Статьи */
.article-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32rem;
  row-gap: 40rem;
}
@media (max-width: 992px) {
  .article-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .article-items {
    column-gap: 20rem;
    row-gap: 30rem;
  }
}
@media (max-width: 768px) {
  .article-items {
    /* grid-template-columns: repeat(1, 1fr); */
    column-gap: unset;

    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .article-items {
    row-gap: 24rem;
  }
}

.article-card {
  box-shadow: 0rem 0rem 35rem rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding-top: 48rem;
  padding-bottom: 48rem;
  padding-left: 40rem;
  padding-right: 40rem;
}
.swiper-wrapper .article-card {
  box-shadow: none;
}
@media (max-width: 1440px) {
  .article-card {
    padding-top: 2.7777777778vw;
    padding-bottom: 2.7777777778vw;
    padding-left: 1.6666666667vw;
    padding-right: 1.6666666667vw;
  }
}
@media (max-width: 992px) {
  .article-card {
    padding-top: 32rem;
    padding-bottom: 32rem;
    padding-left: 20rem;
    padding-right: 20rem;
  }
}
@media (max-width: 992px) {
  .article-card {
    background-color: #fff;
  }
}
@media (max-width: 768px) {
  .article-card {
    padding-top: 24rem;
    padding-bottom: 24rem;
    padding-left: 16rem;
    padding-right: 16rem;
  }
}
@media (max-width: 992px) {
  .article-card:nth-child(4n+1), .article-card:nth-child(4n) {
    background-color: #FFE0E0;
  }
}
@media (max-width: 992px) {
  .article-card:nth-child(4n+1) .article-card__wrapper-button .btn, .article-card:nth-child(4n) .article-card__wrapper-button .btn {
    background-color: #fff;
    color: #FF2E2E;
  }
  .article-card:nth-child(4n+1) .article-card__wrapper-button .btn:hover, .article-card:nth-child(4n) .article-card__wrapper-button .btn:hover {
    background-color: #FF2E2E;
    color: #fff;
  }
}
@media (min-width: 992px) {
  .article-card:nth-child(odd) {
    background-color: #fff;
  }
}
@media (max-width: 768px) {
  .article-card:nth-child(odd) {
    background-color: #fff;
  }
}
@media (min-width: 992px) {
  .article-card:nth-child(odd) .article-card__wrapper-button .btn {
    background-color: rgba(255, 46, 46, 0.25);
    color: #000;
  }
  .article-card:nth-child(odd) .article-card__wrapper-button .btn:hover {
    background-color: #FF2E2E;
    color: #fff;
  }
}
@media (max-width: 768px) {
  .article-card:nth-child(odd) .article-card__wrapper-button .btn {
    background-color: rgba(255, 46, 46, 0.25);
    color: #000;
  }
  .article-card:nth-child(odd) .article-card__wrapper-button .btn:hover {
    background-color: #FF2E2E;
    color: #fff;
  }
}
@media (min-width: 992px) {
  .article-card:nth-child(even) {
    background-color: #FFE0E0;
  }
}
@media (max-width: 768px) {
  .article-card:nth-child(even) {
    background-color: #FFE0E0;
  }
}
@media (min-width: 992px) {
  .article-card:nth-child(even) .article-card__wrapper-button .btn {
    background-color: #fff;
    color: #FF2E2E;
  }
  .article-card:nth-child(even) .article-card__wrapper-button .btn:hover {
    background-color: #FF2E2E;
    color: #fff;
  }
}
@media (max-width: 768px) {
  .article-card:nth-child(even) .article-card__wrapper-button .btn {
    background-color: #fff;
    color: #FF2E2E;
  }
  .article-card:nth-child(even) .article-card__wrapper-button .btn:hover {
    background-color: #FF2E2E;
    color: #fff;
  }
}
.article-card__category {
  display: block;
  color: #FF2E2E;
  font-size: 20rem;
  line-height: 24rem;
  font-weight: 700;
  margin-bottom: 16rem;
}
@media (max-width: 992px) {
  .article-card__category {
    font-size: 18rem;
    line-height: 22rem;
  }
}
@media (max-width: 992px) {
  .article-card__category {
    margin-bottom: 12rem;
  }
}
@media (max-width: 768px) {
  .article-card__category {
    font-size: 16rem;
    line-height: 20rem;
  }
}
@media (max-width: 768px) {
  .article-card__category {
    margin-bottom: 10rem;
  }
}
.article-card__title {
  margin-bottom: 16rem;
}
@media (max-width: 992px) {
  .article-card__title {
    margin-bottom: 12rem;
  }
}
@media (max-width: 768px) {
  .article-card__title {
    margin-bottom: 10rem;
  }
}
.article-card__title a {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 64rem;
  max-height: 64rem;
}
@media (max-width: 992px) {
  .article-card__title a {
    height: 58rem;
    max-height: 58rem;
  }
}
@media (max-width: 768px) {
  .article-card__title a {
    height: 56rem;
    max-height: 56rem;
  }
}
.article-card__wrapper-desc {
  margin-bottom: 20rem;
}
@media (max-width: 992px) {
  .article-card__wrapper-desc {
    margin-bottom: 16rem;
  }
}
@media (max-width: 768px) {
  .article-card__wrapper-desc {
    margin-bottom: 12rem;
  }
}
.article-card__wrapper-desc p {
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 84rem;
  height: 84rem;
}
@media (max-width: 992px) {
  .article-card__wrapper-desc p {
    max-height: 75rem;
    height: 75rem;
  }
}
.article-card__wrapper-button {
  margin-top: auto;
}
.article-card__wrapper-button .btn {
  background-color: rgba(255, 46, 46, 0.25);
  color: #000;
  border-radius: 20px;
}
.article-card__wrapper-button .btn:hover {
  opacity: 1;
  background-color: #FF2E2E;
  color: #fff;
}

/* Страницы */
/* Страница: Главная */
.sc-main-slider {
  height: 100vh;
  background: linear-gradient(159deg, #F2F1F1 0%, #FFEBEB 100%);
  position: relative;
}
@media (max-width: 768px) {
  .sc-main-slider {
    max-height: 775rem;
  }
}
.sc-main-slider .header {
  top: 0;
  left: 0;
}
.sc-main-slider__hidden-title {
  opacity: 0;
  position: absolute;
  left: -100vw;
  pointer-events: none;
}
.sc-main-slider__swiper-container {
  height: 100%;
  max-width: 100%;
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .sc-main-slider__swiper-container .swiper-slide:nth-child(2) .sc-main-slider__title.main-title {
    font-size: 9.5vw;
  }
}
.sc-main-slider__swiper-container .swiper-slide--white .sc-main-slider__title {
  color: #fff;
}
.sc-main-slider__swiper-container .swiper-slide--black .sc-main-slider__title {
  color: #000;
}
@media (max-width: 768px) {
  .sc-main-slider__swiper-container .swiper-slide--black .sc-main-slider__title {
    color: #fff;
  }
}
.sc-main-slider__swiper-container .swiper-slide--dark .sc-main-slider__title {
  color: #333;
}
@media (max-width: 768px) {
  .sc-main-slider__swiper-container .swiper-slide--dark .sc-main-slider__title {
    color: #fff;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__swiper-container .swiper-slide--big-mob-text .sc-main-slider__title {
    font-size: 40rem;
    line-height: 48rem;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__swiper-container .swiper-slide--big-mob-text .sc-main-slider__title {
    margin-bottom: 32rem;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__swiper-container .swiper-slide--bg-mobile .sc-main-slider__background {
    display: none;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__swiper-container .swiper-slide--bg-mobile .sc-main-slider__background--mobile {
    display: block;
	background-size: cover;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__swiper-container::after {
    content: "";
    display: block;
    width: 100%;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(360deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__swiper-container::after {
    height: 130rem;
  }
}
.sc-main-slider__swiper, .sc-main-slider__wrap-content, .sc-main-slider__background {
  height: 100%;
}
.sc-main-slider__wrap-content {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .sc-main-slider__wrap-content {
    align-items: flex-end;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__wrap-content {
    padding-bottom: 100rem;
    padding-top: 110rem;
  }
}
.sc-main-slider__background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}
.sc-main-slider__background--mobile {
  display: none;
  background-color: #fff;
}
.sc-main-slider__content {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .sc-main-slider__content {
    padding-left: 20rem;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__content {
    padding-right: 0;
  }
}
.sc-main-slider__title {
  margin-bottom: 72rem;
}
@media (max-width: 992px) {
  .sc-main-slider__title {
    margin-bottom: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__title {
    margin-bottom: 38rem;
  }
}
.sc-main-slider__wrapper-button {
  position: relative;
  max-width: 241rem;
}
@media (max-width: 992px) {
  .sc-main-slider__wrapper-button {
    max-width: 221rem;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__wrapper-button {
    max-width: 241rem;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__wrapper-button .btn {
    font-size: 20rem;
    line-height: 24rem;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__wrapper-button .btn {
    padding-left: 40rem;
    padding-right: 40rem;
    max-height: 56rem;
    min-height: 56rem;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__wrapper-button .btn {
    background: linear-gradient(180deg, #FF2E2E 0%, #FF6868 100%);
  }
}
.sc-main-slider__arrow {
  position: absolute;
  z-index: 10;
  bottom: 8rem;
  right: -160rem;
}
@media (max-width: 992px) {
  .sc-main-slider__arrow {
    bottom: 8rem;
    right: -120rem;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__arrow {
    display: none;
  }
}
.sc-main-slider__pagination {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  right: 52rem;
  row-gap: 30rem;
}
@media (max-width: 1600px) {
  .sc-main-slider__pagination {
    right: 2vw;
  }
}
@media (max-width: 992px) {
  .sc-main-slider__pagination {
    right: 0;
  }
}
@media (max-width: 992px) {
  .sc-main-slider__pagination {
    row-gap: 24rem;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__pagination {
    transform: unset;
    top: unset;
    flex-direction: row;
    row-gap: unset;
    right: unset;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__pagination {
    column-gap: 24rem;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__pagination.pagination.swiper-pagination-fraction, .sc-main-slider__pagination.pagination.swiper-pagination-custom, .sc-main-slider__pagination.pagination.swiper-horizontal > .swiper-pagination-bullets, .sc-main-slider__pagination.pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    left: 18rem;
    bottom: 37rem;
  }
}
@media (max-width: 768px) {
  .sc-main-slider__pagination.pagination.swiper-pagination-fraction, .sc-main-slider__pagination.pagination.swiper-pagination-custom, .sc-main-slider__pagination.pagination.swiper-horizontal > .swiper-pagination-bullets, .sc-main-slider__pagination.pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    align-items: center;
  }
}

.sc-about-product {
  background: linear-gradient(180deg, #F2F1F1 0%, #FFEBEB 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80rem;
  padding-bottom: 44rem;
}
@media (max-width: 1080px) {
  .sc-about-product {
    padding-bottom: 16.6666666667vw;
  }
}
@media (max-width: 992px) {
  .sc-about-product {
    padding-top: 64rem;
    padding-bottom: 64rem;
  }
}
@media (max-width: 768px) {
  .sc-about-product {
    padding-top: 52rem;
    padding-bottom: 390rem;
  }
}
@media (max-width: 1080px) {
  .sc-about-product__container {
    min-height: 68.5185185185vw;
  }
}
.sc-about-product__title {
  max-width: 1137rem;
}
@media (max-width: 1080px) {
  .sc-about-product__title {
    font-size: 4.4444444444vw;
    line-height: 5.1851851852vw;
  }
}
@media (max-width: 992px) {
  .sc-about-product__title {
    max-width: unset;
  }
}
@media (max-width: 1080px) {
  .sc-about-product__title {
    margin-bottom: 7.037037037vw;
  }
}
@media (max-width: 992px) {
  .sc-about-product__title {
    margin-bottom: 80rem;
  }
}
@media (max-width: 768px) {
  .sc-about-product__title {
    font-size: 27rem;
    line-height: 34rem;
  }
}
@media (max-width: 768px) {
  .sc-about-product__title {
    hyphens: none;
  }
}
@media (max-width: 768px) {
  .sc-about-product__title {
    margin-bottom: 104rem;
  }
}
.sc-about-product__container {
  position: relative;
  z-index: 1;
}
.sc-about-product__wrapper-icon {
  position: absolute;
  left: 0;
  z-index: 0;
  pointer-events: none;
  bottom: 95rem;
}
@media (max-width: 1080px) {
  .sc-about-product__wrapper-icon {
    left: -39.3518518519vw;
    bottom: 12.962962963vw;
  }
}
@media (max-width: 992px) {
  .sc-about-product__wrapper-icon {
    left: -300rem;
    bottom: 135rem;
  }
}
@media (max-width: 768px) {
  .sc-about-product__wrapper-icon {
    left: -265rem;
    bottom: 318rem;
  }
}
@media (max-width: 1080px) {
  .sc-about-product__wrapper-icon--desktop {
    display: none;
  }
}
.sc-about-product__wrapper-icon--large {
  display: none;
}
@media (max-width: 1080px) {
  .sc-about-product__wrapper-icon--large {
    display: block;
  }
}
@media (max-width: 768px) {
  .sc-about-product__wrapper-icon--large {
    display: none;
  }
}
.sc-about-product__wrapper-icon--mobile {
  display: none;
}
@media (max-width: 768px) {
  .sc-about-product__wrapper-icon--mobile {
    display: block;
  }
}
.sc-about-product__wrapper-icon svg {
  width: 100%;
  height: 419rem;
  min-height: 419rem;
}
@media (max-width: 1080px) {
  .sc-about-product__wrapper-icon svg {
    width: 177.7777777778vw;
    height: 38.7962962963vw;
    min-height: 38.7962962963vw;
  }
}
@media (max-width: 768px) {
  .sc-about-product__wrapper-icon svg {
    width: 840rem;
    height: 180rem;
    min-height: 180rem;
  }
}

.sc-promovideo {
  background: linear-gradient(181deg, #FFEBEB 0%, #FFEBEB 100%);
  padding-top: 56rem;
  padding-bottom: 56rem;
}
@media (max-width: 992px) {
  .sc-promovideo {
    padding-top: 48rem;
    padding-bottom: 16rem;
  }
}
@media (max-width: 768px) {
  .sc-promovideo {
    padding-bottom: 48rem;
  }
}
@media (max-width: 768px) {
  .sc-promovideo {
    padding-top: 0;
  }
}
.sc-promovideo__title {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  margin-bottom: 64rem;
}
@media (max-width: 992px) {
  .sc-promovideo__title {
    margin-bottom: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-promovideo__title {
    margin-bottom: 24rem;
  }
}
@media (max-width: 1440px) {
  .sc-promovideo__title br {
    display: none;
  }
}
.sc-promovideo__wrapper-video {
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.sc-promovideo__wrapper-video video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 16rem;
}
.sc-promovideo__wrapper-video--play .sc-promovideo__thumb-video {
  opacity: 0;
  pointer-events: none;
}
.sc-promovideo__thumb-video {
  overflow: hidden;
  position: relative;
  z-index: 1;
  opacity: 1;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  border-radius: 16rem;
}
.sc-promovideo__thumb-video:hover {
  opacity: 1;
  cursor: pointer;
}
.sc-promovideo__thumb-video:hover img {
  transform: scale(1.025);
}
.sc-promovideo__thumb-video:hover .sc-promovideo__icon-play {
  opacity: 1;
}
.sc-promovideo__thumb-video img {
  transform: scale(1);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  border-radius: inherit;
}
.sc-promovideo__icon-play {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.6;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.sc-promovideo__icon-play svg {
  fill: #000;
}

.sc-benefits {
  background: linear-gradient(180deg, #FFEBEB 0%, #F2F1F1 100%);
  padding-top: 80rem;
  padding-bottom: 50rem;
}
@media (max-width: 1080px) {
  .sc-benefits {
    padding-top: 8.3333333333vw;
  }
}
@media (max-width: 992px) {
  .sc-benefits {
    padding-bottom: 32rem;
  }
}
@media (max-width: 768px) {
  .sc-benefits {
    background: #fff;
  }
}
@media (max-width: 768px) {
  .sc-benefits {
    padding-top: 40rem;
    padding-bottom: 40rem;
  }
}
.sc-benefits__title {
  margin-bottom: 80rem;
}
@media (max-width: 992px) {
  .sc-benefits__title {
    margin-bottom: 64rem;
  }
}
@media (max-width: 768px) {
  .sc-benefits__title {
    margin-bottom: 32rem;
    font-size: 28rem;
    line-height: 36rem;
  }
}

.sc-recommend {
  background: linear-gradient(181deg, #F2F1F1 0%, #FFEBEB 100%);
  padding-top: 80rem;
  padding-bottom: 84rem;
}
@media (max-width: 992px) {
  .sc-recommend {
    padding-top: 48rem;
    padding-bottom: 56rem;
  }
}
@media (max-width: 768px) {
  .sc-recommend {
    padding-top: 40rem;
    padding-bottom: 80rem;
  }
}
.sc-recommend__title {
  margin-bottom: 72rem;
}
@media (max-width: 992px) {
  .sc-recommend__title {
    margin-bottom: 48rem;
  }
}
@media (max-width: 768px) {
  .sc-recommend__title {
    margin-bottom: 32rem;
  }
}
@media (max-width: 768px) {
  .sc-recommend__title {
    font-size: 32rem;
    line-height: 40rem;
  }
}
.sc-recommend__swiper-container {
  position: relative;
}
.sc-recommend__wrapper-subtext {
  text-align: center;
  margin-top: 67rem;
}
@media (max-width: 992px) {
  .sc-recommend__wrapper-subtext {
    margin-top: 32rem;
  }
}
@media (max-width: 768px) {
  .sc-recommend__wrapper-subtext {
    margin-top: 12rem;
    max-width: 200rem;
  }
}
@media (max-width: 768px) {
  .sc-recommend__wrapper-subtext {
    margin-left: auto;
    margin-right: auto;
  }
}
.sc-recommend__wrapper-subtext span {
  color: #828282;
  font-size: 32rem;
  line-height: 40rem;
  font-weight: 600;
}
@media (max-width: 992px) {
  .sc-recommend__wrapper-subtext span {
    font-size: 28rem;
    line-height: 32rem;
  }
}
@media (max-width: 768px) {
  .sc-recommend__wrapper-subtext span {
    font-size: 16rem;
    line-height: 20rem;
  }
}

.sc-ways {
  background: linear-gradient(0deg, #F2F1F1 0%, #FFEBEB 100%);
  padding-top: 40rem;
  padding-bottom: 90rem;
}
@media (max-width: 992px) {
  .sc-ways {
    padding-top: 40rem;
    padding-bottom: 72rem;
  }
}
@media (max-width: 768px) {
  .sc-ways {
    padding-top: 24rem;
    padding-bottom: 40rem;
  }
}
.sc-ways__title {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  margin-bottom: 67rem;
}
@media (max-width: 992px) {
  .sc-ways__title {
    margin-bottom: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-ways__title {
    margin-bottom: 32rem;
  }
}
@media (max-width: 768px) {
  .sc-ways__title {
    font-size: 34rem;
    line-height: 42rem;
  }
}
@media (max-width: 768px) {
  .sc-ways__title {
    text-align: center;
  }
}

.sc-faq {
  background: linear-gradient(159deg, #F2F1F1 0%, #FFEBEB 100%);
  padding-bottom: 81rem;
}
@media (max-width: 992px) {
  .sc-faq {
    padding-bottom: 64rem;
  }
}
@media (max-width: 768px) {
  .sc-faq {
    padding-top: 16rem;
    padding-bottom: 24rem;
  }
}
.sc-faq h2 {
  margin-bottom: 72rem;
}
@media (max-width: 992px) {
  .sc-faq h2 {
    margin-bottom: 48rem;
  }
}
@media (max-width: 768px) {
  .sc-faq h2 {
    margin-bottom: 24rem;
  } 
}
@media (max-width: 768px) {
  .sc-faq h2 {
    text-align: center;
  }
   h2.sc-faq__subtitle {
    text-align: left;
    font-size: 18rem;
    line-height: 22rem;
	}
}
.sc-faq__wrapper-items {
  margin-bottom: 36rem;
}
@media (max-width: 992px) {
  .sc-faq__wrapper-items {
    margin-bottom: 32rem;
  }
}
@media (max-width: 768px) {
  .sc-faq__wrapper-items {
    margin-bottom: 24rem;
  }
}
.sc-faq__wrapper-button {
  margin: 0 auto;
  max-width: 280rem;
}
@media (max-width: 992px) {
  .sc-faq__wrapper-button {
    max-width: 256rem;
  }
}
@media (max-width: 768px) {
  .sc-faq__wrapper-button {
    max-width: 210rem;
  }
}
.sc-faq__wrapper-button .btn {
  white-space: nowrap;
}

/* Страница: все страницы (кроме главной) */
.sc-infoblock {
  position: relative;
  padding-top: 60rem;
  padding-bottom: 96rem;
}
@media (max-width: 992px) {
  .sc-infoblock {
    padding-top: 48rem;
    padding-bottom: 64rem;
  }
}
@media (max-width: 768px) {
  .sc-infoblock {
    padding-top: 24rem;
    padding-bottom: 48rem;
  }
}
@media (max-width: 768px) {
  .sc-infoblock h1 {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
  }
}
.sc-infoblock::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(159deg, #F2F1F1 0%, #FFEBEB 100%);
  height: 340rem;
}
@media (max-width: 992px) {
  .sc-infoblock::after {
    height: 298rem;
  }
}
@media (max-width: 768px) {
  .sc-infoblock::after {
    height: 280rem;
  }
}
.sc-infoblock__breadcrumbs {
  margin-bottom: 8rem;
}
.sc-infoblock__main-part {
  padding-bottom: 80rem;
}
@media (max-width: 992px) {
  .sc-infoblock__main-part {
    padding-bottom: 48rem;
  }
}
@media (max-width: 768px) {
  .sc-infoblock__main-part {
    padding-bottom: 32rem;
  }
}
.sc-infoblock__main-part, .sc-infoblock__content-part {
  position: relative;
  z-index: 1;
}
.sc-infoblock__content-part {
  padding-top: 40rem;
}
@media (max-width: 992px) {
  .sc-infoblock__content-part {
    padding-top: 32rem;
  }
}

/* Страница: Описание продукта */
.sc-about-product--page {
  padding-top: 24rem;
}
@media (max-width: 1080px) {
  .sc-about-product--page {
    padding-bottom: 22.2222222222vw;
  }
}
@media (max-width: 992px) {
  .sc-about-product--page {
    padding-top: 24rem;
    padding-bottom: 80rem;
  }
}
@media (max-width: 768px) {
  .sc-about-product--page {
    padding-top: 16rem;
    padding-bottom: 390rem;
  }
}
@media (max-width: 1080px) {
  .sc-about-product--page .sc-about-product__title {
    margin-bottom: 2.962962963vw;
  }
}
@media (max-width: 992px) {
  .sc-about-product--page .sc-about-product__title {
    margin-bottom: 80rem;
  }
}
@media (max-width: 768px) {
  .sc-about-product--page .sc-about-product__title {
    margin-bottom: 104rem;
  }
}
@media (max-width: 1080px) {
  .sc-about-product--page .sc-about-product__wrapper-icon {
    bottom: 18.5185185185vw;
  }
}
@media (max-width: 992px) {
  .sc-about-product--page .sc-about-product__wrapper-icon {
    bottom: 151rem;
  }
}
@media (max-width: 768px) {
  .sc-about-product--page .sc-about-product__wrapper-icon {
    bottom: 318rem;
  }
}
@media (max-width: 992px) {
  .sc-about-product--page .about-schemes__scheme--scheme3 {
    bottom: -60rem;
  }
}
@media (max-width: 768px) {
  .sc-about-product--page .about-schemes__scheme--scheme3 {
    bottom: -238rem;
  }
}

/* Страница: Преимущества */
.sc-benefits--page {
  min-height: 100vh;
  padding-top: 60rem;
  padding-bottom: 100rem;
}
@media (max-width: 992px) {
  .sc-benefits--page {
    padding-top: 24rem;
    padding-bottom: 80rem;
  }
}
@media (max-width: 992px) {
  .sc-benefits--page {
    min-height: unset;
  }
}
@media (max-width: 768px) {
  .sc-benefits--page {
    padding-top: 16rem;
    padding-bottom: 48rem;
  }
}
.sc-benefits--page .sc-benefits__title {
  margin-bottom: 92rem;
}
@media (max-width: 992px) {
  .sc-benefits--page .sc-benefits__title {
    margin-bottom: 64rem;
  }
}
@media (max-width: 768px) {
  .sc-benefits--page .sc-benefits__title {
    margin-bottom: 40rem;
  }
}

/* Страница: Рекомендации */
.sc-recommend--page {
  min-height: 100vh;
  padding-top: 16rem;
  padding-bottom: 56rem;
}
@media (max-width: 992px) {
  .sc-recommend--page {
    padding-top: 32rem;
    padding-bottom: 72rem;
  }
}
@media (max-width: 992px) {
  .sc-recommend--page {
    min-height: unset;
  }
}
@media (max-width: 768px) {
  .sc-recommend--page {
    padding-top: 16rem;
    padding-bottom: 40rem;
  }
}
.sc-recommend--page .sc-recommend__title {
  margin-bottom: 37rem;
}
@media (max-width: 992px) {
  .sc-recommend--page .sc-recommend__title {
    margin-bottom: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-recommend--page .sc-recommend__title {
    margin-bottom: 32rem;
  }
}

/* Страница: Способы применения */
.sc-ways--page {
  min-height: 100vh;
  padding-top: 40rem;
  padding-bottom: 80rem;
}
@media (max-width: 992px) {
  .sc-ways--page {
    min-height: unset;
  }
}
@media (max-width: 992px) {
  .sc-ways--page {
    padding-top: 32rem;
    padding-bottom: 72rem;
  }
}
@media (max-width: 768px) {
  .sc-ways--page {
    padding-top: 16rem;
    padding-bottom: 40rem;
  }
}
.sc-ways--page .sc-ways__title {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  margin-bottom: 67rem;
}
@media (max-width: 992px) {
  .sc-ways--page .sc-ways__title {
    margin-bottom: 56rem;
  }
}
@media (max-width: 768px) {
  .sc-ways--page .sc-ways__title {
    margin-bottom: 32rem;
  }
}
@media (max-width: 768px) {
  .sc-ways--page .sc-ways__title {
    text-align: center;
  }
}

/* Страница: Частые вопросы */
.sc-faq--page {
  min-height: 100vh;
  padding-top: 60rem;
  padding-bottom: 50rem;
}
@media (max-width: 992px) {
  .sc-faq--page {
    min-height: unset;
  }
}
@media (max-width: 992px) {
  .sc-faq--page {
    padding-top: 40rem;
    padding-bottom: 88rem;
  }
}
@media (max-width: 768px) {
  .sc-faq--page {
    padding-top: 16rem;
    padding-bottom: 48rem;
  }
}
.sc-faq--page .sc-faq__title {
  margin-bottom: 80rem;
}
@media (max-width: 992px) {
  .sc-faq--page .sc-faq__title {
    margin-bottom: 72rem;
  }
}
@media (max-width: 768px) {
  .sc-faq--page .sc-faq__title {
    margin-bottom: 32rem;
  }
}
.sc-faq--page .sc-faq__wrapper-items {
  margin-bottom: 36rem;
}
@media (max-width: 992px) {
  .sc-faq--page .sc-faq__wrapper-items {
    margin-bottom: 32rem;
  }
}

/* Страница: Где купить */
.sc-wherebuy--page {
  background: linear-gradient(52deg, #F2F1F1 0%, #FFEBEB 100%);
  min-height: 100vh;
  padding-top: 64rem;
  padding-bottom: 170rem;
}
@media (max-width: 992px) {
  .sc-wherebuy--page {
    min-height: unset;
  }
}
@media (max-width: 992px) {
  .sc-wherebuy--page {
    padding-top: 40rem;
    padding-bottom: 120rem;
  }
}
@media (max-width: 768px) {
  .sc-wherebuy--page {
    padding-top: 8rem;
    padding-bottom: 40rem;
  }
}
.sc-wherebuy--page .sc-wherebuy__title {
  margin-bottom: 52rem;
}
@media (max-width: 992px) {
  .sc-wherebuy--page .sc-wherebuy__title {
    margin-bottom: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-wherebuy--page .sc-wherebuy__title {
    margin-bottom: 32rem;
  }
}
@media (max-width: 768px) {
  .sc-wherebuy--page .sc-wherebuy__title {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .sc-wherebuy--page .sc-wherebuy__title {
    font-size: 32rem;
    line-height: 40rem;
  }
}

/* Страница: Инструкции */
.sc-main-instruct {
  position: relative;
  background: linear-gradient(159deg, #F2F1F1 0%, #FFEBEB 100%);
  padding-top: 58rem;
  padding-bottom: 58rem;
}
@media (max-width: 992px) {
  .sc-main-instruct {
    padding-top: 48rem;
    padding-bottom: 48rem;
  }
}
@media (max-width: 768px) {
  .sc-main-instruct {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .sc-main-instruct {
    padding-bottom: 40rem;
  }
}
.sc-main-instruct__container {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-right: 54rem;
}
@media (max-width: 1600px) {
  .sc-main-instruct__container {
    padding-right: 3.375vw;
  }
}
@media (max-width: 1440px) {
  .sc-main-instruct__container {
    padding-right: 3.75vw;
  }
}
@media (max-width: 992px) {
  .sc-main-instruct__container {
    padding-right: 12rem;
  }
}
@media (max-width: 768px) {
  .sc-main-instruct__container {
    padding-right: 15rem;
    row-gap: 32rem;
  }
}
@media (max-width: 768px) {
  .sc-main-instruct__container {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.sc-main-instruct__content-left {
  flex: 1;
  padding-top: 72rem;
}
@media (max-width: 992px) {
  .sc-main-instruct__content-left {
    padding-top: 4.1666666667vw;
  }
}
.sc-main-instruct__wrapper-title {
  margin-bottom: 40rem;
}
@media (max-width: 992px) {
  .sc-main-instruct__wrapper-title {
    margin-bottom: 32rem;
  }
}
@media (max-width: 768px) {
  .sc-main-instruct__wrapper-title {
    margin-bottom: 16rem;
  }
}
@media (max-width: 992px) {
  .sc-main-instruct__wrapper-title h1 {
    font-size: 28rem;
    line-height: 36rem;
  }
}
@media (max-width: 768px) {
  .sc-main-instruct__wrapper-title h1 {
    font-size: 22rem;
    line-height: 30rem;
  }
}
.sc-main-instruct__content-right {
  position: relative;
}
@media (max-width: 1600px) {
  .sc-main-instruct__wrap-right {
    position: sticky;
    left: 0;
    top: 0;
  }
}
@media (max-width: 1600px) {
  .sc-main-instruct__wrap-right {
    top: 7.5vw;
  }
}
@media (max-width: 992px) {
  .sc-main-instruct__wrap-right {
    top: 100rem;
  }
}
@media (max-width: 768px) {
  .sc-main-instruct__wrap-right {
    top: unset;
    left: unset;
    position: static;
  }
}
.sc-main-instruct__wrapper-img {
  width: 30.3125vw;
  min-width: 30.3125vw;
  margin-bottom: 0.5729166667vw;
}
@media (max-width: 1600px) {
  .sc-main-instruct__wrapper-img {
    width: 36.375vw;
    min-width: 36.375vw;
    margin-bottom: 0.6875vw;
  }
}
@media (max-width: 1440px) {
  .sc-main-instruct__wrapper-img {
    width: 40.4166666667vw;
    min-width: 40.4166666667vw;
    margin-bottom: 0.7638888889vw;
  }
}
@media (max-width: 1600px) {
  .sc-main-instruct__wrapper-img {
    width: 33.0625vw;
    min-width: 33.0625vw;
  }
}
@media (max-width: 992px) {
  .sc-main-instruct__wrapper-img {
    width: 291rem;
    min-width: 291rem;
  }
}
@media (max-width: 768px) {
  .sc-main-instruct__wrapper-img {
    min-width: unset;
    width: 100%;
  }
}
.sc-main-instruct__wrapper-img img {
  height: 692rem;
  min-height: 692rem;
}
@media (max-width: 1600px) {
  .sc-main-instruct__wrapper-img img {
    height: 36.04125vw;
    min-height: 36.04125vw;
  }
}
@media (max-width: 992px) {
  .sc-main-instruct__wrapper-img img {
    height: 346rem;
    min-height: 346rem;
  }
}
@media (max-width: 768px) {
  .sc-main-instruct__wrapper-img img {
    min-height: unset;
    height: auto;
  }
}
.sc-main-instruct__wrapper-button {
  position: relative;
  margin: 0 auto;
  max-width: 206rem;
  left: -32rem;
}
@media (max-width: 1600px) {
  .sc-main-instruct__wrapper-button {
    left: -1.5vw;
  }
}
@media (max-width: 992px) {
  .sc-main-instruct__wrapper-button {
    max-width: 180rem;
    left: -16rem;
  }
}
@media (max-width: 768px) {
  .sc-main-instruct__wrapper-button {
    left: unset;
  }
}
@media (max-width: 768px) {
  .sc-main-instruct__wrapper-button {
    max-width: 164rem;
  }
}
.sc-main-instruct__wrapper-button .btn {
  background: linear-gradient(180deg, #FF2E2E 0%, #FF6868 100%);
  white-space: nowrap;
}
.sc-main-instruct__wrapper-content p,
.sc-main-instruct__wrapper-content strong {
  color: #333;
}
.sc-main-instruct__wrapper-content strong {
  font-size: 24rem;
  line-height: 32rem;
  font-weight: 600;
}
@media (max-width: 992px) {
  .sc-main-instruct__wrapper-content strong {
    font-size: 20rem;
    line-height: 28rem;
  }
}
@media (max-width: 768px) {
  .sc-main-instruct__wrapper-content strong {
    font-size: 18rem;
    line-height: 26rem;
  }
}

.sc-instruction {
  padding-top: 51rem;
  padding-bottom: 77rem;
}
@media (max-width: 992px) {
  .sc-instruction {
    padding-top: 48rem;
    padding-bottom: 64rem;
  }
}
@media (max-width: 768px) {
  .sc-instruction {
    padding-top: 32rem;
    padding-bottom: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-instruction {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .sc-instruction__tab-item .tab-item__wrapper-title {
    width: 340rem;
    max-width: 340rem;
  }
}
.sc-instruction__tabs-items {
  margin-bottom: 64rem;
}
@media (max-width: 992px) {
  .sc-instruction__tabs-items {
    margin-bottom: 48rem;
  }
}
@media (max-width: 768px) {
  .sc-instruction__tabs-items {
    margin-bottom: 32rem;
  }
}
@media (max-width: 768px) {
  .sc-instruction__tabs-items {
    max-width: 100%;
    width: 100%;
  }
}
.sc-instruction__tabs-items .tab-item__wrapper-title h3 {
  font-size: 24rem;
  line-height: 32rem;
  font-weight: 600;
}
@media (max-width: 992px) {
  .sc-instruction__tabs-items .tab-item__wrapper-title h3 {
    font-size: 20rem;
    line-height: 28rem;
  }
}
@media (max-width: 768px) {
  .sc-instruction__tabs-items .tab-item__wrapper-title h3 {
    font-size: 18rem;
    line-height: 26rem;
  }
}
@media (max-width: 768px) {
  .sc-instruction__tabs-items .tab-item__wrapper-title h3 {
    max-width: 240rem;
    width: 240rem;
  }
}
@media (max-width: 768px) {
  .sc-instruction__tabs-items .tab-item__wrapper-title h3 {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    white-space: unset;
  }
}
.sc-instruction__wrapper-button {
  margin: 0 auto;
  max-width: 304rem;
}
@media (max-width: 992px) {
  .sc-instruction__wrapper-button {
    max-width: 272rem;
  }
}
@media (max-width: 768px) {
  .sc-instruction__wrapper-button {
    max-width: 232rem;
  }
}
.sc-instruction__wrapper-button .btn {
  background: linear-gradient(180deg, #FF2E2E 0%, #FF6868 100%);
}

/* Страница: Статьи */
.sc-articles {
  position: relative;
  padding-top: 132rem;
  padding-bottom: 76rem;
}
@media (max-width: 1440px) {
  .sc-articles {
    padding-top: 6.8055555556vw;
  }
}
@media (max-width: 992px) {
  .sc-articles {
    padding-top: 80rem;
    padding-bottom: 56rem;
  }
}
@media (max-width: 768px) {
  .sc-articles {
    padding-top: 16rem;
    padding-bottom: 48rem;
  }
}
.sc-articles__background {
  position: absolute;
  display: block;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  background: linear-gradient(159deg, #F2F1F1 0%, #FFEBEB 100%);
  top: 0;
  left: 0;
  height: 470rem;
  min-height: 470rem;
}
@media (max-width: 992px) {
  .sc-articles__background {
    height: 420rem;
    min-height: 420rem;
  }
}
@media (max-width: 768px) {
  .sc-articles__background {
    height: 280rem;
    min-height: 280rem;
  }
}
.sc-articles__title {
  color: #333;
  font-size: 36rem;
  line-height: 44rem;
  font-weight: 800;
  margin-bottom: 36rem;
}
@media (max-width: 992px) {
  .sc-articles__title {
    font-size: 32rem;
    line-height: 40rem;
  }
}
@media (max-width: 992px) {
  .sc-articles__title {
    margin-bottom: 32rem;
  }
}
@media (max-width: 768px) {
  .sc-articles__title {
    font-size: 28rem;
    line-height: 36rem;
  }
}
.sc-articles.section-circle::after {
  z-index: 1;
}
.sc-articles.section-circle h1,
.sc-articles.section-circle h2,
.sc-articles.section-circle .container {
  z-index: 2;
}

.sc-articles--shared {
  padding-top: 71rem;
  padding-bottom: 82rem;
}
@media (max-width: 992px) {
  .sc-articles--shared {
    padding-top: 48rem;
    padding-bottom: 48rem;
  }
}
@media (max-width: 768px) {
  .sc-articles--shared {
    padding-top: 40rem;
  }
}
.sc-articles--shared .sc-articles__title {
  font-size: 36rem;
  line-height: 40rem;
  margin-bottom: 51rem;
}
@media (max-width: 992px) {
  .sc-articles--shared .sc-articles__title {
    margin-bottom: 32rem;
  }
}
@media (max-width: 992px) {
  .sc-articles--shared .sc-articles__title {
    font-size: 28rem;
    line-height: 36rem;
  }
}
@media (max-width: 768px) {
  .sc-articles--shared .sc-articles__title {
    font-size: 32rem;
    line-height: 40rem;
  }
}
.sc-articles--shared .sc-articles__background {
  height: 460rem;
  min-height: 460rem;
}
@media (max-width: 992px) {
  .sc-articles--shared .sc-articles__background {
    height: 320rem;
    min-height: 320rem;
  }
}
@media (max-width: 768px) {
  .sc-articles--shared .sc-articles__background {
    height: 280rem;
    min-height: 280rem;
  }
}

/* Страница: Статья */
.sc-main-article {
  background: linear-gradient(159deg, #F2F1F1 0%, #FFEBEB 100%);
  /* padding-top: 132rem; */
  padding-top: 64rem;
  padding-bottom: 70rem;
}
@media (max-width: 1600px) {
  .sc-main-article {
    padding-top: 6.75vw;
  }
}
@media (max-width: 1440px) {
  .sc-main-article {
    padding-top: 5.5555555556vw;
  }
}
@media (max-width: 992px) {
  .sc-main-article {
    padding-top: 40rem;
    padding-bottom: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-main-article {
    padding-top: 12rem;
    padding-bottom: 32rem;
  }
}
.sc-main-article__container {
  display: grid;
  /* grid-template-columns: 48.95vw 1fr; */
  grid-template-columns: 40vw 1fr;
}
@media (max-width: 1600px) {
  .sc-main-article__container {
    /* grid-template-columns: 56.62vw 1fr; */
    grid-template-columns: 45vw 1fr;
  }
}
@media (max-width: 1440px) {
  .sc-main-article__container {
    /* grid-template-columns: 58vw 1fr; */
    grid-template-columns: 50vw 1fr;
  }
}
@media (max-width: 992px) {
  .sc-main-article__container {
    display: block;
    grid-template-columns: 1fr 1fr;
  }
}
.sc-main-article__container--full .sc-main-article__content-left {
  grid-column: span 2;
}
.sc-main-article__container--full .sc-main-article__wrap-content,
.sc-main-article__container--full .sc-main-article__wrapper-desc {
  max-width: unset;
}
.sc-main-article__content-left {
  grid-column: 1;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .sc-main-article__content-left {
    grid-column: span 2;
  }
}
.sc-main-article__content-left--row1 {
  grid-row: 1;
}
.sc-main-article__content-left--row2 {
  grid-row: 2;
}
@media (max-width: 992px) {
  .sc-main-article__content-left--row2 {
    grid-row: 3;
  }
}
.sc-main-article__wrap-content {
  max-width: 756rem;
}
@media (max-width: 992px) {
  .sc-main-article__wrap-content {
    max-width: unset;
  }
}
.sc-main-article__content-right {
  grid-column: 2;
  grid-row: span 3;
  /* position: absolute;
  width: 783rem;
  min-width: 783rem;
  height: 548rem;
  min-height: 548rem;
  top: 0;
  left: -156rem; */
}
/* @media (max-width: 1600px) {
  .sc-main-article__content-right {
    width: 37.64375vw;
    min-width: 37.64375vw;
    height: 26.345625vw;
    min-height: 26.345625vw;
    left: -7.5vw;
  }
}
@media (max-width: 1440px) {
  .sc-main-article__content-right {
    width: 40.2777777778vw;
    min-width: 40.2777777778vw;
    height: 29.1666666667vw;
    min-height: 29.1666666667vw;
    left: -8.3333333333vw;
  }
}
@media (max-width: 992px) {
  .sc-main-article__content-right {
    grid-column: span 2;
    grid-row: 2;
    position: relative;
    top: unset;
    min-height: unset;
    min-width: unset;
    height: auto;
    width: 80%;
  }
}
@media (max-width: 992px) {
  .sc-main-article__content-right {
    margin-bottom: 24rem;
    left: -16rem;
  }
}
@media (max-width: 768px) {
  .sc-main-article__content-right {
    margin-bottom: 20rem;
    left: -8rem;
  }
} */
@media (max-width: 992px) {
  .sc-main-article__content-right {
    width: 100%;
  }
}
.sc-main-article__breadcrumbs {
  margin-bottom: 12rem;
}
@media (max-width: 768px) {
  .sc-main-article__breadcrumbs {
    margin-bottom: 10rem;
  }
}
.sc-main-article__wrapper-title {
  margin-bottom: 17rem;
}
@media (max-width: 992px) {
  .sc-main-article__wrapper-title {
    margin-bottom: 16rem;
  }
}
@media (max-width: 768px) {
  .sc-main-article__wrapper-title {
    margin-bottom: 12rem;
  }
}
.sc-main-article__title {
  color: #333;
  font-size: 36rem;
  line-height: 40rem;
  font-weight: 800;
}
@media (max-width: 992px) {
  .sc-main-article__title {
    font-size: 40rem;
    line-height: 48rem;
  }
}
@media (max-width: 768px) {
  .sc-main-article__title {
    font-size: 24rem;
    line-height: 30rem;
  }
}
.sc-main-article__wrapper-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16rem;
  margin-bottom: 28rem;
  max-width: 756rem;
}
@media (max-width: 1600px) {
  .sc-main-article__wrapper-info {
    max-width: 42.5vw;
  }
}
@media (max-width: 1440px) {
  .sc-main-article__wrapper-info {
    max-width: 47.2222222222vw;
  }
}
@media (max-width: 992px) {
  .sc-main-article__wrapper-info {
    margin-bottom: 20rem;
    max-width: 624rem;
  }
}
@media (max-width: 768px) {
  .sc-main-article__wrapper-info {
    row-gap: 2rem;
    margin-bottom: 16rem;
  }
}
@media (max-width: 768px) {
  .sc-main-article__wrapper-info {
    max-width: unset;
    column-gap: unset;
    align-items: center;
    flex-wrap: wrap;
  }
}
.sc-main-article__block-info {
  display: flex;
  align-items: center;
  column-gap: 16rem;
}
@media (max-width: 992px) {
  .sc-main-article__block-info {
    column-gap: 12rem;
  }
}
@media (max-width: 768px) {
  .sc-main-article__block-info {
    column-gap: 4rem;
  }
}
.sc-main-article__block-info span {
  font-size: 18rem;
  line-height: 28rem;
  font-weight: 400;
  color: #828282;
}
@media (max-width: 992px) {
  .sc-main-article__block-info span {
    font-size: 16rem;
    line-height: 26rem;
  }
}
@media (max-width: 768px) {
  .sc-main-article__block-info span {
    font-size: 12rem;
    line-height: 18rem;
  }
}
.sc-main-article__block-info i {
  position: relative;
}
.sc-main-article__block-info--black {
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  opacity: 1;
  column-gap: 6rem;
}
@media (max-width: 768px) {
  .sc-main-article__block-info--black {
    column-gap: 4rem;
  }
}
.sc-main-article__block-info--black span {
  font-weight: 600;
  color: #333;
}
@media (max-width: 768px) {
  .sc-main-article__block-info--black span {
    order: 1;
  }
}
@media (max-width: 768px) {
  .sc-main-article__block-info--black i {
    order: 0;
  }
}
.sc-main-article__block-info--black:hover {
  cursor: pointer;
  opacity: 0.8;
}
.sc-main-article__block-white {
  background-color: #fff;
  top: 0;
  box-shadow: 5rem 5rem 40rem rgba(0, 0, 0, 0.15);
  padding-left: 48rem;
  padding-right: 71rem;
  padding-top: 55rem;
  padding-bottom: 44rem;
  width: 940rem;
  min-width: 940rem;
  margin-bottom: 45rem;
}
@media (max-width: 1440px) {
  .sc-main-article__block-white {
    width: 56.9444444444vw;
    min-width: 56.9444444444vw;
    padding-top: 2.2222222222vw;
    padding-bottom: 2.2222222222vw;
    padding-left: 1.6666666667vw;
    padding-right: 5.5555555556vw;
    margin-bottom: 2.2222222222vw;
  }
}
@media (max-width: 992px) {
  .sc-main-article__block-white {
    min-width: unset;
    max-width: 95%;
    width: 95%;
    position: relative;
  }
}
@media (max-width: 992px) {
  .sc-main-article__block-white {
    padding-top: 32rem;
    padding-bottom: 32rem;
    padding-left: 32rem;
    padding-right: 32rem;
    margin-bottom: 24rem;
    margin-top: -80rem;
  }
}
@media (max-width: 768px) {
  .sc-main-article__block-white {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .sc-main-article__block-white {
    padding-top: 24rem;
    padding-bottom: 24rem;
    padding-left: 20rem;
    padding-right: 20rem;
    margin-top: -48rem;
  }
}
.sc-main-article__wrapper-desc {
  max-width: 722rem;
}
@media (max-width: 992px) {
  .sc-main-article__wrapper-desc {
    max-width: unset;
  }
}
.sc-main-article__wrapper-img {
  height: 100%;
  width: 100%;
	border-radius: 20px;
  overflow: hidden;
  margin-left: 20px;
  max-height: 500px;
}
.sc-main-article__wrapper-img img {
  height: 100%;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;  
}
@media (max-width: 768px) {
  .sc-main-article__wrapper-img, .sc-main-article__wrapper-img img {
    height: auto;
	border-radius: 20px;
	margin: 20px 0 0;
  }
}

.article-content__container {
  display: flex;
  padding-left: 180rem;
  padding-right: 20rem;
  column-gap: 154rem;
}
@media (max-width: 1600px) {
  .article-content__container {
    padding-left: 10vw;
    padding-right: 1.25vw;
    column-gap: 5vw;
  }
}
@media (max-width: 1440px) {
  .article-content__container {
    padding-left: 8.3333333333vw;
    padding-right: 1.3888888889vw;
    column-gap: 2.7777777778vw;
  }
}
@media (max-width: 992px) {
  .article-content__container {
    padding-left: 40rem;
    padding-right: 20rem;
    column-gap: 20rem;
  }
}
@media (max-width: 768px) {
  .article-content__container {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .article-content__container {
    padding-left: 15rem;
    padding-right: 15rem;
  }
}
.article-content__container--full {
  padding-left: 180rem;
  padding-right: 180rem;
}
@media (max-width: 1600px) {
  .article-content__container--full {
    padding-left: 10vw;
    padding-right: 1.25vw;
  }
}
@media (max-width: 1440px) {
  .article-content__container--full {
    padding-left: 8.3333333333vw;
    padding-right: 8.3333333333vw;
  }
}
@media (max-width: 992px) {
  .article-content__container--full {
    padding-left: 5.2083333333vw;
    padding-right: 5.2083333333vw;
  }
}
.article-content__content-left {
  flex: 1;
}
.article-content__content-right {
  position: relative;
  width: 313rem;
  min-width: 313rem;
  top: -143rem;
}
@media (max-width: 992px) {
  .article-content__content-right {
    width: 31.25vw;
    min-width: 31.25vw;
    top: 5.2083333333vw;
  }
}
@media (max-width: 768px) {
  .article-content__content-right {
    width: 100%;
    min-width: unset;
  }
}
.article-content__content-right--hidden {
  display: none;
}
.article-content__navigation {
  left: 0;
  top: 32rem;
}
@media (max-width: 992px) {
  .article-content__navigation {
    top: 24rem;
  }
}
@media (max-width: 768px) {
  .article-content__navigation {
    top: unset;
  }
}

.article-content--full .article-content__content-right {
  top: 20rem;
}
@media (max-width: 992px) {
  .article-content--full .article-content__content-right {
    top: 2.6041666667vw;
  }
}

.sc-content {
  position: relative;
  padding-top: 48rem;
  padding-bottom: 48rem;
}
@media (max-width: 992px) {
  .sc-content {
    padding-top: 40rem;
    padding-bottom: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-content {
    padding-top: 32rem;
    padding-bottom: 32rem;
  }
}
.sc-content::after {
  content: "";
  display: block;
  width: 99.1vw;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
  left: -180rem;
}
@media (max-width: 1600px) {
  .sc-content::after {
    left: -10vw;
  }
}
@media (max-width: 1835px) {
  .sc-content::after {
    width: 98.9vw;
  }
}
@media (max-width: 1500px) {
  .sc-content::after {
    width: 98.8vw;
  }
}
@media (max-width: 1440px) {
  .sc-content::after {
    left: -8.3333333333vw;
  }
}
@media (max-width: 1380px) {
  .sc-content::after {
    width: 98.7vw;
  }
}
@media (max-width: 992px) {
  .sc-content::after {
    left: -40rem;
  }
}
@media (max-width: 1270px) {
  .sc-content::after {
    width: 98.6vw;
  }
}
@media (max-width: 1180px) {
  .sc-content::after {
    width: 98.5vw;
  }
}
@media (max-width: 1108px) {
  .sc-content::after {
    width: 98.5vw;
  }
}
@media (max-width: 1100px) {
  .sc-content::after {
    width: 98.4vw;
  }
}
@media (max-width: 1040px) {
  .sc-content::after {
    width: 98.2vw;
  }
}
@media (max-width: 992px) {
  .sc-content::after {
    width: 98.2vw;
  }
}
@media (max-width: 768px) {
  .sc-content::after {
    left: -15rem;
  }
}
@media (max-width: 768px) {
  .sc-content::after {
    width: calc(100% + 9.375vw);
  }
}
.sc-content__container {
  position: relative;
  z-index: 1;
}
.sc-content--white::after {
  background-color: #fff;
}
.sc-content--gray::after {
  background-color: #D9D9D9;
}

.navigation-posts {
  box-shadow: 5rem 5rem 40rem rgba(0, 0, 0, 0.15);
  max-width: 100%;
  width: 100%;
  background-color: #fff;
  position: sticky;
  z-index: 100;
}
.navigation-posts__container-content {
  position: relative;
}
.navigation-posts__wrapper-button {
  position: absolute;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  top: 9rem;
  right: 7rem;
}
@media (max-width: 768px) {
  .navigation-posts__wrapper-button {
    display: none;
  }
}
.navigation-posts__wrapper-button:hover {
  cursor: pointer;
  opacity: 0.8;
}
.navigation-posts__circle-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48rem;
  min-width: 48rem;
  height: 48rem;
  min-height: 48rem;
  border-radius: 50%;
  background-color: #EDECEC;
}
@media (max-width: 992px) {
  .navigation-posts__circle-button {
    width: 4.1666666667vw;
    min-width: 4.1666666667vw;
    height: 4.1666666667vw;
    min-height: 4.1666666667vw;
  }
}
.navigation-posts__icon {
  position: relative;
}
@media (max-width: 992px) {
  .navigation-posts__icon--close {
    top: 0.5rem;
  }
}
.navigation-posts__icon--close svg {
  width: 14rem;
  min-width: 14rem;
  height: 14rem;
  min-height: 14rem;
}
@media (max-width: 992px) {
  .navigation-posts__icon--close svg {
    width: 1.5625vw;
    min-width: 1.5625vw;
    height: 1.5625vw;
    min-height: 1.5625vw;
  }
}
.navigation-posts__icon--close path {
  stroke: #333;
  stroke-width: 4;
}
.navigation-posts__wrapper-content {
  padding-top: 61rem;
  padding-bottom: 38rem;
  padding-left: 36rem;
  padding-right: 25rem;
}
@media (max-width: 992px) {
  .navigation-posts__wrapper-content {
    padding-top: 40rem;
    padding-bottom: 24rem;
    padding-left: 16rem;
    padding-right: 16rem;
  }
}
@media (max-width: 768px) {
  .navigation-posts__wrapper-content {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.navigation-posts__wrapper-menu ul, .navigation-posts__wrapper-menu li {
  margin: 0;
  padding: 0;
}
.navigation-posts__wrapper-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 16rem;
}
@media (max-width: 992px) {
  .navigation-posts__wrapper-menu ul {
    row-gap: 1.5625vw;
  }
}
.navigation-posts__wrapper-menu li a, .navigation-posts__title {
  color: #777;
}
@media (max-width: 768px) {
  .navigation-posts__wrapper-menu li a, .navigation-posts__title {
    color: #fff;
  }
}
.navigation-posts__title {
  font-size: 24rem;
  line-height: 28rem;
  font-weight: 600;
  margin-bottom: 16rem;
}
@media (max-width: 992px) {
  .navigation-posts__title {
    font-size: 20rem;
    line-height: 24rem;
  }
}
@media (max-width: 768px) {
  .navigation-posts__title {
    font-size: 16rem;
    line-height: 20rem;
  }
}
@media (max-width: 992px) {
  .navigation-posts__title {
    margin-bottom: 12rem;
  }
}
.navigation-posts__wrapper-menu li a {
  text-decoration: none;
  font-size: 18rem;
  line-height: 24rem;
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
@media (max-width: 992px) {
  .navigation-posts__wrapper-menu li a {
    font-size: 14rem;
    line-height: 20rem;
  }
}
.navigation-posts__wrapper-menu li a:hover {
  opacity: 1;
  color: #FF2E2E;
}

.posts-content {
  display: flex;
  flex-direction: column;
  row-gap: 24rem;
  /* TYPOGRAPHY */
  /* TEXT BLOCK */
  /* COLUMNS */
  /* HEIGHTS */
  /* IMAGE */
  /* BUTTONS */
}
@media (max-width: 992px) {
  .posts-content {
    row-gap: 20rem;
  }
}
@media (max-width: 768px) {
  .posts-content {
    row-gap: 16rem;
  }
}
.posts-content h2 {
  font-size: 28rem;
  line-height: 34rem;
  font-weight: 700;
}
@media (max-width: 992px) {
  .posts-content h2 {
    font-size: 28rem;
    line-height: 36rem;
  }
}
@media (max-width: 768px) {
  .posts-content h2 {
    font-size: 18rem;
    line-height: 24rem;
  }
}
.posts-content h4 {
  font-size: 20rem;
  line-height: 28rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .posts-content h4 {
    font-size: 16rem;
    line-height: 24rem;
  }
}
.posts-content h5 {
  font-size: 18rem;
  line-height: 26rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .posts-content h5 {
    font-size: 16rem;
    line-height: 24rem;
  }
}
.posts-content h2,
.posts-content h3,
.posts-content h4,
.posts-content h5,
.posts-content p,
.posts-content li,
.posts-content span,
.posts-content strong,
.posts-content b {
  color: #333;
}
.posts-content__wrapper-text--nogap {
  row-gap: 0;
}
.posts-content__wrapper-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20rem;
  row-gap: 20rem;
}
@media (max-width: 768px) {
  .posts-content__wrapper-column {
    grid-template-columns: 1fr;
    column-gap: unset;
  }
}
@media (max-width: 768px) {
  .posts-content__wrapper-column {
    row-gap: 16rem;
  }
}
.posts-content__column {
  grid-column: span 1;
}
.posts-content__height {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.posts-content__height--var8 {
  min-height: 8rem;
  max-height: 8rem;
}
@media (max-width: 992px) {
  .posts-content__height--var8 {
    min-height: 6rem;
    max-height: 6rem;
  }
}
@media (max-width: 768px) {
  .posts-content__height--var8 {
    min-height: 4rem;
    max-height: 4rem;
  }
}
.posts-content__height--var16 {
  min-height: 16rem;
  max-height: 16rem;
}
@media (max-width: 992px) {
  .posts-content__height--var16 {
    min-height: 14rem;
    max-height: 14rem;
  }
}
@media (max-width: 768px) {
  .posts-content__height--var16 {
    min-height: 12rem;
    max-height: 12rem;
  }
}
.posts-content__height--var24 {
  min-height: 24rem;
  max-height: 24rem;
}
@media (max-width: 992px) {
  .posts-content__height--var24 {
    min-height: 20rem;
    max-height: 20rem;
  }
}
@media (max-width: 768px) {
  .posts-content__height--var24 {
    min-height: 16rem;
    max-height: 16rem;
  }
}
.posts-content__height--var32 {
  min-height: 32rem;
  max-height: 32rem;
}
@media (max-width: 992px) {
  .posts-content__height--var32 {
    min-height: 24rem;
    max-height: 24rem;
  }
}
@media (max-width: 768px) {
  .posts-content__height--var32 {
    min-height: 16rem;
    max-height: 16rem;
  }
}
.posts-content__height--var40 {
  min-height: 40rem;
  max-height: 40rem;
}
@media (max-width: 992px) {
  .posts-content__height--var40 {
    min-height: 30rem;
    max-height: 30rem;
  }
}
@media (max-width: 768px) {
  .posts-content__height--var40 {
    min-height: 20rem;
    max-height: 20rem;
  }
}
.posts-content__height--var48 {
  min-height: 48rem;
  max-height: 48rem;
}
@media (max-width: 992px) {
  .posts-content__height--var48 {
    min-height: 34rem;
    max-height: 34rem;
  }
}
@media (max-width: 768px) {
  .posts-content__height--var48 {
    min-height: 24rem;
    max-height: 24rem;
  }
}
.posts-content__height--var56 {
  min-height: 56rem;
  max-height: 56rem;
}
@media (max-width: 992px) {
  .posts-content__height--var56 {
    min-height: 42rem;
    max-height: 42rem;
  }
}
@media (max-width: 768px) {
  .posts-content__height--var56 {
    min-height: 28rem;
    max-height: 28rem;
  }
}
.posts-content__height--var64 {
  min-height: 64rem;
  max-height: 64rem;
}
@media (max-width: 992px) {
  .posts-content__height--var64 {
    min-height: 48rem;
    max-height: 48rem;
  }
}
@media (max-width: 768px) {
  .posts-content__height--var64 {
    min-height: 32rem;
    max-height: 32rem;
  }
}
.posts-content__wrapper-img {
  margin: 0 auto;
}
.posts-content__wrapper-img--size100 {
  max-width: 100%;
  width: 100%;
}
.posts-content__wrapper-img--size90 {
  max-width: 90%;
  width: 90%;
}
@media (max-width: 768px) {
  .posts-content__wrapper-img--size90 {
    max-width: 100%;
    width: 100%;
  }
}
.posts-content__wrapper-img--size80 {
  max-width: 80%;
  width: 80%;
}
@media (max-width: 768px) {
  .posts-content__wrapper-img--size80 {
    max-width: 90%;
    width: 90%;
  }
}
.posts-content__wrapper-img--size70 {
  max-width: 70%;
  width: 70%;
}
@media (max-width: 768px) {
  .posts-content__wrapper-img--size70 {
    max-width: 85%;
    width: 85%;
  }
}
.posts-content__wrapper-img--size60 {
  max-width: 60%;
  width: 60%;
}
@media (max-width: 768px) {
  .posts-content__wrapper-img--size60 {
    max-width: 80%;
    width: 80%;
  }
}
.posts-content__wrapper-img--size50 {
  max-width: 50%;
  width: 50%;
}
@media (max-width: 768px) {
  .posts-content__wrapper-img--size50 {
    max-width: 80%;
    width: 80%;
  }
}
.posts-content__wrapper-img--size40 {
  max-width: 40%;
  width: 40%;
}
@media (max-width: 768px) {
  .posts-content__wrapper-img--size40 {
    max-width: 80%;
    width: 80%;
  }
}
.posts-content__wrapper-img--size30 {
  max-width: 30%;
  width: 30%;
}
@media (max-width: 992px) {
  .posts-content__wrapper-img--size30 {
    max-width: 40%;
    width: 40%;
  }
}
@media (max-width: 768px) {
  .posts-content__wrapper-img--size30 {
    max-width: 80%;
    width: 80%;
  }
}
.posts-content__wrapper-img--size20 {
  max-width: 20%;
  width: 20%;
}
@media (max-width: 992px) {
  .posts-content__wrapper-img--size20 {
    max-width: 30%;
    width: 30%;
  }
}
@media (max-width: 768px) {
  .posts-content__wrapper-img--size20 {
    max-width: 80%;
    width: 80%;
  }
}
.posts-content__wrapper-img--size10 {
  max-width: 10%;
  width: 10%;
}
@media (max-width: 992px) {
  .posts-content__wrapper-img--size10 {
    max-width: 30%;
    width: 30%;
  }
}
@media (max-width: 768px) {
  .posts-content__wrapper-img--size10 {
    max-width: 80%;
    width: 80%;
  }
}
.posts-content__wrapper-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24rem;
  row-gap: 20rem;
}
@media (max-width: 992px) {
  .posts-content__wrapper-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .posts-content__wrapper-buttons {
    column-gap: 10rem;
  }
}
@media (max-width: 768px) {
  .posts-content__wrapper-buttons {
    grid-template-columns: 1fr;
    column-gap: unset;
  }
}
@media (max-width: 768px) {
  .posts-content__wrapper-buttons {
    row-gap: 12rem;
  }
}
.posts-content__wrapper-button {
  grid-column: span 1;
}
@media (max-width: 768px) {
  .posts-content__wrapper-button {
    max-width: 240rem;
  }
}
@media (max-width: 768px) {
  .posts-content__wrapper-button {
    margin: 0 auto;
    width: 100%;
  }
}
.posts-content table {
  border: 1px solid #333;
  border-spacing: 0;
  display: flex;
  max-width: 100%;
  width: 100%;
  overflow: auto;
}
.posts-content table tbody {
  border-spacing: 0;
  display: flex;
  flex-direction: column;
  min-width: 800px;
}
.posts-content table tr {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  border-bottom: 1px solid #333;
}
.posts-content table tr:last-child {
  border-bottom: 0;
}
.posts-content table tr th {
  font-weight: 600;
}
.posts-content table tr th,
.posts-content table tr td {
  display: block;
  border-right: 1px solid #333;
  padding: 8rem;
}
.posts-content table tr th:last-child,
.posts-content table tr td:last-child {
  border-right: 0;
}

.article-content__container--full .posts-content__wrapper-img--size100 {
  max-width: 80%;
  width: 80%;
}
@media (max-width: 992px) {
  .article-content__container--full .posts-content__wrapper-img--size100 {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .article-content__container--full .posts-content__wrapper-img--size100 {
    max-width: 100%;
    width: 100%;
  }
}
.article-content__container--full .posts-content__wrapper-img--size90 {
  max-width: 80%;
  width: 80%;
}
@media (max-width: 992px) {
  .article-content__container--full .posts-content__wrapper-img--size90 {
    max-width: 90%;
    width: 90%;
  }
}
@media (max-width: 768px) {
  .article-content__container--full .posts-content__wrapper-img--size90 {
    max-width: 100%;
    width: 100%;
  }
}
.article-content__container--full .posts-content__wrapper-img--size80 {
  max-width: 70%;
  width: 70%;
}
@media (max-width: 992px) {
  .article-content__container--full .posts-content__wrapper-img--size80 {
    max-width: 85%;
    width: 85%;
  }
}
@media (max-width: 768px) {
  .article-content__container--full .posts-content__wrapper-img--size80 {
    max-width: 85%;
    width: 85%;
  }
}
.article-content__container--full .posts-content__wrapper-img--size70 {
  max-width: 60%;
  width: 60%;
}
@media (max-width: 992px) {
  .article-content__container--full .posts-content__wrapper-img--size70 {
    max-width: 75%;
    width: 75%;
  }
}
@media (max-width: 768px) {
  .article-content__container--full .posts-content__wrapper-img--size70 {
    max-width: 80%;
    width: 80%;
  }
}
.article-content__container--full .posts-content__wrapper-img--size60 {
  max-width: 50%;
  width: 50%;
}
@media (max-width: 992px) {
  .article-content__container--full .posts-content__wrapper-img--size60 {
    max-width: 65%;
    width: 65%;
  }
}
@media (max-width: 768px) {
  .article-content__container--full .posts-content__wrapper-img--size60 {
    max-width: 80%;
    width: 80%;
  }
}
.article-content__container--full .posts-content__wrapper-buttons {
  max-width: 1024rem;
}
@media (max-width: 992px) {
  .article-content__container--full .posts-content__wrapper-buttons {
    max-width: 480rem;
  }
}
@media (max-width: 768px) {
  .article-content__container--full .posts-content__wrapper-buttons {
    max-width: unset;
  }
}

.wrapper-lists ul,
.wrapper-lists ol,
.wrapper-lists li {
  margin: 0;
  padding: 0;
}
.wrapper-lists ul,
.wrapper-lists ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding-left: 16rem;
  row-gap: 8rem;
}
@media (max-width: 992px) {
  .wrapper-lists ul,
.wrapper-lists ol {
    padding-left: 12rem;
  }
}
@media (max-width: 768px) {
  .wrapper-lists ul,
.wrapper-lists ol {
    padding-left: 8rem;
  }
}
.wrapper-lists li {
  display: block;
  align-items: flex-start;
}
.wrapper-lists li::before {
      display: inline-block;
}
.wrapper-lists ul li {
  column-gap: 12rem;
  padding-left: 15px;
}
@media (max-width: 992px) {
  .wrapper-lists ul li {
    column-gap: 10rem;
  }
}
@media (max-width: 768px) {
  .wrapper-lists ul li {
    column-gap: 8rem;
  }
}
.wrapper-lists ul li::before {
  content: "";
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
  background-color: #333;
  border-radius: 50%;
  position: relative;
  top: 14.5rem;
}
@media (max-width: 992px) {
  .wrapper-lists ul li::before {
    top: 11.5rem;
  }
}
@media (max-width: 768px) {
  .wrapper-lists ul li::before {
    top: 11rem;
  }
}
.wrapper-lists ol {
  counter-reset: lists;
  column-gap: 6rem;
}
@media (max-width: 992px) {
  .wrapper-lists ol {
    column-gap: 5rem;
  }
}
@media (max-width: 768px) {
  .wrapper-lists ol {
    column-gap: 4rem;
  }
}
.wrapper-lists ol > li::before {
  counter-increment: lists;
  content: " " counter(lists) ". ";
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: inherit;
  font-family: inherit;
  margin-right: 6rem;
}
@media (max-width: 992px) {
  .wrapper-lists ol > li::before {
    margin-right: 5rem;
  }
}
@media (max-width: 768px) {
  .wrapper-lists ol > li::before {
    margin-right: 4rem;
  }
}

.sc-litlist {
  padding-bottom: 40rem;
}
@media (max-width: 992px) {
  .sc-litlist {
    padding-bottom: 32rem;
  }
}
.sc-litlist__title, .sc-litlist__wrapper-content li {
  color: #777;
}
.sc-litlist__title {
  font-size: 18rem;
  line-height: 28rem;
  font-weight: 600;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .sc-litlist__title {
    font-size: 20rem;
    line-height: 28rem;
  }
}
.sc-litlist__wrapper-content li {
  font-size: 17.5rem;
}
@media (max-width: 992px) {
  .sc-litlist__wrapper-content li {
    font-size: 16rem;
  }
}
@media (max-width: 768px) {
  .sc-litlist__wrapper-content li {
    font-size: 13rem;
    line-height: 23rem;
  }
}

.sc-banner {
  overflow: hidden;
  background: linear-gradient(159deg, #F2F1F1 0%, #D9D9D9 100%);
  padding-top: 28rem;
  padding-bottom: 36rem;
}
@media (max-width: 992px) {
  .sc-banner {
    padding-top: 28rem;
    padding-bottom: 36rem;
  }
}
@media (max-width: 768px) {
  .sc-banner {
    padding-top: 32rem;
    padding-bottom: 24rem;
    padding: 30px 20px !important;
  }
}
.sc-banner__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .sc-banner__container {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.sc-banner__content-left {
  width: 783rem;
  /* min-width: 783rem; */
  min-width: unset !important;
  /* padding-top: 90rem; */
  z-index: 1;
}
@media (max-width: 992px) {
  .sc-banner__content-left {
    width: 420rem;
    min-width: 420rem;
    padding-top: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-banner__content-left {
    width: 100%;
    min-width: unset;
    padding-top: 0;
    max-width: 100% !important;
  }
}
@media (max-width: 768px) {
  .sc-banner__content-left {
    /* margin-bottom: 12rem; */
    margin-bottom: 65rem;
  }
}
.sc-banner__content-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding-right: 5.7291666667vw;
  top: 0.2083333333vw;
}
@media (max-width: 1600px) {
  .sc-banner__content-right {
    padding-right: 6.875vw;
    top: 0.25vw;
  }
}
@media (max-width: 1440px) {
  .sc-banner__content-right {
    padding-right: 7.6388888889vw;
    top: 0.2777777778vw;
  }
}
@media (max-width: 1600px) {
  .sc-banner__content-right {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .sc-banner__content-right {
    max-width: 100% !important;
  }
}
.sc-banner__background {
  position: absolute;
  /* right: 0; */
  right: -26%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-image: url("data:image/svg+xml,%3Csvg width='941' height='330' viewBox='0 0 941 330' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_434_569)'%3E%3Cpath d='M733.853 165C732.487 166.054 730.779 167.361 728.749 168.897C722.855 173.354 714.247 179.729 703.413 187.387C681.739 202.705 651.172 223.14 615.604 243.609C544.296 284.646 453.54 325.431 374.168 326.055C293.386 326.689 200.592 285.909 127.585 244.552C91.1697 223.923 59.8448 203.249 37.6244 187.732C26.5161 179.975 17.6882 173.51 11.6426 168.989C9.53726 167.414 7.76953 166.075 6.3606 165C7.76953 163.925 9.53726 162.586 11.6426 161.011C17.6882 156.49 26.5161 150.025 37.6244 142.268C59.8448 126.751 91.1697 106.077 127.585 85.4477C200.592 44.0907 293.386 3.31078 374.168 3.94525C453.54 4.56865 544.296 45.3535 615.604 86.3908C651.172 106.86 681.739 127.295 703.413 142.614C714.247 150.271 722.855 156.647 728.749 161.103C730.779 162.639 732.487 163.946 733.853 165Z' stroke='%23D9D9D9' stroke-width='7.8759'/%3E%3Cline x1='1130.11' y1='165.394' x2='733.952' y2='165.4' stroke='%23D9D9D9' stroke-width='7.8759'/%3E%3Ccircle cx='370.479' cy='161.85' r='123.258' fill='url(%23paint0_linear_434_569)'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_434_569' x1='370.479' y1='38.5918' x2='370.479' y2='285.107' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FF2E2E'/%3E%3Cstop offset='1' stop-color='%23FF6868'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_434_569'%3E%3Crect width='941' height='330' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  width: 941rem;
  min-width: 941rem;
  height: 330rem;
  min-height: 330rem;
  top: 157rem;
}
@media (max-width: 992px) {
  .sc-banner__background {
    width: 588.125rem;
    min-width: 588.125rem;
    height: 206.25rem;
    min-height: 206.25rem;
  }
}
@media (max-width: 768px) {
  .sc-banner__background {
    width: 540rem;
    min-width: 540rem;
    height: 190rem;
    min-height: 190rem;
  }
}
@media (max-width: 1600px) {
  .sc-banner__background {
    /* right: -11.25vw; */
    right: -26.25vw;
  }
}
@media (max-width: 1440px) {
  .sc-banner__background {
    right: -25.6944444444vw;
  }
}
@media (max-width: 992px) {
  .sc-banner__background {
    top: 120rem;
    right: -290rem;
  }
}
@media (max-width: 768px) {
  .sc-banner__background {
    top: unset;
  }
}
@media (max-width: 768px) {
  .sc-banner__background {
    bottom: 64rem;
    /* right: -160rem; */
    right: -240rem;
  }
}
@media (max-width: 992px) {
  .sc-banner__wrapper-img {
    position: relative;
  }
}
@media (max-width: 992px) {
  .sc-banner__wrapper-img {
    right: -40rem;
  }
}
@media (max-width: 768px) {
  .sc-banner__wrapper-img {
    right: -16rem;
    margin-top: -56rem;
  }
}
.sc-banner__wrapper-img img {
  width: 403.88rem;
  min-width: 403.88rem;
  height: 579.65rem;
  min-height: 579.65rem;
}
@media (max-width: 992px) {
  .sc-banner__wrapper-img img {
    width: 269.25rem;
    min-width: 269.25rem;
    height: 386.43rem;
    min-height: 386.43rem;
  }
}
@media (max-width: 768px) {
  .sc-banner__wrapper-img img {
    width: 201.94rem;
    min-width: 201.94rem;
    height: 289.825rem;
    min-height: 289.825rem;
  }
}
.sc-banner h2 {
  color: #000;
  margin-bottom: 62rem;
}
@media (max-width: 992px) {
  .sc-banner h2 {
    font-size: 32rem;
    line-height: 40rem;
  }
}
@media (max-width: 992px) {
  .sc-banner h2 {
    margin-bottom: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-banner h2 {
    /* font-size: 23rem;
    line-height: 32rem; */
    font-size: 16rem;
    line-height: 29rem;
  }
}
@media (max-width: 768px) {
  .sc-banner h2 {
    hyphens: none;
  }
}
@media (max-width: 768px) {
  .sc-banner h2 {
    margin-bottom: 24rem;
  }
}
.sc-banner__wrapper-button {
  display: inline-block;
}
.sc-banner__wrapper-button + .sc-banner__wrapper-button {
  margin-left: 20px;
}
@media (max-width: 1600px) {
  .sc-banner__wrapper-button + .sc-banner__wrapper-button {
    margin-top: 20px;
    margin-left: 0;
  }
}
.sc-banner__wrapper-button .btn {
  width: intrinsic;
  width: -moz-max-content;
  width: -webkit-max-content;
  font-weight: 600;
}
@media (max-width: 768px) {
  .sc-banner__wrapper-button .btn {
    padding-left: 40rem;
    padding-right: 40rem;
  }
}

/* Страница: О компании */
.sc-about-product--page-about {
  padding-bottom: 64rem;
}
@media (max-width: 1080px) {
  .sc-about-product--page-about {
    padding-bottom: 22.2222222222vw;
  }
}
@media (max-width: 992px) {
  .sc-about-product--page-about {
    padding-top: 40rem;
    padding-bottom: 72rem;
  }
}
@media (max-width: 768px) {
  .sc-about-product--page-about {
    padding-top: 24rem;
    padding-bottom: 390rem;
  }
}
@media (max-width: 1080px) {
  .sc-about-product--page-about .sc-about-product__container {
    min-height: 68.5185185185vw;
  }
}
.sc-about-product--page-about .sc-about-product__breadcrumbs {
  margin-bottom: 4rem;
}
.sc-about-product--page-about .sc-about-product__title {
  margin-bottom: 32rem;
}
@media (max-width: 1080px) {
  .sc-about-product--page-about .sc-about-product__title {
    margin-bottom: 7.037037037vw;
  }
}
@media (max-width: 992px) {
  .sc-about-product--page-about .sc-about-product__title {
    margin-bottom: 80rem;
  }
}
@media (max-width: 768px) {
  .sc-about-product--page-about .sc-about-product__title {
    margin-bottom: 104rem;
  }
}
.sc-about-product--page-about .sc-about-product__wrapper-icon {
  bottom: 16rem;
  left: -28rem;
}
@media (max-width: 1600px) {
  .sc-about-product--page-about .sc-about-product__wrapper-icon {
    bottom: -0.5vw;
    left: -1.75vw;
  }
}
@media (max-width: 1080px) {
  .sc-about-product--page-about .sc-about-product__wrapper-icon {
    left: -39.3518518519vw;
    bottom: 18.5185185185vw;
  }
}
@media (max-width: 992px) {
  .sc-about-product--page-about .sc-about-product__wrapper-icon {
    left: -300rem;
    bottom: 135rem;
  }
}
@media (max-width: 768px) {
  .sc-about-product--page-about .sc-about-product__wrapper-icon {
    left: -265rem;
    bottom: 318rem;
  }
}
.sc-about-product--page-about .sc-about-product__wrapper-icon--desktop svg {
  width: 1753rem;
  min-width: 1753rem;
  height: 520rem;
  min-height: 520rem;
}
@media (max-width: 1600px) {
  .sc-about-product--page-about .sc-about-product__wrapper-icon--desktop svg {
    width: 93.75vw;
    min-width: 93.75vw;
  }
}
@media (max-width: 1080px) {
  .sc-about-product--page-about .sc-about-product__wrapper-icon--desktop svg {
    width: 177.7777777778vw;
    height: 38.7962962963vw;
    min-height: 38.7962962963vw;
  }
}
@media (max-width: 768px) {
  .sc-about-product--page-about .sc-about-product__wrapper-icon--desktop svg {
    width: 840rem;
    height: 180rem;
    min-height: 180rem;
  }
}
@media (max-width: 1600px) {
  .sc-about-product--page-about .about-schemes__wrapper-img img {
    width: 43.0725vw;
    min-width: 43.0725vw;
    height: 27.8125vw;
    min-height: 27.8125vw;
  }
}
@media (max-width: 1080px) {
  .sc-about-product--page-about .about-schemes__wrapper-img img {
    width: 76.5740740741vw;
    min-width: 76.5740740741vw;
    height: 49.4416666667vw;
    min-height: 49.4416666667vw;
  }
}
@media (max-width: 768px) {
  .sc-about-product--page-about .about-schemes__wrapper-img img {
    width: 363rem;
    min-width: 363rem;
    height: 234rem;
    min-height: 234rem;
  }
}
@media (max-width: 1600px) {
  .sc-about-product--page-about .about-schemes {
    left: -1.5vw;
  }
}
@media (max-width: 1080px) {
  .sc-about-product--page-about .about-schemes {
    left: unset;
  }
}
@media (max-width: 1600px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme1 {
    top: 6.875vw;
  }
}
@media (max-width: 1440px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme1 {
    top: 5.5555555556vw;
  }
}
@media (max-width: 1080px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme1 {
    top: 19.4444444444vw;
    left: -14.8148148148vw;
  }
}
@media (max-width: 992px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme1 {
    top: 55rem;
    left: -100rem;
  }
}
@media (max-width: 768px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme1 {
    top: 73rem;
    left: -130rem;
  }
}
@media (max-width: 1600px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme2 {
    right: -6.875vw;
  }
}
@media (max-width: 1440px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme2 {
    right: -8.3333333333vw;
    top: 5vw;
  }
}
@media (max-width: 1080px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme2 {
    top: 17.2222222222vw;
    right: -19.9074074074vw;
  }
}
@media (max-width: 992px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme2 {
    top: 33rem;
    right: -130rem;
  }
}
@media (max-width: 768px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme2 {
    top: 88rem;
  }
}
.sc-about-product--page-about .about-schemes__scheme--scheme3 {
  bottom: -30rem;
  left: 180rem;
}
@media (max-width: 1600px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme3 {
    bottom: -2vw;
  }
}
@media (max-width: 1440px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme3 {
    bottom: -2.2222222222vw;
    left: 3.8888888889vw;
  }
}
@media (max-width: 1080px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme3 {
    bottom: -20.3703703704vw;
    left: -2.7777777778vw;
  }
}
@media (max-width: 992px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme3 {
    bottom: -400rem;
    left: 0rem;
  }
}
@media (max-width: 768px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme3 {
    bottom: -238rem;
    left: -30rem;
  }
}
@media (max-width: 1600px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme4 {
    bottom: -4.5vw;
  }
}
@media (max-width: 1440px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme4 {
    bottom: -5vw;
    right: -8.3333333333vw;
  }
}
@media (max-width: 1080px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme4 {
    bottom: -12.962962963vw;
    right: -33.3333333333vw;
  }
}
@media (max-width: 1080px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme4 {
    bottom: -12.962962963vw;
    right: -33.3333333333vw;
  }
}
@media (max-width: 992px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme4 {
    bottom: 5rem;
    right: -240rem;
  }
}
@media (max-width: 768px) {
  .sc-about-product--page-about .about-schemes__scheme--scheme4 {
    bottom: -215rem;
    right: -124rem;
  }
}

.sc-about-benefits {
  overflow: hidden;
  position: relative;
  padding-top: 96rem;
  padding-bottom: 90rem;
}
@media (max-width: 992px) {
  .sc-about-benefits {
    padding-top: 48rem;
    padding-bottom: 64rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits {
    padding-bottom: 48rem;
  }
}
.sc-about-benefits__container, .sc-about-benefits__wrapper-numbers {
  position: relative;
  z-index: 1;
}
.sc-about-benefits__background {
  display: block;
  position: absolute;
  pointer-events: none;
  top: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 455rem;
  min-width: 455rem;
  height: 1591rem;
  min-height: 1591rem;
  right: 20rem;
}
@media (max-width: 1600px) {
  .sc-about-benefits__background {
    width: 21.543125vw;
    min-width: 21.543125vw;
    height: 75.33125vw;
    min-height: 75.33125vw;
    right: 1vw;
  }
}
@media (max-width: 992px) {
  .sc-about-benefits__background {
    top: unset;
  }
}
@media (max-width: 992px) {
  .sc-about-benefits__background {
    width: 202.2rem;
    min-width: 202.2rem;
    height: 707.1rem;
    min-height: 707.1rem;
  }
}
@media (max-width: 992px) {
  .sc-about-benefits__background {
    bottom: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__background {
    display: none;
  }
}
.sc-about-benefits__title {
  margin-bottom: 68rem;
}
@media (max-width: 992px) {
  .sc-about-benefits__title {
    margin-bottom: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__title {
    margin-bottom: 48rem;
    font-size: 32rem;
    line-height: 40rem;
  }
}
.sc-about-benefits__wrapper-numbers {
  display: flex;
  flex-direction: column;
  max-width: 1396rem;
  row-gap: 72rem;
}
@media (max-width: 1600px) {
  .sc-about-benefits__wrapper-numbers {
    max-width: 75vw;
  }
}
@media (max-width: 992px) {
  .sc-about-benefits__wrapper-numbers {
    max-width: 640rem;
    row-gap: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__wrapper-numbers {
    row-gap: 32rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__wrapper-numbers {
    max-width: unset;
  }
}
.sc-about-benefits__number-block {
  display: flex;
  column-gap: 38rem;
}
@media (max-width: 992px) {
  .sc-about-benefits__number-block {
    column-gap: 24rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__number-block {
    row-gap: 16rem;
    column-gap: 16rem;
  }
}
.sc-about-benefits__number-block:nth-child(odd) .sc-about-benefits__number-line {
  width: 298rem;
  min-width: 298rem;
}
@media (max-width: 1600px) {
  .sc-about-benefits__number-block:nth-child(odd) .sc-about-benefits__number-line {
    width: 14.9vw;
    min-width: 14.9vw;
  }
}
@media (max-width: 992px) {
  .sc-about-benefits__number-block:nth-child(odd) .sc-about-benefits__number-line {
    width: 120rem;
    min-width: 120rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__number-block:nth-child(odd) .sc-about-benefits__number-line {
    width: 100rem;
    min-width: 100rem;
  }
}
.sc-about-benefits__number-block:nth-child(even) .sc-about-benefits__number-line {
  width: 451rem;
  min-width: 451rem;
}
@media (max-width: 1600px) {
  .sc-about-benefits__number-block:nth-child(even) .sc-about-benefits__number-line {
    width: 22.55vw;
    min-width: 22.55vw;
  }
}
@media (max-width: 992px) {
  .sc-about-benefits__number-block:nth-child(even) .sc-about-benefits__number-line {
    width: 23.4375vw;
    min-width: 23.4375vw;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__number-block:nth-child(1) {
    row-gap: 32rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__number-block:nth-child(1) {
    flex-direction: column;
    column-gap: unset;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__number-block:nth-child(1) .sc-about-benefits__number-title {
    padding-left: 16rem;
    margin-bottom: 24rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__number-block:nth-child(1) .sc-about-benefits__number-line {
    width: 190rem;
    min-width: 190rem;
  }
}
.sc-about-benefits__number-title, .sc-about-benefits__number-line {
  height: 80rem;
}
@media (max-width: 992px) {
  .sc-about-benefits__number-title, .sc-about-benefits__number-line {
    height: 80rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__number-title, .sc-about-benefits__number-line {
    height: 48rem;
  }
}
.sc-about-benefits__number-line {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #FF2E2E 0%, #FF6868 100%);
  min-height: 80rem;
  padding-right: 16rem;
  border-top-right-radius: 80rem;
  border-bottom-right-radius: 80rem;
}
@media (max-width: 768px) {
  .sc-about-benefits__number-line {
    padding-right: 12rem;
  }
}
.sc-about-benefits__number-line span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48rem;
  min-width: 48rem;
  height: 48rem;
  min-height: 48rem;
  border-radius: 50%;
  border-style: solid;
  margin-left: auto;
  border-color: #fff;
  color: #fff;
  font-size: 24rem;
  line-height: 26rem;
  font-weight: 600;
  border-width: 3rem;
}
@media (max-width: 992px) {
  .sc-about-benefits__number-line span {
    width: 40rem;
    min-width: 40rem;
    height: 40rem;
    min-height: 40rem;
  }
}
@media (max-width: 992px) {
  .sc-about-benefits__number-line span {
    font-size: 20rem;
    line-height: 22rem;
  }
}
@media (max-width: 992px) {
  .sc-about-benefits__number-line span {
    padding-top: 3rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__number-line span {
    width: 28rem;
    min-width: 28rem;
    height: 28rem;
    min-height: 28rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__number-line span {
    font-size: 16rem;
    line-height: 18rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__number-line span {
    padding-top: 1rem;
  }
}
.sc-about-benefits__number-title {
  display: flex;
  align-items: center;
  font-size: 24rem;
  line-height: 32rem;
  font-weight: 600;
  color: #333;
}
@media (max-width: 992px) {
  .sc-about-benefits__number-title {
    font-size: 20rem;
    line-height: 28rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__number-title {
    font-size: 16rem;
    line-height: 24rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__number-title {
    padding-right: 16rem;
    min-height: 48rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__number-title {
    height: auto;
  }
}
.sc-about-benefits__number-content {
  padding-bottom: 12rem;
}
@media (max-width: 768px) {
  .sc-about-benefits__number-content {
    padding-left: 16rem;
    padding-right: 16rem;
  }
}
.sc-about-benefits__columns {
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .sc-about-benefits__columns {
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media (max-width: 992px) {
  .sc-about-benefits__columns {
    row-gap: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__columns {
    row-gap: 32rem;
  }
}
.sc-about-benefits__column {
  max-width: 436rem;
}
@media (max-width: 992px) {
  .sc-about-benefits__column {
    max-width: unset;
  }
}
.sc-about-benefits__wrapper-img {
  display: flex;
  align-items: center;
  height: 221rem;
}
@media (max-width: 992px) {
  .sc-about-benefits__wrapper-img {
    height: 180rem;
    margin-bottom: 16rem;
  }
}
@media (max-width: 768px) {
  .sc-about-benefits__wrapper-img {
    height: 140rem;
    margin-bottom: 20rem;
  }
}
.sc-about-benefits__wrapper-img img {
  width: auto;
  object-fit: contain;
}

.sc-why-action {
  background: linear-gradient(126deg, #F2F1F1 29.02%, #FFEBEB 93.51%);
  padding-top: 91rem;
  padding-bottom: 128rem;
  margin-bottom: 80rem;
}
@media (max-width: 992px) {
  .sc-why-action {
    padding-top: 64rem;
    padding-bottom: 64rem;
  }
}
@media (max-width: 768px) {
  .sc-why-action {
    padding-top: 40rem;
    padding-bottom: 56rem;
  }
}
@media (max-width: 992px) {
  .sc-why-action {
    margin-bottom: 0;
  }
}
.sc-why-action__container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .sc-why-action__container {
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media (max-width: 992px) {
  .sc-why-action__container {
    row-gap: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-why-action__container {
    row-gap: 200rem;
  }
}
.sc-why-action__title {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  margin-bottom: 58rem;
}
@media (max-width: 992px) {
  .sc-why-action__title {
    margin-bottom: 32rem;
  }
}
.sc-why-action__content-left {
  max-width: 640rem;
}
@media (max-width: 1440px) {
  .sc-why-action__content-left {
    max-width: 35.5555555556vw;
  }
}
@media (max-width: 992px) {
  .sc-why-action__content-left {
    max-width: unset;
  }
}
.sc-why-action__content-right {
  flex: 1;
  display: flex;
  position: relative;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .sc-why-action__content-right {
    justify-content: center;
  }
}
.sc-why-action__white-block {
  display: flex;
  flex-direction: column;
  box-shadow: 5rem 5rem 40rem rgba(0, 0, 0, 0.25);
  width: 100%;
  position: absolute;
  background-color: #fff;
  max-width: 626rem;
  padding-top: 76rem;
  padding-left: 70rem;
  padding-right: 86rem;
  row-gap: 24rem;
  padding-bottom: 106rem;
  bottom: -228rem;
  right: 50rem;
  min-height: 500rem;
}
@media (max-width: 1600px) {
  .sc-why-action__white-block {
    max-width: 32vw;
    padding-left: 3vw;
    padding-right: 3.5vw;
    right: 5vw;
  }
}
@media (max-width: 1440px) {
  .sc-why-action__white-block {
    max-width: 40.4166666667vw;
    padding-left: 2.7777777778vw;
    padding-right: 5.5555555556vw;
    right: 5.5555555556vw;
    bottom: -12.5vw;
  }
}
@media (max-width: 1400px) {
  .sc-why-action__white-block {
    padding-right: 7.2857142857vw;
  }
}
@media (max-width: 992px) {
  .sc-why-action__white-block {
    position: relative;
    right: unset;
    bottom: unset;
    min-height: unset;
  }
}
@media (max-width: 992px) {
  .sc-why-action__white-block {
    max-width: 512rem;
    padding-left: 32rem;
    padding-right: 56rem;
    padding-top: 48rem;
    padding-bottom: 64rem;
    row-gap: 20rem;
  }
}
@media (max-width: 768px) {
  .sc-why-action__white-block {
    max-width: unset;
  }
}
@media (max-width: 768px) {
  .sc-why-action__white-block {
    padding-left: 16rem;
    padding-right: 16rem;
    padding-top: 64rem;
    padding-bottom: 32rem;
    row-gap: 16rem;
  }
}
.sc-why-action__white-block h3 {
  font-size: 36rem;
  line-height: 40rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 14rem;
}
@media (max-width: 992px) {
  .sc-why-action__white-block h3 {
    font-size: 28rem;
    line-height: 36rem;
  }
}
@media (max-width: 992px) {
  .sc-why-action__white-block h3 {
    margin-bottom: 4rem;
  }
}
@media (max-width: 768px) {
  .sc-why-action__white-block h3 {
    font-size: 24rem;
    line-height: 32rem;
  }
}
.sc-why-action__wrapper-backgrounds {
  position: absolute;
  display: flex;
  z-index: 1;
  pointer-events: none;
  justify-content: space-between;
  width: 1118rem;
  right: 35rem;
  bottom: -221rem;
}
@media (max-width: 1750px) {
  .sc-why-action__wrapper-backgrounds {
    right: 1.1428571429vw;
  }
}
@media (max-width: 1670px) {
  .sc-why-action__wrapper-backgrounds {
    right: 0.4790419162vw;
  }
}
@media (max-width: 1600px) {
  .sc-why-action__wrapper-backgrounds {
    width: 61.25vw;
    right: 1.5vw;
  }
}
@media (max-width: 1540px) {
  .sc-why-action__wrapper-backgrounds {
    right: 0.2597402597vw;
  }
}
@media (max-width: 1440px) {
  .sc-why-action__wrapper-backgrounds {
    width: 70.8333333333vw;
    right: 0vw;
    bottom: -13.8888888889vw;
  }
}
@media (max-width: 1400px) {
  .sc-why-action__wrapper-backgrounds {
    right: 0vw;
    width: 68.5714285714vw;
  }
}
@media (max-width: 1200px) {
  .sc-why-action__wrapper-backgrounds {
    right: 0vw;
    width: 70vw;
  }
}
@media (max-width: 1100px) {
  .sc-why-action__wrapper-backgrounds {
    right: 0vw;
    width: 70.9090909091vw;
  }
}
@media (max-width: 992px) {
  .sc-why-action__wrapper-backgrounds {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .sc-why-action__wrapper-backgrounds {
    bottom: 440rem;
  }
}
.sc-why-action__background {
  position: relative;
  width: intrinsic;
  width: -moz-max-content;
  width: -webkit-max-content;
}
.sc-why-action__background img {
  width: auto;
  object-fit: contain;
  position: relative;
}
@media (max-width: 1840px) {
  .sc-why-action__background img {
    max-width: 95%;
  }
}
@media (max-width: 1800px) {
  .sc-why-action__background img {
    max-width: 90%;
  }
}
@media (max-width: 1750px) {
  .sc-why-action__background img {
    max-width: 85%;
  }
}
@media (max-width: 1670px) {
  .sc-why-action__background img {
    max-width: 80%;
  }
}
@media (max-width: 1550px) {
  .sc-why-action__background:nth-child(1) img {
    max-width: 75%;
  }
}
@media (max-width: 1400px) {
  .sc-why-action__background:nth-child(1) img {
    max-width: 70%;
  }
}
@media (max-width: 1330px) {
  .sc-why-action__background:nth-child(1) img {
    max-width: 65%;
  }
}
@media (max-width: 1550px) {
  .sc-why-action__background:nth-child(1) img {
    left: -1.0322580645vw;
    top: 1.0322580645vw;
  }
}
@media (max-width: 1440px) {
  .sc-why-action__background:nth-child(1) img {
    left: 0vw;
    top: 5.5555555556vw;
  }
}
@media (max-width: 1400px) {
  .sc-why-action__background:nth-child(1) img {
    left: -0.8571428571vw;
    top: 6.2857142857vw;
  }
}
@media (max-width: 1370px) {
  .sc-why-action__background:nth-child(1) img {
    left: -1.7518248175vw;
    top: 6.4233576642vw;
  }
}
@media (max-width: 1330px) {
  .sc-why-action__background:nth-child(1) img {
    left: -1.0526315789vw;
    top: 9.7744360902vw;
  }
}
@media (max-width: 1270px) {
  .sc-why-action__background:nth-child(1) img {
    left: -0.3149606299vw;
    top: 12.5984251969vw;
  }
}
@media (max-width: 1200px) {
  .sc-why-action__background:nth-child(1) img {
    left: -0.3333333333vw;
    top: 9.1666666667vw;
  }
}
@media (max-width: 1130px) {
  .sc-why-action__background:nth-child(1) img {
    left: 0.7079646018vw;
    top: 9.7345132743vw;
  }
}
@media (max-width: 1080px) {
  .sc-why-action__background:nth-child(1) img {
    left: 0.7407407407vw;
    top: 12.962962963vw;
  }
}
@media (max-width: 1080px) {
  .sc-why-action__background:nth-child(1) img {
    left: 1.1111111111vw;
    top: 15.7407407407vw;
  }
}
@media (max-width: 1270px) {
  .sc-why-action__background:nth-child(1) img {
    max-width: 60%;
  }
}
@media (max-width: 1130px) {
  .sc-why-action__background:nth-child(1) img {
    max-width: 55%;
  }
}
@media (max-width: 1030px) {
  .sc-why-action__background:nth-child(1) img {
    max-width: 50%;
  }
}
@media (max-width: 992px) {
  .sc-why-action__background:nth-child(1) img {
    max-width: 50%;
    left: unset;
  }
}
@media (max-width: 992px) {
  .sc-why-action__background:nth-child(1) img {
    top: 100rem;
  }
}
@media (max-width: 768px) {
  .sc-why-action__background:nth-child(1) img {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .sc-why-action__background:nth-child(1) img {
    top: 10rem;
  }
}
.sc-why-action__background:nth-child(2) {
  top: -1.6666666667vw;
}
@media (max-width: 1600px) {
  .sc-why-action__background:nth-child(2) {
    top: -2vw;
  }
}
@media (max-width: 1440px) {
  .sc-why-action__background:nth-child(2) {
    top: -2.2222222222vw;
  }
}
@media (max-width: 1300px) {
  .sc-why-action__background:nth-child(2) img {
    right: -1.8461538462vw;
  }
}
@media (max-width: 1200px) {
  .sc-why-action__background:nth-child(2) img {
    right: -3.3333333333vw;
  }
}
@media (max-width: 1100px) {
  .sc-why-action__background:nth-child(2) img {
    right: -5.4545454545vw;
  }
}
@media (max-width: 1440px) {
  .sc-why-action__background:nth-child(2) img {
    max-width: 90%;
  }
}
@media (max-width: 1200px) {
  .sc-why-action__background:nth-child(2) img {
    max-width: 80%;
  }
}
@media (max-width: 992px) {
  .sc-why-action__background:nth-child(2) img {
    max-width: 70%;
  }
}
@media (max-width: 992px) {
  .sc-why-action__background:nth-child(2) img {
    right: -84rem;
  }
}
@media (max-width: 768px) {
  .sc-why-action__background:nth-child(2) img {
    max-width: 100%;
    right: unset;
  }
}

.sc-ways--page-about {
  background: #fff;
  padding-top: 108rem;
}
@media (max-width: 992px) {
  .sc-ways--page-about {
    padding-top: 72rem;
  }
}
@media (max-width: 768px) {
  .sc-ways--page-about {
    padding-top: 40rem;
  }
}

.sc-faq--page-about {
  overflow: hidden;
  padding-top: 5.5208333333vw;
  padding-bottom: 5.5208333333vw;
}
@media (max-width: 1600px) {
  .sc-faq--page-about {
    padding-top: 6.625vw;
    padding-bottom: 6.625vw;
  }
}
@media (max-width: 1440px) {
  .sc-faq--page-about {
    padding-top: 7.3611111111vw;
    padding-bottom: 7.3611111111vw;
  }
}
@media (max-width: 768px) {
  .sc-faq--page-about {
    padding-top: 32rem;
    padding-bottom: 40rem;
  }
}

.sc-wherebuy--page-about {
  background: #fff;
  padding-top: 4.7916666667vw;
  padding-bottom: 4.6354166667vw;
}
@media (max-width: 1600px) {
  .sc-wherebuy--page-about {
    padding-top: 5.75vw;
    padding-bottom: 5.5625vw;
  }
}
@media (max-width: 1440px) {
  .sc-wherebuy--page-about {
    padding-top: 6.3888888889vw;
    padding-bottom: 6.1805555556vw;
  }
}
@media (max-width: 768px) {
  .sc-wherebuy--page-about {
    padding-top: 32rem;
    padding-bottom: 40rem;
  }
}

/* Страница: Показания */
.sc-recommend--page-indications {
  padding-top: 64rem;
  padding-bottom: 49rem;
}
@media (max-width: 992px) {
  .sc-recommend--page-indications {
    padding-top: 32rem;
    padding-bottom: 48rem;
  }
}
@media (max-width: 768px) {
  .sc-recommend--page-indications {
    padding-top: 24rem;
    padding-bottom: 40rem;
  }
}
.sc-recommend--page-indications .recommend-items__background {
  display: none;
}
.sc-recommend--page-indications .recommend-items__item {
  display: flex;
  flex-direction: column;
  row-gap: 27rem;
}
@media (max-width: 992px) {
  .sc-recommend--page-indications .recommend-items__item {
    row-gap: 20rem;
  }
}
@media (max-width: 768px) {
  .sc-recommend--page-indications .recommend-items__item {
    row-gap: 16rem;
  }
}
.sc-recommend--page-indications .recommend-items__block-content {
  height: auto;
  bottom: unset;
  left: unset;
  border: unset;
  overflow: unset;
  max-width: 100%;
  min-height: unset;
  position: relative;
}
.sc-recommend--page-indications .recommend-items__content-wrap {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  min-height: unset;
}
@media (max-width: 768px) {
  .sc-recommend--page-indications .recommend-items .inter-arrow--next,
.sc-recommend--page-indications .recommend-items .inter-arrow--prev {
    bottom: -64rem;
  }
}

.sc-benefits--page-indications {
  background: #fff;
  padding-bottom: 86rem;
}
@media (max-width: 992px) {
  .sc-benefits--page-indications {
    padding-bottom: 64rem;
    padding-top: 48rem;
  }
}
@media (max-width: 768px) {
  .sc-benefits--page-indications {
    padding-bottom: 48rem;
    padding-top: 40rem;
  }
}

.sc-why-action--page-indications .sc-why-action__background-alter {
  position: absolute;
  z-index: 1;
  width: 382.97rem;
  min-width: 382.97rem;
  height: 452rem;
  min-height: 452rem;
  bottom: -250rem;
  right: 112rem;
}
@media (max-width: 1600px) {
  .sc-why-action--page-indications .sc-why-action__background-alter {
    bottom: -18.125vw;
    right: 7vw;
  }
}
@media (max-width: 1440px) {
  .sc-why-action--page-indications .sc-why-action__background-alter {
    bottom: -14.5833333333vw;
    right: 5vw;
  }
}
@media (max-width: 992px) {
  .sc-why-action--page-indications .sc-why-action__background-alter {
    width: 255.31rem;
    min-width: 255.31rem;
    height: 301.33rem;
    min-height: 301.33rem;
  }
}
@media (max-width: 992px) {
  .sc-why-action--page-indications .sc-why-action__background-alter {
    bottom: -60rem;
    right: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-why-action--page-indications .sc-why-action__background-alter {
    bottom: 410rem;
    right: 16rem;
  }
}
.sc-why-action--page-indications .sc-why-action__background-alter img {
  height: 100%;
  width: 100%;
}
@media (max-width: 768px) {
  .sc-why-action--page-indications .sc-why-action__white-block {
    padding-top: 32rem;
  }
}

.sc-ways--page-indications {
  background: #fff;
  padding-bottom: 44rem;
}
@media (max-width: 992px) {
  .sc-ways--page-indications {
    padding-bottom: 64rem;
  }
}
@media (max-width: 768px) {
  .sc-ways--page-indications {
    padding-bottom: 40rem;
    padding-top: 40rem;
  }
}

.sc-articles--page-indications .sc-articles__title {
  font-size: 48rem;
  line-height: 56rem;
  font-weight: 800;
}
@media (max-width: 992px) {
  .sc-articles--page-indications .sc-articles__title {
    font-size: 40rem;
    line-height: 48rem;
  }
}
@media (max-width: 768px) {
  .sc-articles--page-indications .sc-articles__title {
    font-size: 28rem;
    line-height: 36rem;
  }
}

.sc-faq--page-indications {
  padding-top: 106rem;
  padding-bottom: 106rem;
}
@media (max-width: 992px) {
  .sc-faq--page-indications {
    padding-top: 64rem;
    padding-bottom: 64rem;
  }
}
@media (max-width: 768px) {
  .sc-faq--page-indications {
    padding-top: 40rem;
    padding-bottom: 40rem;
  }
}

.sc-wherebuy--page-indications {
  background: #fff;
  padding-top: 92rem;
  padding-bottom: 89rem;
}
@media (max-width: 992px) {
  .sc-wherebuy--page-indications {
    padding-top: 56rem;
    padding-bottom: 48rem;
  }
}
@media (max-width: 768px) {
  .sc-wherebuy--page-indications {
    padding-top: 32rem;
    padding-bottom: 40rem;
  }
}

/* Страница: Гимнастика для глаз */
.sc-infoblock--page-egg .sc-infoblock__title {
  margin-bottom: 1.25vw;
}
@media (max-width: 1600px) {
  .sc-infoblock--page-egg .sc-infoblock__title {
    margin-bottom: 1.5vw;
  }
}
@media (max-width: 1440px) {
  .sc-infoblock--page-egg .sc-infoblock__title {
    margin-bottom: 1.6666666667vw;
  }
}
.sc-infoblock--page-egg .sc-infoblock__subtitle {
  font-weight: 600;
  font-size: 36rem;
  line-height: 44rem;
}
@media (max-width: 992px) {
  .sc-infoblock--page-egg .sc-infoblock__subtitle {
    font-size: 28rem;
    line-height: 36rem;
  }
}
@media (max-width: 768px) {
  .sc-infoblock--page-egg .sc-infoblock__subtitle {
    font-size: 20rem;
    line-height: 26rem;
  }
}
.sc-infoblock--page-egg::after {
  height: 440rem;
}
@media (max-width: 1600px) {
  .sc-infoblock--page-egg::after {
    height: 29.375vw;
  }
}
@media (max-width: 1450px) {
  .sc-infoblock--page-egg::after {
    height: 31.0344827586vw;
  }
}
@media (max-width: 1250px) {
  .sc-infoblock--page-egg::after {
    height: 32.8vw;
  }
}
@media (max-width: 992px) {
  .sc-infoblock--page-egg::after {
    height: 410rem;
  }
}
@media (max-width: 768px) {
  .sc-infoblock--page-egg::after {
    height: 410rem;
  }
}
@media (max-width: 1700px) {
  .sc-infoblock--page-egg .sc-infoblock__content-part {
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .sc-infoblock--page-egg .sc-infoblock__content-part {
    padding-top: 30rem;
  }
}
@media (max-width: 768px) {
  .sc-infoblock--page-egg .sc-infoblock__content-part {
    padding-top: 24rem;
  }
}
.sc-infoblock--page-egg .posts-content {
  row-gap: 4.7916666667vw;
}
@media (max-width: 1600px) {
  .sc-infoblock--page-egg .posts-content {
    row-gap: 5.75vw;
  }
}
@media (max-width: 1440px) {
  .sc-infoblock--page-egg .posts-content {
    row-gap: 6.3888888889vw;
  }
}
@media (max-width: 768px) {
  .sc-infoblock--page-egg .posts-content {
    row-gap: 30rem;
  }
}
.sc-infoblock--page-egg .sc-infoblock__img-box {
  width: 100%;
  padding-left: 1.7708333333vw;
}
@media (max-width: 1600px) {
  .sc-infoblock--page-egg .sc-infoblock__img-box {
    padding-left: 2.125vw;
  }
}
@media (max-width: 1440px) {
  .sc-infoblock--page-egg .sc-infoblock__img-box {
    padding-left: 2.3611111111vw;
  }
}
.sc-infoblock--page-egg .sc-infoblock__img-box img {
  width: 100%;
  max-width: 68.90625vw;
}
@media (max-width: 1600px) {
  .sc-infoblock--page-egg .sc-infoblock__img-box img {
    max-width: 82.6875vw;
  }
}
@media (max-width: 1440px) {
  .sc-infoblock--page-egg .sc-infoblock__img-box img {
    max-width: 91.875vw;
  }
}
.sc-infoblock--page-egg .sc-infoblock__inner-text {
  display: flex;
  flex-direction: column;
  margin-top: 90rem;
}
@media (max-width: 992px) {
  .sc-infoblock--page-egg .sc-infoblock__inner-text {
    row-gap: 8rem;
    margin-top: 50rem;
  }
}
@media (max-width: 768px) {
  .sc-infoblock--page-egg .sc-infoblock__inner-text {
    margin-top: 24rem;
  }
}
.sc-infoblock--page-egg .sc-infoblock__discl-text {
  color: #777;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 18rem;
  line-height: 28rem;
}
@media (max-width: 992px) {
  .sc-infoblock--page-egg .sc-infoblock__discl-text {
    font-size: 16rem;
    line-height: 24rem;
  }
}
@media (max-width: 768px) {
  .sc-infoblock--page-egg .sc-infoblock__discl-text {
    font-size: 12rem;
    line-height: 22rem;
  }
}
.sc-infoblock--page-egg .sc-infoblock__source-text {
  color: #777;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14rem;
  line-height: 24rem;
}
@media (max-width: 992px) {
  .sc-infoblock--page-egg .sc-infoblock__source-text {
    font-size: 12rem;
    line-height: 22rem;
  }
}
@media (max-width: 768px) {
  .sc-infoblock--page-egg .sc-infoblock__source-text {
    font-size: 10rem;
    line-height: 18rem;
  }
}

.btn-eye {
  display: flex;
  justify-content: center;
}
.btn-eye a {
  max-width: 12.5vw;
}
@media (max-width: 1600px) {
  .btn-eye a {
    max-width: 15vw;
  }
}
@media (max-width: 1440px) {
  .btn-eye a {
    max-width: 16.6666666667vw;
  }
}

.text-eye {
  max-width: 1000rem;
}
@media (max-width: 992px) {
  .text-eye {
    max-width: unset;
  }
}

.wrapper-eye {
  max-width: 800rem;
}
@media (max-width: 992px) {
  .wrapper-eye {
    max-width: unset;
  }
}

.wrapper-lists span {
  font-weight: 500;
}
.wrapper-lists ul li::before {
  background-color: red;
  width: 5rem;
  min-width: 5rem;
  height: 5rem;
  min-height: 5rem;
  top: -5rem;
  left: -15px;
}
@media (max-width: 1400px) {
  .wrapper-lists ul li::before {
    width: 0.3571428571vw;
    min-width: 0.3571428571vw;
    height: 0.3571428571vw;
    min-height: 0.3571428571vw;
    top: 0.7857142857vw;
  }
}
@media (max-width: 1200px) {
  .wrapper-lists ul li::before {
    width: 0.4166666667vw;
    min-width: 0.4166666667vw;
    height: 0.4166666667vw;
    min-height: 0.4166666667vw;
    top: 0.75vw;
  }
}
@media (max-width: 1100px) {
  .wrapper-lists ul li::before {
    width: 0.4545454545vw;
    min-width: 0.4545454545vw;
    height: 0.4545454545vw;
    min-height: 0.4545454545vw;
    top: 0.6363636364vw;
  }
}
@media (max-width: 992px) {
  .wrapper-lists ul li::before {
    width: 5rem;
    min-width: 5rem;
    height: 5rem;
    min-height: 5rem;
    top: 9rem;
  }
}
@media (max-width: 768px) {
  .wrapper-lists ul li::before {
    width: 4rem;
    min-width: 4rem;
    height: 4rem;
    min-height: 4rem;
  }
}

/* Страница: Тестирование */
.sc-page-test {
  overflow: hidden;  
  position: relative;
  padding-bottom: 120rem;
}
@media (max-width: 1600px) {
  .sc-page-test {
    padding-bottom: 6.25vw;
  }
}
@media (max-width: 1440px) {
  .sc-page-test {
    padding-bottom: 5.5555555556vw;
  }
}
@media (max-width: 992px) {
  .sc-page-test {
    padding-bottom: 8.3333333333vw;
  }
}
.sc-page-test::after {
  display: none;
}
.sc-page-test::before {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  /*background-color: #DD1C25;*/
  height: 100%;
  z-index: 3;
  width: 10.78125vw;
}
@media (max-width: 1600px) {
  .sc-page-test::before {
    width: 12.9375vw;
  }
}
@media (max-width: 1440px) {
  .sc-page-test::before {
    width: 14.375vw;
  }
}
@media (max-width: 768px) {
  .sc-page-test::before {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .sc-page-test::before {
    height: 78rem;
    top: 75rem;
  }
}
.sc-page-test__wrapper-gap {
  padding-top: 40rem;
}
@media (max-width: 992px) {
  .sc-page-test__wrapper-gap {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .sc-page-test__wrapper-gap {
    padding-top: 75rem;
  }
}
.sc-page-test__wrapper-eye {
  display: flex;
  position: relative;
  z-index: 3;
  height: 470rem;
}
@media (max-width: 992px) {
  .sc-page-test__wrapper-eye {
    height: 320rem;
    top: 40rem;
  }
}
@media (max-width: 768px) {
  .sc-page-test__wrapper-eye {
    display: none;
  }
}
.sc-page-test__wrapper-eye img {
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  user-select: none;
  width: 613rem;
  min-width: 613rem;
  height: 534rem;
  min-height: 534rem;
  left: 40rem;
  top: -48rem;
}
@media (max-width: 992px) {
  .sc-page-test__wrapper-eye img {
    width: 58.53125vw;
    min-width: 58.53125vw;
    height: 50.9895833333vw;
    min-height: 50.9895833333vw;
  }
}
@media (max-width: 992px) {
  .sc-page-test__wrapper-eye img {
    left: 4.1666666667vw;
    top: -5.2083333333vw;
  }
}
.sc-page-test__background-eye {
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100.2604166667vw;
  min-width: 100.2604166667vw;
}
@media (max-width: 1600px) {
  .sc-page-test__background-eye {
    width: 120.3125vw;
    min-width: 120.3125vw;
  }
}
@media (max-width: 1440px) {
  .sc-page-test__background-eye {
    width: 133.6805555556vw;
    min-width: 133.6805555556vw;
  }
}
@media (max-width: 1600px) {
  .sc-page-test__background-eye {
    left: -9.375vw;
  }
}
@media (max-width: 1440px) {
  .sc-page-test__background-eye {
    left: -15.9722222222vw;
  }
}
.sc-page-test__background-mob {
  display: none;
}
@media (max-width: 768px) {
  .sc-page-test__background-mob {
    display: block;
    position: relative;
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .sc-page-test__background-mob {
    right: 9rem;
  }
}
@media (max-width: 768px) {
  .sc-page-test__background-mob img {
    width: 192rem;
    min-width: 192rem;
    height: 222rem;
    min-height: 222rem;
  }
}
@media (max-width: 768px) {
  .sc-page-test__background-mob img {
    position: relative;
    user-select: none;
  }
}
@media (max-width: 768px) {
  .sc-page-test__background-mob img {
    top: -40rem;
    left: -6rem;
  }
}
@media (max-width: 768px) {
  .sc-page-test__background {
    border-radius: 50%;
    background: linear-gradient(180deg, #FF2E2E 0%, #FF6868 100%);
  }
}
@media (max-width: 768px) {
  .sc-page-test__background {
    width: 164rem;
    min-width: 164rem;
    height: 164rem;
    min-height: 164rem;
  }
}
.sc-page-test__container-start {
  padding-top: 24rem;
  padding-left: 91rem;
}
@media (max-width: 1600px) {
  .sc-page-test__container-start {
    padding-left: 7.5vw;
  }
}
@media (max-width: 1600px) {
  .sc-page-test__container-start {
    padding-left: 11.25vw;
  }
}
@media (max-width: 992px) {
  .sc-page-test__container-start {
    padding-left: 120rem;
    padding-top: 72rem;
  }
}
@media (max-width: 768px) {
  .sc-page-test__container-start {
    padding-top: 36rem;
    padding-bottom: 24rem;
  }
}
@media (max-width: 768px) {
  .sc-page-test__container-start {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    position: relative;
  }
}
@media (max-width: 768px) {
  .sc-page-test__container-start::after {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='335' viewBox='0 0 320 335' fill='none'%3E%3Cpath d='M360.57 13.6807C341.752 1.49434 324.862 -3.94432 299.766 4.93435C257.128 20.019 213.457 58.047 178.811 91.5572C149.567 119.842 125.572 152.555 97.6616 182.211C62.6234 219.44 16.7434 227.481 -26.0679 231.5C-42.7499 233.067 -58.6238 231.064 -74.5259 228.893C-93.2414 226.338 -102.961 235.462 -117.064 252.794C-132.703 272.014 -148.706 293.084 -162.409 313.86C-163.621 315.698 -179.764 339.083 -178.563 332.836' stroke='%23DD1C25' stroke-width='1.19934' stroke-linecap='round' stroke-dasharray='22.39 22.39'/%3E%3C/svg%3E");
    pointer-events: none;
    position: absolute;
  }
}
@media (max-width: 768px) {
  .sc-page-test__container-start::after {
    width: 320rem;
    min-width: 320rem;
    height: 335rem;
    min-height: 335rem;
  }
}
@media (max-width: 768px) {
  .sc-page-test__container-start::after {
    left: -20rem;
    top: 130rem;
  }
}
.sc-page-test__wrapper-title {
  margin-bottom: 32rem;
}
@media (max-width: 768px) {
  .sc-page-test__wrapper-title {
    margin-bottom: 16rem;
  }
}
.sc-page-test__wrapper-title h1 {
  font-size: 60rem;
  line-height: 68rem;
  font-weight: 800;
  hyphens: none;
}
@media (max-width: 992px) {
  .sc-page-test__wrapper-title h1 {
    font-size: 48rem;
    line-height: 56rem;
  }
}
@media (max-width: 768px) {
  .sc-page-test__wrapper-title h1 {
    font-size: 30rem;
    line-height: 38rem;
  }
}
.sc-page-test__wrapper-button {
  max-width: 21.7708333333vw;
}
@media (max-width: 1600px) {
  .sc-page-test__wrapper-button {
    max-width: 26.125vw;
  }
}
@media (max-width: 1440px) {
  .sc-page-test__wrapper-button {
    max-width: 29.0277777778vw;
  }
}
@media (max-width: 768px) {
  .sc-page-test__wrapper-button {
    max-width: 164rem;
    margin-bottom: 120rem;
  }
}
.sc-page-test__wrapper-button .btn {
  font-weight: 600;
  min-height: 6.875vw;
  max-height: 6.875vw;
  border-radius: 4.2708333333vw;
  font-size: 2.1354166667vw;
  line-height: 2.2395833333vw;
}
@media (max-width: 1600px) {
  .sc-page-test__wrapper-button .btn {
    min-height: 8.25vw;
    max-height: 8.25vw;
    border-radius: 5.125vw;
    font-size: 2.5625vw;
    line-height: 2.6875vw;
  }
}
@media (max-width: 1440px) {
  .sc-page-test__wrapper-button .btn {
    min-height: 9.1666666667vw;
    max-height: 9.1666666667vw;
    border-radius: 5.6944444444vw;
    font-size: 2.8472222222vw;
    line-height: 2.9861111111vw;
  }
}
@media (max-width: 768px) {
  .sc-page-test__wrapper-button .btn {
    min-height: 52rem;
    max-height: 52rem;
    border-radius: 32rem;
    font-size: 16rem;
    line-height: 20rem;
  }
}
.sc-page-test--hidden-start .sc-page-test__wrapper-eye {
  display: none;
}
.sc-page-test--hidden-start .sc-page-test__container-start {
  display: none;
}

.main-window-test {
  display: none;
  flex-direction: column;
  position: relative;
}
@media (max-width: 992px) {
  .main-window-test {
    padding-top: 32rem;
  }
}
@media (max-width: 768px) {
  .main-window-test {
    padding-top: 24rem;
    padding-bottom: 32rem;
  }
}
.main-window-test__wrapper-windows {
  padding-left: 64rem;
  margin-bottom: 32rem;
  min-height: 493.5rem;
}
@media (max-width: 992px) {
  .main-window-test__wrapper-windows {
    padding-left: 72rem;
    margin-bottom: 24rem;
    min-height: 354rem;
  }
}
@media (max-width: 768px) {
  .main-window-test__wrapper-windows {
    min-height: unset;
  }
}
@media (max-width: 768px) {
  .main-window-test__wrapper-windows {
    padding-left: 9rem;
    margin-bottom: 20rem;
  }
}
.main-window-test__window {
  display: none;
  flex-direction: column;
  row-gap: 40rem;
  padding-left: 80rem;
}
@media (max-width: 992px) {
  .main-window-test__window {
    row-gap: 4.1666666667vw;
    padding-left: 13.0208333333vw;
  }
}
@media (max-width: 768px) {
  .main-window-test__window {
    padding-left: 0;
    position: relative;
  }
}
.main-window-test__window--active {
  display: flex;
}
@media (max-width: 768px) {
  .main-window-test__window--mob-more {
    padding-top: 80rem;
  }
}
@media (max-width: 768px) {
  .main-window-test__window--result {
    width: calc(100% + 2.8125vw);
  }
}
@media (max-width: 768px) {
  .main-window-test__window--result {
    left: -9rem;
  }
}
.main-window-test__window--more .test-question__wrapper-title {
  margin-bottom: 24rem;
}
@media (max-width: 992px) {
  .main-window-test__window--more .test-question__wrapper-title {
    margin-bottom: 18rem;
  }
}
@media (max-width: 768px) {
  .main-window-test__window--more .test-question__wrapper-title {
    margin-bottom: 16rem;
  }
}
.main-window-test__window--more .test-question__wrapper-img {
  width: 170rem;
  min-width: 170rem;
  height: 170rem;
  min-height: 170rem;
  bottom: -12rem;
  right: 20rem;
}
@media (max-width: 992px) {
  .main-window-test__window--more .test-question__wrapper-img {
    width: 19.53125vw;
    min-width: 19.53125vw;
    height: 19.53125vw;
    min-height: 19.53125vw;
  }
}
@media (max-width: 992px) {
  .main-window-test__window--more .test-question__wrapper-img {
    bottom: -2.0833333333vw;
    right: 8.3333333333vw;
  }
}
.main-window-test__wrapper-navigation {
  width: intrinsic;
  width: -moz-max-content;
  width: -webkit-max-content;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 24rem;
  padding-left: 144rem;
}
@media (max-width: 992px) {
  .main-window-test__wrapper-navigation {
    column-gap: 24rem;
    padding-left: 160rem;
  }
}
@media (max-width: 768px) {
  .main-window-test__wrapper-navigation {
    padding-left: 9rem;
    column-gap: 24rem;
  }
}
.main-window-test__btn {
  border-radius: 60rem;
  padding-left: 48rem;
  padding-right: 48rem;
  min-width: 180rem;
}
@media (max-width: 992px) {
  .main-window-test__btn {
    padding-left: 40rem;
    padding-right: 40rem;
    min-width: 164rem;
  }
}
@media (max-width: 768px) {
  .main-window-test__btn {
    border-radius: 50rem;
    padding-left: 24rem;
    padding-right: 24rem;
    min-width: 120rem;
  }
}
.main-window-test__btn--prev {
  border-style: solid;
  border-color: #FF3535;
  background-color: transparent;
  border-width: 2rem;
}
.main-window-test__btn--prev:hover {
  background-color: #FF3535;
  color: #fff;
}
.main-window-test__btn--next {
  color: #fff;
  background: linear-gradient(94deg, #FF2E2E 0%, #FF6868 100%);
  transition-property: filter;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.main-window-test__btn--next:hover {
  opacity: 1;
  filter: brightness(130%);
}
.main-window-test__wrapper-warning {
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  bottom: -48rem;
  left: 140rem;
}
@media (max-width: 992px) {
  .main-window-test__wrapper-warning {
    left: 160rem;
  }
}
@media (max-width: 768px) {
  .main-window-test__wrapper-warning {
    bottom: -24rem;
    left: 9rem;
  }
}
.main-window-test__wrapper-warning span {
  color: #FF2E2E;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .main-window-test__wrapper-warning span {
    white-space: wrap;
  }
}
@media (max-width: 768px) {
  .main-window-test__wrapper-warning span {
    font-size: 14rem;
    line-height: 20rem;
  }
}
.main-window-test__wrapper-warning--visible {
  opacity: 1;
  pointer-events: all;
}

.test-question {
  position: relative;
  max-width: 570rem;
}
@media (max-width: 992px) {
  .test-question {
    max-width: unset;
  }
}
@media (max-width: 768px) {
  .test-question {
    position: static;
    display: flex;
    flex-direction: column;
  }
}
.test-question:last-child {
  margin-bottom: 32rem;
}
@media (max-width: 992px) {
  .test-question:last-child {
    margin-bottom: 24rem;
  }
}
@media (max-width: 768px) {
  .test-question:last-child {
    margin-bottom: 0;
  }
}
.test-question__item-number {
  position: absolute;
  left: -320rem;
  top: -8rem;
}
@media (max-width: 992px) {
  .test-question__item-number {
    left: -220rem;
    top: -12rem;
  }
}
@media (max-width: 768px) {
  .test-question__item-number {
    left: unset;
  }
}
@media (max-width: 768px) {
  .test-question__item-number {
    top: -97rem;
    right: 9rem;
  }
}
.test-question__item-number.test-question__item-number--leftmin {
  left: 0;
}
@media (max-width: 768px) {
  .test-question__item-number.test-question__item-number--leftmin {
    top: -97rem;
    left: 9rem;
  }
}
.test-question__item-number.test-question__item-number--rightlong {
  left: unset;
}
@media (max-width: 768px) {
  .test-question__item-number.test-question__item-number--rightlong {
    right: 9rem;
    top: -67rem;
  }
}
.test-question__wrapper-title {
  position: relative;
  margin-bottom: 40rem;
}
@media (max-width: 992px) {
  .test-question__wrapper-title {
    margin-bottom: 32rem;
  }
}
@media (max-width: 768px) {
  .test-question__wrapper-title {
    margin-bottom: 16rem;
  }
}
.test-question__wrapper-title h3 {
  font-weight: 800;
}
@media (max-width: 768px) {
  .test-question__wrapper-title h3 {
    font-size: 16rem;
    line-height: 20rem;
  }
}
.test-question__answers {
  display: flex;
  flex-direction: column;
  row-gap: 0.8333333333vw;
}
@media (max-width: 1600px) {
  .test-question__answers {
    row-gap: 1vw;
  }
}
@media (max-width: 1440px) {
  .test-question__answers {
    row-gap: 1.1111111111vw;
  }
}
@media (max-width: 768px) {
  .test-question__answers {
    row-gap: 10rem;
  }
}
.test-question__wrapper-img {
  width: 280rem;
  min-width: 280rem;
  height: 280rem;
  min-height: 280rem;
  position: absolute;
  right: -120rem;
  bottom: -130rem;
}
@media (max-width: 992px) {
  .test-question__wrapper-img {
    width: 200rem;
    min-width: 200rem;
    height: 200rem;
    min-height: 200rem;
  }
}
@media (max-width: 768px) {
  .test-question__wrapper-img {
    width: 148rem;
    min-width: 148rem;
    height: 148rem;
    min-height: 148rem;
  }
}
@media (max-width: 992px) {
  .test-question__wrapper-img {
    right: 0;
  }
}
@media (max-width: 992px) {
  .test-question__wrapper-img {
    bottom: -40rem;
  }
}
@media (max-width: 768px) {
  .test-question__wrapper-img {
    right: unset;
    bottom: unset;
    position: relative;
    order: -1;
  }
}
@media (max-width: 768px) {
  .test-question__wrapper-img {
    margin-bottom: 20rem;
    left: -9rem;
  }
}
.test-question__wrapper-img img {
  width: 100%;
  height: 100%;
}
.test-question--image-top {
  padding-top: 180rem;
}
@media (max-width: 992px) {
  .test-question--image-top {
    padding-top: 160rem;
  }
}
@media (max-width: 768px) {
  .test-question--image-top {
    padding-top: 0;
  }
}
.test-question--image-top:last-child {
  margin-bottom: 0;
}
.test-question--image-top .test-question__wrapper-title {
  margin-bottom: 24rem;
}
@media (max-width: 992px) {
  .test-question--image-top .test-question__wrapper-title {
    margin-bottom: 20rem;
  }
}
@media (max-width: 768px) {
  .test-question--image-top .test-question__wrapper-title {
    margin-bottom: 16rem;
  }
}
.test-question--image-top .test-question__wrapper-img {
  width: 220rem;
  min-width: 220rem;
  height: 220rem;
  min-height: 220rem;
  bottom: unset;
  top: -30rem;
  right: -80rem;
}
@media (max-width: 992px) {
  .test-question--image-top .test-question__wrapper-img {
    width: 164rem;
    min-width: 164rem;
    height: 164rem;
    min-height: 164rem;
  }
}
@media (max-width: 768px) {
  .test-question--image-top .test-question__wrapper-img {
    width: 148rem;
    min-width: 148rem;
    height: 148rem;
    min-height: 148rem;
  }
}
@media (max-width: 992px) {
  .test-question--image-top .test-question__wrapper-img {
    top: -16rem;
    right: -16rem;
  }
}
@media (max-width: 768px) {
  .test-question--image-top .test-question__wrapper-img {
    right: unset;
    top: unset;
  }
}

.test-question--bigsize .test-question__wrapper-title h3 {
  font-size: 32rem;
  line-height: 40rem;
  font-weight: 800;
}
@media (max-width: 992px) {
  .test-question--bigsize .test-question__wrapper-title h3 {
    font-size: 28rem;
    line-height: 36rem;
  }
}
@media (max-width: 768px) {
  .test-question--bigsize .test-question__wrapper-title h3 {
    font-size: 20rem;
    line-height: 28rem;
  }
}

.test-number-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(180deg, #FF2E2E 0%, #FF6868 100%);
  width: 298rem;
  min-width: 298rem;
  height: 64rem;
  min-height: 64rem;
  border-radius: 60rem;
  padding-right: 12rem;
}
@media (max-width: 992px) {
  .test-number-left {
    width: 200rem;
    min-width: 200rem;
    height: 56rem;
    min-height: 56rem;
  }
}
@media (max-width: 768px) {
  .test-number-left {
    width: 40rem;
    min-width: 40rem;
    height: 148rem;
    min-height: 148rem;
  }
}
@media (max-width: 992px) {
  .test-number-left {
    padding-right: 12rem;
  }
}
@media (max-width: 768px) {
  .test-number-left {
    border-radius: 30rem;
    padding-bottom: 10rem;
  }
}
@media (max-width: 768px) {
  .test-number-left {
    padding-right: 0;
    justify-content: center;
    align-items: flex-end;
  }
}
.test-number-left span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48rem;
  min-width: 48rem;
  height: 48rem;
  min-height: 48rem;
  font-size: 24rem;
  line-height: 22rem;
  font-weight: 700;
  border-color: #fff;
  border-style: solid;
  color: #fff;
  border-radius: 50%;
  border-width: 3rem;
}
@media (max-width: 992px) {
  .test-number-left span {
    width: 40rem;
    min-width: 40rem;
    height: 40rem;
    min-height: 40rem;
  }
}
@media (max-width: 992px) {
  .test-number-left span {
    font-size: 22rem;
    line-height: 20rem;
  }
}
@media (max-width: 768px) {
  .test-number-left span {
    width: 32rem;
    min-width: 32rem;
    height: 32rem;
    min-height: 32rem;
  }
}
@media (max-width: 768px) {
  .test-number-left span {
    font-size: 16rem;
    line-height: 20rem;
    font-weight: 600;
  }
}
@media (max-width: 768px) {
  .test-number-left--mob-hidden {
    display: none;
  }
}
.test-number-left--mob {
  display: none;
}
@media (max-width: 768px) {
  .test-number-left--mob {
    display: flex;
  }
}

.window-test-result__wrapper-title {
  text-align: center;
  margin-bottom: 8rem;
}
@media (max-width: 992px) {
  .window-test-result__wrapper-title {
    margin-bottom: 6rem;
  }
}
@media (max-width: 768px) {
  .window-test-result__wrapper-title {
    margin-bottom: 4rem;
  }
}
.window-test-result__wrapper-title h3 {
  font-size: 48rem;
  line-height: 56rem;
  font-weight: 800;
}
@media (max-width: 992px) {
  .window-test-result__wrapper-title h3 {
    font-size: 32rem;
    line-height: 40rem;
  }
}
@media (max-width: 768px) {
  .window-test-result__wrapper-title h3 {
    font-size: 18.75rem;
    line-height: 23rem;
  }
}
@media (max-width: 992px) {
  .window-test-result__wrapper-title h3 br {
    display: none;
  }
}
.window-test-result__wrapper-result {
  text-align: center;
  font-size: 32rem;
  line-height: 40rem;
  font-weight: 800;
  margin-bottom: 48rem;
}
@media (max-width: 992px) {
  .window-test-result__wrapper-result {
    font-size: 24rem;
    line-height: 32rem;
  }
}
@media (max-width: 768px) {
  .window-test-result__wrapper-result {
    font-size: 17rem;
    line-height: 21rem;
  }
}
@media (max-width: 992px) {
  .window-test-result__wrapper-result {
    margin-bottom: 32rem;
  }
}
@media (max-width: 768px) {
  .window-test-result__wrapper-result {
    margin-bottom: 16rem;
  }
}
.window-test-result__wrapper-result span {
  font-size: 64rem;
  line-height: 72rem;
  font-weight: 800;
  color: #FF2E2E;
}
@media (max-width: 992px) {
  .window-test-result__wrapper-result span {
    font-size: 32rem;
    line-height: 40rem;
  }
}
@media (max-width: 768px) {
  .window-test-result__wrapper-result span {
    font-size: 22rem;
    line-height: 30rem;
  }
}
.window-test-result__wrapper-items {
  display: flex;
  flex-direction: column;
  row-gap: 32rem;
  padding-left: 40rem;
  margin-bottom: 48rem;
}
@media (max-width: 992px) {
  .window-test-result__wrapper-items {
    row-gap: 24rem;
    padding-left: 32rem;
    margin-bottom: 40rem;
  }
}
@media (max-width: 768px) {
  .window-test-result__wrapper-items {
    row-gap: 16rem;
    padding-left: 48rem;
    margin-bottom: 24rem;
  }
}
.window-test-result__item {
  position: relative;
  display: none;
}
.window-test-result__item .test-number-left {
  position: absolute;
  top: 0;
  left: -320rem;
  padding-right: 32rem;
}
@media (max-width: 992px) {
  .window-test-result__item .test-number-left {
    left: -220rem;
    padding-right: 24rem;
  }
}
@media (max-width: 768px) {
  .window-test-result__item .test-number-left {
    left: -106rem;
    padding-right: 8rem;
  }
}
@media (max-width: 768px) {
  .window-test-result__item .test-number-left {
    width: 100rem;
    min-width: 100rem;
    height: 40rem;
    min-height: 40rem;
  }
}
@media (max-width: 768px) {
  .window-test-result__item .test-number-left {
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 0;
  }
}
.window-test-result__item .test-number-left span {
  border: unset;
  min-width: unset;
  min-height: unset;
  height: auto;
  width: auto;
  font-size: 28rem;
  line-height: 30rem;
  font-weight: 600;
}
@media (max-width: 992px) {
  .window-test-result__item .test-number-left span {
    font-size: 22rem;
    line-height: 28rem;
  }
}
@media (max-width: 768px) {
  .window-test-result__item .test-number-left span {
    font-size: 16rem;
    line-height: 20rem;
  }
}
.window-test-result__item.active {
  display: block;
}
.window-test-result__item-desc p {
  font-size: 22rem;
  line-height: 32rem;
  font-weight: 400;
}
@media (max-width: 992px) {
  .window-test-result__item-desc p {
    font-size: 18rem;
    line-height: 28rem;
  }
}
@media (max-width: 768px) {
  .window-test-result__item-desc p {
    font-size: 16rem;
    line-height: 24rem;
  }
}
.window-test-result__wrapper-button .btn {
  margin: 0 auto;
  width: intrinsic;
  width: -moz-max-content;
  width: -webkit-max-content;
  padding-left: 2.2916666667vw;
  padding-right: 2.2916666667vw;
}
@media (max-width: 1600px) {
  .window-test-result__wrapper-button .btn {
    padding-left: 2.75vw;
    padding-right: 2.75vw;
  }
}
@media (max-width: 1440px) {
  .window-test-result__wrapper-button .btn {
    padding-left: 3.0555555556vw;
    padding-right: 3.0555555556vw;
  }
}
@media (max-width: 768px) {
  .window-test-result__wrapper-button .btn {
    padding-left: 16rem;
    padding-right: 16rem;
    font-size: 14rem;
    line-height: 18rem;
  }
}
@media (max-width: 768px) {
  .window-test-result__wrapper-button .btn {
    width: 100%;
  }
}


.iconblock {
	display: flex;
	margin-top: 40px;

}

.iconblock:first-child {
	margin-top: 0px
}

.iconblock img,
.iconblock .number{
	width: 45px;
	height: 45px;
	margin-right: 20px;
	margin-top: 5px;
}

.iconblock .number {
	border: 2px solid #FF2E2E;
	border-radius: 50%;
	text-align: center;
	padding-top: 5px;
	font-size: 30px;
	font-weight: 600;
	color: #FF6868;
	}


.borderblock_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}

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

.borderblock_item {
	display: flex;
	align-items: center;
  flex: 0 0 49%; 
  box-sizing: border-box; 
	border: 2px solid #FF6868;
	border-radius: 10px;
	padding: 47px 20px;
}

.bckgblock_container {
	
}

.bckgblock_item {
	background: linear-gradient(91.32deg, rgba(255, 46, 46, 0.7) 0%, rgba(255, 104, 104, 0.7) 100%);
	margin-top: 10px;
	color: #fff;
	padding: 25px 20px 25px 40px;
	border-radius: 10px;
}

.bckgblock_item p,
.bckgblock_item ul li,
.bckgblock_item ol li{
	color: #fff;
}


.bckgblock_item:first-child{
	margin-top: 0px;
}

.test_knopki {
	Font-weight: 600;
	font-size: 20px;
	color: #FF2E2E;
	border: 1px solid #FF2E2E;
	border-radius: 10px;
	text-align: center;
	padding: 30px 0;
	text-decoration: none;
}

.imgblock_img {
	width: 373px;
	height: 260px;
	border-radius: 10px;
	background-position: center center;
	background-size: cover;
}

.imgblock_container {
	display: grid;
	grid-template-columns: 3fr 1fr;
	grid-gap: 40px;
	border-bottom: 1px solid #0000001A;
	padding-bottom: 34px;
	padding-top: 34px
}

@media (max-width: 1024px) {
.imgblock_container {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 40px;
	}
	.imgblock_img {
	width: 100%;
}
}
	
.imgblock_text {
	display: flex;
	align-items: center;
}

.iconblock2_container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.iconblock2 {
	display: flex;
	align-items: stretch;
}
.iconblock2:nth-child(2) {
	margin-top: 0px;
}

@media (max-width: 1024px) {
.iconblock2_container {
		grid-template-columns: 1fr;
	}
	
	.iconblock2:nth-child(2) {
	margin-top: 40px;
}
	
	.iconblock2 img {
		margin-top: 10px
	}
}

/* Articles */
.articles-spec-intro {
  background: linear-gradient(159deg, #F2F1F1 0%, #FFEBEB 100%);
  padding: 203px 0 40px;
}
.articles-spec-intro-wrapper {
  position: relative;
}
.articles-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 40px 0;
}
.articles-nav-filter-btn {
  border-radius: 40px;
  background: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #000;
  padding: 17px 32px;
  cursor: pointer;
  box-shadow: 0px 0px 20px 0px rgba(0 0 0 / 0.1);
}
.articles-nav-filter-btn.active {
  background: #ff4141;
  color: #fff;
}

.sc-articles__subtitle {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.33333;
  color: #000;
}
.articles-tabs-wrapper {
  position: relative;
  margin: 0 auto 20px;
}

.articles-tabs-img {
  width: 100%;
  max-width: 450px;
  position: absolute;
  right: 100px;
  bottom: 0;
  transform: translateY(46%);
}
.articles-tab-content .article-card__wrapper-desc {
  margin-top: auto;
}
.articles-tab-content .article-card__wrapper-button {
  margin-top: 0;
}
.tab-pane {
  display: none;
}
.tab-pane.show {
  display: grid;
 margin-bottom: 60rem;
}

.spec-modal {
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  width: 100%;
  height: 100%;
  outline: 0;
}
.spec-modal.fade {
  pointer-events: none;
}
.spec-modal.show {
  opacity: 1;
  display: block;
  pointer-events: all;
}
.spec-modal-dialog {
  width: 100%;
  height: 100%;
  background: rgba(65, 11, 11, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.spec-modal-content {
  width: 100%;
  max-width: 960px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  padding: 80px 120px;
  position: relative;
}
/* .spec-btn-close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
} */
.spec-modal-title {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.22222;
  text-align: center;
  color: #333;
  margin-bottom: 60px;
}
.spec-modal-subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.55556;
  text-align: center;
  color: #333;
  margin-bottom: 45px;
}
.spec-modal-btn-group {
  display: flex;
  justify-content: center;
  gap: 25px;
}
.spec-modal-btn {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}
.spec-modal-btn--1 {
  padding: 20px 40px;
  background: #ffe0e0;
  color: #000;
}
.spec-modal-btn--2 {
  border: 3px solid #fc1c1c;
  padding: 17px 40px;
  background: #fff;
  color: #fc1c1c;
}
/* @media screen and (max-width: 1700px) {
  .articles-tabs-img {
    max-width: 25vw;
  }
} */
@media screen and (max-width: 1400px) {
  .articles-nav-filter-btn {
    font-size: 16px;
    padding: 15px 30px;
  }
  .articles-tabs-wrapper {
    position: relative;
    margin: 0;
  }
  .articles-tabs-img {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .articles-spec-intro {
    padding: 150px 0 20px;
  }
  .spec-modal-content {
    padding: 40px 15px;
  }
  .spec-modal-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .spec-modal-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .spec-modal-btn-group {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .spec-modal-btn {
    font-size: 14px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .articles-nav {
    justify-content: center;
    padding: 40px 0;
  }
  .sc-articles__subtitle {
    padding-bottom: 32rem;
  }
  .sc-articles__subtitle br {
    display: none;
  }
}

/* news */
.news-slider {
  padding: 50px 0;
}
.news-title {
  font-weight: 800;
  font-size: 48px;
  line-height: 1.16667;
  color: #000;
  margin-bottom: 40px;
}
.news-swiper .swiper-wrapper {
  height: auto;
}
.news-preview {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news-preview-img {
  width: calc((100% - 20px) / 2);
  height: 310px;
}
.news-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: fit;
  object-position: center;
}
.news-preview-content {
  width: calc((100% - 20px) / 2);
}
.news-preview-date {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.77778;
  color: #8c8c8c;
  margin-bottom: 10px;
}
.news-preview-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 10px;
  text-decoration: none;
}
.news-preview-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #333;
}
.news-preview-text a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #ff2e2e;
}
.news-swiper-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}
.news-button-prev::after, .news-button-next::after {
  display: none;
}
.news-button-prev, .news-button-next {
  position: static;
  width: 53px;
  height: 53px;
  margin: 0;
}

.news-articles {
  padding: 0 0 50px;
}
.news-page-items {
  flex-direction: column;
  gap: 38px;
}
.news-page-items.tab-pane.show {
  display: flex !important;
}

@media screen and (min-width: 1930px) {
  .news-preview-img {
    width: calc(40% - 10px);
  }
  .news-preview-content {
    width: calc(60% - 10px);
  }
}
@media screen and (max-width: 992px) {
  .news-title {
    font-size: 39px;
  }
  .news-preview {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .news-preview-img {
    width: 100%;
	  height: auto;
  }
  .news-preview-content {
    width: 100%;
  }
  .news-preview-title {
    font-size: 21px;
  }
  .news-swiper-nav {
    margin-top: 40px;
  }
  }
  .cookie-banner {
	display: none;
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    width: 600px;
    background: #fbebebdb;
    color: #000000;
    border-radius: 12px;
    padding: 20px 30px;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
}
.cookie-content a {
	color: #ec4f3d;
}
.cookie-btn {
    background: #ec4f3d;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 10px 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
.cookie-btn:hover {
  background: #ec4f3dad;
}

.post_video video, .post_video iframe {
    width: 100%;
    margin: 30px 0px 0px 0px;
}
.video_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}
.video_item {
    width: 49%;
    text-decoration: none;
    margin-bottom: 40px;
}
.video_item .title {
    margin-top: 20px;
}
.video_item img{
    /*position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;*/
}
.video_item .img {
    /*height: 326px;*/
    overflow: hidden;
    border-radius: 30px;
	position: relative;
}

@media screen and (max-width: 992px) {
	.video_item .img {
		height: 209px;
	}
}
@media screen and (max-width: 768px) {
	.video_item {
		width: 100%;
	}
}
.verified-block {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	margin-bottom: 35px;
	padding: 12px 15px 12px 100px;
	width: 100%;
	max-width: 690px;
	background: linear-gradient(180deg, #FFEFF1 0%, #FFDDE3 50%, #FFC7D0 100%);
	text-decoration: none;
}
.verified-block__icon {
	position: absolute;
	left: 15px;
	bottom: 0;
}
.verified-block__content {
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.verified-block__content-title, .verified-block__content-title a, .verified-block__content-title .b_title {
	font-size: 16px;
	line-height: 23px;
	font-weight: 700;
}
.verified-block__content-title a {
	color: #333;
	text-decoration: none;
}
.verified-block__content-subtitle {
	font-size: 14px;
	font-style: italic;
}
.verified-block__img {
	flex: 0 0 auto;
	border-radius: 10px;
	overflow: hidden;
}
@media (max-width: 575px) {
	.verified-block {
		margin-bottom: 25px;
		padding: 13px 10px 6px;
	}
	.verified-block__icon {
		display: none;
	}
	.verified-block__content {
		order: 2;
	}
	.verified-block__content-title, .verified-block__content-title a {
		font-size: 12px;
		line-height: 16px;
	}
	.verified-block__content-subtitle {
		font-size: 11px;
	}
	.verified-block__img {
		order: 1;
	}
}
.post_video {
    position: relative;
}
.play {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}
.play img {
    width: 100px;
    cursor: pointer;
}

.sc-main-article__content-right.exp_img {
    height: 470rem;
    min-height: 470rem;
}
.autor_info {
    max-width: 1209px;
    font-size: 18px;
    line-height: 28px;
    margin: 55px 0px 0px 0px;
}
.autor_info .title {
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    vertical-align: middle;
    margin-bottom: 25px;
}
.autor_info .text:not(:last-child) {
    margin-bottom: 25px;
}
.autor_info .list a {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    padding: 0px 0px 0px 25px;
    position: relative;
}
.autor_info .list a:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FF0000;
    left: 0px;
    top: 9px;
}
@media (max-width: 992px) {
    .autor_info{
        font-size: 16rem;
        line-height: 24rem;
    }
	.sc-main-article__content-right.exp_img {
		height: auto;
		min-height: auto;
	}
}
.autor_desc p:not(last-child) {
    margin-bottom: 30px;
}
.autor_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 60px 0px 0px 0px;
}
.autor_item {
    width: 49%;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.4px;
    text-decoration: none;
    margin-bottom: 40px;
}

.autor_item .title {
    margin: 40px 0px 0px 0px;
}
@media (max-width: 768px) {
  .autor_item {
      width: 100%;
  }
  .autor_item .img {
      height: auto;
  }
  .autor_item img {
      position: relative;
  }
}
.expert_info {
	max-width: 620px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
	margin: 0px 0px 15px 0px;
}
.expert_info .img {
    width: 109px;
    height: 109px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-right: 15px;
}
.expert_info .img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.expert_info .autor {
    width: calc(100% - 128px);
}
.expert_info .name {
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
}

.readalso-slider {
  padding: 0 55px 35px;
  margin: 0 -55px;
}
@media (max-width: 768px) {
  .readalso-slider {
    padding: 0 28px 25px;
    margin: 0 -20px;
  }
}

.banner-ctt {
		border-radius: 20px;
		width: 100%;
		max-width: 415px;
		padding: 80px 37px 22px;
		background: #fff;
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		overflow: hidden;
		position: fixed;
		right: 15px;
		top: 47%;
		z-index: 10;
    border: 3px solid #FF6868;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
	}
  .banner-ctt--visible {
    opacity: 1;
    pointer-events: auto;
  }
	.banner-ctt--article {
		position: relative;
		top: auto;
		right: auto;
		display: flex;
		max-width: 100%;
		border-radius: 20px;
		padding: 60px 20px 42px;
		margin: 10px 0;
    opacity: 1 !important;
    pointer-events: auto !important;
	}
	.banner-ctt__close {
		position: absolute;
		top: 9px;
		right: 9px;
		cursor: pointer;
	}
	.banner-ctt__min {
		position: absolute;
		top: 18px;
		left: 0;
		background: linear-gradient(180deg, #ff2e2e 0%, #ff6868 100%);
		border-radius: 0 40px 40px 0;
		padding: 10px 15px;
		display: flex;
		align-items: center;
		gap: 11px;
	}
	.banner-ctt__min span {
		font-family: "Montserrat";
		font-weight: 600;
		font-size: 18px;
		color: #fff;
	}
	.banner-ctt__text {
		font-family: "Montserrat";
		font-weight: 800;
		font-size: 30px;
		text-align: center;
		color: #000;
		margin-bottom: 15px;
	}
	.banner-ctt--article .banner-ctt__text {
		font-size: 36px;
		    margin: 20px 0;
	}
	.banner-ctt__btn {
		font-family: "Montserrat";
		font-weight: 600;
		font-size: 20px;
		line-height: 1.2;
		color: #fff;
		border-radius: 40px;
		background: linear-gradient(101deg, #ff2e2e 0%, #ff6868 100%);
		padding: 15px 38px;
		text-decoration: none;
	}

@media (max-width: 768px) {
  .banner-ctt {
    right: 50%;
    transform: translateX(50%);
  }
  .banner-ctt--article {
		padding-top: 80px !important;
	}
	.banner-ctt--article .banner-ctt__text {
		font-size: 30px !important;
	}
	.banner-ctt {		
		top: 54%;		
	}
}
.window-test-result__wrapper-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.posts-content table.fix tr {   
    grid-template-columns: 80% 20%;
}

.not-found__wrapper-button {
  & .btn {
    width: fit-content;
  }
}

@media (max-width: 768px) {
  .not-found__wrapper-button {
    display: flex;
    justify-content: center;
  }
}

section.sc-page-test.bg {
    align-items: center;
    background-size: cover;
    background-position: center 12vh;
    background-repeat: no-repeat;
}
section.sc-page-test.bg .sc-page-test__wrapper-title {
    margin-bottom: 73rem;
}
.sc-page-test__wrapper-eye.descnone, section.sc-page-test.bg  .sc-page-test__background-mob, section.sc-page-test.bg .sc-page-test__container-start::after {
	display: none;
}
section.sc-page-test .sc-page-test__container-start {
    padding-left: 0;
}

@media (min-width: 768px) {

	section.sc-page-test.bg {
		height: 90vh;
		display: flex; 
	}
}
@media (max-width: 768px) {
	section.sc-page-test.bg{
		display:block;
	}
	section.sc-page-test.bg {
		background-position: center;
	}
	section.sc-page-test.bg .sc-page-test__background-mob{
		display:none
	} 
	section.sc-page-test.bg {
		padding-top: 17rem !important;
		padding-bottom: 253rem;
	}
	section.sc-page-test.bg .sc-page-test__wrapper-title {
		margin-bottom: 10rem;
	}
	section.sc-page-test .sc-page-test__container-start {
		padding-top: 0;
	}
	section.sc-page-test.bg .bg_w {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 21.26%, rgba(255, 255, 255, 0) 35.87%);
	}

}
.faq_form_block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.faq_form_block .tab-items {
   /* width: 67.5%;*/
   width: 100%;
}
.faq_form_block .faq_form {
   /* width: 32%;*/
	display: none;
}
.faq_form {
    border-radius: 32rem;
    background: #fff;
    border: 1px solid #ff2e2e;
    padding: 40rem 40rem 0 40rem;
}
.faq_form_title {
    font-weight: 700;
    font-size: 24rem;
    line-height: 26px;
    text-align: center;
    color: #333;
}
.faq_form_text {
    text-align: center;
    margin:8rem 0 37rem 0;
}
.input_form {
    margin-bottom: 20rem;
}
.wpcf7 input[type="text"], .wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7-textarea{
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: rgba(51, 51, 51, 0.7);
    background: #f8eeee80;
    border-radius: 10px;
    padding: 10rem 10rem 10rem 27rem;
}
.wpcf7 input[type="text"], .wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7-textarea{
    height: 50rem;
}
.wpcf7-textarea{
    height: 175rem;
    padding-top: 20rem;
}
.wpcf7-acceptance{
    display: block;
    margin-bottom: 7rem;
}
.wpcf7-acceptance span.wpcf7-list-item-label {
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    position: relative;
    padding-left: 31px;
    display: block;
}
.wpcf7-acceptance span.wpcf7-list-item-label a {
    display: inline;
	color: #333;
}
.wpcf7-acceptance input {
    display: none;
}
.wpcf7-acceptance .wpcf7-list-item-label:before, .wpcf7-acceptance .wpcf7-list-item-label:after {
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 4px;
}
.wpcf7-acceptance .wpcf7-list-item-label:before{
    border: 1px solid #333;
    border-radius: 2px;
}
.wpcf7-acceptance .wpcf7-list-item-label:after{
    content: '✔';
    display: flex;
    justify-content: center;
    align-items: center;
	cursor:pointer;
	opacity:0
}
.wpcf7-acceptance input:checked + .wpcf7-list-item-label:after{
	opacity:1
}
.faq_form .wpcf7-submit {
    width: 245px;
    margin: auto;
}
@media (max-width: 1465px) {
	.faq_form_block .tab-items {
		/*width: 58.5%;*/
		width: 100%;
	}
	.faq_form_block .faq_form {
		width: 38%;	
	}
}
@media (min-width: 992px) {
	.faq_btn_mobile {
		display: none;
	}
}
@media (max-width: 992px) {
	.faq_form_block {
		flex-direction: column;
	}
	.faq_form_block .tab-items, .faq_form_block .faq_form {
		width:100%
	}
	.faq_btn_mobile {
		width: 100%;
		display: flex;
		justify-content: center;
		margin: 0 0 40rem 0;
	}
	.faq_form_block+.sc-faq__wrapper-button {
		display: none;
	}
}
@media (max-width: 768px){
	.faq_form {
		padding: 30rem 25rem 0 25rem;
	}
	.faq_form_title {
		font-size: 21rem;
	}
}

#breadcrumbs {
        display: none;
        position: absolute;
        left: -9999px;
}

.sc-litlist {
  overflow: hidden;
}
.sc-litlist--gradient {
        padding-top: 3vw;
}
@media (max-width: 992px) {
  .sc-litlist--gradient {
    padding-top: 5vw;
  }
}
@media (max-width: 768px) {
    .header__wrapper-button .btn {
        white-space: nowrap;
    }
    .sc-main-slider__background--mobile {
        background-size: contain;
    }
    .sc-litlist--gradient {
        padding-top: 7.5vw;
    }
    .sc-litlist__wrapper-content li {
        font-size: 3.8625vw;
    }
}
@media (max-width: 400px) {
    .sc-main-slider__background--mobile {
        background-size: cover;
    }
}


.section-9 {
			padding: 60px 0;
			background: linear-gradient(31deg, #f2f1f1 0%, #ffebeb 100%);
		}
		.yamap-wrapper {
			display: flex;
			height: 790px;
			gap: 30px;
		}
		.yamap-left {
			width: 100%;
			max-width: 400px;
			display: flex;
			flex-direction: column;
		}
		.yamap-right {
			width: 100%;
			border-radius: 5px;
			overflow: hidden;
			border: 1px solid #ff2e2e;
		}
		.yamap-title-wrapper {
			/* display: flex; */
			gap: 15px;
			margin-bottom: 50px;
		}
		.yamap-title {
			font-weight: 700;
			font-size: 36px;
			color: #101010;
		}
		.yamap-select-city-wrapper {
			position: relative;
			display: inline;
		}
		.yamap-select-city-current {
			font-weight: 700;
			font-size: 36px;
			color: #b62b32;
			cursor: pointer;
			position: relative;
			padding-right: 30px;
			text-wrap-mode: nowrap;
		}
		.yamap-select-city-current::after {
			content: url('data:image/svg+xml,<svg width="19" height="17" viewBox="0 0 19 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.366 16.5C9.98112 17.1667 9.01888 17.1667 8.63398 16.5L0.406734 2.25C0.0218329 1.58333 0.502958 0.749998 1.27276 0.749998L17.7272 0.75C18.497 0.75 18.9782 1.58333 18.5933 2.25L10.366 16.5Z" fill="%23B62B32" /></svg>');
			position: absolute;
			top: 50%;
			right: 0;
			transform: translateY(-50%);
		}
		.yamap-select-city-label {
			font-weight: 400;
			font-size: 18px;
			color: #989090;
		}
		.yamap-select-city-list-wrapper {
			height: 500px;
			overflow-y: scroll;
			background-color: #fff;
			box-shadow: 5px 5px 10px 0px rgb(0 0 0 / 20%);
			padding: 15px 20px;
			border-radius: 10px;
			position: absolute;
			top: 100%;
			left: 0;
			z-index: 1;
		}
		.yamap-select-city-list {
			width: fit-content;
			list-style: none;
		}
		.yamap-select-city-list li {
			cursor: pointer;
			white-space: nowrap;
			font-size: 16px;
		}
		.yamap-select-city-list li + li {
			margin-top: 5px;
		}
		.yamap-select-city-list li:hover {
			color: #b62b32;
		}
		.yamap-left-form {
			width: 100%;
			margin-bottom: 15px;
		}
		.yamap-left-form-input {
			width: 100%;
			border: 1px solid #ff2e2e;
			border-radius: 5px;
			font-weight: 400;
			font-size: 18px;
			color: #101010;
			padding: 26px 70px 26px 22px;
			background-image: url('data:image/svg+xml,<svg width="47" height="47" viewBox="0 0 47 47" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M41.125 39.6562L30.1094 28.6406M7.34375 19.0938C7.34375 26.3943 13.262 32.3125 20.5625 32.3125C27.863 32.3125 33.7812 26.3943 33.7812 19.0938C33.7812 11.7932 27.863 5.875 20.5625 5.875C13.262 5.875 7.34375 11.7932 7.34375 19.0938Z" stroke="%23B62B32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /></svg>');
			background-repeat: no-repeat;
			background-position: right 18px center;
			background-color: #fff;
		}
		.yamap-left-form-input::placeholder {
			color: #989090;
		}
		.yamap-left-form-input:focus {
			border: 1px solid #ff2e2e;
			outline: none;
		}
		.yamap-list-wrapper {
			border: 1px solid #ff2e2e;
			border-radius: 5px;
			height: 100%;
			overflow-y: scroll;
			overflow-x: hidden;
			background-color: #fff;
		}
		.yamap-list-item {
			padding: 23px 30px;
			cursor: pointer;
		}
		.yamap-list-item:not(:last-of-type) {
			border-bottom: 1px solid #989090;
		}
		.yamap-list-item:hover {
			background-color: #00000026;
		}
		.yamap-list-item-title {
			font-weight: 600;
			font-size: 18px;
			color: #101010;
			margin-bottom: 9px;
		}
		.yamap-list-item-address {
			font-weight: 400;
			font-size: 18px;
			color: #101010;
			margin-bottom: 9px;
		}
		.yamap-list-item-schedule {
			font-weight: 400;
			font-size: 18px;
			color: #989090;
			margin-bottom: 9px;
		}
		.yamap-list-item-phone {
			font-weight: 400;
			font-size: 18px;
			color: #989090;
			text-decoration: none;
			word-break: break-all;
		}
		.yamap-list-item-phone span {
			text-decoration: none;
		}
		@media(max-width: 992px) {
			.yamap-wrapper {
				flex-direction: column;
				height: auto;
			}
			.yamap-left {
				order: 1;
				max-height: 700px;
				max-width: 100%;
			}
			.yamap-right {
				order: 0;
				width: 100%;
				max-width: 100%;
				height: 360px;
			}
			.yamap-title-wrapper {
				flex-direction: column;
				gap: 0;
				margin-bottom: 20px;
			}
			.yamap-title {
				font-size: 24px;
			}
			.yamap-select-city-current {
				font-size: 24px;
			}
			.yamap-left-form-input {
				font-size: 16px;
				padding-top: 20px;
				padding-bottom: 20px;
			}
			.yamap-list-item-title {
				font-size: 16px;
				margin-bottom: 5px;
			}
			.yamap-list-item-address {
				font-size: 16px;
				margin-bottom: 5px;
			}
			.yamap-list-item-schedule {
				font-size: 16px;
				margin-bottom: 5px;
			}
			.yamap-list-item-phone {
				font-size: 16px;
				margin-bottom: 5px;
			}
		}










@media only screen and (min-width:1600px){
  .main-link {
    font-size: 19rem;
    line-height: 24rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}
  /* styles for browsers larger than 1440px; */
}



@media only screen and (min-width:1400px){
  .main-link {
    font-size: 17rem;
    line-height: 24rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}
  /* styles for browsers larger than 1440px; */
}





