/* ==========  variable  ========== */

:root {
  --container-width: 1432px;
  --conteiner-padding: 0px 16px;
  --font-family: "Arial";
}

/*==========  reset  ==========*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

/* ==========  fonts  ========== */

@font-face {
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src:
    local(""),
    url("../font/ArialMT.woff2") format("woff2");
}

@font-face {
  font-family: "Arial";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src:
    local(""),
    url("../font/Arial-BoldMT.woff2") format("woff2");
}

/* ==========  hover  ========== */

/*btn-hover-scale*/

.btn-hover-scale {
  transition: transform 0.3s ease 0s;
}

.btn-hover-scale:hover {
  transform: scale(0.97);
}

.s-wrapper {
  font-family: var(--font-family);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  overflow: clip;
  position: relative;
}

.s-container {
  max-width: var(--container-width);
  padding: var(--conteiner-padding);
  margin: 0 auto;
}

.h1-new-s {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}

.h2-new-s {
  color: #272727;
  font-size: 26px;
  font-weight: 700;
  line-height: 130%;
}

/* ==========  page-styles  ========== */

.p-breadcrumbs {
  background: #242424;
  padding: 18px 0px;
}

.p-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
}

.p-breadcrumbs__item {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: #fff;
  position: relative;
}

.p-breadcrumbs__item:not(:last-child):after {
  content: "";
  position: absolute;
  top: 5px;
  right: 10px;
  width: 20px;
  height: 10px;
  background: url("../img/icon/arrow-bread.svg") no-repeat;
}

.p-breadcrumbs__item:last-child {
  pointer-events: none;
  color: #8b8b8b;
}

.p-breadcrumbs__item:not(:last-child) {
  padding-right: 40px;
}

/*=====  p-first  ======*/

.p-first__wrapper {
  padding: 104px 0px 91px 0px;
}

.p-first__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 618px;
}

.p-first__title {
  margin-bottom: 19px;
}

.p-first__description {
  margin-bottom: 89px;
}

.p-first__description p,
.p-first__description span,
.p-first__description li,
.p-first__description a {
  font-size: 17px;
  font-weight: 400;
  line-height: 140%;
  color: #fff;
}

.p-first__btn {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  padding: 14.5px 86px 14.5px 24px;
  background: #ba102c;
  position: relative;
}

.p-first__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 20px;
  height: 10px;
  background: url("../img/icon/arrow-right-white.svg") no-repeat;
  background-size: contain;
}

/*=====  .p-catalog   =====*/

.p-catalog {
  padding-top: 50px;
  padding-bottom: 86px;
  background: #f3f3f3;
}

.p-catalog__title {
  margin-bottom: 45px;
}

.p-catalog__list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.p-catalog__item {
  width: calc(33.333% - 10.666px);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.p-catalog__content {
  padding: 48px 40px 0px 40px;
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.p-catalog__hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease 0s;
}

.p-catalog__hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.p-catalog__item:hover .p-catalog__hover {
  opacity: 1;
}

.p-catalog__hover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-catalog__name {
  color: #272727;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 14px;
  max-width: 330px;
  position: relative;
  z-index: 1;
}

.p-catalog__item:hover .p-catalog__name {
  color: #fff;
}

.p-catalog__description {
  color: #7e7e7e;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
  position: relative;
  z-index: 1;
}

.p-catalog__item:hover .p-catalog__description {
  color: #fff;
}

.p-catalog__img {
  height: 271px;
}

.p-catalog__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-catalog__bottom {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}

.p-catalog__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e7e7e7;
  transition: all 0.2s ease 0s;
}

.p-catalog__item:hover .p-catalog__bottom::before {
  opacity: 0;
}

.p-catalog__order {
  flex: 50%;
  color: #ba102c;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  padding: 14px 73px 15px 21px;
  border-right: 1px solid #e7e7e7;
  transition: all 0.3s ease 0s;
  text-align: right;
}

.p-catalog__item:hover .p-catalog__order {
  background: #ba102c;
  color: #fff;
}

.p-catalog__link {
  color: #272727;
  flex: 50%;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  position: relative;
  padding: 14px 42px 15px 21px;
  transition: all 0.3s ease 0s;
}

.p-catalog__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 10px;
  background: url("../img/icon/arrow-right-red.svg") no-repeat;
  background-size: contain;
  transition: all 0.2s ease 0s;
}

.p-catalog__link:hover {
  background: #ba102c;
  color: #fff;
}

.p-catalog__link:hover::after {
  filter: brightness(0) invert(1);
}

.p-catalog__link:hover ~ .p-catalog__order {
  color: #ba102c;
  background: #fff;
}

/*=====  p-specification  =====*/

.p-specification {
  background: #323232;
  margin-bottom: 75px;
  padding-top: 50px;
  padding-bottom: 35px;
}

.p-specification__title {
  margin-bottom: 50px;
  color: #fff;
}

.p-specification-accordion__item {
  transition: all 0.3s ease 0s;
}

.p-specification-accordion__item._show {
  background: #3f3f3f;
}

.p-specification-accordion__item:first-child {
  border-top: 1px solid #424242;
}

.p-specification-accordion__item:not(:last-child) {
  border-bottom: 1px solid #424242;
}

.p-specification-accordion__title {
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  line-height: 130%;
  padding: 42px 46px 30px 101px;
  position: relative;
  cursor: pointer;
}

.p-specification-accordion__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 48px;
  transform: translateY(-50%);
  width: 33px;
  height: 34px;
  background: url("../img/pech-page/specification-block/icon/arrow.svg") no-repeat;
  background-size: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease 0s;
}

.p-specification-accordion__item._show .p-specification-accordion__title::before {
  filter: none;
}

.p-specification-accordion__content {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  max-height: 0;
  transition: max-height 0.3s ease 0s;
  overflow: hidden;
  padding: 0px 49px 0px 49px;
}

.p-specification-accordion__item._show .p-specification-accordion__content {
  margin-bottom: 50px;
}

.p-specification-accordion__description {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 526px;
}

.p-specification-accordion__description p,
.p-specification-accordion__description span,
.p-specification-accordion__description a,
.p-specification-accordion__description li {
  color: #acacac;
  font-size: 17px;
  font-weight: 400;
  line-height: 140%;
}

.p-specification-accordion__img {
  max-width: 643px;
  height: 240px;
  transform: translateY(100%);
  transition: transform 0.3s ease 0.3s;
  flex-shrink: 0;
}

.p-specification-accordion__item._show .p-specification-accordion__img {
  transform: translateY(0);
}

.p-specification-accordion__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*=====  p-check  =====*/

.p-check {
  margin-bottom: 134px;
}

.p-check__list {
  margin-bottom: 48px;
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}

.p-check__item {
  width: calc(50% - 8.5px);
  padding-left: 72px;
  position: relative;
  color: #323232;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.p-check__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: url("../img/pech-page/specification-block/icon/arrow.svg") no-repeat;
  background-size: contain;
}

.p-check__text {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-right: 55px;
}

.p-check__text p,
.p-check__text span,
.p-check__text a,
.p-check__text li {
  color: #323232;
  font-size: 17px;
  font-weight: 400;
  line-height: 140%;
}

/*=====  p-why  =====*/

.p-why {
  background: #323232;
  padding-top: 60px;
  padding-bottom: 75px;
}

.p-why__title {
  margin-bottom: 26px;
  color: #fff;
}

.p-why__description {
  color: #dcdcdc;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 26px;
  padding-right: 5px;
}

.p-why__sub-title {
  color: #dcdcdc;
  font-size: 17px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 60px;
}

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

.p-why__item {
  border: 1px solid #424242;
  padding: 50px 27px 51px 84px;
  position: relative;
  width: 33.333%;
  cursor: default;
  min-height: 206px;
}

.p-why__item::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 30px;
  width: 34px;
  height: 34px;
  background: url("../img/icon/check-red.svg") no-repeat;
  background-size: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease 0s;
}

.p-why__item:hover::before {
  filter: none;
}

.p-why__text {
  color: #d0d0d0;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
}

.p-why__info {
  color: #dcdcdc;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
  max-width: 1340px;
}

/*=====  p-callback =====*/

.p-callback {
  background-color: #f6f6f6;
  background-image: url("/local/templates/new_gkmp32/production-new/assets/img/card-page/callback-block/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 102px;
  padding-bottom: 123px;
  position: relative;
  overflow: hidden;
}

.p-callback__title {
  color: #272727;
  margin-bottom: 13px;
  position: relative;
  z-index: 1;
}

.p-callback__text {
  color: #272727;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.p-callback__img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 859px;
}

.p-callback__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-form {
  position: relative;
  z-index: 1;
}

.p-callback .p-form {
  max-width: 878px;
}

.p-form__group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 63px;
}

.p-form__input {
  width: calc(33.333% - 13.333px);
  padding: 16px;
  color: #272727;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}

.p-form__input::-moz-placeholder {
  color: #272727;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  font-family: Arial;
}

.p-form__input::placeholder {
  color: #272727;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  font-family: Arial;
}

.p-form__input._error {
  box-shadow: 0px 0px 10px 2px red;
  color: red;
}

.p-form__submit {
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  color: #fff;
  background: #ba102c;
  padding: 16px;
  text-align: center;
  width: calc(33.333% - 13.333px);
}

.p-form-policy {
  position: relative;
}

.p-form-policy__label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 1px solid #ba102c;
  cursor: pointer;
}

.p-form-policy__label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 12px;
  background: url("../img/icon/arrow-checkbox-red.svg") no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}

.p-form-policy._error .p-form-policy__label {
  box-shadow: 0px 0px 10px 2px red;
}

.p-form-policy__input {
  display: none;
}

.p-form-policy__input:checked + .p-form-policy__label::after {
  opacity: 1;
}

.p-form-policy__text {
  color: #272727;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  padding-left: 35px;
}

.p-form-policy__text a {
  color: #272727;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  display: inline;
  text-decoration: underline;
}

.p-first._position .p-first__description {
  margin-bottom: 111px;
}

.p-first._position .p-first__btn {
  padding: 14.5px 75px 14.5px 24px;
}

/*=====  z-demo  =====*/

.z-demo {
  padding-top: 39px;
  padding-bottom: 63px;
}

.z-demo__wrapper {
  display: flex;
  gap: 151px;
  justify-content: space-between;
  align-items: flex-start;
}

.z-demo__info {
  padding-top: 53px;
  padding-bottom: 78px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.z-demo__description {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.z-demo__description p {
  color: #323232;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
}

.z-demo__description span {
  color: #323232;
  font-size: 17px;
  font-weight: 700;
  line-height: 130%;
}

.z-demo-detail {
  max-width: 678px;
  width: 100%;
  position: relative;
  flex-shrink: 0;
}

.z-demo-detail__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.z-demo-detail-points__item {
  position: absolute;
  display: flex;
  border-radius: 0px 44px 44px 0px;
  background: #fff;
  align-items: center;
  transition: all 0.3s ease 0s;
}

.z-demo-detail-points__item._show {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

.z-demo-detail-points__item:nth-child(1) {
  top: 402px;
  left: 23px;
}

.z-demo-detail-points__item:nth-child(2) {
  top: 192px;
  left: 283px;
}

.z-demo-detail-points__item:nth-child(3) {
  top: 243px;
  left: 292px;
}

.z-demo-detail-points__item:nth-child(4) {
  top: 263px;
  left: 339px;
}

.z-demo-detail-points__item:nth-child(5) {
  bottom: 197px;
  right: 39px;
}

.z-demo-detail-points__item:nth-child(6) {
  bottom: 11px;
  right: 39px;
}

.z-demo-detail-points__item:nth-child(7) {
  bottom: 153px;
  right: 243px;
}

.z-demo-detail-points__item:nth-child(8) {
  bottom: 104px;
  right: 32px;
}

.z-demo-detail-points__name {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  padding: 9px 0px 11px 0px;
  width: 0;
  transition: all 0.3s ease 0s;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 43px;
  background: #fff;
  border-radius: 44px 0px 0px 44px;
  opacity: 0;
  white-space: nowrap;
}

.z-demo-detail-points__item._show .z-demo-detail-points__name {
  width: auto;
  padding: 9px 15px 11px 23px;
  box-shadow: -10px 0px 12px 0px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.z-demo-detail-points__num {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  background: #aaa;
  border-radius: 50%;
  cursor: pointer;
  width: 43px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease 0s;
}

.z-demo-detail-points__item._show .z-demo-detail-points__num {
  background: #ba102c;
}

/* =====  z-info  =====*/

.z-info {
  background: #e7e7e7;
  padding-top: 75px;
  padding-bottom: 102px;
}

.z-info__list {
  display: flex;
  flex-direction: column;
}

.z-info__item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
.z-info__item:not(:first-child) {
  padding-top: 55px;
}
.z-info__item:not(:last-child) {
  border-bottom: 1px solid rgba(205, 205, 205, 0.95);
  padding-bottom: 55px;
}

.z-info__item:first-child {
  padding-bottom: 63px;
  max-width: 1250px;
  gap: 45px;
}

.z-info__item:last-child {
  padding-top: 55px;
}

.z-info__text {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.z-info__item:last-child .z-info__text {
  flex-direction: column;
  gap: 18px;
}

.z-info__item:first-child .z-info__text p {
  width: calc(50% - 51px);
}

.z-info__text p {
  color: #323232;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
}

.z-info__btn {
  color: #272727;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  padding: 14.5px 74px 14.5px 24px;
  position: relative;
  border: 1px solid #ba102c;
}

.z-info__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 20px;
  height: 10px;
  background: url("../img/icon/arrow-right-black.svg") no-repeat;
}

/*=====  z-view  =====*/

.z-view {
  padding-top: 51px;
  padding-bottom: 85px;
}

.z-view__title {
  margin-bottom: 40px;
}

.z-view__item {
  padding: 56px 146px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e7e7e7;
  background: #fff;
  height: auto;
  position: relative;
}

.z-view__item::after {
  content: "";
  position: absolute;
  bottom: 40px;
  right: 41px;
  width: 32px;
  height: 32px;
  background: url("../img/icon/fancy-icon.svg") no-repeat;
  background-size: contain;
}

.z-view__img {
  height: 402px;
}

.z-view__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.z-view-slider {
  margin-bottom: 42px;
  position: relative;
}

.z-view-slider-nav__prev {
  left: -29px;
}

.z-view-slider-nav__prev::after {
  background: url("../img/icon/arrow-small-left.svg") no-repeat;
  background-size: contain;
}

.z-view-slider-nav__prev,
.z-view-slider-nav__next {
  background: #272727;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease 0s;
}

.z-view-slider-nav__prev::after,
.z-view-slider-nav__next::after {
  content: "";
  width: 24px;
  height: 24px;
  transform: none;
}

.z-view-slider-nav__prev:hover,
.z-view-slider-nav__next:hover {
  background: #ba102c;
}

.z-view-slider-nav__next {
  right: -29px;
}

.z-view-slider-nav__next::after {
  background: url("../img/icon/arrow-small-right.svg") no-repeat;
  background-size: contain;
}

.z-view-info__text {
  color: #323232;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 60px;
}

.z-view-info__sub-title {
  color: #323232;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 35px;
}

.z-view-info__list {
  display: flex;
  flex-direction: column;
}

.z-view-info__item {
  color: #323232;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
  padding: 19px 19px 22px 16px;
  border-right: 1px solid #e9e9e9;
}

.z-view-info__item:first-child {
  border-top: 1px solid #ba102c;
}

.z-view-info__item span {
  color: #ba102c;
}

.z-view-info__item:nth-child(odd) {
  background: #fff;
}

.z-view-info__item:nth-child(even) {
  background: #f5f5f3;
}

.z-view-info-small {
  padding: 5px 16px 14px 16px;
  background: #f5f5f3;
  border-right: 1px solid #e9e9e9;
}

.z-view-info-small__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.z-view-info-small__item {
  color: #323232;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

.z-view-info-small__item span {
  color: #ba102c;
}

.p-specification._position .p-specification__title {
  margin-bottom: 37px;
}

.p-specification._position .p-specification-accordion__description {
  max-width: 607px;
}

.p-specification._position {
  padding-bottom: 47px;
  margin-bottom: 0;
}

/*=====  z-product  ======*/

.z-product {
  padding-bottom: 103px;
  padding-top: 51px;
}

.z-product__title {
  margin-bottom: 51px;
}

.z-product-accordion {
  position: relative;
  transition: all 0.6s ease 0s;
}

.z-product-accordion__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.z-product-accordion__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.z-product-accordion__title {
  color: #323232;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  padding: 28px 80px 27px 33px;
  position: relative;
  background: #f8f8f8;
  max-width: 693px;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}

.z-product-accordion__title::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 78px;
  height: 100%;
  background: #e3e3e3;
  pointer-events: none;
}

.z-product-accordion__title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("../img/icon/arrow-small-right.svg") no-repeat;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
  transition: all 0.3s ease 0s;
  filter: brightness(0%);
  opacity: 0.6;
}

.z-product-accordion__item._show .z-product-accordion__title::before {
  transform: translateY(-50%) rotate(180deg);
  filter: none;
  opacity: 1;
}

.z-product-accordion__item._show .z-product-accordion__title::after {
  background: #a00a22;
}

.z-product-accordion__item._show .z-product-accordion__title {
  background: #ba102c;
  color: #fff;
}

.z-product-accordion-content {
  max-width: 693px;
  width: 100%;
  height: 0;
  transition: all 0.3s ease 0s;
  position: absolute;
  top: 0;
  right: 0;
  overflow: auto;
}

.z-product-accordion-content-top {
  display: flex;
}

.z-product-accordion-content-top__img {
  padding: 25px 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1px solid #dfdfdf;
}

.z-product-accordion-content-top__img::after {
  content: "";
  position: absolute;
  bottom: 11px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: url("../img/icon/fancy-icon-silver.svg") no-repeat;
}

.z-product-accordion-content-top__info {
  padding: 23px 24px 27px 33px;
  border-top: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  display: flex;
  gap: 24px;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
}

.z-product-accordion-content-top__name {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  flex-grow: 1;
}

.z-product-accordion-content-top__btn {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  padding: 14.5px 63px 14.5px 24px;
  position: relative;
  background: #ba102c;
}

.z-product-accordion-content-top__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 20px;
  height: 10px;
  background: url("../img/icon/arrow-right-white.svg") no-repeat;
}

.z-product-accordion-content-table__list {
  display: flex;
  flex-direction: column;
}

.z-product-accordion-content-table__item {
  display: flex;
  border-left: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
}

.z-product-accordion-content-table__item:nth-child(odd) {
  background: #fff;
}

.z-product-accordion-content-table__item:nth-child(even) {
  background: #e9e9e9;
}

.z-product-accordion-content-table__item:last-child {
  border-bottom: 1px solid #dfdfdf;
}

.z-product-accordion-content-table__name {
  width: 69.9%;
  padding: 9px 8px 9px 28px;
  min-height: 60px;
  display: flex;
  align-items: center;
  color: #323232;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

.z-product-accordion-content-table__value {
  width: 30.1%;
  padding: 9px 16px;
  border-left: 1px solid #dfdfdf;
  display: flex;
  align-items: center;
  color: #323232;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

.z-product-accordion-content-table-top {
  border-right: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-bottom: 1px solid #ba102c;
}

.z-product-accordion-content-table-top__list {
  display: flex;
}

.z-product-accordion-content-table-top__item {
  padding: 26.5px 28px 28.5px 26px;
  color: #323232;
  font-size: 17px;
  font-weight: 700;
  line-height: 130%;
}

.z-product-accordion-content-table-top__item:first-child {
  width: 70%;
  border-right: 1px solid #dfdfdf;
}

.z-product-accordion-content-table-top__item:last-child {
  width: 30%;
}

.p-back__wrapper {
  border: 1px solid #f2f2f2;
  padding: 16px 67px 17px 29px;
  width: 100%;
}

.p-back__btn {
  position: relative;
  color: #959595;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  display: inline;
  padding-left: 38px;
  transition: color 0.3s ease 0s;
}

.p-back__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 10px;
  background: url("../img/icon/arrow-left-silver.svg") no-repeat;
  transition: all 0.2s ease 0s;
}

.p-back__btn:hover {
  color: #000;
}

.p-back__btn:hover::before {
  filter: brightness(0);
}

.c-first {
  margin-bottom: 33px;
}

.c-first__wrapper {
  display: flex;
}

.c-first-slider {
  max-width: 708px;
  width: 100%;
  border-left: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  display: flex;
  flex-direction: column;
  height: auto;
}

.c-first-slider-big {
  height: 498px;
  flex-grow: 1;
}

.c-first-slider-big__block {
  height: 100%;
}

.c-first .c-first-slider-big__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-first-slider-big__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-first-slider-tumb {
  height: 137px;
  display: flex;
}

.c-first-slider-tumb__block {
  height: 100%;
  width: 100%;
}

.c-first-slider-tumb__item {
  cursor: pointer;
  position: relative;
}

.c-first-slider-tumb__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  transition: all 0.3s ease 0s;
  pointer-events: none;
}

.c-first-slider-tumb__item.swiper-slide-thumb-active::before {
  background: rgba(186, 16, 44, 0.15);
}

.c-first-slider-tumb__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-first-slider-tumb-nav {
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  border-left: 1px solid #f2f2f2;
}

.c-first-slider-tumb-nav__prev {
  border-bottom: 1px solid #f2f2f2;
}

.c-first-slider-tumb-nav__prev::after {
  background: url("../img/icon/arrow-card-left.svg") no-repeat;
  background-size: contain;
}

.c-first-slider-tumb-nav__prev,
.c-first-slider-tumb-nav__next {
  width: 74px;
  height: 69px;
  position: relative;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.c-first-slider-tumb-nav__prev:hover,
.c-first-slider-tumb-nav__next:hover {
  background: #ba102c;
}

.c-first-slider-tumb-nav__prev:hover::after,
.c-first-slider-tumb-nav__next:hover::after {
  filter: brightness(0) invert(1);
}

.c-first-slider-tumb-nav__prev::after,
.c-first-slider-tumb-nav__next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 6.25px;
  height: 12.5px;
  transition: all 0.2s ease 0s;
}

.c-first-slider-tumb-nav__next::after {
  background: url("../img/icon/arrow-card-right.svg") no-repeat;
  background-size: contain;
}

.c-first-detail {
  padding: 46px 41px 44px 44px;
  max-width: 692px;
  width: 100%;
  border-right: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  border-left: 1px solid #f2f2f2;
  display: flex;
  flex-direction: column;
}

.c-first-detail__title {
  color: #323232;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 42px;
}

.c-first-detail__description {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 13px;
  max-width: 574px;
}

.c-first-detail__description p,
.c-first-detail__description span,
.c-first-detail__description a,
.c-first-detail__description li {
  color: #323232;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
}

.c-first-detail__full {
  color: #ba102c;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  text-decoration-line: underline;
  margin-bottom: 42px;
  display: inline-block;
}

.c-first-detail-order {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 41px;
  flex-wrap: wrap;
  padding-right: 35px;
}

.c-first-detail-order__bookmark {
  color: #ba102c;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
}

.c-first-detail-order__text {
  color: #323232;
  font-size: 13px;
  font-weight: 400;
  line-height: 130%;
  position: relative;
  padding-left: 26px;
  max-width: 336px;
}

.c-first-detail-order__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: url("../img/card-page/first-block/icon/icon-text.svg") no-repeat;
}

.c-first-detail-bottom {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.c-first-detail-bottom__order {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  padding: 18.5px 48px;
  background: #ba102c;
  border: 1px solid #ba102c;
  transition: all 0.3s ease 0s;
}

.c-first-detail-bottom__order:hover {
  background: #fff;
  color: #ba102c;
}

.c-first-detail-bottom__offer {
  border: 2px solid #ba102c;
  padding: 18.5px 39.5px;
  color: #ba102c;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  background: #fff;
  transition: all 0.3s ease 0s;
}

.c-first-detail-bottom__offer:hover {
  background: #ba102c;
  color: #fff;
}

/*=====  c-info  ======*/

.c-info {
  margin-bottom: 68px;
}

.c-info__wrapper {
  position: relative;
  padding-top: 128px;
}

.c-info-tab__block {
  background: rgba(255, 255, 255, 0.85);
  width: 100%;
  position: absolute;
  top: 0;
  padding: 20.5px 5px;
}

.c-info-tab__block._fixed-top {
  position: fixed;
  top: 0;
  z-index: 9;
}

.c-info-tab__list {
  align-items: flex-end;
}

.c-info-tab__item {
  padding-bottom: 12.5px;
  min-height: 46.5px;
  width: auto !important;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.c-info-tab__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 2px dashed #787878;
  transition: all 0.3s ease 0s;
}

.c-info-tab__item.swiper-slide-thumb-active::after {
  border-bottom: 6px solid #ba102c;
}

.c-info-tab__name {
  color: #787878;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  transition: all 0.3s ease 0s;
}

.c-info-tab__item.swiper-slide-thumb-active .c-info-tab__name {
  color: #ba102c;
  font-size: 30px;
}

.c-info-con {
  overflow: hidden;
  padding: 0 26px;
  margin: 0 -26px;
}

.c-info-con__slider {
  overflow: visible;
}

.c-info-con__item {
  background: #fff;
}

.c-info-con-desc__text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.c-info-con-desc__text p,
.c-info-con-desc__text span,
.c-info-con-desc__text a,
.c-info-con-desc__text li {
  color: #323232;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
}

.c-info-con-desc__text:not(:last-child) {
  margin-bottom: 29px;
}

.c-info-con-desc__text:nth-of-type(2) {
  margin-bottom: 84px;
}

.c-info-con-desc__text:nth-of-type(4) {
  margin-bottom: 65px;
}

.c-info-con-desc__title {
  color: #000;
  font-size: 25px;
  font-weight: 700;
  line-height: 130%;
}

.c-info-con-desc__title:not(:last-child) {
  margin-bottom: 16px;
}

.c-info-con-desc__list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 56px;
}

.c-info-con-desc__item {
  color: #323232;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
  padding: 27.5px 48px;
  background: #f8f8f8;
  position: relative;
}

.c-info-con-desc__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 16px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid rgb(186, 16, 44);
}

.c-info-con-desc__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 21px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(186, 16, 44);
}

.c-info-con-desc-slider {
  margin-bottom: 59px;
  position: relative;
}

.c-info-con-desc-slider__img {
  display: inline-block;
  height: 460px;
  width: 100%;
  position: relative;
}

.c-info-con-desc-slider__img::after {
  content: "";
  position: absolute;
  bottom: 17px;
  right: 29px;
  width: 32px;
  height: 32px;
  background: url("../img/icon/fancy-icon-white.svg") no-repeat;
  background-size: contain;
}

.c-info-con-desc-slider__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-info-con-desc-slider .c-info-con-desc-slider-nav__prev {
  left: -25px;
}

.c-info-con-desc-slider .c-info-con-desc-slider-nav__prev::after {
  background: url("../img/icon/arrow-card-left-white.svg") no-repeat;
  background-size: contain;
}

.c-info-con-desc-slider .c-info-con-desc-slider-nav__prev,
.c-info-con-desc-slider .c-info-con-desc-slider-nav__next {
  width: 50px;
  height: 50px;
  background: #ba102c;
  border-radius: 50%;
}

.c-info-con-desc-slider .c-info-con-desc-slider-nav__prev::after,
.c-info-con-desc-slider .c-info-con-desc-slider-nav__next::after {
  content: "";
  width: 24px;
  height: 24px;
  transform: none;
}

.c-info-con-desc-slider-nav__next {
  right: -25px;
}

.c-info-con-desc-slider-nav__next::after {
  background: url("../img/icon/arrow-card-right-white.svg") no-repeat;
  background-size: contain;
}

.c-info-con-img {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.c-info-con-img__big {
  display: inline-block;
  width: calc(50% - 8px);
  height: 441px;
}

.c-info-con-img__big img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*=====  c-callback  =====*/

.c-callback {
  margin-bottom: 60px;
}

.c-callback__wrapper {
  padding: 80px 60px 73px 60px;
  background-color: #f6f6f6;
  background-image: url("/local/templates/new_gkmp32/production-new/assets/img/card-page/callback-block/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.c-callback__title {
  color: #272727;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 13px;
  max-width: 747px;
  position: relative;
  z-index: 1;
}

.c-callback__text {
  color: #272727;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 60px;
  max-width: 747px;
  position: relative;
  z-index: 1;
}

.c-callback__img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 572px;
  pointer-events: none;
}

.c-callback__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-callback .p-form {
  max-width: 747px;
  width: 100%;
}

/*=====  c-advantages  ======*/

.c-advantages {
  margin-bottom: 65px;
}

.c-advantages__title {
  margin-bottom: 41px;
}

.c-advantages__list {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
}

.c-advantages__item {
  width: 33.333%;
  padding: 57px 41px 66px 99px;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
  color: #323232;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
  min-height: 207px;
}

.c-advantages__item::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 30px;
  width: 34px;
  height: 34px;
  background: url("../img/icon/check-red.svg") no-repeat;
}

/*=====   =====*/

.c-bookmark {
  margin-bottom: 158px;
}

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

.c-bookmark__img {
  height: 707px;
}

.c-bookmark__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-bookmark__description {
  /*margin-top: -143px;*/
  width: 100%;
  padding: 0 75px;
}

.c-bookmark__text {
  background: #f4f4f4;
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-bookmark__text p,
.c-bookmark__text span,
.c-bookmark__text li,
.c-bookmark__text a {
  color: #272727;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
}

/*=====   =====*/

.c-photo {
  margin-bottom: 108px;
}

.c-photo__title {
  margin-bottom: 25px;
}

.c-photo__list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.c-photo__item {
  width: calc(33.333% - 10.666px);
  height: 377px;
}

.c-photo__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*=====    =====*/

.c-areas {
  margin-bottom: 125px;
}

.c-areas__title {
  margin-bottom: 25px;
  font-size: 25px;
}

.c-areas__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-areas__item {
  padding-left: 26px;
  position: relative;
  color: #272727;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
}

.c-areas__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 16px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid rgb(186, 16, 44);
}

.c-areas__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(186, 16, 44);
}

/*=====   =====*/

.c-table {
  margin-bottom: 86px;
}

.c-table__title {
  margin-bottom: 23px;
  font-size: 25px;
}

.c-table__body {
  width: 100%;
  table-layout: fixed;
  background: #f5f5f3;
  border-collapse: collapse;
}

.c-table__body thead tr th {
  color: #272727;
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  padding: 19.5px 16px;
  border-bottom: 1px solid rgb(186, 16, 44);
  background: #fff;
  text-align: left;
  word-break: break-all;
}

.c-table__body thead tr th:not(:last-child) {
  border-right: 1px solid #e9e9e9;
}

.c-table__body tbody tr td {
  padding: 19.5px 16px;
  color: #272727;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
  word-break: break-all;
}

.c-table__body tbody tr td:not(:last-child) {
  border-right: 1px solid #e9e9e9;
}

.c-table__body tbody tr:nth-child(even) {
  background: #f5f5f3;
}

.c-table__body tbody tr:nth-child(odd) {
  background: #fff;
}