@charset "UTF-8";

@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("../fonts/Montserrat-Black.woff") format("woff"), url("../fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("../fonts/Montserrat-ExtraBold.woff") format("woff"), url("../fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

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

@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff") format("woff"), url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.woff") format("woff"), url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("../fonts/Montserrat-Light.woff") format("woff"), url("../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

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

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

:focus,
:active {
  outline: none;
}

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

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

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "Montserrat";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Montserrat";
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  color: #000;
  font-size: 16px;
  line-height: 1.2;
}

body::after {
  content: '';
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

body._lock {
  overflow: hidden;
}

body._lock::after {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 20px;
}

.form__error {
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  display: inline-block;
  margin-top: 3px;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0px 0px;
}

.btn._fw {
  width: 100%;
}

.select {
  position: relative;
}

.select__item {
  position: relative;
}

.select__title {
  color: #000;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 0px;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.select__value span {
  height: 1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.select__value:before {
  content: "";
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 11px;
  height: 7px;
  background: url("../img/icons/select.svg") center/100% no-repeat;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  display: none;
  position: absolute;
  top: 100%;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  font-size: 14px;
}

.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}

.select._active {
  z-index: 5;
}

.select._active .select__value:before {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select._active .select__options {
  display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 15px 0px;
  border-bottom: 1px solid #FFF;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: transparent;
}

textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.checkbox__input:checked + .checkbox__text:before {
  background: url("../img/icons/check.svg") center no-repeat, #fff;
}

.checkbox__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  cursor: pointer;
}

.checkbox__text:before {
  content: "";
  margin: 0px 12px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22px;
          flex: 0 0 22px;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #fff;
}

.checkbox a {
  color: #fff;
  text-decoration: underline;
}

.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.options__item {
  position: relative;
  cursor: pointer;
}

.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}

.options__input:checked + .options__text:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.options__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: calc(20 / 16);
}

.options__text:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 14px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}

.options__text:after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating-block {
  display: table;
  font-size: 0;
}

.rating {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.rating.edit .star {
  cursor: pointer;
}

.rating .star {
  width: 17px;
  height: 14px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

.rating__line {
  position: absolute;
  width: 85px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating.svg") 0 0 no-repeat;
  z-index: 1;
  background-size: 85px 100%;
}

.rating__activeline {
  position: absolute;
  width: 0px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating_active.svg") 0 0 no-repeat;
  z-index: 2;
  background-size: 85px 100%;
}

.rating__value {
  display: inline-block;
  color: #1b3139;
  font-size: 14px;
  line-height: 13px;
  vertical-align: middle;
}

.quantity {
  width: 88px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}

.quantity__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}

.quantity__button::before,
.quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}

.quantity__button_plus::before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.quantity__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

img,
svg {
  vertical-align: middle;
}

._btn {
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid #EA1D24;
  color: #EA1D24;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

._no-price .product__price {
  display: none;
}

._no-price .product__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}

ol.counter li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

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

ol.counter li:before {
  counter-increment: item;
  content: counter(item) ".";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25px;
          flex: 0 0 25px;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}

.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}

._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}

.video video,
.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

.moretext {
  overflow: hidden;
}

.moretext__more {
  cursor: pointer;
}

.moretext__more span {
  font-style: normal;
}

.moretext__more span:first-child {
  display: block;
}

.moretext__more span:last-child {
  display: none;
}

.moretext__more.active span {
  font-style: normal;
}

.moretext__more.active span:first-child {
  display: none;
}

.moretext__more.active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
}

._swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

._swiper.swiper-container-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._swiper.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

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

.slick-slider {
  position: relative;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slick-slider .slick-track {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-slider .slick-slide {
  position: relative;
}

.tab__item {
  display: none;
}

.tab__item.active {
  display: block;
}

._tabs-block {
  display: none;
}

._tabs-block._active {
  display: block;
}

.mirror {
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

.gm-style-iw-t {
  opacity: 0;
}

.baloon {
  opacity: 1;
  right: -7px !important;
  bottom: 80px !important;
}

.baloon button {
  display: none !important;
}

.baloon:after {
  display: none !important;
}

.baloon-style {
  display: none;
}

.baloon-content.gm-style-iw {
  opacity: 1;
  border-radius: 0px !important;
  max-width: 300px !important;
  padding: 0 !important;
  left: 0 !important;
  width: 100% !important;
  overflow: visible !important;
}

.baloon-content.gm-style-iw > .gm-style-iw-d {
  overflow: hidden !important;
  max-width: none !important;
}

.baloon-content.gm-style-iw:after {
  display: none !important;
}

.baloon-close {
  top: 18px !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}

._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  color: #999;
  cursor: pointer;
  display: block;
  margin-top: -10px;
  position: absolute;
  display: block;
  width: 42px;
  height: 42px;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
      -ms-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  z-index: 1080;
}

.lg-actions .lg-next.disabled,
.lg-actions .lg-prev.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
  color: #fff;
}

.lg-actions .lg-next {
  right: 20px;
  background: url("../img/icons/next.svg") center/100% no-repeat;
}

.lg-actions .lg-prev {
  left: 20px;
  background: url("../img/icons/prev.svg") center/100% no-repeat;
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

@keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: #fff;
  padding: 0px 20px;
}

.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 50px;
  line-height: 27px;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.lg-toolbar .lg-icon:hover {
  color: #fff;
}

.lg-toolbar .lg-close {
  background: url("../img/icons/close.svg") center no-repeat, rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.lg-toolbar .lg-download {
  display: none;
}

.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.45);
  bottom: 0;
  color: #eee;
  font-size: 16px;
  left: 0;
  padding: 10px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 1080;
}

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}

.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

#lg-counter {
  color: #000;
  display: inline-block;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  vertical-align: middle;
  position: fixed;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.lg-toolbar,
.lg-prev,
.lg-next {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -webkit-transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}

.lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-outer .lg-thumb-outer {
  background-color: #0d0a0a;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-outer.lg-thumb-open .lg-thumb-outer {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}

.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px;
}

.lg-outer .lg-thumb-item {
  border-radius: 5px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 4px;
  margin-bottom: 5px;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: #a90707;
}

.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px;
}

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}

.lg-outer.lg-pull-caption-up .lg-sub-html {
  -webkit-transition: bottom 0.25s ease;
  transition: bottom 0.25s ease;
}

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px;
}

.lg-outer .lg-toggle-thumb {
  background-color: #0d0a0a;
  border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px;
}

.lg-outer .lg-toggle-thumb:after {
  content: "\e1ff";
}

.lg-outer .lg-toggle-thumb:hover {
  color: #fff;
}

.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px;
}

.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}

.lg-outer .lg-video .lg-object {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.lg-outer .lg-video .lg-video-play {
  width: 84px;
  height: 59px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -42px;
  margin-top: -30px;
  z-index: 1080;
  cursor: pointer;
}

._no-webp .lg-outer .lg-has-vimeo .lg-video-play{
  background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent; }

._no-webp .lg-outer .lg-has-vimeo:hover .lg-video-play{
  background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent; }

._no-webp .lg-outer .lg-has-html5 .lg-video-play{
  background: transparent url("../img/video-play.png") no-repeat scroll 0 0; }

.lg-outer .lg-has-html5 .lg-video-play {
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: 0.8;
}

.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1;
}

._no-webp .lg-outer .lg-has-youtube .lg-video-play{
  background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent; }

._no-webp .lg-outer .lg-has-youtube:hover .lg-video-play{
  background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent; }

.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden;
}

.lg-outer .lg-has-video.lg-video-playing .lg-object,
.lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none;
}

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible;
}

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  -webkit-transition: opacity 0.08s ease 0s;
  transition: opacity 0.08s ease 0s;
}

.lg-progress-bar .lg-progress {
  background-color: #a90707;
  height: 5px;
  width: 0;
}

.lg-progress-bar.lg-start .lg-progress {
  width: 100%;
}

.lg-show-autoplay .lg-progress-bar {
  opacity: 1;
}

.lg-autoplay-button:after {
  content: "\e01d";
}

.lg-show-autoplay .lg-autoplay-button:after {
  content: "\e01a";
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -webkit-transition: opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#lg-zoom-in:after {
  content: "\e311";
}

#lg-actual-size {
  font-size: 20px;
}

#lg-actual-size:after {
  content: "\e033";
}

#lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}

#lg-zoom-out:after {
  content: "\e312";
}

.lg-zoomed #lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}

.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1080;
  height: 10px;
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible;
}

.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px;
}

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  -webkit-box-shadow: 0 0 0 2px white inset;
          box-shadow: 0 0 0 2px white inset;
}

.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #fff;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
}

.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%;
}

.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
          box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow 0.3s ease 0s;
  -webkit-transition: -webkit-box-shadow 0.3s ease 0s;
  transition: -webkit-box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
  width: 12px;
}

.lg-outer .lg-pager:hover,
.lg-outer .lg-pager:focus {
  -webkit-box-shadow: 0 0 0 8px white inset;
          box-shadow: 0 0 0 8px white inset;
}

.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0;
}

.lg-fullscreen:after {
  content: "\e20c";
}

.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d";
}

.lg-outer #lg-dropdown-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}

.lg-outer.lg-dropdown-active .lg-dropdown,
.lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -ms-transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible;
}

.lg-outer.lg-dropdown-active #lg-share {
  color: #fff;
}

.lg-outer .lg-dropdown {
  background-color: #fff;
  border-radius: 2px;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  -ms-transform: translate3d(0, 5px, 0);
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -webkit-transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
  transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
}

.lg-outer .lg-dropdown:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  border: 8px solid transparent;
  border-bottom-color: #fff;
  right: 16px;
  top: -16px;
}

.lg-outer .lg-dropdown > li:last-child {
  margin-bottom: 0px;
}

.lg-outer .lg-dropdown > li:hover a,
.lg-outer .lg-dropdown > li:hover .lg-icon {
  color: #333;
}

.lg-outer .lg-dropdown a {
  color: #333;
  display: block;
  white-space: pre;
  padding: 4px 12px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.lg-outer .lg-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.07);
}

.lg-outer .lg-dropdown .lg-dropdown-text {
  display: inline-block;
  line-height: 1;
  margin-top: -3px;
  vertical-align: middle;
}

.lg-outer .lg-dropdown .lg-icon {
  color: #333;
  display: inline-block;
  float: none;
  font-size: 20px;
  height: auto;
  line-height: 1;
  margin-right: 8px;
  padding: 0;
  vertical-align: middle;
  width: auto;
}

.lg-outer #lg-share {
  position: relative;
}

.lg-outer #lg-share:after {
  content: "\e80d";
}

.lg-outer #lg-share-facebook .lg-icon {
  color: #3b5998;
}

.lg-outer #lg-share-facebook .lg-icon:after {
  content: "\e901";
}

.lg-outer #lg-share-twitter .lg-icon {
  color: #00aced;
}

.lg-outer #lg-share-twitter .lg-icon:after {
  content: "\e904";
}

.lg-outer #lg-share-googleplus .lg-icon {
  color: #dd4b39;
}

.lg-outer #lg-share-googleplus .lg-icon:after {
  content: "\e902";
}

.lg-outer #lg-share-pinterest .lg-icon {
  color: #cb2027;
}

.lg-outer #lg-share-pinterest .lg-icon:after {
  content: "\e903";
}

.group {
  *zoom: 1;
}

.group:before,
.group:after {
  display: table;
  content: "";
  line-height: 0;
}

.group:after {
  clear: both;
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.lg-outer.lg-visible {
  opacity: 1;
}

.lg-outer.lg-css3 .lg-item.lg-prev-slide,
.lg-outer.lg-css3 .lg-item.lg-next-slide,
.lg-outer.lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%;
}

.lg-outer .lg-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}

.lg-outer .lg-item {
  background: url("../img/icons/loading.gif") no-repeat scroll center center transparent;
  display: none !important;
}

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

.lg-outer .lg-img-wrap {
  position: absolute;
  padding: 0 15px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.lg-outer .lg-item.lg-complete {
  background-image: none;
}

.lg-outer .lg-item.lg-current {
  z-index: 1060;
}

.lg-outer .lg-image {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
}

.lg-outer.lg-show-after-load .lg-item .lg-object,
.lg-outer.lg-show-after-load .lg-item .lg-video-play {
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  opacity: 1;
}

.lg-outer .lg-empty-html {
  display: none;
}

.lg-outer.lg-hide-download #lg-download {
  display: none;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-use-left .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
  opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  left: -100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  left: 100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  left: 0;
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.pagging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagging__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.pagging__item._more .pagging__link {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  border: none;
}

.pagging__item._active .pagging__link {
  color: #fff;
  font-weight: 700;
  background: #EA1D24;
}

.pagging__link {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border: 1px solid #F0F0F0;
  color: #787878;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.breadcrums {
  padding: 30px 0px;
}

.breadcrums + section {
  padding-top: 0;
}

.breadcrums__list {
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.breadcrums__list a {
  color: inherit;
}

.breadcrums__list > span {
  position: relative;
}

.breadcrums__list > span:not(:last-child) {
  margin-right: 12px;
}

.breadcrums__list > span:not(:last-child)::after {
  content: '';
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6px;
          flex: 0 0 6px;
  height: 6px;
  width: 6px;
  background: #000;
  margin-left: 12px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
}

.breadcrums__list > span:last-child {
  color: #000;
}

.about {
  padding: 40px 0px;
}

.about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}

.about__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 60px * 1) / 2);
          flex: 0 0 calc((100% - 60px * 1) / 2);
}

.about__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 60px * 1) / 2);
          flex: 0 0 calc((100% - 60px * 1) / 2);
  aspect-ratio: 670/500;
  position: relative;
}

.about__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.info-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.info-about__title {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  max-width: 560px;
}

.info-about__text {
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  max-width: 480px;
}

.info-about__btn {
  background: #EA1D24;
  color: #fff;
  text-transform: unset;
  padding: 16px 40px;
  font-weight: 700;
  max-width: 100%;
  font-size: 18px;
}

.produce {
  padding: 40px 0px;
}

.produce__title {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}

.produce__nav {
  margin-top: 30px;
}

.produce__content {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  row-gap: 60px;
}

.produce__content:first-child {
  margin-top: 0 !important;
}

.produce__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 60px * 1) / 2);
          flex: 0 0 calc((100% - 60px * 1) / 2);
}

.nav-produce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 15px;
}

.nav-produce__item {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 14px 30px;
  border-radius: 50px;
  border: 1px solid #000;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.nav-produce__item._active {
  border: 2px solid #EA1D24;
  color: #EA1D24;
  font-weight: 700;
}

.item-produce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}

.item-produce__image {
  position: relative;
  display: block;
  aspect-ratio: 670/500;
  width: 100%;
  overflow: hidden;
}

.item-produce__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-produce__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.item-produce__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.item-produce__name {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-produce__more {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.item-produce__more svg path {
  fill: #000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-produce__more img,
.item-produce__more svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.item-produce__color {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.item-produce__color a {
  font-weight: 600;
  text-decoration: underline;
  color: inherit;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-produce__description {
  color: #7F7D7D;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

.how-work {
  padding: 40px 0px;
}

.how-work__title {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}

.how-work__contnet {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 30px;
}

.how-work__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 4);
          flex: 0 0 calc(100% / 4);
  padding-left: 40px;
  border-left: 2px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.how-work__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  height: 42px;
  width: 42px;
}

.how-work__icon img,
.how-work__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  width: 42px;
  height: 42px;
}

.how-work__name {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.brands {
  padding: 10px 0px 50px;
}

.brands__container {
  padding: 0px !important;
  max-width: 100% !important;
}

.brands__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.brands__item img {
  width: 100%;
  max-width: 100%;
}

.focus-choose {
  padding: 40px 0px;
}

.focus-choose__title {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.focus-choose__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.focus-choose__content:first-child {
  margin-top: 0;
}

.focus-choose__content h3 {
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.focus-choose__description {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

.focus-choose__description ul {
  padding-left: 25px;
}

.focus-choose__description ul li {
  list-style: disc;
}

.focus-choose__description > *:not(:last-child) {
  margin-bottom: 15px;
}

.products {
  padding: 40px 0px;
}

.products__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.products__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 2) / 3);
          flex: 0 0 calc((100% - 40px * 2) / 3);
}

.products__footer {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.products__button {
  padding: 18px 40px;
  text-transform: unset;
  font-weight: 700;
  font-size: 18px;
  border: 1px solid #EA1D24;
}

.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.product__head {
  position: relative;
}

.product__image {
  width: 100%;
  max-width: 100%;
  position: relative;
  display: block;
  aspect-ratio: 440/290;
  overflow: hidden;
}

.product__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.product__mods {
  position: absolute;
  top: 5px;
  right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.product__mod {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 78px;
          flex: 0 0 78px;
  height: 78px;
  width: 78px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.product__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.product__name {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.product__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.product__price {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.product__price span._now {
  color: #EA1D24;
}

.product__price span._old {
  color: #787878;
  font-size: 18px;
  font-weight: 600;
  text-decoration: line-through;
}

.notva {
  font-size: 10px;
  color: red;
}
.details-card__blocks .details-card__info {
  color: #000;
  font-size: 18px;
  font-style: normal;
  line-height: 1.5;
  font-weight: 400;
}

.product__button {
  padding: 18px 20px;
  text-transform: unset;
  font-weight: 700;
  font-size: 18px;
  border: 1px solid #EA1D24;
  background: #ffffff;
}

.card {
  padding: 40px 0px;
}

.card__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.card__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 640px;
          flex: 0 0 640px;
}

.card__title {
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}

.card__mods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-top: 10px;
}

.card__mod {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  padding: 6px 10px;
}

.card__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-top: 30px;
}

.card__price {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.card__price span._now {
  color: #EA1D24;
}

.card__price span._old {
  color: #787878;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  text-transform: uppercase;
}

.card__button {
  background: #EA1D24;
  color: #fff;
  padding: 18px 40px;
}

.card__details {
  margin-top: 40px;
}

.card__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 690px);
          flex: 0 0 calc(100% - 690px);
  overflow: hidden;
}

.card__description {
  margin-top: 30px;
}

.details-card__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.details-card__item {
  padding: 12px 20px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  position: relative;
}

.details-card__item._active {
  background: #F4F4F4;
  font-weight: 900;
  z-index: 1;
}

.details-card__blocks {
  background: #F4F4F4;
}

.details-card__block {
  padding: 30px;
}

.details-card__info {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.details-card__info ul {
  padding-left: 25px;
}

.details-card__info ul li {
  list-style: disc;
}

.details-card__info ul li:not(:last-child) {
  margin-bottom: 5px;
}

.details-card__brand {
  margin-bottom: 20px;
}

.characteristic-details-card__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.characteristic-details-card__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
}

.characteristic-details-card__name {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 70px * 1) / 2);
          flex: 0 0 calc((100% - 70px * 1) / 2);
}

.characteristic-details-card__value {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 70px * 1) / 2);
          flex: 0 0 calc((100% - 70px * 1) / 2);
}

.brand-details-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.brand-details-card__name {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.brand-details-card__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 154px;
          flex: 0 0 154px;
}

.brand-details-card__logo img,
.brand-details-card__logo svg {
  width: 100%;
  max-width: 100%;
}

.image-card__thumbs {
  margin-top: 10px;
}

.main-image-card {
  position: relative;
}

.main-image-card__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  aspect-ratio: 710/510;
  position: relative;
  overflow: hidden;
}

.main-image-card__item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-image-card__arrow {
  position: absolute;
  top: 50%;
  background: rgba(255, 255, 255, 0.5);
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.main-image-card__arrow.main-image-card-arrow-prev {
  left: 10px;
}

.main-image-card__arrow.main-image-card-arrow-next {
  right: 10px;
}

.thumbs-image-card {
  overflow-y: hidden;
}

.thumbs-image-card__slider {
  max-height: 430px;
}

.thumbs-image-card__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 10px * 3) / 4);
          flex: 0 0 calc((100% - 10px * 3) / 4);
  aspect-ratio: 150/110;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.thumbs-image-card__item.swiper-slide-thumb-active::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #000;
}

.thumbs-image-card__item:not(:last-child) {
  margin-right: 10px;
}

.thumbs-image-card__item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.description-card {
  background: #F4F4F4;
  padding: 30px;
}

.description-card__title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}

.description-card__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.description-card__content h5 {
  color: #000;
  font-size: 18px;
  font-weight: 700;
}

.description-card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.description-card__video {
  width: 100%;
  max-width: 625px;
  margin: 0px auto;
}

.brand-description-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.brand-description-card__name {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}

.brand-description-card__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 154px;
          flex: 0 0 154px;
}

.brand-description-card__logo img,
.brand-description-card__logo svg {
  width: 100%;
  max-width: 100%;
}

.other-products {
  padding: 40px 0px;
}

.other-products__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.other-products__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}

.other-products__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.other-products__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  height: 42px;
  width: 42px;
}

.other-products__arrow img,
.other-products__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  width: 42px;
  height: 42px;
}

.other-products__content {
  margin-top: 40px;
}

.other-products__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 50px * 2) / 3);
          flex: 0 0 calc((100% - 50px * 2) / 3);
}

.other-products__item:not(:last-child) {
  margin-right: 50px;
}

.about,
.blog-page {
  padding: 40px 0px;
}

.about__title,
.blog-page__title {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.about__content,
.blog-page__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.about__content h4,
.blog-page__content h4 {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.about__image,
.blog-page__image {
  width: 100%;
  max-width: 1200px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.about__image img,
.blog-page__image img {
  width: 100%;
  max-width: 100%;
}

.about__textures,
.blog-page__textures {
  margin-top: 60px;
}

.textures-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 60px;
}

.textures-about__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 3) / 4);
          flex: 0 0 calc((100% - 30px * 3) / 4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.textures-about__image {
  width: 100%;
  max-width: 100%;
  position: relative;
  aspect-ratio: 1/0.98;
}

.textures-about__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.textures-about__name {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

._no-webp .benefits{
  background: url(../img/bg-benefits.jpg) center/cover no-repeat; }

.benefits {
  padding: 60px 0px;
}

.benefits__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 30px;
}

.benefits__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 4);
          flex: 0 0 calc(100% / 4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
  padding: 0px 30px;
  border-left: 2px solid #000;
}

.benefits__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 52px;
          flex: 0 0 52px;
  height: 52px;
  width: 52px;
}

.benefits__icon img,
.benefits__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 52px;
          flex: 0 0 52px;
  width: 52px;
  height: 52px;
}

.benefits__name {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.benefits__text {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.promo {
  padding: 40px 0px;
}

.promo__title {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.promo__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 50px;
}

.promo__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 50px * 2) / 3);
          flex: 0 0 calc((100% - 50px * 2) / 3);
}

.promo__footer {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.promo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.promo-item__image {
  width: 100%;
  position: relative;
  aspect-ratio: 433/290;
}

.promo-item__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.promo-item__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.promo-item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.promo-item__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.promo-item__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.promo-item__icon svg path {
  fill: #000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.promo-item__icon img,
.promo-item__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.promo-item__text {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 15px;
}

.promo-page {
  padding: 40px 0px;
}

.promo-page__products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
  margin-top: 40px;
}

.promo-page__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 2) / 3);
          flex: 0 0 calc((100% - 40px * 2) / 3);
}

.banner-promo-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}

.banner-promo-page__info {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 60px * 1) / 2);
          flex: 0 0 calc((100% - 60px * 1) / 2);
}

.banner-promo-page__title {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.banner-promo-page__description {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 30px;
}

.banner-promo-page__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 60px * 1) / 2);
          flex: 0 0 calc((100% - 60px * 1) / 2);
  aspect-ratio: 670/445;
  position: relative;
}

.banner-promo-page__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.projects {
  padding: 40px 0px;
}

.projects__title {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.projects__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  row-gap: 60px;
}

.projects__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 60px * 1) / 2);
          flex: 0 0 calc((100% - 60px * 1) / 2);
  overflow: hidden;
}

.projects__footer {
  margin-top: 60px;
}

.project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
  border-bottom: 1px solid #000;
}

.project__head {
  position: relative;
}

.project__slider {
  width: 100%;
  max-width: 100%;
}

.project__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  aspect-ratio: 670/500;
  position: relative;
}

.project__item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.project__arrow {
  position: absolute;
  top: 50%;
  height: 42px;
  width: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.project__arrow.project-arrow-prev {
  left: 10px;
}

.project__arrow.project-arrow-next {
  right: 10px;
}

.project__arrow img,
.project__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 32px;
  height: 32px;
}

.project__pagging {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 5px 12px;
  background: #FFF;
  position: absolute;
  bottom: 10px;
  left: 10px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.project__resize {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  height: 42px;
  width: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.project__resize img,
.project__resize svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.project__body {
  padding-bottom: 30px;
}

.project__name {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}

.project__description {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 12px;
}

.blog {
  padding: 40px 0px;
}

.blog__title {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.blog__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 50px;
}

.blog__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 50px * 1) / 2);
          flex: 0 0 calc((100% - 50px * 1) / 2);
}

.blog__footer {
  margin-top: 50px;
}

.contacts {
  padding: 40px 0px;
}

.contacts__title {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.contacts__content {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}

.contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
}

.contacts__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.contacts__name {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  margin-top: 30px;
}

.contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.contacts__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  height: 50px;
  width: 50px;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contacts__icon img,
.contacts__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28px;
          flex: 0 0 28px;
  width: 28px;
  height: 28px;
}

.contacts__text {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.contacts__map {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 670px;
          flex: 0 0 670px;
  position: relative;
  height: 420px;
}

.contacts__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}

.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
}

.popup.show {
  visibility: visible;
  overflow: auto;
}

.popup.show::before {
  opacity: 1;
}

.popup.show .popup__body {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup._active {
  overflow: auto;
  visibility: visible;
}

.popup._active::before {
  opacity: 1;
}

.popup._active .popup__body {
  -webkit-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.2s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

._no-webp .popup__body{
  background: url(../img/popup-bg.jpg) center/cover no-repeat; }

.popup__body {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  padding: 50px;
  width: 100%;
  max-width: 925px;
}

.popup__close {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") center/30px no-repeat, rgba(0, 0, 0, 0.3);
}

.request__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.request__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 380px;
          flex: 0 0 380px;
}

.request__form {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
}

.info-request__title {
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
}

.info-request__title::after {
  content: '';
  width: 200px;
  height: 3px;
  background: #000;
  position: absolute;
  bottom: 0px;
  left: 0;
}

.info-request__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  margin-top: 40px;
}

.info-request__item {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 36px;
  position: relative;
}

.info-request__item::after {
  content: '';
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  width: 16px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
}

.form-request {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.form-request .form__error {
  color: #000;
}

.form-request__row .checkbox__input:checked + .checkbox__text::before {
  background: url(../img/icons/check-w.svg) center/auto no-repeat, #000;
}

.form-request__row .checkbox__text {
  color: #000;
}

.form-request__row .checkbox__text a {
  color: inherit;
}

.form-request__row .checkbox__text::before {
  content: '';
  border-color: #000;
}

.form-request__input {
  color: #000;
  border-color: #000;
}

.form-request__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-radius: 50px;
  background: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  padding: 18px 40px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.form-request__btn img,
.form-request__btn svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.header {
  padding: 15px 0px;
  background: #FFF;
  backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 10;
  border-bottom: 1px solid #000;
}

.header._no-border {
  border-bottom: 0;
}

.header__content {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 224px;
          flex: 0 0 224px;
}

.header__logo img,
.header__logo svg {
  width: 100%;
  max-width: 100%;
}

.catalog-header {
  position: relative;
}

.catalog-header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.catalog-header__top._active {
  color: #EA1D24;
}

.catalog-header__top._active svg path {
  fill: #EA1D24;
}

.catalog-header__top svg path {
  fill: #000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.catalog-header__top img,
.catalog-header__top svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.catalog-header__content {
  position: absolute;
  top: calc(100% + 25px);
  left: 0;
  background: #fff;
  -webkit-box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  padding: 30px;
  width: 100vw;
  max-width: 900px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  max-height: calc(100dvh - 100px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  z-index: 5;
}

.catalog-header__content._active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}

.catalog-header__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.catalog-header__back .catalog-header__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.catalog-header__back .catalog-header__icon img,
.catalog-header__back .catalog-header__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.catalog-header__title {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}

.catalog-header__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 360px;
          flex: 0 0 360px;
}

.catalog-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.catalog-header__item {
  display: block;
}

.catalog-header__item:first-child .catalog-header__link {
  padding-top: 20px;
}

.catalog-header__item:last-child .catalog-header__link {
  border: none;
}

.catalog-header__link {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0px;
  border-bottom: 1px solid #000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.catalog-header__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  height: 18px;
  width: 18px;
}

.catalog-header__icon img,
.catalog-header__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.catalog-header__texture {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
  min-height: 500px;
  width: 100%;
}

.catalog-header__texture img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.list-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.list-menu__link {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.social-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.social-header__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.social-header__item svg path {
  fill: #000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.social-header__item img,
.social-header__item svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}


.categories_content, .catalog-header__content {
  position: absolute;
  top: calc(100% + 25px);
  left: 0;
  background: #fff;
  -webkit-box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
  box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  padding: 30px;
  width: 100vw;
  max-width: 900px;
  -webkit-transition: all 0.3s
  ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s
  ease 0s;
  max-height: calc(100dvh - 100px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  z-index: 5;
}

.categories_content {
  top: calc(100% + 2px);
  left: calc(100% - 68%);
  max-width: 450px;
}
.categories_content._active, .catalog-header__content._active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
.list-menu__link._active {
  color: #EA1D24;
}
.services_nav._spollers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
}
.categories_body {
  flex: 1;
}

.icon-menu {
  display: none;
}

.banner {
  margin-bottom: 40px;
}

.banner__slider {
  width: 100%;
  max-width: 100%;
}

.banner__item {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 200px 0px 280px;
  height: calc(100dvh - 74px);
}

.banner__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
  position: relative;
  z-index: 2;
  max-width: 845px;
}

.banner__title {
  color: #fff;
  font-size: 72px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}

.banner__text {
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner__image::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.74)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.banner__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}


.banner__arrow.banner-arrow-prev {
  left: calc((100vw - 1220px) / 2 - 100px);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.banner__arrow.banner-arrow-next {
  right: calc((100vw - 1220px) / 2 - 100px);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.banner__arrow {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 42px;
  flex: 0 0 42px;
  height: 42px;
  width: 42px;
  position: absolute;
  top: 50%;
  cursor: pointer;
}
.banner__arrow img, .banner__arrow svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 42px;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
}

.types-stone {
  padding: 40px 0px;
}

.types-stone__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
}

.types-stone__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 3) / 4);
          flex: 0 0 calc((100% - 30px * 3) / 4);
  position: relative;
  min-height: 410px;
}

.types-stone__item._dark .types-stone__name {
  color: #fff;
}

.types-stone__info {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 40px;
  background: #F4F4F4;
}

.types-stone__title {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.types-stone__text {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 20px;
}

.types-stone__button {
  margin-top: 30px;
  padding: 18px 20px;
  background: #ffffff;
}

.types-stone__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.types-stone__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.types-stone__name {
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  z-index: 1;
  position: absolute;
  bottom: 30px;
  right: 20px;
  left: 20px;
  text-align: center;
}

.stone-works {
  padding: 40px 0px;
}

.stone-works__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.stone-works__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 560px;
          flex: 0 0 560px;
}

.stone-works__title {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.stone-works__list {
  margin-top: 40px;
}

.stone-works__item:first-child .stone-works__link {
  padding-top: 0;
}

.stone-works__item:last-child .stone-works__link {
  padding-bottom: 0;
  border-bottom: none;
}

.stone-works__link {
  padding: 30px 0px;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-bottom: 1px solid #000;
}

.stone-works__link span {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.stone-works__link img,
.stone-works__link svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.stone-works__link svg path {
  fill: #000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.stone-works__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 300px;
  position: relative;
  width: 100%;
}

.stone-works__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.help-choose {
  padding: 40px 0px;
}

._no-webp .help-choose__wrapper{
  background: url(../img/help-choose-bg.jpg) center/cover no-repeat; }

.help-choose__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 110px;
     -moz-column-gap: 110px;
          column-gap: 110px;
  padding: 50px 140px;
}

.help-choose__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.help-choose__title {
  color: #fff;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.help-choose__text {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 20px;
}

.help-choose__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  margin-top: 40px;
}

.help-choose__item {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 36px;
  position: relative;
}

.help-choose__item::after {
  content: '';
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  width: 16px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
}

.help-choose__form {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 405px;
          flex: 0 0 405px;
}

.form-help-choose {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.form-help-choose__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-radius: 50px;
  background: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  padding: 18px 40px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.form-help-choose__btn img,
.form-help-choose__btn svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.news-section {
  padding: 40px 0px;
}

.news-section__title {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
}

.news-section__content {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.news-section__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 50px * 2) / 3);
          flex: 0 0 calc((100% - 50px * 2) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.news-section__image {
  width: 100%;
  position: relative;
  aspect-ratio: 433/290;
}

.news-section__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-section__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news-section__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.news-section__name {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.news-section__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.news-section__icon svg path {
  fill: #000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.news-section__icon img,
.news-section__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.news-section__text {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 15px;
}

.news-section__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

.news-section__button {
  text-transform: unset;
  padding: 16px 40px;
  font-weight: 700;
  max-width: 100%;
  font-size: 18px;
}

.blog-section {
  background: #F4F4F4;
  padding: 40px 0px;
}

.blog-section__title {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}

.blog-section__content {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.blog-section__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 50px * 1) / 2);
          flex: 0 0 calc((100% - 50px * 1) / 2);
}

.blog-section__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

.blog-section__button {
  text-transform: unset;
  padding: 16px 40px;
  font-weight: 700;
  max-width: 100%;
  font-size: 18px;
  background: #ffffff;
}
.form-help-choose__input::placeholder {
  color: #fff; /* белый цвет */
  opacity: 1; /* чтобы не был полупрозрачным в некоторых браузерах */
}

.item-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  display: flex;
  flex-direction: column;
}

.item-blog__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.item-blog__title {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-blog__text {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.item-blog__date {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.item-blog__image {
  width: 100%;
  max-width: 100%;
  position: relative;
  aspect-ratio: 675/410;
  display: block;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-blog__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer {
  padding: 100px 0px;
  background: #000;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.footer__logo {
  width: 269px;
}

.footer__logo img,
.footer__logo svg {
  width: 100%;
  max-width: 100%;
}

.footer__copy {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.footer__dev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__dev svg path {
  fill: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__dev img,
.footer__dev svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.footer__name {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.footer__body {
  margin-top: 30px;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.footer__link {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.social-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.social-footer__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
  display: block;
}

.social-footer__item svg path {
  fill: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.social-footer__item img,
.social-footer__item svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

img,
svg {
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
  max-height: 100%;
}

.input._dark {
  color: #000;
  border-color: #000;
}

.input._error {
  border-color: #EA1D24;
}

.form__error {
  font-size: 14px;
  display: inline-block;
  margin-top: 5px;
  color: #EA1D24;
}

.header {
  backdrop-filter: none !important;
}

._title {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

._btn-red-fill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  min-height: 52px;
  padding: 10px 32px;
  background: #EA1D24;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  border-radius: 50px;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.trolley-header {
  position: relative;
}

.trolley-header__open-btn {
  position: relative;
  background: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.trolley-header__open-btn img,
.trolley-header__open-btn svg {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
}

.trolley-header__count {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0px 4px;
  background: #EA1D24;
  position: absolute;
  top: -6px;
  right: -10px;
  border-radius: 50px;
}

.trolley-header__content {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  background: #fff;
  -webkit-box-shadow: 0 8px 18px -6px rgba(24, 39, 75, 0.12), 0 12px 42px -4px rgba(24, 39, 75, 0.12);
          box-shadow: 0 8px 18px -6px rgba(24, 39, 75, 0.12), 0 12px 42px -4px rgba(24, 39, 75, 0.12);
  border: 1px solid #E4E4E4;
  width: 100vw;
  max-width: 475px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.trolley-header__content:not(._active) {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.trolley-header__head {
  padding: 20px 20px 12px;
  border-bottom: 1px solid #EBEBEB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.trolley-header__title {
  color: #000;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.trolley-header__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow-y: auto;
}

.trolley-header__product {
  padding: 12px 20px;
}

.trolley-header__product:not(:last-child) {
  border-bottom: 1px solid #EBEBEB;
}

.trolley-header__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
  padding: 12px 20px 20px;
  border-top: 1px solid #EBEBEB;
}

.trolley-header__button {
  -ms-flex-item-align: end;
      align-self: flex-end;
  min-width: 180px;
}

.product-trolley {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 63px 1fr;
  grid-template-columns: 63px 1fr;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.product-trolley__image {
  aspect-ratio: 1/1;
  display: block;
  position: relative;
}

.product-trolley__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-trolley__body {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 95px 65px;
  grid-template-columns: 1fr 95px 65px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 5px;
}

.product-trolley__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 5px;
  font-size: 12px;
  line-height: 1.3;
  color: #000;
  text-transform: uppercase;
}

.product-trolley__name {
  font-weight: 700;
}

.product-trolley__name a {
  color: inherit;
  -webkit-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}

.product-trolley__quantity {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.product-trolley__price {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 14px;
}

.quantity-sq {
  width: 90px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quantity-sq__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
  height: 14px;
  width: 14px;
  position: relative;
  cursor: pointer;
}

.quantity-sq__button::before,
.quantity-sq__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: -0.75px 0px 0px -5px;
  background-color: #000;
  width: 10px;
  height: 1.5px;
}

.quantity-sq__button_plus::before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.quantity-sq__button_minus::before,
.quantity-sq__button_minus::after {
  background: #C6C6C6;
}

.quantity-sq__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.quantity-sq__input input {
  height: 100%;
  color: #000;
  font-size: 14px;
  width: 28px;
  text-align: center;
}
.cart__products .quantity-sq__input input {
  width: 30px;
}
.quantity-sq__input span {
  padding-bottom: 5px;
}
.quantity-sq__input span{
  padding-bottom: 5px;
  text-transform: initial;
}

.trolley-header__products .quantity-sq__input span {
  font-size: 14px;
}

.list-info-trolley-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.list-info-trolley-header__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  font-size: 16px;
  color: #000;
}

.list-info-trolley-header__row._total {
  font-weight: 700;
}

.list-info-trolley-header__name {
  text-align: left;
}

.list-info-trolley-header__value {
  text-align: right;
}

.language-header {
  position: relative;
}

.language-header__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}

.language-header__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  width: 10px;
  height: 10px;
}

.language-header__body {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  width: calc(100% + 24px);
  background: #fff;
  overflow-y: auto;
  -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.language-header__item {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  display: block;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  text-transform: uppercase;
}

.cart__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 12px;
}

.cart__title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.cart__clear {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  background: none;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  -webkit-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}

.cart__clear img,
.cart__clear svg {
  width: 18px;
  height: 18px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
}

.cart__clear svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.cart__clear svg path[fill] {
  fill: rgba(0, 0, 0, 0.5);
}

.cart__clear svg path[stroke] {
  stroke: rgba(0, 0, 0, 0.5);
}

.cart__content {
  margin-top: 40px;
}

.cart__product {
  padding: 20px;
  border-bottom: 1px solid #D9D9D9;
}

.cart__product:first-child {
  border-top: 1px solid #D9D9D9;
}

.cart__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  width: 100%;
  max-width: 300px;
  margin-top: 30px;
  margin-left: auto;
}

.product-cart {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -ms-grid-columns: 372px 130px 95px 140px 24px;
  grid-template-columns: 372px 130px 95px 140px 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}

.product-cart__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.product-cart__image {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 63px;
          flex: 0 0 63px;
  width: 63px;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.product-cart__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-cart__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.product-cart__name {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-cart__name a {
  color: inherit;
  -webkit-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}

.product-cart__art {
  font-size: 14px;
}

.product-cart__column {
  text-transform: uppercase;
}

.product-cart__column .quantity-sq__input input {
  font-size: 16px;
}

.product-cart__column .quantity-sq__button::before,
.product-cart__column .quantity-sq__button::after {
  content: '';
  width: 14px;
  height: 2px;
  margin: -1px 0px 0px -7px;
}

.product-cart__remove {
  cursor: pointer;
}

.product-cart__remove svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.product-cart__remove svg path[fill] {
  fill: rgba(119, 119, 119, 0.5);
}

.product-cart__remove svg path[stroke] {
  stroke: rgba(119, 119, 119, 0.5);
}

.info-list-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.info-list-cart__row {
  font-size: 16px;
  color: #000;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.5;
}

.info-list-cart__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.info-list-cart__value {
  text-align: left;
}

.info-list-cart__value span {
  color: #AFAFAF;
  font-size: 14px;
  font-weight: 400;
}

.order__wrapper {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  -ms-grid-columns: 1fr 410px;
  grid-template-columns: 1fr 410px;
  margin-top: 30px;
}

.main-order {
  border: 1px solid #000;
  background: #fff;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 50px;
}

.main-order__name-section {
  color: #000;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-order__content {
  margin-top: 30px;
}

.data-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.data-order__row {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc((100% - 30px * 1) / 2);
          flex: 1 0 calc((100% - 30px * 1) / 2);
}

.data-order__row._full {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.switch {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.switch__name {
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.switch__input {
  display: none;
}

.switch__input:checked + .switch__field .switch__circle {
  right: -2px;
  left: auto;
}

.switch__field {
  width: 34px;
  border-radius: 50px;
  background: rgba(234, 29, 36, 0.5);
  position: relative;
  height: 14px;
  cursor: pointer;
}

.switch__circle {
  position: absolute;
  left: -2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #EA1D24;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.delivery-order__nav {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 20px;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.delivery-order__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.delivery-order__radio {
  display: none;
}

.delivery-order__radio:checked + .delivery-order__content {
  border-color: #EA1D24;
  font-weight: 700;
}

.delivery-order__radio:checked + .delivery-order__content .delivery-order__icon {
  background: url(../img/icons/check-w.svg) center no-repeat, #EA1D24;
  border-color: #EA1D24;
}

.delivery-order__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px 20px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #000;
}

.delivery-order__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.delivery-order__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
}

.delivery-order__blocks {
  margin-top: 30px;
}

.data-delivery-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
}

.data-delivery-order__row {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc((100% - 30px * 1) / 2);
          flex: 1 0 calc((100% - 30px * 1) / 2);
}

.takeout-delivery-order {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.takeout-delivery-order__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.takeout-delivery-order__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.takeout-delivery-order__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.takeout-delivery-order__icon img,
.takeout-delivery-order__icon svg {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
}

.takeout-delivery-order__text {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-transform: uppercase;
}

.takeout-delivery-order__map {
  min-height: 360px;
  width: 100%;
  position: relative;
}

.takeout-delivery-order__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.payments-main-order {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.payments-main-order__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.payments-main-order__input {
  display: none;
}

.payments-main-order__input:checked + .payments-main-order__content {
  border-color: #EA1D24;
  font-weight: 600;
}

.payments-main-order__input:checked + .payments-main-order__content .payments-main-order__icon {
  background: url(../img/icons/check-w.svg) center no-repeat, #EA1D24;
  border-color: #EA1D24;
}

.payments-main-order__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px 20px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #000;
}

.payments-main-order__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.payments-main-order__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
}

.sidebar-order__wrapper {
  border: 1px solid #000;
  background: #fff;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.sidebar-order__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.sidebar-order__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #000;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.sidebar-order__edit {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.sidebar-order__edit img,
.sidebar-order__edit svg {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
}

.sidebar-order__edit svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.sidebar-order__edit svg path[fill] {
  fill: #000;
}

.sidebar-order__edit svg path[stroke] {
  stroke: #000;
}

.sidebar-order__product {
  padding: 12px 0px;
  border-bottom: 1px solid #DCDCDC;
}

.sidebar-order__product:first-child {
  border-top: 1px solid #DCDCDC;
}

.sidebar-order__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.sidebar-order__checkbox .checkbox__input:checked + .checkbox__text::before {
  border-color: #EA1D24;
  background: url(../img/icons/check-w.svg) center no-repeat, #EA1D24;
}

.sidebar-order__checkbox .checkbox__text {
  color: #000;
}

.sidebar-order__checkbox .checkbox__text a {
  color: inherit;
  text-decoration: underline;
}

.sidebar-order__checkbox .checkbox__text::before {
  border-color: #000;
}

.product-sidebar-order {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 63px 1fr 80px;
  grid-template-columns: 63px 1fr 80px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.product-sidebar-order__image {
  aspect-ratio: 1;
  overflow: hidden;
}

.product-sidebar-order__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-sidebar-order__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 5px;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  line-height: 1.3;
}

.product-sidebar-order__name {
  font-weight: 700;
  text-transform: uppercase;
}

.product-sidebar-order__name a {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  color: inherit;
}

.product-sidebar-order__price-total {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  text-align: right;
  font-size: 14px;
  text-transform: uppercase;
}

.info-list-sidebar-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.info-list-sidebar-order__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  line-height: 1.5;
}

.info-list-sidebar-order__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.info-list-sidebar-order__value {
  text-align: right;
}

.info-list-sidebar-order__value span {
  color: #AFAFAF;
  font-size: 14px;
  text-transform: uppercase;
}

.select {
  position: relative;
}

.select__item {
  position: relative;
}

.select__title {
  color: #000;
  border: none;
  border-bottom: 1px solid #000;
  background-color: #fff;
  cursor: pointer;
  border-radius: 0px !important;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  padding: 0px !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  min-height: 51px;
}

.select__value span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.select__value:before {
  content: "";
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 16px;
  height: 16px;
  background: url("../img/icons/select.svg") center/100% no-repeat;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  display: none;
  position: absolute;
  top: 100%;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  font-size: 16px;
  border: none;
  -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.select__option {
  cursor: pointer;
  padding: 10px 20px;
  margin: 0px 0px 0px 0px;
}

.select._active {
  z-index: 5;
}

.select._active .select__value:before {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select._active .select__options {
  display: block;
}

textarea.input {
  padding: 16px 0px;
  height: 92px;
  overflow-y: auto;
  resize: none;
}

.order-send {
  padding: 80px 0px;
}

.order-send__wrapper {
  width: 100%;
  max-width: 475px;
  padding: 30px;
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  margin: 0px auto;
  border: 1px solid #000;
}

.order-send__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 82px;
          flex: 0 0 82px;
  height: 82px;
  width: 82px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  background: rgba(234, 29, 36, 0.1);
}

.order-send__icon img,
.order-send__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  height: 50px;
  width: 50px;
}

.order-send__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.order-send__title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.order-send__text {
  text-align: center;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.order-send__text a {
  color: inherit;
  text-decoration: underline;
}

.order-send__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.order-send__button {
  min-height: 52px;
}

.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 74px;
}

.page > section:last-child {
  padding-bottom: 80px;
}

body._landing .page {
  padding: 0px !important;
}

img,
svg {
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
  max-height: 100%;
}

._btn-l {
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #000;
  min-height: 56px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-color: #000;
}

._btn-l._red {
  color: #fff;
  background: #EA1D24;
  border-color: #EA1D24;
}

._btn-l._stroke {
  border: 2px solid #000;
  color: #000;
  background: none;
}

._btn-l._stroke._red {
  border: 2px solid #EA1D24;
  color: #EA1D24;
  background: none;
}

.banner {
  position: relative;
}

._no-webp .banner__main{
  background: url(../img/banner-bg.jpg) center/cover no-repeat; }

.banner__main {
  height: 100lvh;
  min-height: 870px;
  padding: 40px 0px 60px;
}

.banner__body {
  text-align: center;
  width: 100%;
  max-width: 850px;
  margin: 80px auto 0px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 20px;
}

.banner__title {
  font-size: 62px;
  font-weight: 900;
  text-transform: uppercase;
}

.banner__text {
  font-size: 24px;
  color: #fff;
}

.banner__other {
  position: absolute;
  bottom: -130px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  padding: 50px;
  width: 100%;
  max-width: 1400px;
}

.banner-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.banner-header__logo {
  margin-right: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 269px;
          flex: 0 0 269px;
  width: 269px;
}

.banner-header__logo img,
.banner-header__logo svg {
  width: 100%;
  max-width: 100%;
}

.banner-header__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.banner-header__social {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.banner-header__social svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.banner-header__social svg path[fill] {
  fill: #fff;
}

.banner-header__social svg path[stroke] {
  stroke: #fff;
}

.other-banner__body {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -ms-grid-columns: 570px 1fr;
  grid-template-columns: 570px 1fr;
}

.other-banner__column._timer {
  background: #E8E8E8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
}

.other-banner__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.other-banner__title {
  color: #000;
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
}

.other-banner__text {
  font-size: 22px;
  line-height: 1.5;
  margin-top: 10px;
}

.other-banner__button {
  margin-top: 5px;
}

.other-banner__callback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 16px;
  color: #000;
  text-decoration: underline;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.other-banner__callback img,
.other-banner__callback svg {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
}

.other-banner__callback svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.other-banner__callback svg path[fill] {
  fill: black;
}

.other-banner__callback svg path[stroke] {
  stroke: black;
}

.other-banner__slider {
  margin-top: 20px;
}

.slider-banner__slider {
  position: relative;
}

.slider-banner__slider::after {
  content: '';
  width: 70px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#FFF));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  pointer-events: none;
}

.slider-banner__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 223px;
          flex: 0 0 223px;
  aspect-ratio: 223/163;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}

.slider-banner__slide:not(:last-child) {
  margin-right: 22px;
}

.slider-banner__slide img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s 0s;
  transition: all 0.4s 0s;
}

.slider-banner__scroll {
  margin-top: 20px;
}

.benefits-section {
  padding: 200px 0px 60px;
  background: #000;
}

.benefits-section__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefits-section__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.benefits-section__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  height: 42px;
  width: 42px;
}

.benefits-section__text {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.4;
}

._no-webp .econom{
  background: -webkit-gradient(linear, left top, right top, from(rgba(238, 190, 0, 0)), color-stop(30%, rgba(238, 190, 0, 0.3)), color-stop(50%, #eebe00)), url(../img/econom-bg.jpg) left center/auto 100% no-repeat, #EEBE00; }

._no-webp .econom{
  background: linear-gradient(to right, rgba(238, 190, 0, 0) 0%, rgba(238, 190, 0, 0.3) 30%, #eebe00 50%), url(../img/econom-bg.jpg) left center/auto 100% no-repeat, #EEBE00; }

.econom {
  min-height: 700px;
  padding: 100px 0px;
  position: relative;
}

.econom__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.econom__person {
  width: 426px;
  position: absolute;
  bottom: 0px;
  left: 0;
}

.econom__image {
  width: 100%;
  max-width: 100%;
}

.econom__say {
  position: absolute;
  top: 100px;
  left: 320px;
  background: #fff;
  padding: 20px;
  z-index: 1;
  width: 330px;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.econom__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 580px;
          flex: 0 0 580px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
  margin-left: auto;
}

.econom__title {
  font-size: 42px;
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
}

.form-econom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.form-econom__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.form-econom__label {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.form-econom__input {
  border-radius: 0 !important;
  background: #fff;
  width: 100%;
  display: block;
  padding: 0px 20px;
  color: #636363;
  font-size: 16px;
  min-height: 52px;
  width: 100%;
  max-width: 100%;
  min-width: 0px;
}

.form-econom__input._focus {
  color: #000;
}

.form-econom__btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 10px 42px;
}

.result-econom {
  padding: 30px;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  min-height: 170px;
}

.result-econom__title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.result-econom__value {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
}

.reviews {
  padding: 100px 0px;
}

.reviews__head {
  text-align: center;
  max-width: 510px;
  margin: 0px auto;
}

.reviews__title {
  color: #000;
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
}

.reviews__content {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.reviews__body {
  position: relative;
}

.reviews__body .reviews__title {
  text-align: center;
  margin-bottom: 20px;
}

.reviews__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
          flex: 0 0 calc((100% - 30px * 1) / 2);
}

.reviews__item:not(:last-child) {
  margin-right: 30px;
}

.reviews__arrow {
  border-radius: 50%;
  background: #FFF;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  cursor: pointer;
  position: absolute;
  top: 50%;
}

.reviews__arrow.reviews-arrow-prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.reviews__arrow.reviews-arrow-next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.reviews__arrow img,
.reviews__arrow svg {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
}

.reviews__arrow svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.reviews__arrow svg path[fill] {
  fill: black;
}

.reviews__arrow svg path[stroke] {
  stroke: black;
}

.reviews__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  margin-top: 20px;
}

.reviews__pagination .swiper-pagination-bullet {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12px;
          flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #000;
}

.reviews__pagination .swiper-pagination-bullet-active {
  background: #000;
}

.counter-reviews {
  padding: 50px;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #fff;
}

.counter-reviews__logo {
  width: 100%;
  max-width: 269px;
}

.counter-reviews__logo img,
.counter-reviews__logo svg {
  width: 100%;
  max-width: 100%;
}

.counter-reviews__logo-black {
  width: 100%;
  max-width: 269px;
}

.counter-reviews__logo-black img,
.counter-reviews__logo-black svg {
  width: 100%;
  max-width: 100%;
}

.counter-reviews__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.counter-reviews__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
}

.counter-reviews__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  width: 42px;
  height: 42px;
}

.counter-reviews__icon svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.counter-reviews__icon svg path[fill] {
  fill: #fff;
}

.counter-reviews__icon svg path[stroke] {
  stroke: #fff;
}

.counter-reviews__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.counter-reviews__value {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
}

.counter-reviews__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.item-review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #F3F3F3;
}

.item-review__image {
  aspect-ratio: 445/315;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.item-review__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.item-review__body {
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.item-review__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.item-review__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #000;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.item-review__quote {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  width: 42px;
  height: 42px;
}

.item-review__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

._no-webp .order-l{
  background: url(../img/bg-order.jpg) center/cover no-repeat; }

.order-l {
  padding: 100px 0px;
  color: #fff;
}

.order-l__form {
  width: 100%;
  max-width: 660px;
  margin: 0px auto;
}

.order-l__actions {
  max-width: 760px;
  margin: 60px auto 0px;
}

.form-order-l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.form-order-l__title {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-order-l__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.form-order-l__input {
  width: 100%;
  height: 52px;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  background: none;
}

.form-order-l__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.form-order-l__text {
  color: #fff;
  font-size: 16px;
  text-align: center;
}

.form-order-l__button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  text-transform: capitalize;
}

.actions-order-l {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.actions-order-l__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  row-gap: 20px;
  padding: 30px;
  background: #fff;
}

.actions-order-l__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  width: 42px;
  height: 42px;
}

.actions-order-l__text {
  color: #000;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.consultation {
  position: fixed;
  right: 20px;
  bottom: 60px;
  background: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  max-width: 340px;
  color: #EA1D24;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  z-index: 3;
  border: 1px solid #E4E4E4;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  -webkit-box-shadow: 0 8px 18px -6px rgba(24, 39, 75, 0.12), 0 12px 42px -4px rgba(24, 39, 75, 0.12);
          box-shadow: 0 8px 18px -6px rgba(24, 39, 75, 0.12), 0 12px 42px -4px rgba(24, 39, 75, 0.12);
}

.consultation img,
.consultation svg {
  width: 32px;
  height: 32px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
}

.consultation svg path {
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.consultation svg path[fill] {
  fill: #EA1D24;
}

.consultation svg path[stroke] {
  stroke: #EA1D24;
}

.form__error {
  font-size: 14px;
  display: inline-block;
  margin-top: 14px;
  color: #fff;
}

.digit-list {
  -webkit-transition: none;
  transition: none;
  /* изначально без анимации */
}

.digit-list.animated {
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}

.countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  background: #EA1D24;
  padding: 10px 40px;
  color: #fff;
}

.unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}

.digits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.digit {
  position: relative;
  width: 50px;
  height: 80px;
  overflow: hidden;
}

.digit-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.digit-item {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 76px;
  font-weight: 700;
}

/* подпись под числом */

.label {
  margin-top: 6px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
}

/* fade сверху и снизу */

.digit::before,
.digit::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 15px;
  pointer-events: none;
}

.digit::before {
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#ea1d24), to(rgba(217, 29, 29, 0)));
  background: linear-gradient(to bottom, #ea1d24 0%, rgba(217, 29, 29, 0) 100%);
}

.digit::after {
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#ea1d24), to(rgba(217, 29, 29, 0)));
  background: linear-gradient(to top, #ea1d24 0%, rgba(217, 29, 29, 0) 100%);
}


.info-list-cart__value span.page_cart_total {
  color: #000000;
  font-size: 16px;
  font-weight: 700;
}

button.header__request._btn.open_credit {
  background: #ffffff;
}

button.header__request._btn.open_credit:hover {
  background: #EA1D24;
}

.info-about p, .info-about__text {
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  max-width: 480px;
}

.proposals-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  row-gap: 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.quantity-sq__button_minus.avtive::before, .quantity-sq__button_minus.avtive::after{
  background:#000000;
}
span.TVA {
  color: #afafaf;
  font-size: 14px;
  font-weight: 400;
}

.cookies_wr {
  position: fixed;
  bottom: 0;
  -webkit-box-shadow: 0 0 10px 0 #00000036;
  box-shadow: 0 0 10px 0 #00000036;
  width: 100%;
  background: #fff;
  z-index: 99;
  left: 0;
}
.cookies_wr .in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  color: #000;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  border-radius: 5px;
}
.cookies_wr .in div:first-child {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  min-height: 50px;
  line-height: normal;
}

.quantity-sq__input {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form_add_to_cart {
  display: flex
;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.info-add-to-cart {
  position: fixed;
  top: 90px;
  right: 40px;
  background: #DBFFD4;
  padding: 20px;
  display: none;
  z-index: 999;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-width: 320px;
  gap: 80px;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.info-add-to-cart.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.info-add {
  display: flex
;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-family: Montserrat;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;

}
.close-info {
  cursor: pointer;
}

._trolley-open {
  position: relative;
}

/* кружочек */
._trolley-open.active::before {
  content: "";
  position: absolute;
  z-index: 9;
  right: 8px;
  top: 5px;
  width: 8px;
  height: 8px;
  background: #EA1D24;
  border-radius: 50%;
  animation: moveDot 1s ease-in-out forwards;
}

._trolley-open svg{
  position: relative;
  z-index: 10;
}
.trolley-header__count {
  z-index: 11;
  right: -15px;
}



/* анимация движения */
@keyframes moveDot {
  0% {
    top: 5px;
    opacity: 1;
  }
  50% {
    top: -15px;
    opacity: 1;
  }
  100% {
    top: 5px;
    opacity: 1;
  }
}

@media (min-width: 479.98px) {
  .product-trolley__price {
    text-align: right;
  }
}

@media (min-width: 721.98px) {
  .benefits-section._tr .benefits-section__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews__body .reviews__title {
    display: none;
  }

  .reviews__pagination {
    display: none;
  }

  .counter-reviews__logo-black {
    display: none;
  }
}

@media (min-width: 991.98px) {
  .quantity__button:hover::before,
  .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .trolley-header__close {
    display: none;
  }

  .benefits-section._tr {
    padding: 60px 0px;
  }

  .econom__say::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-right: 14px solid #fff;
    border-bottom: 12px solid transparent;
    position: absolute;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .reviews__counter {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }

  .reviews__body {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
  }
}

@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }

  .checkbox a:hover {
    text-decoration: none;
  }

  .select__option:hover {
    background: #d9d9d9;
  }
}

@media (min-width: 1025px) {
  .lg-outer .lg-thumb-item {
    -webkit-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }
}

@media (min-width: 1452px) {
  .header__content {
    padding: 0px 50px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .catalog-header__back {
    display: none;
  }

  .catalog-header__item:first-child .catalog-header__link {
    padding-top: 0px;
  }

  .econom__person {
    left: calc((100vw - 1400px) / 2);
  }
}

@media (max-width: 1600px) {
  .header__content {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
  }

  .list-menu {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}

@media (max-width: 1452px) {
  ol.counter li:before {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
  }

  .breadcrums {
    padding: 20px 0px;
  }

  .about {
    padding: 30px 0px;
  }

  .about__wrapper {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }

  .about__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
            flex: 0 0 calc((100% - 30px * 1) / 2);
  }

  .about__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
            flex: 0 0 calc((100% - 30px * 1) / 2);
  }

  .info-about__title {
    font-size: 28px;
  }

  .info-about__text {
    font-size: 16px;
  }

  .info-about__btn {
    font-size: 16px;
  }

  .info-about__btn {
    font-size: 14px;
  }

  .produce {
    padding: 30px 0px;
  }

  .produce__title {
    font-size: 28px;
  }

  .produce__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 30px;
    margin-top: 30px;
  }

  .produce__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .nav-produce {
    row-gap: 10px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .item-produce {
    row-gap: 20px;
  }

  .item-produce__body {
    padding-bottom: 20px;
  }

  .item-produce__name {
    font-size: 20px;
  }

  .item-produce__more {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    height: 20px;
    width: 20px;
  }

  .item-produce__more img,
  .item-produce__more svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    height: 20px;
    width: 20px;
  }

  .item-produce__color {
    font-size: 16px;
  }

  .item-produce__description {
    font-size: 16px;
  }

  .how-work {
    padding: 30px 0px;
  }

  .how-work__title {
    font-size: 28px;
  }

  .brands {
    padding: 30px 0px 60px;
  }

  .brands__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 220px;
            flex: 0 0 220px;
  }

  .focus-choose {
    padding: 30px 0px;
  }

  .focus-choose__title {
    font-size: 28px;
  }

  .focus-choose__content h3 {
    font-size: 22px;
  }

  .focus-choose__description {
    font-size: 16px;
  }

  .products {
    padding: 30px 0px;
  }

  .products__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 30px;
  }

  .products__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .products__button {
    font-size: 16px;
  }

  .product__image {
    aspect-ratio: 1/0.95;
  }

  .product__name {
    font-size: 18px;
  }

  .product__price span._old {
    font-size: 16px;
  }

  .product__price {
    font-size: 20px;
  }

  .product__button {
    font-size: 14px;
    padding: 12px 20px;
  }

  .card {
    padding: 30px 0px;
  }

  .card__wrapper {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }

  .card__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
            flex: 0 0 calc((100% - 30px * 1) / 2);
  }

  .card__title {
    font-size: 28px;
  }

  .card__mod {
    font-size: 14px;
  }

  .card__other {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 20px;
  }

  .card__price {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .card__button {
    font-size: 14px;
  }

  .card__details {
    margin-top: 20px;
  }

  .card__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
            flex: 0 0 calc((100% - 30px * 1) / 2);
  }

  .details-card__item {
    font-size: 14px;
  }

  .details-card__block {
    padding: 20px;
  }

  .details-card__info {
    font-size: 14px;
  }

  .characteristic-details-card__list {
    row-gap: 15px;
  }

  .characteristic-details-card__item {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }

  .characteristic-details-card__name {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 50px * 1) / 2);
            flex: 0 0 calc((100% - 50px * 1) / 2);
    font-size: 14px;
  }

  .characteristic-details-card__value {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 50px * 1) / 2);
            flex: 0 0 calc((100% - 50px * 1) / 2);
    font-size: 16px;
  }

  .thumbs-image-card__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 3) / 4);
            flex: 0 0 calc((100% - 10px * 3) / 4);
  }

  .description-card {
    padding: 20px;
  }

  .description-card__content {
    font-size: 16px;
    margin-top: 20px;
    row-gap: 20px;
  }

  .description-card__content h5 {
    font-size: 16px;
  }

  .other-products {
    padding: 30px 0px;
  }

  .other-products__title {
    font-size: 28px;
  }

  .other-products__content {
    margin-top: 30px;
  }

  .other-products__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .other-products__item:not(:last-child) {
    margin-right: 20px;
  }

  .about,
  .blog-page {
    padding: 30px 0px;
  }

  .about__title,
  .blog-page__title {
    font-size: 28px;
  }

  .about__content,
  .blog-page__content {
    margin-top: 20px;
    row-gap: 20px;
    font-size: 16px;
  }

  .about__content h4,
  .blog-page__content h4 {
    font-size: 20px;
  }

  .textures-about__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px * 2) / 3);
            flex: 0 0 calc((100% - 40px * 2) / 3);
  }

  .textures-about__item:not(:nth-child(-n+6)) {
    display: none;
  }

  .benefits {
    padding: 40px 0px;
  }

  .benefits__item {
    padding: 0px 30px 0px 20px;
  }

  .benefits__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 42px;
            flex: 0 0 42px;
    height: 42px;
    width: 42px;
  }

  .benefits__icon img,
  .benefits__icon svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 42px;
            flex: 0 0 42px;
    height: 42px;
    width: 42px;
  }

  .benefits__name {
    font-size: 14px;
  }

  .benefits__text {
    font-size: 14px;
  }

  .promo {
    padding: 30px 0px;
  }

  .promo__title {
    font-size: 28px;
  }

  .promo__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    margin-top: 20px;
  }

  .promo__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .promo-item__name {
    font-size: 18px;
  }

  .promo-item__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 22px;
            flex: 0 0 22px;
    height: 22px;
    width: 22px;
  }

  .promo-item__icon img,
  .promo-item__icon svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 22px;
            flex: 0 0 22px;
    height: 22px;
    width: 22px;
  }

  .promo-item__text {
    font-size: 16px;
  }

  .promo-page {
    padding: 30px 0px;
  }

  .promo-page__products {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }

  .promo-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .banner-promo-page__title {
    font-size: 28px;
  }

  .banner-promo-page__description {
    font-size: 16px;
  }

  .projects {
    padding: 30px 0px;
  }

  .projects__title {
    font-size: 28px;
  }

  .projects__content {
    row-gap: 20px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    margin-top: 20px;
  }

  .projects__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .projects__footer {
    margin-top: 20px;
  }

  .project {
    row-gap: 20px;
  }

  .project__body {
    padding-bottom: 20px;
  }

  .project__name {
    font-size: 20px;
  }

  .project__description {
    font-size: 16px;
  }

  .blog {
    padding: 30px 0px;
  }

  .blog__title {
    font-size: 28px;
  }

  .blog__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 40px;
    margin-top: 20px;
  }

  .blog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .blog__footer {
    margin-top: 40px;
  }

  .contacts {
    padding: 30px 0px;
  }

  .contacts__title {
    font-size: 28px;
  }

  .contacts__row {
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
  }

  .contacts__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 2);
            flex: 0 0 calc(100% / 2);
    padding-right: 30px;
  }

  .contacts__name {
    font-size: 20px;
  }

  .contacts__item {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }

  .contacts__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
    height: 30px;
    width: 30px;
  }

  .contacts__icon img,
  .contacts__icon svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
    width: 16px;
    height: 16px;
  }

  .contacts__text {
    font-size: 16px;
  }

  .contacts__map {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 2);
            flex: 0 0 calc(100% / 2);
    height: 360px;
  }

  .info-request__item {
    font-size: 16px;
  }

  .header {
    padding: 10px 0px;
  }

  .header__content {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }

  .header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 224px;
            flex: 0 0 224px;
    margin-right: auto;
  }

  .header__menu {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .catalog-header__content {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    max-width: 100%;
    background: #fff;
    -webkit-box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
            box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
    border-top: 1px solid #000;
    padding: 20px;
    pointer-events: none;
    max-height: calc(100dvh - 64px);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    overflow-y: auto;
  }

  .catalog-header__content._active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }

  .catalog-header__list {
    margin-top: 20px;
    border-top: 1px solid #000;
  }

  .menu__body {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    max-width: 100%;
    background: #fff;
    -webkit-box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
            box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.1), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
    border-top: 1px solid #000;
    padding: 40px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
    max-height: calc(100dvh - 64px);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    overflow-y: auto;
  }

  .menu__body:not(._active) {
    -webkit-transform: translateY(100dvh);
        -ms-transform: translateY(100dvh);
            transform: translateY(100dvh);
    pointer-events: none;
  }

  .list-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 40px;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 28px;
    height: 24px;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
  }

  .icon-menu span:first-child {
    top: 0px;
  }

  .icon-menu span:last-child {
    top: auto;
    bottom: 0px;
  }

  .icon-menu._active span {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }

  .icon-menu._active span:first-child {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: calc(50% - 1px);
  }

  .icon-menu._active span:last-child {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }

  .banner {
    margin-bottom: 30px;
  }

  .banner__item {
    height: calc(100dvh - 64px);
  }

  .banner__info {
    max-width: 545px;
  }

  .banner__title {
    font-size: 52px;
  }

  .banner__text {
    font-size: 22px;
  }

  .types-stone {
    padding: 30px 0px;
  }

  .types-stone__content {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 10px;
  }

  .types-stone__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 3) / 4);
            flex: 0 0 calc((100% - 10px * 3) / 4);
    min-height: 330px;
  }

  .types-stone__info {
    padding: 20px;
  }

  .types-stone__title {
    font-size: 28px;
  }

  .types-stone__text {
    font-size: 16px;
  }

  .types-stone__name {
    font-size: 22px;
  }

  .stone-works {
    padding: 30px 0px;
  }

  .stone-works__wrapper {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .stone-works__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .stone-works__title {
    font-size: 28px;
  }

  .stone-works__link {
    padding: 20px 0px;
    font-size: 18px;
  }

  .stone-works__link img,
  .stone-works__link svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18px;
            flex: 0 0 18px;
    height: 18px;
    width: 18px;
  }

  .stone-works__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .help-choose {
    padding: 30px 0px;
  }

  .help-choose__wrapper {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    padding: 30px 30px;
  }

  .help-choose__title {
    font-size: 28px;
  }

  .help-choose__text {
    font-size: 18px;
  }

  .help-choose__item {
    font-size: 16px;
  }

  .news-section {
    padding: 30px 0px;
  }

  .news-section__title {
    font-size: 28px;
  }

  .news-section__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    margin-top: 30px;
  }

  .news-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
    row-gap: 20px;
  }

  .news-section__name {
    font-size: 18px;
  }

  .news-section__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 22px;
            flex: 0 0 22px;
    height: 22px;
    width: 22px;
  }

  .news-section__icon img,
  .news-section__icon svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 22px;
            flex: 0 0 22px;
    height: 22px;
    width: 22px;
  }

  .news-section__text {
    font-size: 16px;
  }

  .news-section__bottom {
    margin-top: 30px;
  }

  .news-section__button {
    font-size: 16px;
  }

  .blog-section {
    padding: 30px 0px;
  }

  .blog-section__title {
    font-size: 28px;
  }

  .blog-section__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    margin-top: 30px;
  }

  .blog-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .blog-section__footer {
    margin-top: 30px;
  }

  .blog-section__button {
    font-size: 16px;
  }

  .item-blog {
    row-gap: 20px;
  }

  .item-blog__title {
    font-size: 18px;
  }

  .item-blog__text {
    font-size: 16px;
  }

  .item-blog__date {
    font-size: 16px;
  }

  .footer {
    padding: 60px 0px;
  }

  .footer__logo {
    width: 203px;
  }

  .footer__copy {
    font-size: 16px;
  }

  .footer__dev {
    font-size: 16px;
  }

  .footer__name {
    font-size: 16px;
  }

  .footer__link {
    font-size: 16px;
  }

  ._title {
    font-size: 28px;
  }

  .order__wrapper {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    -ms-grid-columns: 1fr 360px;
    grid-template-columns: 1fr 360px;
  }

  .main-order {
    padding: 30px;
  }

  .order-send {
    padding: 60px 0px;
  }

  .page {
    padding-top: 64px;
  }

  .page > section:last-child {
    padding-bottom: 60px;
  }

  .banner__text {
    font-size: 20px;
  }

  .banner__other {
    padding: 30px;
    max-width: calc(100% - 40px);
  }

  .other-banner__body {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .other-banner__title {
    font-size: 34px;
  }

  .other-banner__text {
    font-size: 18px;
  }

  .benefits-section__item {
    row-gap: 12px;
  }

  .benefits-section__text {
    font-size: 16px;
  }

  .econom__person {
    width: 370px;
    left: 20px;
  }

  .econom__say {
    top: 70px;
    left: 270px;
    font-size: 16px;
    width: 260px;
  }

  .econom__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
            flex: 0 0 400px;
    row-gap: 30px;
  }

  .econom__title {
    font-size: 32px;
  }

  .reviews__title {
    font-size: 32px;
  }

  .reviews__content {
    gap: 20px;
    margin-top: 30px;
  }

  .reviews__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .reviews__item:not(:last-child) {
    margin-right: 20px;
  }

  .counter-reviews {
    padding: 30px;
    row-gap: 40px;
  }

  .counter-reviews__logo {
    max-width: 200px;
  }

  .counter-reviews__list {
    row-gap: 40px;
  }

  .item-review__body {
    padding: 20px;
  }

  .item-review__name {
    font-size: 16px;
  }

  .item-review__text {
    font-size: 16px;
  }

  .form-order-l__title {
    font-size: 32px;
  }
}

@media (max-width: 1452px) and (max-width: 991.98px) {
  .menu__body {
    top: 54px;
    max-height: calc(100dvh - 54px);
    row-gap: 30px;
    padding: 20px;
  }
}

@media (max-width: 1452px) and (max-width: 721.98px) {
  .menu__body {
    top: 48px;
    max-height: calc(100dvh - 48px);
  }
}

@media (max-width: 991.98px) {
  .lg-actions .lg-next,
  .lg-actions .lg-prev {
    display: none;
  }

  .about {
    padding: 25px 0px;
  }

  .produce {
    padding: 25px 0px;
  }

  .produce__nav {
    margin-top: 20px;
  }

  .produce__content {
    margin-top: 20px;
  }

  .nav-produce__item {
    padding: 10px 20px;
    font-size: 14px;
  }

  .item-produce__name {
    font-size: 16px;
  }

  .item-produce__more {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15px;
            flex: 0 0 15px;
    height: 15px;
    width: 15px;
  }

  .item-produce__more img,
  .item-produce__more svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15px;
            flex: 0 0 15px;
    height: 15px;
    width: 15px;
  }

  .item-produce__color {
    font-size: 14px;
  }

  .item-produce__description {
    font-size: 14px;
  }

  .how-work {
    padding: 25px 0px;
  }

  .how-work__contnet {
    margin-top: 20px;
  }

  .how-work__item {
    padding-left: 20px;
  }

  .how-work__name {
    font-size: 14px;
  }

  .brands {
    padding: 25px 0px 50px;
  }

  .brands__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }

  .focus-choose {
    padding: 25px 0px;
  }

  .products {
    padding: 25px 0px;
  }

  .product__body {
    row-gap: 20px;
  }

  .product__name {
    font-size: 16px;
  }

  .product__price span._old {
    font-size: 14px;
  }

  .product__price {
    font-size: 16px;
  }

  .product__button {
    padding: 12px 16px;
  }

  .card {
    padding: 25px 0px;
  }

  .card__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 30px;
  }

  .image-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .image-card__main {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 110px);
            flex: 0 0 calc(100% - 110px);
    overflow: hidden;
  }

  .image-card__thumbs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    margin-top: 0px;
  }

  .thumbs-image-card__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .thumbs-image-card__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .description-card__title {
    font-size: 18px;
  }

  .other-products {
    padding: 25px 0px;
  }

  .other-products__title {
    font-size: 24px;
  }

  .about,
  .blog-page {
    padding: 25px 0px;
  }

  .about__textures,
  .blog-page__textures {
    margin-top: 50px;
  }

  .textures-about {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 50px;
  }

  .textures-about__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .textures-about__name {
    font-size: 16px;
  }

  .promo {
    padding: 25px 0px;
  }

  .promo__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .promo-page {
    padding: 25px 0px;
  }

  .promo-page__products {
    margin-top: 30px;
  }

  .banner-promo-page {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .banner-promo-page__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .banner-promo-page__title {
    font-size: 24px;
  }

  .banner-promo-page__description {
    margin-top: 20px;
  }

  .banner-promo-page__description > *:not(:last-child) {
    margin-bottom: 5px;
  }

  .banner-promo-page__description br {
    display: none;
  }

  .banner-promo-page__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .projects {
    padding: 25px 0px;
  }

  .project__arrow {
    display: none;
  }

  .project__pagging {
    display: none;
  }

  .project__resize {
    display: none;
  }

  .project__name {
    font-size: 16px;
  }

  .project__description {
    font-size: 14px;
  }

  .blog {
    padding: 25px 0px;
  }

  .blog__content {
    row-gap: 30px;
  }

  .blog__footer {
    margin-top: 30px;
  }

  .contacts {
    padding: 25px 0px;
  }

  .contacts__info {
    padding-right: 20px;
  }

  .contacts__list {
    row-gap: 20px;
  }

  .contacts__map {
    height: 300px;
  }

  .popup__body {
    padding: 30px;
  }

  .request__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .request__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .request__form {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .info-request__title {
    font-size: 24px;
    padding-bottom: 10px;
  }

  .info-request__title::after {
    width: 120px;
  }

  .info-request__list {
    margin-top: 20px;
  }

  .header {
    padding: 6px 0px;
  }

  .header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 169px;
            flex: 0 0 169px;
  }

  .header__request {
    font-size: 14px;
  }

  .catalog-header__content {
    top: 54px;
    max-height: calc(100dvh - 54px);
    row-gap: 30px;
    padding: 20px;
  }

  .catalog-header__list {
    margin-top: 15px;
  }

  .catalog-header__item:first-child .catalog-header__link {
    padding-top: 15px;
  }

  .catalog-header__link {
    font-size: 16px;
    padding: 15px 0px;
  }

  .list-menu {
    row-gap: 30px;
  }

  .banner {
    margin-bottom: 25px;
  }

  .banner__item {
    height: auto;
    padding: 120px 0px;
  }

  .banner__info {
    max-width: 410px;
  }

  .banner__title {
    font-size: 36px;
  }

  .banner__text {
    font-size: 18px;
  }

  .types-stone {
    padding: 25px 0px;
  }

  .types-stone__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 1) / 2);
            flex: 0 0 calc((100% - 10px * 1) / 2);
  }

  .types-stone__button {
    font-size: 14px;
  }

  .stone-works {
    padding: 25px 0px;
  }

  .stone-works__wrapper {
    row-gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .stone-works__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .stone-works__list {
    margin-top: 30px;
  }

  .stone-works__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-bottom: 62%;
    min-height: auto;
  }

  .help-choose {
    padding: 25px 0px;
  }

  .help-choose__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .help-choose__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .help-choose__form {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .news-section {
    padding: 25px 0px;
  }

  .news-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .news-section__item:not(:nth-child(-n+2)) {
    display: none;
  }

  .blog-section {
    padding: 25px 0px;
  }

  .item-blog__title {
    min-height: 44px;
  }

  .footer {
    padding: 50px 0px;
  }

  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer__column._main-info {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 30px;
  }

  .footer__column:not(._main-info) {
    padding: 30px 0px;
    border-top: 1px solid #fff;
  }

  .footer__column:not(._main-info):last-child {
    border-bottom: 1px solid #fff;
  }

  .footer__logo {
    margin-bottom: 30px;
  }

  .footer__name._active::after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .footer__name::after {
    content: '';
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
    height: 16px;
    width: 16px;
    margin-left: auto;
    background: url(../img/icons/spoller.svg) center/cover no-repeat;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .footer__body {
    display: none;
  }

  .cart__content {
    margin-top: 30px;
  }

  .product-cart {
    -ms-grid-columns: 1fr 130px 95px 140px 24px;
    grid-template-columns: 1fr 130px 95px 140px 24px;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }

  .order__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 20px;
    margin-top: 20px;
  }

  .order-send {
    padding: 50px 0px !important;
  }

  .page {
    padding-top: 54px;
  }

  .page > section:last-child {
    padding-bottom: 50px;
  }

  .banner__main {
    padding: 30px 0px 60px;
    min-height: 0;
    height: auto;
  }

  .banner__body {
    max-width: 480px;
    margin-top: 40px;
  }

  .banner__body ._btn {
    color: #fff;
    background: #EA1D24;
  }

  .banner__title {
    font-size: 42px;
  }

  .banner__text {
    font-size: 18px;
  }

  .banner__other {
    position: static;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    width: 100%;
    max-width: 100%;
    padding: 16px;
  }

  .other-banner__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .other-banner__column._timer {
    display: none;
  }

  .other-banner__title {
    display: none;
  }

  .other-banner__button {
    margin-top: 16px;
  }

  .other-banner__callback {
    color: #fff;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .other-banner__callback svg path[fill] {
    fill: #fff;
  }

  .other-banner__callback svg path[stroke] {
    stroke: #fff;
  }

  .benefits-section {
    padding: 40px 0px;
  }

  .benefits-section__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .econom {
    background: #EEBE00 !important;
    min-height: 0px;
    padding: 0px;
  }

  .econom__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  ._no-webp .econom__person{
    background: url(../img/econom-bg.jpg) center/cover no-repeat; }

  .econom__person {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    left: auto;
    bottom: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 420px;
            flex: 0 0 420px;
    margin: 0px -20px;
    padding: 0px 20px;
    width: calc(100% + 40px);
  }

  .econom__person::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    display: inline-block;
    background: rgba(238, 190, 0, 0.75);
  }

  .econom__image {
    max-width: 256px;
    margin: auto auto 0px;
    position: relative;
    z-index: 1;
  }

  .econom__say {
    width: 310px;
    background: rgba(255, 255, 255, 0.85);
    -webkit-box-shadow: 0 8px 22px -6px rgba(24, 39, 75, 0.12), 0 14px 64px -4px rgba(24, 39, 75, 0.12);
            box-shadow: 0 8px 22px -6px rgba(24, 39, 75, 0.12), 0 14px 64px -4px rgba(24, 39, 75, 0.12);
    top: auto;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
  }

  .econom__say::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 14px solid rgba(255, 255, 255, 0.85);
    display: inline-block;
    position: absolute;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .econom__body {
    padding: 30px 0px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    row-gap: 20px;
  }

  .econom__title {
    text-align: center;
  }

  .reviews__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .reviews__counter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .reviews__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .reviews__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .consultation {
    display: none;
  }
}

@media (max-width: 991.98px) and (any-hover: hover) {
  .banner__body ._btn:hover {
    color: #fff;
    background: #c21218;
  }
}

@media (max-width: 721.98px) {
  .pagging__item {
    display: none;
  }

  .about__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }

  .about__image._md3 {
    display: none;
  }

  .about__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .how-work__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 2);
            flex: 0 0 calc(100% / 2);
  }

  .products__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .other-products__arrows {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .other-products__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .textures-about__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .benefits__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .benefits__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 2);
            flex: 0 0 calc(100% / 2);
  }

  .promo__footer {
    margin-top: 30px;
  }

  .promo-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .banner-promo-page {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 20px;
  }

  .banner-promo-page__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .banner-promo-page__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .blog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .contacts__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .contacts__map {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    height: auto;
    padding-bottom: 90%;
  }

  .header {
    min-height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .catalog-header__content {
    top: 48px;
    max-height: calc(100dvh - 48px);
  }

  .catalog-header__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .catalog-header__texture {
    display: none;
  }

  .blog-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .blog-section__item:not(:nth-child(-n+1)) {
    display: none;
  }

  .trolley-header__content {
    position: fixed;
    top: unset;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100vw;
    height: auto;
    max-height: 100vh;
    overflow: hidden;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    z-index: 5;
  }

  .cart__product {
    padding: 20px 0px;
  }

  .product-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    row-gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .product-cart__main {
    -ms-flex-preferred-size: calc(100% - 23px);
        flex-basis: calc(100% - 23px);
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
  }

  .product-cart__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }

  .product-cart__column._total {
    text-align: right;
  }

  .product-cart__column._qty {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 95px;
            flex: 0 0 95px;
  }

  .product-cart__remove {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18px;
            flex: 0 0 18px;
    width: 18px;
    height: 18px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .delivery-order__nav {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .data-delivery-order {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .takeout-delivery-order {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .payments-main-order {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .banner-header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .banner-header__logo {
    margin-right: 0;
  }

  .banner-header__socials {
    display: none;
  }

  .reviews {
    padding: 40px 0px 50px;
  }

  .reviews__head {
    display: none;
  }

  .reviews__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
    margin-top: 0;
  }

  .reviews__arrow {
    display: none;
  }

  .counter-reviews {
    background: none;
    padding: 0px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 30px;
    color: #000;
  }

  .counter-reviews__logo {
    display: none;
  }

  .counter-reviews__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }

  .counter-reviews__icon svg path[fill] {
    fill: #000;
  }

  .counter-reviews__icon svg path[stroke] {
    stroke: #000;
  }

  .item-review {
    background: none;
  }

  .item-review__body {
    padding: 20px 0px 0px;
  }

  .actions-order-l {
    gap: 20px;
  }

  .countdown {
    color: #EA1D24;
    background: #fff;
    padding: 10px 10px;
    gap: 8px;
  }

  .digit {
    width: 40px;
    height: 50px;
  }

  .digit-item {
    font-size: 52px;
    height: 50px;
  }

  .label {
    font-size: 8px;
  }

  .digit::before {
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(217, 29, 29, 0)));
    background: linear-gradient(to bottom, white 0%, rgba(217, 29, 29, 0) 100%);
  }

  .digit::after {
    background: -webkit-gradient(linear, left bottom, left top, from(white), to(rgba(217, 29, 29, 0)));
    background: linear-gradient(to top, white 0%, rgba(217, 29, 29, 0) 100%);
  }
}

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

  ._price-view .product__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .lg-toolbar {
    padding: 0px 15px;
  }

  .about {
    padding: 20px 0px;
  }

  .info-about {
    row-gap: 20px;
  }

  .info-about__title {
    font-size: 24px;
  }

  .info-about__btn {
    padding: 18px 30px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 8px;
  }
  .cookies_item {
    margin-top: 8px;
  }

  .produce {
    padding: 20px 0px;
  }

  .produce__title {
    font-size: 24px;
  }

  .produce__content {
    row-gap: 20px;
  }

  .produce__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .nav-produce {
    row-gap: 8px;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }

  .nav-produce__item {
    padding: 8px 9px;
  }

  .how-work {
    padding: 20px 0px;
  }

  .how-work__title {
    font-size: 24px;
  }

  .brands {
    padding: 15px 0px 30px;
  }

  .brands__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 130px;
            flex: 0 0 130px;
  }

  .focus-choose {
    padding: 20px 0px;
  }

  .focus-choose__title {
    font-size: 22px;
  }

  .focus-choose__content {
    row-gap: 20px;
  }

  .products {
    padding: 20px 0px;
  }

  .products__content {
    row-gap: 20px;
  }

  .products__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .product {
    row-gap: 12px;
  }

  .product__image {
    aspect-ratio: 440/290;
  }

  .product__name {
    font-size: 14px;
  }

  .product__price span._old {
    font-size: 12px;
  }

  .product__price {
    display: none;
    font-size: 14px;
  }

  .product__button {
    font-size: 12px;
    width: 100%;
    max-width: 100%;
    padding: 15px 20px;
  }

  .card {
    padding: 20px 0px;
  }

  .card__title {
    font-size: 24px;
  }

  .card__button {
    padding: 18px 20px;
    width: 100%;
    max-width: 100%;
  }

  .details-card__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1px;
  }

  .details-card__item {
    outline: 1px solid #C7C7C7;
  }

  .details-card__item:not(:last-child) {
    border-bottom: none;
  }

  .details-card__item._active {
    outline-color: #000;
    background: none;
  }

  .characteristic-details-card__item {
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
  }

  .characteristic-details-card__name {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 2);
            flex: 0 0 calc(100% / 2);
  }

  .characteristic-details-card__value {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 2);
            flex: 0 0 calc(100% / 2);
  }

  .brand-details-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .brand-details-card__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 154px;
  }

  .image-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }

  .image-card__thumbs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .main-image-card__item {
    aspect-ratio: 32/28;
  }

  .thumbs-image-card__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 2) / 3);
            flex: 0 0 calc((100% - 10px * 2) / 3);
    width: auto;
  }

  .thumbs-image-card__item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 10px;
  }

  .description-card__video {
    margin: 0px -20px -20px;
    width: auto;
  }

  .other-products {
    padding: 20px 0px;
  }

  .other-products__title {
    font-size: 20px;
  }

  .other-products__arrows {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .other-products__arrow {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32px;
            flex: 0 0 32px;
    height: 32px;
    width: 32px;
  }

  .other-products__arrow img,
  .other-products__arrow svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32px;
            flex: 0 0 32px;
    width: 32px;
    height: 32px;
  }

  .other-products__content {
    margin-top: 20px;
  }

  .other-products__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .about,
  .blog-page {
    padding: 20px 0px;
  }

  .about__title,
  .blog-page__title {
    font-size: 24px;
  }

  .about__textures,
  .blog-page__textures {
    margin-top: 30px;
  }

  .textures-about {
    row-gap: 30px;
  }

  .benefits {
    padding: 30px 0px;
  }

  .benefits__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    border-left: none;
    border-bottom: 2px solid #000;
    padding: 0px 20px 20px;
  }

  .promo {
    padding: 20px 0px;
  }

  .promo__title {
    font-size: 24px;
  }

  .promo__content {
    row-gap: 20px;
  }

  .promo__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .promo__footer {
    margin-top: 20px;
  }

  .promo-page {
    padding: 20px 0px;
  }

  .promo-page__products {
    margin-top: 20px;
  }

  .promo-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .projects {
    padding: 20px 0px;
  }

  .projects__title {
    font-size: 24px;
  }

  .projects__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .blog {
    padding: 20px 0px;
  }

  .blog__title {
    font-size: 24px;
  }

  .blog__footer {
    margin-top: 20px;
  }

  .contacts {
    padding: 20px 0px;
  }

  .contacts__title {
    font-size: 24px;
  }

  .contacts__content {
    row-gap: 30px;
  }

  .contacts__list {
    margin-top: 20px;
  }

  .popup__body {
    padding: 20px;
  }

  .info-request__title {
    font-size: 22px;
    max-width: 190px;
  }

  .form-request {
    row-gap: 20px;
  }

  .banner {
    margin-bottom: 15px;
  }

  .banner__item {
    height: 180px;
    padding: 20px 0px;
  }

  .banner__info {
    text-align: center;
  }

  .banner__title {
    font-size: 24px;
    padding: 0px 20px;
  }

  .banner__text {
    font-size: 14px;
  }

  .types-stone {
    padding: 15px 0px;
  }

  .types-stone__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    min-height: 220px;
  }

  .types-stone__title {
    font-size: 24px;
  }

  .types-stone__name {
    font-size: 18px;
  }

  .stone-works {
    padding: 15px 0px;
  }

  .stone-works__title {
    font-size: 24px;
  }

  .stone-works__list {
    margin-top: 20px;
  }

  .stone-works__image {
    padding-bottom: 69%;
  }

  .help-choose {
    padding: 15px 0px;
  }

  .help-choose__wrapper {
    padding: 30px 20px;
  }

  .help-choose__title {
    font-size: 20px;
  }

  .help-choose__text {
    font-size: 16px;
  }

  .help-choose__list {
    margin-top: 20px;
  }

  .news-section {
    padding: 15px 0px;
  }

  .news-section__title {
    font-size: 24px;
  }

  .news-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .news-section__item:not(:nth-child(-n+1)) {
    display: none;
  }

  .news-section__bottom {
    margin-top: 20px;
  }

  .blog-section {
    padding: 20px 0px;
  }

  .blog-section__title {
    font-size: 24px;
  }

  .item-blog__title {
    min-height: unset;
  }

  .header__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  ._title {
    font-size: 24px;
  }

  .trolley-header__button {
    width: 100%;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }

  .product-trolley__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .product-trolley__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .cart__content {
    margin-top: 20px;
  }

  .cart__footer {
    max-width: 100%;
  }

  .product-cart__name {
    font-size: 14px;
  }

  .main-order {
    padding: 20px 15px;
  }

  .main-order__name-section {
    font-size: 16px;
  }

  .data-order__row {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .switch__name {
    font-size: 14px;
  }

  .delivery-order__nav {
    row-gap: 10px;
  }

  .data-delivery-order__row {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .payments-main-order {
    row-gap: 10px;
  }

  .sidebar-order__wrapper {
    padding: 20px 15px;
  }

  .order-send__icon {
    width: 42px;
    height: 42px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 42px;
            flex: 0 0 42px;
  }

  .order-send__icon img,
  .order-send__icon svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 26px;
            flex: 0 0 26px;
    height: 26px;
    width: 26px;
  }

  .order-send__title {
    font-size: 16px;
  }

  .order-send__text {
    font-size: 14px;
  }

  .page {
    padding-top: 48px;
  }

  .page > section:last-child {
    padding-bottom: 30px;
  }

  .banner__main {
    padding: 20px 0px 50px;
    height: auto;
  }

  .banner__body {
    row-gap: 12px;
    margin-top: 30px;
  }

  .banner__title {
    font-size: 22px;
  }

  .banner__text {
    font-size: 14px;
  }

  .banner-header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    width: 200px;
  }

  .other-banner__slider {
    margin-top: 16px;
  }

  .slider-banner__slider::after {
    width: 40px;
  }

  .slider-banner__slide:not(:last-child) {
    margin-right: 16px;
  }

  .benefits-section {
    padding: 30px 0px;
  }

  .benefits-section__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .benefits-section__item {
    max-width: 260px;
  }

  .benefits-section__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32px;
            flex: 0 0 32px;
    height: 32px;
    width: 32px;
  }

  .benefits-section__text {
    font-size: 14px;
  }

  .econom__title {
    font-size: 22px;
  }

  .form-econom__btn {
    width: 100%;
  }

  .reviews__title {
    font-size: 22px;
  }

  .order-l {
    padding: 50px 0px;
  }

  .order-l__actions {
    margin-top: 30px;
  }

  .form-order-l__title {
    font-size: 22px;
  }

  .form-order-l__button {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }

  .actions-order-l {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .actions-order-l__text {
    max-width: 260px;
  }
}

@media (max-width: 991.98px) and (min-width: 721.98px) {
  .nav-produce {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow-x: auto;
    margin-left: -20px;
    margin-right: -20px;
    padding: 0px 20px;
  }

  .reviews__body {
    max-width: calc(((100vw - 40px) - 20px * 1) / 2);
  }
}

@media (any-hover: hover) {
  ._btn:hover {
    color: #fff;
    background: #EA1D24;
  }

  .lg-toolbar .lg-close:hover {
    background: url("../img/icons/close.svg") center no-repeat, rgba(0, 0, 0, 0.45);
  }

  .pagging__item .pagging__link:hover {
    color: #EA1D24;
    border-color: #EA1D24;
  }

  .breadcrums__list a:hover {
    color: rgba(0, 0, 0, 0.7);
  }

  .info-about__btn:hover {
    background: #811f22;
    border-color: #811f22;
  }

  .nav-produce__item:not(._active):hover {
    color: #EA1D24;
    border-color: #EA1D24;
  }

  .item-produce__image:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  .item-produce__name:hover {
    color: #EA1D24;
  }

  .item-produce__more:hover svg path {
    fill: #EA1D24;
  }

  .item-produce__color a:hover {
    color: #EA1D24;
  }

  .product__image:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  .product__name:hover {
    color: #EA1D24;
  }

  .card__button:hover {
    background: #811f22;
    border-color: #811f22;
  }

  .main-image-card__arrow:hover {
    background: rgba(255, 255, 255, 0.7);
  }

  .promo-item__name:hover {
    color: #EA1D24;
  }

  .promo-item__name:hover + .promo-item__icon svg path {
    fill: #EA1D24;
  }

  .project:hover .project__arrow {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  .project:hover .project__pagging {
    opacity: 1;
    pointer-events: all;
  }

  .project:hover .project__resize {
    opacity: 1;
    pointer-events: all;
  }

  .project__arrow {
    opacity: 0;
    pointer-events: none;
  }

  .project__arrow:hover {
    background: rgba(124, 124, 124, 0.2);
  }

  .project__arrow.project-arrow-prev {
    -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
            transform: translateX(-10px);
  }

  .project__arrow.project-arrow-next {
    -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
            transform: translateX(10px);
  }

  .project__pagging {
    opacity: 0;
    pointer-events: none;
  }

  .project__resize {
    opacity: 0;
    pointer-events: none;
  }

  .form-request__btn:hover {
    background: #291f1f;
  }

  .catalog-header__top:hover {
    color: #EA1D24;
  }

  .catalog-header__top:hover svg path {
    fill: #EA1D24;
  }

  .catalog-header__link:hover {
    color: #EA1D24;
    font-weight: 800;
  }

  .list-menu__link:hover {
    color: #EA1D24;
  }

  .social-header__item:hover svg path {
    fill: #EA1D24;
  }

  .stone-works__link:hover {
    color: #EA1D24;
    font-weight: 800;
  }

  .stone-works__link:hover svg path {
    fill: #EA1D24;
  }

  .form-help-choose__btn:hover {
    background: #291f1f;
  }

  .news-section__name:hover {
    color: #EA1D24;
  }

  .news-section__name:hover + .news-section__icon svg path {
    fill: #EA1D24;
  }

  .item-blog__title:hover {
    color: #EA1D24;
  }

  .item-blog__image:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  .footer__dev:hover {
    color: #EA1D24;
  }

  .footer__dev:hover svg path {
    fill: #EA1D24;
  }

  .footer__link:hover {
    color: #EA1D24;
  }

  .social-footer__item:hover svg path {
    fill: #EA1D24;
  }

  ._btn-red-fill:hover {
    background: #c21218;
  }

  .product-trolley__name a:hover {
    color: #EA1D24;
  }

  .language-header__item:hover {
    color: #EA1D24;
    background: #f3f3f3;
  }

  .cart__clear:hover {
    color: #EA1D24;
  }

  .cart__clear:hover svg path[fill] {
    fill: #EA1D24;
  }

  .cart__clear:hover svg path[stroke] {
    stroke: #EA1D24;
  }

  .product-cart__name a:hover {
    color: #EA1D24;
  }

  .product-cart__remove:hover svg path[fill] {
    fill: #EA1D24;
  }

  .product-cart__remove:hover svg path[stroke] {
    stroke: #EA1D24;
  }

  .sidebar-order__edit:hover {
    color: #EA1D24;
  }

  .sidebar-order__edit:hover svg path[fill] {
    fill: #EA1D24;
  }

  .sidebar-order__edit:hover svg path[stroke] {
    stroke: #EA1D24;
  }

  .sidebar-order__checkbox .checkbox__text a:hover {
    color: #EA1D24;
  }

  .product-sidebar-order__name a:hover {
    color: #EA1D24;
  }

  .order-send__text a:hover {
    color: #EA1D24;
  }

  ._btn-l:hover {
    color: #fff;
    background: #262626;
    border-color: #262626;
  }

  ._btn-l._red:hover {
    color: #fff;
    background: #c21218;
    border-color: #c21218;
  }

  ._btn-l._stroke:hover {
    border-color: #262626;
    background: #262626;
    color: #fff;
  }

  ._btn-l._stroke._red:hover {
    border-color: #c21218;
    background: #c21218;
    color: #fff;
  }

  .banner-header__social:hover svg path[fill] {
    fill: #EA1D24;
  }

  .banner-header__social:hover svg path[stroke] {
    stroke: #EA1D24;
  }

  .other-banner__callback:hover {
    color: #EA1D24;
  }

  .other-banner__callback:hover svg path[fill] {
    fill: #EA1D24;
  }

  .other-banner__callback:hover svg path[stroke] {
    stroke: #EA1D24;
  }

  .slider-banner__slide:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  .reviews__arrow:hover {
    background: #EA1D24;
  }

  .reviews__arrow:hover svg path[fill] {
    fill: #fff;
  }

  .reviews__arrow:hover svg path[stroke] {
    stroke: #fff;
  }

  .consultation:hover {
    background: #EA1D24;
    border-color: #EA1D24;
    color: #fff;
  }

  .consultation:hover svg path[fill] {
    fill: #fff;
  }

  .consultation:hover svg path[stroke] {
    stroke: #fff;
  }
}

._webp .lg-outer .lg-has-vimeo .lg-video-play{ background: url(../img/vimeo-play.webp) no-repeat scroll 0 0 transparent; }

._webp .lg-outer .lg-has-vimeo:hover .lg-video-play{ background: url(../img/vimeo-play.webp) no-repeat scroll 0 -58px transparent; }

._webp .lg-outer .lg-has-html5 .lg-video-play{ background: transparent url(../img/video-play.webp) no-repeat scroll 0 0; }

._webp .lg-outer .lg-has-youtube .lg-video-play{ background: url(../img/youtube-play.webp) no-repeat scroll 0 0 transparent; }

._webp .lg-outer .lg-has-youtube:hover .lg-video-play{ background: url(../img/youtube-play.webp) no-repeat scroll 0 -60px transparent; }

._webp .benefits{ background: url(../img/bg-benefits.webp) center/cover no-repeat; }

._webp .popup__body{ background: url(../img/popup-bg.webp) center/cover no-repeat; }

._webp .help-choose__wrapper{ background: url(../img/help-choose-bg.webp) center/cover no-repeat; }

._webp .banner__main{ background: url(../img/banner-bg.webp) center/cover no-repeat; }

._webp .econom{ background: -webkit-gradient(linear, left top, right top, from(rgba(238, 190, 0, 0)), color-stop(30%, rgba(238, 190, 0, 0.3)), color-stop(50%, #eebe00)), url(../img/econom-bg.webp) left center/auto 100% no-repeat, #EEBE00; }

._webp .econom{ background: linear-gradient(to right, rgba(238, 190, 0, 0) 0%, rgba(238, 190, 0, 0.3) 30%, #eebe00 50%), url(../img/econom-bg.webp) left center/auto 100% no-repeat, #EEBE00; }

._webp .order-l{ background: url(../img/bg-order.webp) center/cover no-repeat; }

@media (max-width: 991.98px){

  ._webp .econom__person{ background: url(../img/econom-bg.webp) center/cover no-repeat; }
}


/* Временный клон (иконка) */
.fly-img {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 10000;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}
.fly-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes shake {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-3px, 2px); }
  50% { transform: translate(3px, -2px); }
  75% { transform: translate(-2px, 1px); }
}
.shake {
  animation: shake 0.4s;
}
