:root {
  --color-black: #000;
  --color-white: #fff;
}

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

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

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

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

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

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

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

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

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

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

:focus,
:active {
  outline: none;
}

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

body {
  box-sizing: border-box;
}

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

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

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

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

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

a:hover {
  text-decoration: none;
  color: inherit;
}

ul li {
  list-style: none;
}

dl,
ol,
ul {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
}

p {
  margin: 0;
}

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

input:not([type=checkbox]):not([type=radio]),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

* {
  font-family: "Montserrat", sans-serif;
}

body {
  background: #FFFFFF;
}

body.scroll-hide {
  overflow: hidden;
}

body.bg-grey {
  background: #FAFAFA;
}

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

.page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.breadcrumbs-list {
  margin: 25px 0 50px 0;
  position: relative;
  z-index: 5;
}

.breadcrumbs-list__item {
  display: inline-block;
  padding-right: 24px;
  position: relative;
}

.breadcrumbs-list__item a,
.breadcrumbs-list__item span {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #828282;
  transition: all 0.3s;
}

.breadcrumbs-list__item a:hover {
  text-shadow: 0.5px 0 0 currentColor;
}

.breadcrumbs-list__item span {
  color: #C40F31;
}

.breadcrumbs-list__item:last-child::after {
  display: none;
}

.breadcrumbs-list__item::after {
  position: absolute;
  content: url("../img/breadcrumbs-list.svg");
  top: 1px;
  right: 6px;
}

.button {
  font-weight: 800;
  line-height: 30px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.button.btn-black {
  background: #1F1F1F;
  font-size: 10px;
  color: #FFFFFF;
  max-height: 46px;
  transition: opacity 0.3s ease-in-out;
}

.button.btn-black:hover {
  opacity: 0.8;
}

.button.btn-white {
  border: 1px solid #1F1F1F;
  border-radius: 2px;
  color: #1F1F1F;
  padding: 12px 50px;
}

.button.btn-white:hover {
  background: #C40F31;
  border: 1px solid #C40F31;
  color: #FFFFFF;
}

.button.btn-red {
  background: #C40F31;
  border-radius: 2px;
  padding: 12px 60px;
  color: #FFFFFF;
}

.button.btn-red:hover {
  background: #a0011e;
}

.title {
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  color: #000000;
  margin-bottom: 8px;
}

.subtitle {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  font-family: "ProximaNova", sans-serif;
}

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

.link-back {
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
  color: #1F1F1F;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.link-back:hover {
  text-shadow: 0.5px 0 0 currentColor;
}

.link-back:hover::before {
  transform: translateX(5px);
}

.link-back::before {
  content: url("../img/link-back.svg");
  display: inline-flex;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
}

.checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #BDBDBD;
  box-sizing: border-box;
  border-radius: 2px;
  width: 16px;
  min-width: 16px;
  height: 16px;
  cursor: pointer;
  position: relative;
}

.checkbox:checked {
  background: #1F1F1F;
  border: 1px solid #1F1F1F;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0 auto;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.pagination .pagination__arrow {
  height: 15px;
}

.pagination .pagination__link {
  width: 37px;
  height: 37px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  color: #1B1B1B;
  transition: all 0.3s ease-in-out;
}

.pagination .pagination__link:hover {
  opacity: 0.6;
}

.pagination .pagination__link-active {
  background: #132851;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.06);
  color: #FFFFFF;
}

.pagination svg {
  height: 12px;
  width: 8px;
  fill: #4F4F4F;
}

.pagination svg:hover {
  fill: #C40F31;
}

.sec-bottom {
  margin-top: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header {
  position: relative;
  z-index: 250;
}

.header-top {
  background: #FAFAFA;
}

.header-top__wrap {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  -moz-column-gap: 55px;
  column-gap: 55px;
}

.nav__link {
  font-weight: 500;
  font-size: 13px;
  line-height: 24px;
  color: #1F1F1F;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.nav__link::before {
  content: "";
  position: absolute;
  width: 0;
  left: auto;
  right: 0;
  background-color: #1F1F1F;
  height: 1px;
  bottom: -2px;
  transition: all 0.3s;
}

@media (min-width: 970px) {
  .nav__link:hover {
    color: #1F1F1F;
    text-shadow: 0.5px 0 0 currentColor;
  }

  .nav__link:hover::before {
    width: 100%;
    right: auto;
    left: 0;
  }


}

.nav__close {
  display: none;
}

.info-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
  margin-right: 25px;
}

.post-block {
  font-weight: 500;
  font-size: 13px;
  line-height: 12px;
  color: #828282;
  transition: all 0.3s ease-in-out;
}

.post-block:hover {
  color: #828282;
  text-shadow: 0.5px 0 0 currentColor;
}

.phone-block {
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  color: #132851;
  margin-left: 25px;
  display: flex;
  align-items: center;
}

.phone-block::before {
  content: url("../img/phone-red.svg");
  padding-right: 8px;
  transition: all 0.3s ease-in-out;
}

.phone-block:hover::before {
  transform: translate(6px);
}

.header-top__btn {
  padding: 8px 26px;
}

.header-center {
  background: #FFFFFF;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
}

.header-center__wrap {
  display: flex;
  align-items: center;
  padding: 20px 15px;
}

.logo {
  width: 119px;
  min-width: 119px;
  height: 59px;
}

.logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.catalog-btn {
  background: #C40F31;
  border-radius: 2px;
  font-weight: 800;
  font-size: 12px;
  line-height: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 149px;
  min-width: 149px;
  margin-left: auto;
  transition: all 0.3s ease-in-out;
  margin-left: 47px;
}

.catalog-btn-hed {
  order: 2;
}

.catalog-btn:hover {
  background: #ac0b29;
  color: #FFFFFF;
}

.catalog-btn.active {
  background: #ac0b29;
  color: #FFFFFF;
}

.catalog-btn::before {
  content: url("../img/catalog.svg");
  padding-right: 12px;
  display: block;
}

.catalog-btn span {
  pointer-events: none;
}

.nav__logo {
  display: none;
}

.search {
  height: 48px;
  width: 100%;
  max-width: 813px;
  margin-left: 20px;
  position: relative;
  order: 3;
}

.search input {
  width: 100%;
  height: 100%;
  background: #FAFAFA;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #000000;
  padding: 0 50px 0 30px;
}

.search input::-moz-placeholder {
  color: #828282;
}

.search input:-ms-input-placeholder {
  color: #828282;
}

.search input::placeholder {
  color: #828282;
}

.search button {
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search button::before {
  position: absolute;
  content: url("../img/search-red.svg");
  display: block;
}

.block-stock {
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
  color: #1F1F1F;
  margin-left: 30px;
  display: flex;
  align-items: center;
  order: 4;
}

.block-stock::before {
  content: url("../img/block-stock.svg");
  display: inline-block;
  height: 43px;
  margin-right: 14px;
}

.burger {
  height: 15px;
  width: 20px;
  margin-right: 10px;
  justify-content: center;
  align-items: center;
  z-index: 350;
  cursor: pointer;
  transition: all 0.3s;
  display: none;
  position: relative;
}

.burger span {
  position: absolute;
  background: #C40F31;
  height: 3px;
  width: 20px;
  display: block;
  transition: all 0.3s;
  border-radius: 5px;
}

.burger span:nth-child(1) {
  top: 13px;
  width: 14px;
}

.burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
}

.burger span:nth-child(3) {
  bottom: 13px;
}

.burger.active span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  bottom: 7px;
  transform: rotate(-45deg);
}

.back {
  display: none;
}

.promo {
  background-color: #fff;
  padding: 25px 0 0 0;
}

.promo .swiper-pagination {
  text-align: left;
  bottom: 40px;
  padding: 0 80px;
}

.promo .swiper-pagination-bullet {
  width: 50px;
  height: 2px;
  border-radius: 0;
}

.promo .swiper-pagination-bullet-active {
  background-color: #132851;
}

.promo .swiper-slide {
  padding: 70px 80px 20px 80px;
  position: relative;
  overflow: hidden;
  background: #FAFAFA;
  min-height: 100%;
  height: auto;
}

.promo__wrapper {
  border-radius: 3px;
  padding: 0 15px;
}

.promo-slide__img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
}

.promo-slide__stock {
  font-weight: 800;
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
  color: #C40F31;
}

.promo-slide {
  display: flex;
}

.promo-slide__ofer {
  max-width: 680px;
  position: relative;
  padding-bottom: 80px;
  width: 100%;
}

.promo-slide__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 54px;
  color: #000000;
  margin-top: 20px;
}

.promo-slide__percent {
  font-weight: 700;
  font-size: 50px;
  line-height: 46px;
  color: #C40F31;
  margin-top: 20px;
}

.promo-slide__btn {
  margin-top: 55px;
}

.advantages {
  margin-top: 20px;
}

.advantages.bg-black {
  margin-top: 50px;
}

.advantages.bg-black .advantages__wrapper {
  background: #1F1F1F;
}

.advantages.bg-black .advantages-item__title {
  color: #FFFFFF;
}

.advantages.bg-black .advantages-item__text {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.advantages.bg-black .advantages-item__descr {
  color: #FFFFFF;
}

.advantages__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FAFAFA;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  padding: 35px 45px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.advantages__item {
  display: flex;
  align-items: center;
}

.advantages-item__icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
}

.advantages-item__icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.advantages-item__text {
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.advantages-item__title {
  font-weight: 800;
  font-size: 12px;
  line-height: 30px;
  text-transform: uppercase;
  color: #C40F31;
}

.advantages-item__descr {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #4F4F4F;
  font-family: "ProximaNova", sans-serif;
}

.catalog-category {
  margin-top: 55px;
}

.catalog-category__subtitle {
  max-width: 700px;
}

.catalog-category__wrapper {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}

.catalog-category-item {
  background: #FAFAFA;
  border-radius: 3px;
  position: relative;
  padding: 25px;
  display: flex;
  flex-direction: column;
  height: 295px;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 5;
}

.catalog-category-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background: #1F1F1F;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 860px) {
  .catalog-category-item:hover::before {
    height: 100%;
  }

  .catalog-category-item:hover .catalog-category-item__img {
    transform: scale(0);
    opacity: 0;
  }

  .catalog-category-item:hover .catalog-category-item__descr {
    opacity: 1;
  }

  .catalog-category-item:hover .catalog-category-item__link {
    opacity: 1;
  }

  .catalog-category-item:hover .catalog-category-item__title {
    color: #FFFFFF;
  }
}

.catalog-category-item__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #1F1F1F;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  transition: all 0.3s ease-in-out;
}

.catalog-category-item__descr {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #FFFFFF;
  margin-top: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  font-family: "ProximaNova", sans-serif;
}

/*.catalog-category-item__descr a {
  color: #FFFFFF;
}

.catalog-category-item__descr a:hover {
  text-decoration: underline;
}*/

.catalog-category-item__link {
  margin-top: auto;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.catalog-category-item__img {
  position: absolute;
  right: 10px;
  bottom: 10px;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  z-index: -1;
  max-width: 60%;
  max-height: 200px;
}

.about {
  max-width: 1378px;
  margin: 85px auto 0 auto;
  padding: 55px 35px;
  background: #FFFFFF;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
  border-radius: 2px;
}

.about__subtitle {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.about-num {
  background: url("../img/about-num-bg.jpg") center center/cover no-repeat;
  padding: 150px 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 30px;
  column-gap: 30px;
  margin-top: 40px;
}

.about-num__item--numbers {
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #C40F31;
  padding-bottom: 10px;
  display: block;
}

.about-num__item--text {
  border-top: 1px solid #FFFFFF;
  padding-top: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #FFFFFF;
  font-family: "ProximaNova", sans-serif;
}

.about__descr {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 145px;
  column-gap: 145px;
}

.about__descr p {
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  font-family: "ProximaNova", sans-serif;
}

.about__link {
  margin: 25px auto 0 auto;
}

.slider-sec {
  margin-top: 70px;
  padding: 70px 0;
  background: #FAFAFA;
}

.slider-sec .tab-link-wrapper {
  display: flex;
  -moz-column-gap: 40px;
  column-gap: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.slider-sec .tab {
  font-weight: 400;
  font-size: 32px;
  line-height: 46px;
  color: #828282;
  padding-bottom: 25px;
}

.slider-sec .tab-active {
  font-weight: 700;
  color: #1F1F1F;
  border-bottom: 3px solid #C40F31;
}

.slider-sec .tabs-content {
  opacity: 0;
  height: 0;
  margin-top: 0 !important;
  pointer-events: none;
}

.slider-sec .tabs-content .swiper {
  margin-top: 0;
}

.slider-sec .tabs-content-active {
  opacity: 1;
  height: auto;
  pointer-events: painted;
}

.slider-sec .tabs-content-active .swiper {
  margin-top: 60px;
}

.slider-sec .swiper {
  padding-bottom: 70px;
  margin-top: 60px;
}

.slider-sec .swiper.pb-not {
  margin-bottom: -60px;
}

.slider-sec.slider-sec-white {
  background-color: #FFFFFF;
}

.slider-sec-tab .tab-content-wrapper {
  margin-top: 0 !important;
}

.slider-sec__arrow {
  position: relative;
  background: #FFFFFF;
  border-radius: 2px;
  width: 120px;
  height: 46px;
  margin-left: 40px;
}

.slider-sec__arrow.bg-grey {
  background: #FAFAFA;
}

.slider-sec__arrow::before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.08);
  height: 70%;
  width: 1px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.slider-sec__arrow .swiper-button-next:after,
.slider-sec__arrow .swiper-button-prev:after {
  font-weight: 800;
  font-size: 16px;
  color: #1F1F1F;
}

.slider-sec__arrow .swiper-button-prev,
.slider-sec__arrow .swiper-button-next {
  width: 50%;
}

.slider-sec__arrow .swiper-button-prev:hover::after,
.slider-sec__arrow .swiper-button-next:hover::after {
  color: #C40F31;
}

.slider-sec__arrow .swiper-button-prev {
  left: 0;
}

.slider-sec__arrow .swiper-button-next {
  right: 0;
}

.card-wrap {
  height: 470px;
  z-index: 22;
}

.card-wrap:hover {
  z-index: 222;
}

.card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 35px 25px 40px 25px;
  transition: all 0.3s ease-in-out;
}

.card .price {
  margin-top: 15px;
}

@media (min-width: 1200px) {
  .card:hover {
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
    position: relative;
  }

  .card:hover .card__link {
    height: 54px;
    padding: 12px 60px !important;
    margin-top: 30px;
  }

  .card:hover .price__new {
    color: #1F1F1F;
  }
}

.card__link {
  height: 0;
  transition: all 0.3s ease-in-out;
  padding: 0 60px !important;
}

.card-gallery {
  display: flex;
  position: relative;
  height: 180px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.card-gallery__img {
  flex-grow: 1;
  border-bottom: 1.4px solid #E0E0E0;
  transition: all 0.3s ease-in-out;
}

.card-gallery__img.active {
  border-bottom: 1.4px solid #a5a5a5;
}

.card-gallery__img.active img {
  opacity: 1;
}

.card-gallery__img img {
  max-width: 100%;
  max-height: 90%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.card__article {
  margin-top: 20px;
  font-weight: 300;
  font-size: 15px;
  line-height: 22px;
  color: #4F4F4F;
  font-family: "ProximaNova", sans-serif;
}

.card__article span {
  font-weight: 400;
  color: #1F1F1F;
}

.card__title {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #1B1B1B;
  height: 66px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  margin-top: 10px;
}

.card__model {
  margin-top: 20px;
  font-weight: 300;
  font-size: 15px;
  line-height: 22px;
  color: #4F4F4F;
  font-family: "ProximaNova", sans-serif;
  margin-top: 10px;
}

.card__model span {
  font-weight: 400;
  color: #C40F31;
}

.price {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 6px;
  column-gap: 6px;
}

.price .price__new {
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  color: #C40F31;
  transition: all 0.3s ease-in-out;
}

.price .price__old {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #828282;
}

.slider-sec__link {
  margin: 0 auto 0 auto;
  z-index: 11;
  position: relative;
}

.suppliers {
  margin-top: 60px;
}

.suppliers__wrapper {
  margin-top: 55px;
  position: relative;
}

.suppliers__wrapper::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 2px;
  background-color: #fff;
  right: 0;
  top: 0;
  z-index: 2;
}

.suppliers__wrapper .swiper-slide {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 0 !important;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.suppliers__wrapper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.suppliers__wrapper .swiper-wrapper {
  flex-direction: row;
  position: relative;
}

.suppliers__wrapper .swiper-wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.articles {
  max-width: 1378px;
  margin: 90px auto 35px auto;
  padding: 50px 35px 68px 35px;
  background: #FFFFFF;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
  border-radius: 2px;
}

.articles .container {
  width: auto;
}

.articles__wrapper {
  margin-top: 40px;
}

.articles-item {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  display: block;
}

.articles-item:hover .articles-item__title {
  color: #C40F31;
}

.articles-item:hover .articles-item__descr {
  color: #1F1F1F;
}

.articles-item.articles-item__v2 {
  z-index: 2;
  padding: 30px;
}

.articles-item.articles-item__v2:hover .articles-item__title {
  color: #C40F31;
}

.articles-item.articles-item__v2 .articles-item__img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  left: 0;
  top: 0;
}

.articles-item.articles-item__v2 .articles-item__img::before {
  position: absolute;
  content: "";
  background: linear-gradient(178.78deg, #000000 -17.45%, rgba(0, 0, 0, 0) 108.05%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}

.articles-item.articles-item__v2 .articles-item__img img {
  height: 100%;
}

.articles-item.articles-item__v2 .articles-item__date {
  color: #FFFFFF;
}

.articles-item.articles-item__v2 .articles-item__title {
  color: #FFFFFF;
}

.articles-item.articles-item__v2 .articles-item__descr {
  color: #FFFFFF;
}

.articles__link {
  margin: 60px auto 0 auto;
}

.articles-item__sticker {
  background: #C40F31;
  border: 1px solid #C40F31;
  border-radius: 3px;
  left: 10px;
  top: 10px;
  font-weight: 800;
  font-size: 10px;
  line-height: 26px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 0 8px;
  position: absolute;
  display: block;
  z-index: 2;
}

.articles-item__img {
  width: 100%;
  height: 220px;
  position: relative;
}

.articles-item__img img {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.articles-item__date {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #C0C0C0;
  display: block;
  margin-top: 20px;
  padding-right: 20px;
}

.articles-item__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #262626;
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  height: 84px;
  transition: all 0.3s ease-in-out;
  font-family: "ProximaNova", sans-serif;
  padding-right: 20px;
}

.articles-item__descr {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #828282;
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  transition: all 0.3s ease-in-out;
  font-family: "ProximaNova", sans-serif;
  padding-right: 20px;
}

.articles-item__body {
  padding: 0 20px 0 20px;
}

.articles-item__body .articles-item__descr {
  padding-right: 0;
}

.articles-item__body .articles-item__title {
  padding-right: 0;
}

.footer {
  margin-top: auto;
  padding-top: 110px;
  background-color: #fff;
  z-index: 10000;
}

.footer-top {
  padding: 30px 0 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #FAFAFA;
}

.footer-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__menu {
  display: flex;
  -moz-column-gap: 50px;
  column-gap: 50px;
  order: 2;
}

.footer__menu--link {
  font-weight: 800;
  font-size: 12px;
  line-height: 30px;
  text-transform: uppercase;
  color: #1F1F1F;
  position: relative;
}

.footer__menu--link:hover {
  color: #1F1F1F;
}

.footer__menu--link::before {
  content: "";
  position: absolute;
  width: 0;
  left: auto;
  right: 0;
  background-color: #1F1F1F;
  height: 2px;
  bottom: -2px;
  transition: all 0.3s;
}

.footer__menu--link:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}

.footer__btn {
  width: 217px;
  margin-left: 0;
  order: 3;
}

.footer-center {
  padding: 45px 0 80px 0;
  background: #FAFAFA;
}

.footer-center .container {
  display: flex;
  justify-content: space-between;
}

.footer-center__column h4 {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #1B1B1B;
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-center__column h4::before {
  display: inline-flex;
  height: 18px;
  margin-right: 10px;
}

.footer-center__column .column-call::before {
  content: url("../img/column-call.svg");
}

.footer-center__column .column-write::before {
  content: url("../img/column-write.svg");
}

.footer-center__column .column-located::before {
  content: url("../img/column-located.svg");
}

.footer-center__column .column-schedule::before {
  content: url("../img/column-schedule.svg");
}

.footer-center__column a, .footer-center__column p {
  display: block;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #1F1F1F;
  font-family: "ProximaNova", sans-serif;
}

.footer-center__column a:hover {
  text-shadow: 0.5px 0 0 currentColor;
}

.footer-bottom {
  padding: 16px 0;
  background: #1F1F1F;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #E0E0E0;
}

.footer-bottom .container a {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #E0E0E0;
}

.footer-bottom .container a:hover {
  text-shadow: 0.5px 0 0 currentColor;
}

.catalog__title {
  font-size: 48px;
  line-height: 54px;
}

.catalog__wrapper {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}

.catalog-item {
  background: #FAFAFA;
  border-radius: 3px;
  padding: 15px 30px 40px 30px;
  transition: all 0.3s ease-in-out;
  border-bottom: 4px solid #FAFAFA;
}

.catalog-item:hover {
  background: #FFFFFF;
  border-bottom: 4px solid #C40F31;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
}

.catalog-item__top {
  display: grid;
  grid-template-columns: 60% 33%;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.catalog-item__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #1F1F1F;
  word-wrap: break-word;
}

.catalog-item__img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}

.catalog-item__img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.catalog-item__list {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.catalog-item__list a {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: #4F4F4F;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
}

.catalog-item__list a:hover {
  color: #C40F31;
  text-shadow: 0.5px 0 0 currentColor;
}

.catalog-item__list a::before {
  content: url("../img/catalog-item__list.svg");
  display: inline-block;
  padding-right: 15px;
}

.subcatalog__link-back {
  margin-bottom: 10px;
}

.subcatalog__wrapper {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}

.subcatalog-item {
  background: #FAFAFA;
  border-radius: 3px;
  height: 290px;
  padding: 30px;
  padding-top: 180px;
  position: relative;
  transition: all 0.3s ease-in-out;
  border-bottom: 4px solid #FAFAFA;
}

.subcatalog-item:hover {
  background: #FFFFFF;
  border-bottom: 4px solid #C40F31;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
}

.subcatalog-item__img {
  position: absolute;
  left: 20px;
  top: 20px;
  max-width: 146px;
  max-height: 146px;
}

.subcatalog-item__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #1F1F1F;
}

.filter-sec {
  background: #FFFFFF;
  border-radius: 3px;
  padding: 40px;
  max-width: 1357px;
  margin: 35px auto 0 auto;
}

.filter-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.filter-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  position: relative;
}

.filter-item__top {
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 40px 10px 20px;
  cursor: pointer;
  min-height: 54px;
}

.filter-item__top.active .filter-item__arrow {
  transform: translateY(-50%) rotate(180deg);
}

.filter-item__title {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #1B1B1B;
}

.filter-item__arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: #E0E0E0;
  border-radius: 60px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.filter-item__arrow .svg {
  height: 6px;
  width: 9px;
}

.filter-item__list {
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  padding: 20px;
  width: calc(100% + 2px);
  z-index: 20;
  background: #fff;
  left: -1px;
  top: 100%;
  display: none;
}

.filter-item__check {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  cursor: pointer;
  margin-bottom: 15px;
}

.filter-item__check:hover span {
  text-shadow: 0.5px 0 0 currentColor;
}

.filter-item__check:last-child {
  margin-bottom: 0;
}

.filter-item__check.active span {
  font-weight: 600;
}

.filter-item__check span {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #4F4F4F;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.filter-sec__bottom {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px dashed #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.filter-sec__btn-clean {
  font-weight: 800;
  font-size: 11px;
  line-height: 10px;
  text-transform: uppercase;
  color: #828282;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.filter-sec__btn-clean:hover {
  text-shadow: 0.5px 0 0 currentColor;
}

.filter-sec__btn-clean::before {
  content: url("../img/btn-clean.svg");
  display: inline-flex;
  margin-right: 10px;
}

.pagin-block {
  background: #FFFFFF;
  border-radius: 3px;
  max-width: 1356px;
  margin: 5px auto 0 auto;
  padding: 12px 40px;
}

.pagin-block .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pagin-block .pagination {
  margin: 0;
}

.found {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #1B1B1B;
}

.found span {
  color: #C40F31;
}

.table {
  margin: 25px auto 0 auto;
  max-width: 1386px;
  padding: 0 15px;
}

.table__top {
  background: #333333;
  border-radius: 3px;
  padding: 22px 25px 22px 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  margin-bottom: 5px;
}

.table__top span {
  display: block;
  padding: 0 20px;
  font-family: "ProximaNova", sans-serif;
}

.table-row {
  display: grid;
  align-items: center;
  grid-template-columns: 22% 12% 12% 12% 12% 12% 17%;
  -moz-column-gap: 2px;
  column-gap: 2px;
}

.table__item-wrap {
  background: #FAFAFA;
}

.table-item {
  padding: 0 25px 0 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #333333;
}

.table-item>div {
  border-right: 2px solid #FAFAFA;
  padding: 10px 20px;
  height: 100%;
  display: flex;
  align-items: center;
  font-family: "ProximaNova", sans-serif;
  text-align: center;
}

.table-item>div:first-child {
  padding-left: 0;
}

.table-item>div:last-child {
  padding-right: 0;
  border-right: none;
}

.table-item:nth-child(odd) {
  background: #FFFFFF;
}

.table-item:nth-child(even) {
  background: #F0F0F0;
}

.table-item__left {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.table-item__img {
  max-width: 40px;
  max-height: 71px;
  min-width: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.table-item__img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.table-item__name {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #333333;
  font-family: "ProximaNova", sans-serif;
  text-align: left;
}

.table-item__info {
  padding: 20px;
}

.table-item__right {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
  padding-left: 20px;
}

.table-item__price {
  white-space: nowrap;
  font-family: "ProximaNova", sans-serif;
}

.table-item__btn {
  padding: 6px 24px !important;
  font-size: 10px !important;
}

.table-item__mob-title {
  display: none;
}

.table__bottom-btn {
  margin: 40px auto 0 auto;
}

.card-sec__wrapper {
  display: flex;
  justify-content: space-between;
}

.card-sec__slider {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  height: 520px;
  width: 522px;
  padding: 25px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
}

.card-sec__slider .swiper-button-next,
.card-sec__slider .swiper-button-prev {
  left: 36px;
  right: auto;
  margin: 0;
}

.card-sec__slider .swiper-button-next:hover::after,
.card-sec__slider .swiper-button-prev:hover::after {
  color: #C40F31;
}

.card-sec__slider .swiper-button-prev {
  top: 18px;
  transform: rotate(90deg);
}

.card-sec__slider .swiper-button-next {
  bottom: 18px;
  transform: rotate(90deg);
  top: auto;
}

.card-sec__slider .swiper-button-next:after,
.card-sec__slider .swiper-button-prev:after {
  color: #1F1F1F;
  font-size: 14px;
  font-weight: 800;
}

.card-sec-swiper2 {
  margin: 0;
  width: calc(100% - 86px);
}

.card-sec-swiper2 .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-sec-swiper2 .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-sec-swiper__wrap {
  position: relative;
}

.card-sec-swiper {
  z-index: 2;
  position: relative;
  width: 86px;
  min-width: 86px;
  margin: 35px 0 35px 0;
  padding-right: 30px;
}

.card-sec-swiper .swiper-slide {
  min-width: 56px;
  padding: 6px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0.5;
}

.card-sec-swiper .swiper-slide img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-sec-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

.card-sec-info {
  max-width: 651px;
  margin-left: 50px;
}

.card-sec-info__top {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #4F4F4F;
  font-family: "ProximaNova", sans-serif;
  display: none;
}

.card-sec-info__top span {
  color: #C40F31;
  font-family: "ProximaNova", sans-serif;
}

.card-sec-info__title {
  font-size: 26px;
  line-height: 36px;
  margin-top: 8px;
}

.card-sec-info__center {
  padding: 20px 0 25px 0;
  border-bottom: 1px dashed #E0E0E0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-sec-info__article {
  font-weight: 300;
  font-size: 15px;
  line-height: 22px;
  color: #4F4F4F;
  font-family: "ProximaNova", sans-serif;
}

.card-sec-info__article span {
  color: #1F1F1F;
  font-weight: 400;
  font-family: "ProximaNova", sans-serif;
}

.card-sec-info__stock {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #1F1F1F;
  font-family: "ProximaNova", sans-serif;
  display: inline-flex;
  align-items: center;
}

.card-sec-info__stock.green::before {
  background: #46CEAC;
}

.card-sec-info__stock.red::before {
  background: #C40F31;
}

.card-sec-info__stock.yellow::before {
  background: #f5dd07;
}

.card-sec-info__stock::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-flex;
  margin-right: 6px;
}

.card-sec-info__manufacturer {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #1F1F1F;
  display: flex;
  align-items: center;
}

.card-sec-info__manufacturer img {
  margin-left: 6px;
}

.card-sec-info__descr {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-top: 20px;
}

.card-sec-info__bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.card-sec-info__bottom .price {
  margin-right: 50px;
}

.card-sec-info__bottom .price__new {
  font-size: 26px;
  line-height: 33px;
}

.card-sec-info__bottom .price__old {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
}

.tabs-sec {
  margin-top: 55px;
}

.tabs-sec__wrapper {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  padding: 30px 40px;
  min-height: 500px;
}

.tabs-sec__wrapper .tabs-content {
  display: none;
}

.tabs-sec__wrapper .tabs-content-active {
  display: block;
}

.tab-link-wrapper {
  display: flex;
  -moz-column-gap: 80px;
  column-gap: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tab-link-wrapper .tab {
  padding-bottom: 15px;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  color: #828282;
}

.tab-link-wrapper .tab-active {
  border-bottom: 2px solid #C40F31;
  margin-bottom: -1px;
  color: #1F1F1F;
}

.tab-content-wrapper {
  margin-top: 20px;
}

.tab-content-wrapper h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 36px;
  color: #1F1F1F;
}

.tab-content-wrapper p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4F4F4F;
  margin-top: 5px;
  font-family: "ProximaNova", sans-serif;
}

.tab-content-wrapper ul {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.tab-content-wrapper ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4F4F4F;
  font-family: "ProximaNova", sans-serif;
  position: relative;
  padding-left: 25px;
}

.tab-content-wrapper ul li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background-color: #4F4F4F;
  border-radius: 50%;
  left: 10px;
  top: 10px;
}

.pdf-link {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 40px;
  margin-top: 50px;
}

.pdf-link__item {
  width: 40%;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1F1F1F;
  font-family: "ProximaNova", sans-serif;
  -moz-column-gap: 23px;
  column-gap: 23px;
  transition: all 0.3s ease-in-out;
}

.pdf-link__item:hover {
  color: #C40F31;
}

.sale__wrapper {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}

.services__wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

.services-item {
  padding: 40px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.services-item.active {
  background: #FAFAFA;
  padding-bottom: 0;
}

.services-item.active .services-item__title {
  color: #4F4F4F;
}

.services-item.active .services-item__descr {
  color: #4F4F4F;
}

.services-item.active .services-item__descr-more {
  color: #4F4F4F;
}

.services-item.active .services-item__close {
  opacity: 1;
}

.services-item.active .services-item__btn.button.btn-white {
  opacity: 0;
  margin-top: 0;
}

.services-item__close {
  background-image: url("../img/close.svg");
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.services-item__close:hover {
  opacity: 0.6;
}

.services-item__img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.services-item__title {
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  color: #FFFFFF;
}

.services-item__descr {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #F2F2F2;
  margin-top: 12px;
  font-family: "ProximaNova", sans-serif;
}

.services-item__btn.button.btn-white {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  margin-top: 35px;
}

.services-item__btn.button.btn-white:hover {
  border: 1px solid #C40F31;
}

.services-item__descr-more {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #F2F2F2;
  margin-top: 12px;
  font-family: "ProximaNova", sans-serif;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 25px;
  padding-top: 25px;
  display: none;
}

.basket__wrapper {
  margin-top: 35px;
}

.basket__top {
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: #1D2025;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 30px;
}

.basket-row {
  display: grid;
  grid-template-columns: 46% 13% 8% 16%;
  justify-content: space-between;
  align-items: center;
}

.basket-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.basket-item .price {
  flex-direction: column;
  align-items: flex-start;
}

.basket-item .price .price__new {
  line-height: 20px;
}

.basket-item__left {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.basket-item__img {
  border: 1px solid rgba(0, 0, 0, 0.08);
  filter: drop-shadow(0px 4px 25px rgba(0, 0, 0, 0.08));
  border-radius: 2px;
  padding: 10px;
  width: 140px;
  height: 140px;
  min-width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.basket-item__img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.basket-item__model {
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #4F4F4F;
  font-family: "ProximaNova", sans-serif;
}

.basket-item__model span {
  color: #C40F31;
}

.basket-item__title {
  font-weight: 600;
  font-size: 15px;
  line-height: 23px;
  color: #1F1F1F;
}

.basket-item__article {
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #4F4F4F;
  font-family: "ProximaNova", sans-serif;
}

.basket-item__article span {
  color: #1F1F1F;
}

.basket-item__price .price__new {
  color: #1F1F1F;
}

.quantity {
  display: flex;
  height: 54px;
}

.quantity .quantity__input {
  background: #1F1F1F;
  border: 1px solid #1F1F1F;
  border-radius: 2px;
  width: 60px;
  height: 54px;
  font-weight: 700;
  font-size: 17px;
  line-height: 19px;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quantity .quantity__input::-webkit-outer-spin-button, .quantity .quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity .quantity__btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(38, 38, 38, 0.08);
  border-radius: 2px;
  width: 36px;
  height: 100%;
  padding: 6px 0;
  margin-left: 1px;
}

.quantity .quantity__btn:hover .svg {
  fill: #C40F31;
}

.quantity .quantity__btn .svg {
  width: 12px;
  height: 17px;
}

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

.basket-item__remove {
  background-image: url("../img/remove.svg");
  width: 22px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.basket-item__remove:hover {
  filter: contrast(0.1);
}

.basket__bottom {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.basket__total {
  font-weight: 500;
  font-size: 20px;
  line-height: 48px;
  color: #1F1F1F;
}

.basket__total span {
  color: #C40F31;
  font-weight: 600;
}

.checkout {
  margin-top: 115px;
  padding-bottom: 75px;
}

.checkout__wrapper {
  margin-top: 20px;
  display: flex;
  max-width: 1150px;
  justify-content: space-between;
}

.checkout-column__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  margin-bottom: 30px;
}

.checkout-form {
  max-width: 413px;
  width: 100%;
}

.checkout-form .form__btn {
  margin-top: 50px;
}

.form__input {
  margin-bottom: 20px;
}

.form__input span {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #1B1B1B;
  padding-bottom: 10px;
}

.form__input span span {
  color: #C40F31;
}

.form__input input {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  width: 100%;
  height: 50px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #1B1B1B;
  padding: 0 25px;
  margin-top: 10px;
}

.form__input input::-moz-placeholder {
  color: #828282;
}

.form__input input:-ms-input-placeholder {
  color: #828282;
}

.form__input input::placeholder {
  color: #828282;
}

.deliver-item {
  margin-bottom: 40px;
}

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

.deliver-item__top {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.deliver-item__top .svg {
  width: 12px;
  height: 17px;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
}

.deliver-item__top span {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #1B1B1B;
  font-family: "ProximaNova", sans-serif;
  padding-left: 15px;
}

.deliver-item__top.active .svg {
  transform: rotateX(190deg);
  fill: #C40F31;
}

.deliver-item__bottom {
  padding-left: 35px;
  margin-top: 10px;
  display: none;
}

.deliver-item__bottom p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #333333;
  margin-bottom: 10px;
  font-family: "ProximaNova", sans-serif;
}

.deliver-item__bottom p:last-child {
  margin-bottom: 0;
}

.deliver-item__bottom p span {
  color: #C40F31;
  padding-left: 6px;
}

.deliver-item__bottom p .black {
  background: #1F1F1F;
  border-radius: 3px;
  padding: 1px 5px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  font-family: "ProximaNova", sans-serif;
  margin-left: 6px;
}

.radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.05);
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
}

.radio::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  right: 50%;
  bottom: 50%;
  transform: translate(50%, 50%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.05);
  background: #C40F31;
}

.radio:checked::before {
  opacity: 1;
}

.payment-item {
  display: flex;
  align-items: center;
  -moz-column-gap: 13px;
  column-gap: 13px;
  margin-bottom: 20px;
  cursor: pointer;
}

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

.about-page .about-num {
  padding: 40px;
  background: none;
  background: #FEFEFE;
  margin-top: 15px;
}

.about-page .about-num__item--text {
  color: #1F1F1F;
  border-top: 1px solid #EBEBEB;
}

.about-page .about-num__item {
  max-width: 280px;
}

.about-page__img {
  width: 100%;
}

.about-page-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
  padding-bottom: 70px;
}

.about-page-top__left {
  padding-right: 30px;
  padding-top: 25px;
}

.about-page-top__left p {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  margin-bottom: 30px;
}

.about-page-top__left .weight-bold {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  margin-bottom: 20px;
}

.about-page-top__left ul {
  display: grid;
  grid-template-columns: 35% 55%;
  flex-wrap: wrap;
  flex-grow: 2;
  -moz-column-gap: 60px;
  column-gap: 60px;
  justify-content: space-between;
}

.about-page-top__left ul li {
  font-weight: 700;
  font-size: 12px;
  line-height: 30px;
  text-transform: uppercase;
  color: #1F1F1F;
  padding-left: 20px;
  position: relative;
}

.about-page-top__left ul li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: #C40F31;
  border-radius: 50%;
  left: 0;
  top: 11px;
}

.about-page-top__right {
  background: #FEFEFE;
  border-radius: 2px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.about-page-top__right--item h4 {
  font-weight: 800;
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
  color: #C40F31;
}

.about-page-top__right--item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  margin-top: 5px;
  font-family: "ProximaNova", sans-serif;
}

.news__wrapper {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 60px;
}

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

.contact__wrapper {
  margin-top: 35px;
  display: flex;
  -moz-column-gap: 55px;
  column-gap: 55px;
  max-width: 1170px;
}

.contact-bg {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.contact-item {
  margin-bottom: 25px;
}

.contact-item p {
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #4F4F4F;
}

.contact-item .post-block {
  color: #C40F31;
}

.contact-item .contact-item__phone {
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #4F4F4F;
  transition: all 0.3s ease-in-out;
}

.contact-item .contact-item__phone:hover {
  text-shadow: 0.5px 0 0 currentColor;
}

.contact-item__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #1F1F1F;
  display: block;
  margin-bottom: 5px;
}

.contact__link-back {
  margin-top: 10px;
}

.contact__map {
  width: 591px;
  height: 491px;
}

.contact__map img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog__wrapper {
  margin-top: 35px;
  display: flex;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.blog-menu {
  background: #FAFAFA;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  padding: 25px;
  width: 305px;
  min-width: 305px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.blog-menu__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
}

.blog-menu__list {
  margin-top: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-menu__list li {
  margin-bottom: 20px;
  padding-left: 25px;
}

.blog-menu__list li:last-child {
  margin-bottom: 0;
}

.blog-menu__list a {
  font-weight: 300;
  font-size: 17px;
  line-height: 26px;
  color: #4F4F4F;
  position: relative;
  font-family: "ProximaNova", sans-serif;
}

.blog-menu__list a::before {
  position: absolute;
  content: url("../img/blog-menu__list.svg");
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
}

.blog-menu__list a.active {
  color: #C40F31;
  font-weight: 600;
}

.blog-menu__list a.active::before {
  content: url("../img/blog-menu__list-red.svg");
}

.blog-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 55px;
}

.blog-items .articles-item__body {
  padding-bottom: 20px;
}

.deliver__top {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 125px;
  column-gap: 125px;
  margin-bottom: 45px;
}

.deliver-list p {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  font-family: "ProximaNova", sans-serif;
  margin-bottom: 25px;
}

.deliver-list div {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 5px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  font-family: "ProximaNova", sans-serif;
}

.deliver-list div span {
  font-weight: 700;
  color: #C40F31;
}

.deliver-list div a {
  color: #C40F31;
  padding-left: 5px;
}

.deliver-list__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  font-family: "ProximaNova", sans-serif;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 20px;
  margin-bottom: 25px;
  display: block;
}

.deliver__bottom span {
  font-weight: 800;
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
  color: #C40F31;
}

.deliver__bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.deliver__bottom div p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  font-family: "ProximaNova", sans-serif;
  width: 48%;
  margin-bottom: 20px;
}

.profile__wrapper {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
}

.profile__menu {
  width: 305px;
  margin-right: 20px;
  background: #FAFAFA;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  padding: 30px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.profile__menu li {
  margin-bottom: 20px;
}

.profile__menu li:last-child {
  margin-bottom: 0;
}

.profile__menu a {
  font-weight: 300;
  font-size: 17px;
  line-height: 26px;
  color: #4F4F4F;
  font-family: "ProximaNova", sans-serif;
  transition: all 0.3s ease-in-out;
}

.profile__menu a:hover {
  text-shadow: 0.5px 0 0 currentColor;
}

.profile__menu a.active {
  color: #C40F31;
  font-weight: 600;
}

.profile__menu .exit {
  font-weight: 600;
  color: #1F1F1F;
}

.profile__right {
  width: calc(100% - 325px);
}

.profile__right.profile__right-two {
  background: #FFFFFF;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  padding: 40px;
}

.profile__block-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.profile-block {
  background: #FFFFFF;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  height: 217px;
  padding: 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.profile-block:hover {
  background: #C40F31;
}

.profile-block:hover .svg {
  fill: #fff;
}

.profile-block:hover .profile-block__title {
  color: #FFFFFF;
}

.profile-block__icon .svg {
  fill: #C40F31;
  width: 37px;
  height: 37px;
  transition: all 0.3s ease-in-out;
}

.profile-block__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 46px;
  color: #1F1F1F;
  margin-top: 18px;
  transition: all 0.3s ease-in-out;
}

.profile__right--title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  font-family: "ProximaNova", sans-serif;
  margin-bottom: 30px;
}

.favorites {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}

.order-table-one .order-table__row {
  grid-template-columns: 50% 12% 12% 15%;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.order-table-two .order-table__row {
  grid-template-columns: 25% 12% 12% 9% 12% 12%;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.order-table-two .order-table-item__col {
  font-size: 14px;
}

.order-table-two .order-table-item__title {
  font-size: 13px;
  line-height: 21px;
}

.order-table-two .order-table-item__model {
  font-size: 13px;
}

.order-table__top {
  font-weight: 700;
  font-size: 11px;
  line-height: 13px;
  text-transform: uppercase;
  color: #828282;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 30px;
  text-align: center;
}

.order-table__top:last-child {
  border-bottom: none;
}

.order-table__top span:first-child {
  text-align: left;
}

.order-table__top span:last-child {
  text-align: left;
}

.order-table__row {
  display: grid;
  justify-content: space-between;
}

.order-table-item {
  padding: 25px 0;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.order-table-item__left {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.order-table-item__img {
  border: 1px solid rgba(0, 0, 0, 0.08);
  filter: drop-shadow(0px 4px 25px rgba(0, 0, 0, 0.08));
  border-radius: 2px;
  height: 93px;
  width: 93px;
  min-width: 93px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.order-table-item__img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.order-table-item__model {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #4F4F4F;
}

.order-table-item__model span {
  color: #C40F31;
  white-space: nowrap;
}

.order-table-item__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #1F1F1F;
  margin-top: 5px;
}

.order-table-item__col {
  font-weight: 600;
  font-size: 17px;
  line-height: 48px;
  color: #1F1F1F;
  text-align: center;
}

.order-table-item__col:last-child {
  text-align: left;
}

.order-table-item__col .red {
  color: #C40F31;
}

.entrance {
  max-width: 633px;
  width: 100%;
  margin: 80px auto 20px auto;
  background: #FFFFFF;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  padding: 55px;
}

.entrance__title {
  text-align: center;
}

.entrance__subtitle {
  text-align: center;
  max-width: 510px;
  text-align: center;
}

.entrance-form {
  max-width: 380px;
  margin: 40px auto 0 auto;
}

.entrance-form.entrance-form-registr .btn-registration {
  padding: 12px 40px;
  margin: 0 auto;
}

.entrance-form .form__input input {
  background: #FAFAFA;
  border: none;
  font-weight: 400;
}

.entrance-form .form__input label {
  position: relative;
}

.entrance-form .form__input label span {
  position: absolute;
  top: -3px;
  left: 20px;
  cursor: text;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #828282;
}

.entrance-form .form__input input:invalid+span:before {
  content: attr(placeholder);
  position: relative;
}

.entrance-form .form__input input:invalid+span:after {
  content: "*";
  position: relative;
  color: red;
  padding-left: 3px;
}

.entrance-form__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.entrance-form__bottom .filter-item__check {
  margin-bottom: 0;
}

.entrance-form__bottom .filter-item__check span {
  color: #1F1F1F;
  font-weight: 600;
}

.entrance-form__forgot {
  font-weight: 700;
  font-size: 11px;
  line-height: 30px;
  text-transform: uppercase;
  color: #C40F31;
  border-bottom: 1px dashed #C40F31;
}

.entrance-form__btn-wrap {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.entrance-form__btn-wrap button {
  padding: 12px 0 !important;
  width: 100%;
}

.brand-sec {
  mask-type: 60px;
}

.brand-sec__top {
  display: flex;
  align-items: center;
  -moz-column-gap: 50px;
  column-gap: 50px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.brand-sec__logo {
  background: #FFFFFF;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  height: 115px;
  width: 305px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-sec__logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.brand-sec__wrapper {
  padding-top: 60px;
  display: flex;
  -moz-column-gap: 40px;
  column-gap: 40px;
  justify-content: space-between;
}

.brand-sec__descr {
  width: calc(70% - 20px);
}

.brand-sec__descr p {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  font-family: "ProximaNova", sans-serif;
  padding-bottom: 20px;
}

.brand-sec__descr p:last-child {
  padding-bottom: 0;
}

.brand-sec__descr .text-weight {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
}

.brand-sec__img {
  width: calc(30% - 20px);
}

.brand-sec__img img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.personal-data {
  max-width: 1103px;
  margin: 25px auto 0 auto;
}

.personal-data .container {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  font-family: "ProximaNova", sans-serif;
}

.personal-data h1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  color: #000000;
  margin-bottom: 15px;
}

.personal-data h2 {
  font-weight: 700;
  font-size: 17px;
  line-height: 46px;
  color: #000000;
  margin-top: 50px;
  margin-bottom: 15px;
}

.error {
  max-width: 650px;
  margin: 80px auto 20px auto;
  display: flex;
  align-items: center;
}

.error__num {
  font-weight: bold;
  font-size: 144px;
  line-height: 150px;
  color: #000000;
}

.error__right {
  margin-left: 55px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 0 20px 55px;
}

.error__right span {
  font-weight: 800;
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
  color: #C40F31;
  padding-bottom: 20px;
  display: block;
}

.error__right .button {
  padding: 12px 30px;
}

.category-page__wrapper {
  display: flex;
  margin-top: 40px;
  margin-bottom: 20px;
}

.category-page__wrapper .filter {
  background: #FFFFFF;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  padding: 20px 20px 0 20px;
  max-width: 300px;
  min-width: 300px;
  width: 300px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 20px;
}

.category-page__wrapper .filter__title {
  font-weight: 800;
  font-size: 13px;
  line-height: 30px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1B1B1B;
  display: flex;
  align-items: center;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.category-page__wrapper .filter__title span:last-child {
  display: none;
}

.category-page__wrapper .filter__item {
  padding: 20px 0;
  border-bottom: 1px dashed #BDBDBD;
}

.category-page__wrapper .filter__body {
  padding-bottom: 30px;
}

.category-page__wrapper .filter__item--title {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #1B1B1B;
  position: relative;
  cursor: pointer;
}

.category-page__wrapper .filter__item--title::after {
  position: absolute;
  content: "";
  background-color: #132851;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  background-image: url("../img/filter__item--title.svg");
  background-repeat: no-repeat;
  background-position: 55% 52%;
  background-size: 50%;
  right: 0;
  top: 4px;
  transition: all 0.3s ease-in-out;
}

.category-page__wrapper .filter__item--title.active::after {
  background-color: #C40F31;
  transform: rotate(180deg);
}

.category-page__wrapper .filter-item__check {
  margin-bottom: 0;
}

.category-page__wrapper .filter-item__check span {
  padding-left: 0 !important;
}

.category-page__wrapper .range-slider {
  margin-top: 12px;
}

.category-page__wrapper .range-slider .extra-controls {
  display: flex;
  justify-content: space-between;
}

.category-page__wrapper .range-slider .extra-controls__wrap {
  display: flex;
  align-items: center;
  pointer-events: none;
}

.category-page__wrapper .range-slider .extra-controls__wrap span {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #313131;
  padding-right: 8px;
}

.category-page__wrapper .range-slider .extra-controls__wrap input {
  width: 75px;
  height: 32px;
  border: none;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #313131;
}

.category-page__wrapper .range-slider .extra-controls__wrap .js-input-from {
  background: #F9FBFB;
  border-radius: 5px;
  color: #979797;
}

.category-page__wrapper .range-slider .extra-controls__wrap .js-input-to {
  border-radius: 3px;
  border: 1px dashed #C40F31;
}

.category-page__wrapper .range-slider .irs--round .irs-min,
.category-page__wrapper .range-slider .irs--round .irs-max {
  display: none;
}

.category-page__wrapper .range-slider .irs-from,
.category-page__wrapper .range-slider .irs-to,
.category-page__wrapper .range-slider .irs-single {
  display: none;
}

.category-page__wrapper .range-slider .irs--round {
  height: 20px;
  margin-top: 20px;
}

.category-page__wrapper .range-slider .irs--round .irs-line {
  top: 8px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}

.category-page__wrapper .range-slider .irs--round .irs-bar {
  top: 8px;
  background: #C40F31;
  border-radius: 2px;
}

.category-page__wrapper .range-slider .irs--round .irs-handle {
  top: 1px;
  cursor: pointer;
  border: 6px solid #C40F31;
  width: 18px;
  height: 18px;
  box-shadow: 0px 0px 1px 7px #F3CFD6;
}

.category-page__wrapper .filter-checkbox {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-top: 12px;
}

.category-page__wrapper .filter-checkbox div {
  display: flex;
  align-items: center;
}

.category-page__wrapper .filter-checkbox span {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #333333;
  padding-left: 10px;
}

.category-page__wrapper .checkbox-black {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  border-radius: 3px;
  width: 15px;
  height: 15px;
  cursor: pointer;
  position: relative;
}

.category-page__wrapper .checkbox-black::before {
  content: "";
  width: 15px;
  height: 15px;
  background: #132851;
  border: 2px solid #132851;
  position: absolute;
  border-radius: 3px;
  right: 50%;
  bottom: 50%;
  transform: translate(50%, 50%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.category-page__wrapper .checkbox-black:checked::before {
  opacity: 1;
}

.category-page__wrapper .filter__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.category-page__wrapper .filter__btn {
  height: 45px;
  width: 143px;
}

.category-page__wrapper .btn-reset {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #979797;
  width: 85px;
}

.category-page__wrapper .btn-reset span {
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.category-page__wrapper .btn-reset span:hover {
  filter: invert(1);
}

.category-page__wrapper .btn-reset span::before {
  content: url("../img/btn-reset.svg");
  display: inline-block;
  height: 20px;
  margin-right: 10px;
}

.category-page__wrapper .category-page__card {
  width: calc(100% - 320px);
}

.category-page__wrapper .catalog-filter__top {
  background: #FFFFFF;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-page__wrapper .catalog-filter__top .found {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #1B1B1B;
}

.category-page__wrapper .sorting {
  display: flex;
  align-items: center;
}

.category-page__wrapper .sorting span {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #1B1B1B;
  padding-right: 8px;
}

.category-page__wrapper .sorting .sorting__select::after {
  content: url("../img/sorting__select.svg");
}

.category-page__wrapper .sorting select {
  border: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #1B1B1B;
  cursor: pointer;
}

.category-page__wrapper .catalog-filter__grid {
  display: flex;
  -moz-column-gap: 6px;
  column-gap: 6px;
  align-items: center;
}

.category-page__wrapper .catalog-filter__grid .toggle-grid {
  height: 20px;
}

.category-page__wrapper .catalog-filter__grid .toggle-grid.active svg {
  fill: #C40F31;
}

.category-page__wrapper .catalog-filter__grid .toggle-grid svg {
  width: 20px;
  height: 20px;
  fill: #BDBDBD;
}

.category-page__items {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}

.category-page__items.card-v2 {
  grid-template-columns: repeat(1, 1fr);
}

.category-page__items.card-v2 .card-wrap {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.category-page__items.card-v2 .card {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 30px;
  column-gap: 30px;
  padding: 30px;
  align-items: center;
}

.category-page__items.card-v2 .card__title {
  height: 44px;
  -webkit-line-clamp: 2;
}

.category-page__items.card-v2 .card-gallery {
  width: 190px;
  height: 130px;
}

.category-page__items.card-v2 .card-gallery__img img {
  max-height: 85%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.category-page__items.card-v2 .card__center {
  max-width: 275px;
}

.category-page__items.card-v2 .card__link {
  height: 54px;
  padding: 12px 60px !important;
  margin-top: 20px;
}

.category-page__items.card-v2 .price {
  margin-top: 0;
}

.category-page__items.card-v2 .card__article {
  margin-top: 0;
}

.category-page__items.card-v2 .card__bottom {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 0 10px 50px;
}

.catalog-modal {
  background: #FFFFFF;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.14);
  border-radius: 3px;
  padding: 20px 40px;
  max-width: 1278px;
  margin: 0 auto;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.catalog-modal__wrapper {
  position: relative;
  min-height: 100%;
}

.catalog-modal__item {
  display: flex;
  align-items: center;
  width: 370px;
  cursor: pointer;
  margin-bottom: 15px;
}

.catalog-modal__item:last-child {
  margin-bottom: 0;
}

.catalog-modal__item svg {
  stroke: #1F1F1F;
  height: 18px;
  fill: none;
  width: 9px;
}

.catalog-modal__item--link {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #1F1F1F;
}

.catalog-modal__item--img {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
}

.catalog-modal__item--img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.catalog-modal__item--arrow {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}

.catalog-modal__links {
  width: calc(100% - 430px);
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
}

.catalog-modal__links li:first-child {
  display: none;
}

.catalog-modal__links a {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #1F1F1F;
  transition: all 0.3s ease-in-out;
}

.catalog-modal__links a:hover {
  color: #C40F31;
}

@media (min-width: 970px) {
  .catalog-modal__item:hover svg {
    stroke: #C40F31;
  }

  .catalog-modal__item:hover .catalog-modal__item--link {
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #C40F31;
  }

  .catalog-modal__item:hover .catalog-modal__links {
    opacity: 1;
    visibility: visible;
  }

  .catalog-modal__item:hover::before {
    position: absolute;
    content: "";
    width: calc(100% - 370px);
    height: 100%;
    right: 0;
    top: 0;
  }
}

.news-detail {
  padding-top: 20px;
}

.news-detail h2, .news-detail p, .news-detail h3, .news-detail h4, .news-detail ul {
  max-width: 1103px;
  margin: 0 auto;
}

.news-detail h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 46px;
  color: #000000;
}

.news-detail h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #333333;
  margin-top: 12px;
  font-family: "ProximaNova", sans-serif;
}

.news-detail h4 {
  font-weight: 700;
  font-size: 17px;
  line-height: 46px;
  color: #000000;
}

.news-detail p {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  margin-top: 12px;
  font-family: "ProximaNova", sans-serif;
}

.news-detail ul {
  margin-top: 20px;
}

.news-detail li {
  padding-left: 25px;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #1F1F1F;
  margin-bottom: 14px;
  position: relative;
  font-family: "ProximaNova", sans-serif;
}

.news-detail li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #1F1F1F;
  left: 6px;
  top: 12px;
}

.news-detail li:last-child {
  margin-bottom: 0;
}

.img-block {
  margin: 70px 0;
  display: flex;
  gap: 20px;
  max-height: 340px;
  overflow: hidden;
}

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

.img-block img:first-child {
  width: calc(67% - 10px);
}

.img-block img:last-child {
  width: calc(33% - 10px);
}

.column-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 130px;
  max-width: 1103px;
  margin: 0 auto;
}

.news-detail-card {
  max-width: 1103px;
  margin: 0 auto;
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}

.news-detail-card__descr {
  max-width: 475px;
}

.news-detail-card__descr span {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #C0C0C0;
  display: block;
  margin-top: 60px;
}

.news-detail-card__img {
  width: calc(100% - 617px);
}

.news-detail-card__img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.news-detail__btn {
  margin: 40px auto 0 auto;
}

.suppliers-two__subtitle {
  max-width: 540px;
}

.suppliers-two__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-bottom: -2px;
  position: relative;
  margin-top: 60px;
}

.suppliers-two__wrapper::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 100%;
  right: 0;
  top: 0;
  background-color: #fff;
  z-index: 2;
}

.suppliers-two__item {
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.suppliers-two__item:hover {
  opacity: 0.6;
}

.suppliers-two__item img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.modal-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-wrap.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 1070px;
  max-width: 1070px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: 95vh;
}

.modal::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.modal__body {
  background: #FFFFFF;
  display: flex;
  width: 100%;
  position: relative;
  padding: 70px;
  display: flex;
  gap: 50px;
}

.modal__close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 24px;
  height: 24px;
}

.modal__close svg {
  width: 100%;
  height: 100%;
  fill: #C40F31;
}

.modal-card__img {
  width: calc(100% - 530px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-card__img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.modal-card__info {
  width: 530px;
}

.modal-card__info .price {
  margin-top: 10px;
}

.modal-card__info .price__new {
  font-size: 26px;
  line-height: 33px;
}

.modal-card__info .price__old {
  font-size: 18px;
  line-height: 28px;
}

.modal-card__category {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #4F4F4F;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-card__category span {
  color: #C40F31;
}

.modal-card__title {
  font-weight: 700;
  font-size: 23px;
  line-height: 30px;
  color: #1F1F1F;
  margin-top: 8px;
}

.modal-card__form {
  margin-top: 40px;
}

.modal-card__input {
  background: #FAFAFA;
  border-radius: 3px;
  width: 230px;
  height: 50px;
  border: none;
  padding: 0 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #828282;
}

.modal-card__input:first-child {
  margin-right: 20px;
}

.modal-card__check {
  margin-top: 20px;
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
  color: #1F1F1F;
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
  column-gap: 15px;
  cursor: pointer;
}

.modal-card__btn {
  margin-top: 35px;
  padding: 12px 23px !important;
}

@media (max-width: 1400px) {
  .articles {
    max-width: inherit;
    width: 100%;
  }

  .table-item>div {
    padding: 5px 10px;
  }

  .table-item__name {
    font-size: 14px;
    line-height: 20px;
  }

  .table-item {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 1230px) {
  .table__top {
    display: none;
  }

  .table-row {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 50px;
  }

  .table-row:last-child {
    margin-bottom: 0;
  }

  .table-item__mob-title {
    background: #333333;
    height: 66px;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 14px 10px;
  }

  .table-item__left {
    flex-wrap: wrap;
  }

  .table-item>div {
    flex-wrap: wrap;
    align-items: flex-start;
    border: none !important;
    padding: 25px !important;
    padding-top: 80px !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #F0F0F0;
  }

  .table-item:nth-child(even) {
    background: #FFFFFF;
  }

  .table-item__right {
    flex-direction: column;
    row-gap: 20px;
  }

  .table-item__left {
    flex-wrap: nowrap !important;
    text-align: left !important;
  }

  .table-item {
    padding: 20px;
  }

  .card-sec-info {
    max-width: 520px;
  }

  .contact-bg {
    display: none;
  }

  .contact__wrapper {
    max-width: 100%;
  }

  .profile__right.profile__right-two {
    padding: 25px;
  }

  .favorites {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .modal {
    min-width: 710px;
    max-width: 710px;
  }

  .modal-card__title {
    font-size: 18px;
    line-height: 26px;
  }

  .modal-card__category {
    font-size: 13px;
    line-height: 12px;
  }

  .modal-card__info .price__new {
    font-size: 18px;
    line-height: 25px;
  }

  .modal-card__info .price__old {
    font-size: 12px;
    line-height: 21px;
  }

  .modal-card__input {
    width: 100%;
  }

  .modal-card__input:first-child {
    margin-right: 0;
    margin-bottom: 25px;
  }

  .modal-card__info {
    width: 359px;
  }

  .modal-card__img {
    width: calc(100% - 384px);
  }

  .modal__body {
    gap: 20px;
  }
}

@media (max-width: 1120px) {
  .nav__list {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }

  .logo {
    width: 95px;
    min-width: 95px;
    height: 46px;
  }

  .header-top__btn {
    padding: 7px 15px;
  }

  .promo-slide__title {
    font-size: 34px;
    line-height: 37px;
    margin-top: 10px;
  }

  .promo-slide__ofer {
    max-width: 520px;
  }

  .promo-slide__percent {
    font-size: 48px;
    margin-top: 17px;
  }

  .promo-slide__stock {
    font-size: 12px;
  }

  .button.promo-slide__btn {
    padding: 9px 30px;
    margin-top: 20px;
  }

  .promo-slide__ofer {
    padding-bottom: 65px;
  }

  .promo .swiper-slide {
    padding: 30px 30px 20px 30px;
  }

  .promo .swiper-pagination {
    padding: 0 30px;
  }

  .advantages__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
  }

  .catalog-category-item__link {
    padding: 12px 0;
    width: 100%;
  }

  .catalog-category__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .articles {
    padding: 0;
    box-shadow: none;
    margin: 55px 0 0 0;
  }

  .footer__menu {
    -moz-column-gap: 25px;
    column-gap: 25px;
  }

  .catalog-modal {
    padding: 30px 20px;
  }

  .catalog-modal__item {
    width: 280px;
  }

  .catalog-modal__links {
    width: calc(100% - 330px);
  }

  .catalog__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .subcatalog__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .filter-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .filter-sec {
    padding: 20px 0;
  }

  .filter-sec__bottom {
    margin-top: 20px;
    padding-top: 20px;
  }

  .sale__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .checkout__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    padding-bottom: 120px;
    row-gap: 40px;
  }

  .checkout-form .form__btn {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .blog-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile__block-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-table-item__img {
    height: 70px;
    width: 70px;
    min-width: 70px;
  }

  .order-table-item__title {
    font-size: 12px;
    line-height: 170%;
  }

  .order-table-item__model {
    font-size: 12px;
    line-height: 170%;
  }

  .order-table-item__col {
    font-size: 14px;
    line-height: 100%;
    white-space: nowrap;
  }

  .order-table__top {
    font-size: 10px;
  }
}

@media (max-width: 1030px) {
  .category-page__wrapper {
    flex-direction: column;
  }

  .category-page__wrapper .filter {
    max-width: 100%;
    min-width: none;
    width: 100%;
    margin-bottom: 20px;
  }

  .category-page__wrapper .category-page__card {
    width: 100%;
  }

  .filter__body {
    display: none;
  }

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

  .filter__title.active::after {
    transform: rotateX(180deg);
  }

  .filter__title::after {
    content: "";
    background-image: url("../img/arrow-down.svg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 10px;
    width: 15px;
    display: block;
    transition: all 0.3s ease-in-out;
  }
}

@media (max-width: 970px) {
  .advantages__wrapper {
    padding: 20px;
  }

  .nav__list {
    padding-top: 20px;
  }

  .about {
    padding: 0;
    box-shadow: none;
    margin-top: 35px;
  }

  .about-num {
    padding: 30px 50px;
    margin-top: 20px;
  }

  .about__descr {
    -moz-column-gap: 40px;
    column-gap: 40px;
  }

  .about-num__item--numbers {
    font-size: 32px;
    line-height: 46px;
    padding-bottom: 5px;
  }

  .about-num__item--text {
    font-size: 14px;
    line-height: 22px;
    padding-top: 10px;
  }

  .card-wrap {
    height: auto;
  }

  .card__link {
    height: 45px;
    padding: 0 30px !important;
    margin-top: 24px;
    font-size: 10px;
    line-height: 30px;
  }

  .card {
    padding: 20px;
  }

  .card-gallery {
    height: 130px;
  }

  .card-gallery__img img {
    max-height: 85%;
  }

  .card .price {
    margin-top: 10px;
  }

  .card .price .price__new {
    font-size: 17px;
  }

  .card .price .price__old {
    font-size: 14px;
    line-height: 32px;
  }

  .slider-sec .swiper {
    padding-bottom: 25px;
  }

  .container {
    position: relative;
  }

  .slider-sec__arrow {
    position: absolute;
    right: 15px;
    bottom: 0;
  }

  .button.slider-sec__link {
    padding: 9px 16px;
    margin-right: auto;
    margin-left: 0;
    font-size: 10px;
    line-height: 30px;
  }

  .slider-sec .tabs-content-active .swiper {
    margin-top: 35px;
  }

  .slider-sec {
    padding: 35px 0 50px 0;
  }

  .tab-link-wrapper .tab {
    font-size: 16px;
  }

  .slider-sec .tab-link-wrapper {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .suppliers {
    margin-top: 45px;
    padding-bottom: 10px;
  }

  .suppliers .slider-sec__arrow {
    bottom: -60px;
  }

  .suppliers__wrapper {
    margin-top: 30px;
  }

  .articles__link {
    margin: 30px auto -30px 0;
  }

  .articles {
    margin-top: 95px;
  }

  .articles .container {
    padding-bottom: 30px;
  }

  .footer-center .container {
    gap: 24px;
    flex-wrap: wrap;
  }

  .footer__menu {
    margin: 35px 15px 0 15px;
  }

  .header-top__btn {
    display: none;
  }

  .nav {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: #F9FBFB;
    top: 0;
    left: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transform: translateX(-150%);
    transition: all 0.3s ease-in-out;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav .catalog-btn {
    background-color: transparent;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #1F1F1F;
    font-family: "ProximaNova", sans-serif;
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    margin: 25px 0 12px 0;
    justify-content: flex-start;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    text-transform: none;
    position: relative;
  }

  .nav .catalog-btn::after {
    position: absolute;
    content: url("../img/arrow-red-right.svg");
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav .catalog-btn::before {
    display: none;
  }

  .nav .block-stock {
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #1F1F1F;
    font-family: "ProximaNova", sans-serif;
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    margin: 0 0 12px 0;
    justify-content: flex-start;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    text-transform: none;
  }

  .nav .block-stock::before {
    display: none;
  }

  .nav__logo {
    display: block;
    width: 81px;
    height: 40px;
  }

  .nav__logo img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .nav__close {
    position: absolute;
    background-image: url("../img/close.svg");
    width: 20px;
    height: 20px;
    right: 15px;
    top: 15px;
    display: block;
  }

  .nav__list {
    order: 4;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__link {
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    font-family: "ProximaNova", sans-serif;
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    margin: 0 0 12px 0;
    justify-content: flex-start;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    text-transform: none;
    display: block;
  }

  .nav__item {
    width: 100%;
  }

  .catalog-modal {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    max-width: none;
    margin: 0;
    padding: 20px;
  }

  .back {
    font-weight: 800;
    font-size: 14px;
    line-height: 30px;
    text-transform: uppercase;
    color: #1F1F1F;
    display: block;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
  }

  .back::before {
    content: "";
    background-image: url("../img/arrow-red-left.svg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 9px;
    height: 15px;
    display: block;
    margin-right: 14px;
  }

  .catalog-modal__item {
    width: 100%;
    margin-bottom: 0;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .catalog-modal__item:first-child {
    padding-top: 0;
  }

  .catalog-modal__links {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 4000;
    max-width: none;
    margin: 0;
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #F9FBFB;
    gap: 0;
    display: none;
    transition: none;
  }

  .catalog-modal__links li:first-child {
    display: block;
  }

  .catalog-modal__links li:nth-child(2) a {
    padding-top: 0;
  }

  .catalog-modal__links a {
    display: block;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .catalog-modal__wrapper {
    padding: 0;
  }

  .header .post-block {
    display: none;
  }

  .burger {
    display: block;
  }

  .header-top__wrap {
    padding: 12px 15px;
  }

  .info-block {
    margin-right: 0;
  }

  .header-center__wrap {
    padding: 15px;
  }

  .search {
    height: 40px;
  }

  .logo {
    height: 30px;
    width: 67px;
    min-width: 67px;
  }

  .logo img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .table-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .slider-sec .swiper {
    padding-bottom: 100px;
    margin-top: 30px;
  }

  .slider-sec .slider-sec__arrow {
    bottom: 20px;
  }

  .card-sec__wrapper {
    flex-direction: column;
  }

  .card-sec__slider {
    width: 100%;
    margin-bottom: 20px;
    order: 2;
  }

  .card-sec-info {
    order: 1;
    max-width: 100%;
    margin-left: 0;
  }

  .card-sec-info__descr {
    order: 3;
    font-size: 14px;
    line-height: 24px;
  }

  .card-sec-info__bottom {
    order: 4;
    justify-content: space-between;
  }

  .card-sec-info__top {
    font-size: 14px;
    line-height: 28px;
  }

  .card-sec-info__bottom .price__new {
    font-size: 24px;
    line-height: 33px;
  }

  .pdf-link {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pdf-link__item {
    width: 100%;
  }

  .sale__wrapper {
    margin-top: 20px;
  }

  .basket__top {
    display: none;
  }

  .basket-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 25px;
  }

  .basket-item .price {
    align-items: flex-end;
    margin-left: auto;
  }

  .basket-item__remove {
    display: none;
  }

  .basket-item__left {
    min-width: 480px;
  }

  .checkout__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .checkout-column:nth-child(2) {
    margin-top: -15px;
  }

  .about-page-top {
    grid-template-columns: repeat(1, 1fr);
  }

  .about-page-top__right {
    padding: 0;
    margin-top: 20px;
  }

  .news__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-detail-card {
    flex-direction: column;
    row-gap: 30px;
    margin-top: 60px;
  }

  .news-detail-card__descr {
    max-width: 100%;
  }

  .news-detail-card__descr span {
    display: none;
  }

  .news-detail-card__img {
    width: 100%;
    text-align: center;
  }

  .column-text {
    gap: 50px;
  }

  .news-detail {
    padding-top: 0;
  }

  .contact__wrapper {
    flex-direction: column;
  }

  .contact__map {
    width: 100%;
    height: 517px;
  }

  .contact__map img {
    width: 100%;
    height: 100%;
  }

  .contact-item__title {
    font-size: 18px;
    line-height: 28px;
  }

  .profile__wrapper {
    flex-direction: column;
  }

  .profile__menu {
    width: 100%;
    margin-bottom: 55px;
    padding: 15px;
  }

  .profile__menu li {
    margin-bottom: 10px;
  }

  .profile__block-wrap {
    grid-template-columns: repeat(3, 1fr);
  }

  .profile__right {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .advantages__wrapper {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .catalog-category-item__descr {
    display: none;
  }

  .catalog-category__wrapper {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }

  .catalog-category-item__img {
    max-width: 40%;
    max-height: 60%;
    right: -10px;
    bottom: -10px;
  }

  .button.catalog-category-item__link {
    opacity: 1;
    background-color: transparent;
    font-size: 11px;
    line-height: 30px;
    color: #1F1F1F;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .button.catalog-category-item__link::before {
    content: "";
    background-image: url("../img/red-arrow.svg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 9px;
    height: 12px;
    display: block;
    margin-right: 12px;
  }

  .catalog-category-item__title {
    font-size: 16px;
    line-height: 26px;
  }

  .catalog-category-item {
    height: 240px;
    overflow: hidden;
  }

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

  .title {
    font-size: 24px;
    line-height: 26px;
    text-align: center;
  }

  .catalog__wrapper {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
  }

  .catalog-item__title {
    font-size: 14px;
    line-height: 150%;
  }

  .catalog-item__list a {
    font-size: 12px;
    line-height: 22px;
  }

  .catalog-item {
    padding: 15px;
    min-height: auto;
  }

  .catalog-item__img {
    height: 87px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }

  .breadcrumbs-list {
    margin: 20px 0 30px 0;
  }

  .subcatalog-item__title {
    font-size: 16px;
    line-height: 26px;
  }

  .subcatalog__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .tabs-sec {
    margin-top: 30px;
  }

  .tabs-sec .tab-link-wrapper {
    flex-direction: column;
    row-gap: 10px;
    padding-bottom: 15px;
  }

  .tabs-sec .tab-link-wrapper .tab {
    padding-bottom: 0;
  }

  .tabs-sec__wrapper {
    padding: 15px;
  }

  .card-sec-info__title {
    text-align: center;
    font-size: 18px;
    line-height: 150%;
  }

  .card-sec-info__top {
    text-align: center;
  }

  .tab-content-wrapper ul li {
    font-size: 14px;
    line-height: 24px;
  }

  .tab-content-wrapper h4 {
    font-size: 14px;
    line-height: 150%;
  }

  .tab-link-wrapper .tab {
    font-size: 12px;
    line-height: 250%;
  }

  .sale__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .checkout-column__title {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }

  .checkout-form .form__btn {
    width: 260px;
    left: 50%;
    transform: translateX(-50%);
  }

  .form__input span {
    font-size: 16px;
    line-height: 28px;
  }

  .form__input input {
    font-size: 14px;
    line-height: 28px;
    padding: 0 15px;
  }

  .sec-top__left {
    width: 100%;
  }

  .subtitle {
    text-align: center;
  }

  .about__descr p {
    font-size: 14px;
    line-height: 24px;
  }

  .news-detail br {
    display: none;
  }

  .news-detail h2 {
    font-size: 24px;
    line-height: 160%;
    text-align: center;
  }

  .news-detail h3 {
    font-size: 16px;
    line-height: 160%;
  }

  .news-detail p {
    font-size: 14px;
    line-height: 170%;
  }

  .news-detail li {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 10px;
  }

  .news-detail li:last-child {
    margin-bottom: 0;
  }

  .img-block {
    margin: 60px 0 30px 0;
  }

  .column-text {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .blog__wrapper {
    flex-direction: column;
    row-gap: 45px;
  }

  .blog-menu {
    width: 100%;
  }

  .deliver__top {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 5px;
  }

  .profile__block-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-table__top {
    display: none;
  }

  .profile__right--title {
    display: none;
  }

  .profile__right.profile__right-two {
    padding: 15px;
  }

  .order-table-item {
    padding: 15px 0;
  }

  .brand-sec__title {
    text-align: left;
  }

  .brand-sec__top {
    padding-bottom: 40px;
    border-bottom: none;
  }

  .brand-sec__wrapper {
    flex-direction: column-reverse;
    padding-top: 0;
  }

  .brand-sec__img {
    max-width: 100%;
    width: 100%;
    height: 404px;
  }

  .brand-sec__img img {
    width: 100%;
    height: 100%;
  }

  .brand-sec__descr {
    max-width: 100%;
    margin-top: 35px;
  }

  .brand-sec__descr .text-weight {
    font-size: 16px;
    line-height: 160%;
  }

  .brand-sec__descr p {
    font-size: 14px;
    line-height: 170%;
    padding-bottom: 14px;
  }

  .personal-data h1 {
    font-size: 24px;
    line-height: 170%;
    margin-bottom: 10px;
    text-align: center;
  }

  .personal-data .container {
    font-size: 14px;
    line-height: 28px;
  }

  .personal-data h2 {
    font-size: 17px;
    line-height: 26px;
    margin: 20px 0;
  }

  .category-page__wrapper .catalog-filter__grid {
    display: none;
  }

  .suppliers-two__wrapper {
    margin-top: 30px;
  }

  .suppliers-two__item {
    padding: 20px;
  }
}

@media (max-width: 750px) {
  .modal__body {
    flex-direction: column;
    padding: 30px;
  }

  .modal-card__img {
    width: 100%;
    height: 200px;
  }

  .modal-card__info {
    width: 100%;
  }

  .modal {
    min-width: 90%;
  }
}

@media (max-width: 720px) {
  .suppliers__wrapper .swiper-wrapper::before {
    display: none;
  }

  .suppliers__wrapper::after {
    display: none;
  }

  .suppliers__wrapper .swiper-slide {
    border-right: 0;
  }

  .suppliers__wrapper .swiper-slide {
    height: 85px;
  }

  .articles-item__title {
    font-size: 17px;
    line-height: 21px;
  }

  .articles__wrapper {
    margin-top: 30px;
  }

  .button.btn-white {
    padding: 9px 30px;
    font-size: 10px;
    line-height: 30px;
  }

  .table-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-item {
    padding: 90px 15px;
  }

  .services-item__title {
    font-size: 16px;
    line-height: 170%;
  }

  .services-item__descr {
    font-size: 14px;
    line-height: 24px;
    margin-top: 5px;
  }

  .services-item__btn.button.btn-white {
    width: 100%;
  }

  .services-item__descr-more {
    font-size: 14px;
    line-height: 160%;
  }

  .services__wrapper {
    margin-top: 20px;
  }

  .news__wrapper {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 50px;
  }

  .articles-item__title {
    font-size: 16px;
    line-height: 28px;
    height: auto;
  }

  .articles-item__descr {
    font-size: 14px;
    line-height: 24px;
  }

  .articles-item__body {
    padding: 0;
  }

  .articles-item.articles-item__v2 {
    padding: 30px 15px 140px 15px;
  }

  .order-table-item__col:nth-child(3) {
    display: none;
  }

  .order-table-item__col:nth-child(2) {
    display: none;
  }

  .order-table-two .order-table__row {
    grid-template-columns: 50% 12% 12% 15%;
  }

  .error {
    flex-direction: column;
  }

  .error__right {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 680px) {
  .promo-slide__title {
    font-size: 20px;
    line-height: 26px;
    margin-top: 0;
  }

  .promo-slide__ofer {
    max-width: 325px;
  }

  .promo .swiper-pagination {
    bottom: 25px;
  }

  .promo .swiper-pagination-bullet {
    width: 30px;
  }

  .promo .swiper-slide {
    padding: 35px 25px 25px 25px;
  }

  .promo-slide__img {
    left: auto;
    right: 0;
    width: auto;
    opacity: 0.5;
  }

  .catalog-category__wrapper {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 10px;
  }

  .catalog-category-item {
    height: 150px;
  }

  .catalog-category-item__img {
    max-height: 80%;
  }

  .catalog-category {
    margin-top: 30px;
  }

  .about-num {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }

  .about__descr {
    grid-template-columns: repeat(1, 1fr);
  }

  .suppliers__wrapper .swiper-slide {
    padding: 15px;
  }

  .footer-center {
    padding: 35px 0;
  }

  .footer-top {
    padding: 25px 0;
  }

  .footer-top .catalog-btn::before {
    display: none;
  }

  .footer__logo {
    width: 93px;
    height: 46px;
  }

  .footer__logo img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .footer {
    padding-top: 60px;
  }

  .filter-sec {
    margin-top: 25px;
  }

  .filter-wrap {
    grid-template-columns: repeat(1, 1fr);
  }

  .filter-sec__bottom {
    flex-direction: column;
    row-gap: 25px;
  }

  .pagin-block .container {
    flex-direction: column;
    row-gap: 20px;
  }

  .quantity .quantity__input {
    width: 40px;
    height: 44px;
  }

  .quantity {
    height: 44px;
    margin-top: -70px;
  }

  .quantity .quantity__btn-wrap {
    padding: 0;
    padding-top: 2px;
  }

  .basket-item__left {
    grid-column-start: 1;
    grid-column-end: 3;
    min-width: auto;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }

  .basket-item__price {
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .basket-item__img {
    width: 90px;
    min-width: 90px;
    height: 90px;
  }

  .basket-item__title {
    font-size: 12px;
    line-height: 150%;
  }

  .basket-item__article {
    font-size: 12px;
    line-height: 22px;
  }

  .basket-item__model {
    font-size: 12px;
    line-height: 22px;
  }

  .basket-item__model span {
    display: block;
  }

  .basket-item .price .price__new {
    font-size: 18px;
    line-height: 100%;
  }

  .price .price__old {
    font-size: 14px;
    line-height: 100%;
  }

  .about-page .about-num__item {
    max-width: 100%;
    text-align: center;
  }

  .about-page .about-num {
    padding: 30px 5px;
    margin-top: 0;
  }

  .about-page__img {
    min-height: 280px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .about-page-top__left ul {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .about-page-top__left p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 28px;
    font-family: "ProximaNova", sans-serif;
  }

  .about-page-top__left .weight-bold {
    font-size: 16px;
    line-height: 28px;
  }

  .about-page-top__right--item p {
    font-size: 14px;
    line-height: 28px;
    font-family: "ProximaNova", sans-serif;
  }

  .about-page-top {
    padding-bottom: 45px;
  }

  .about__descr {
    margin-top: 30px;
  }

  .about-page .about-num__item--text {
    font-size: 18px;
    line-height: 20px;
  }

  .img-block {
    flex-direction: column;
    max-height: none;
    margin-left: -15px;
    margin-right: -15px;
  }

  .img-block img {
    height: 453px;
  }

  .img-block img:first-child {
    width: 100%;
  }

  .img-block img:last-child {
    width: 100%;
  }

  .blog-menu {
    padding: 15px;
  }

  .blog-items {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 50px;
  }

  .blog-items .articles-item__body {
    padding-bottom: 0;
  }

  .deliver__bottom div p {
    width: 100%;
  }

  .entrance {
    margin: 20px 15px 20px 15px;
    width: calc(100% - 30px);
    padding: 35px 15px;
  }

  .entrance-form {
    max-width: 100%;
  }

  .brand-sec__top {
    flex-direction: column;
    row-gap: 30px;
  }

  .brand-sec__img {
    transform: translateX(15px);
    max-width: none;
    width: 110%;
    margin-left: -30px;
  }

  .brand-sec__title {
    font-size: 18px;
    line-height: 150%;
  }

  .category-page__wrapper .catalog-filter__top {
    flex-direction: column;
    row-gap: 20px;
    padding: 0;
    background-color: transparent;
  }

  .category-page__items {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 580px) {
  .footer-center .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__menu {
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
  }

  .footer__btn {
    font-size: 10px;
    line-height: 30px;
    width: 160px;
  }

  .footer-center__column a,
  .footer-center__column p {
    font-size: 14px;
    line-height: 22px;
  }

  .subcatalog__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .subcatalog-item {
    height: auto;
  }

  .table-row {
    grid-template-columns: repeat(1, 1fr);
  }

  .table {
    padding: 0;
  }

  .card-sec-info__center {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .card-sec-info__manufacturer {
    width: 100%;
    justify-content: space-between;
  }

  .card-sec-info__bottom {
    flex-direction: column;
  }

  .card-sec-info__bottom .button {
    width: 240px;
  }

  .card-sec-info__bottom .price {
    margin: 0;
    margin-bottom: 15px;
    justify-content: space-between;
    display: flex;
    width: 100%;
  }

  .sale__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .sec-bottom {
    margin-top: 40px;
  }

  .basket__bottom {
    flex-direction: column-reverse;
  }

  .basket__bottom .button.btn-white {
    width: 260px;
    margin: 50px auto 0 auto;
  }

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

  .basket__wrapper {
    margin-top: 10px;
  }

  .title {
    text-align: center;
  }

  .profile__block-wrap {
    grid-template-columns: repeat(1, 1fr);
  }

  .order-table-one .order-table__row {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }

  .order-table-two .order-table__row {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }

  .order-table-item__left {
    grid-column-start: 1;
    grid-column-end: 4;
  }

  .favorites {
    grid-template-columns: repeat(1, 1fr);
  }

  .suppliers-two__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 420px) {
  .promo-slide__img {
    width: 100%;
    opacity: 1;
  }

  .entrance-form__bottom {
    flex-direction: column;
    align-items: center;
  }

  .entrance-form__btn-wrap {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
}


.table {
  max-width: 1500px;
}

.table-item>div:last-child {
  justify-content: space-between;
}

.table-item__btn {
  padding: 6px 15px !important;
}

.table-item__info {
  justify-content: center;
}

.table__top span {
  text-align: center;
}

.filter-item {
  display: none;
}

.filter-item:nth-child(-n+8) {
  display: block;
}

.filter-wrap.all-filter .filter-item {
  display: block !important;
}

.filter-sec__btn {
  cursor: pointer;
}

.modal-card__btn {
  border: none;
  cursor: pointer;
}


.header-top {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2000;
}

.page {
  padding-top: 46px;
}

.product-item-detail-properties dt {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4F4F4F;
  font-family: "ProximaNova", sans-serif;
}

.product-item-detail-properties dd {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4F4F4F;
  font-family: "ProximaNova", sans-serif;
}

.modal-card__info .price {
  margin-bottom: 30px;
}

.modal-call .modal {
  min-width: 670px;
  max-width: 670px;
}

@media (max-width: 750px) {
  .modal-call .modal {
    min-width: 90%;
  }

  .modal-call .modal__body {
    padding-top: 50px;
  }

  .modal__close {
    right: 20px;
    top: 20px;
  }
}

@media (max-width: 1170px) {
  .modal-call .modal-card__info {
    width: 100%;
  }
}


.filter-sec-descr {
  display: flex;
  margin-bottom: 30px;
}

.filter-sec-descr p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-right: 30px;
}

.filter-sec-descr img {
  width: 400px;
  object-fit: cover;
}


@media (max-width: 870px) {
  .filter-sec-descr {
    flex-direction: column-reverse;
  }

  .filter-sec-descr p {
    margin-top: 20px;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .filter-sec-descr img {
    width: 100%;
  }

  .filter-sec-descr p {
    font-size: 14px;
  }
}

.catalog-item.skip_ul .services-block__bottom {
  display: none;
}

.catalog-item__title a {
  color: #1F1F1F;
}


@media (min-width: 1230px) {
  .table-row {
    display: flex;
    justify-content: space-between;
  }

  .table-row>div {
    flex-grow: 1;
  }

  .table-row>span {
    flex-grow: 1;
    display: block;
    width: 130px;
  }

  .table__top span:first-child {
    min-width: 290px;
    max-width: 290px;
  }

  .table__top span:last-child {
    min-width: 250px;
    max-width: 250px;
  }

  .table-item__right {
    width: 250px;
    max-width: 250px;
  }

  .table-item__left {
    width: 290px;
    max-width: 290px;
  }

  .table-item__info {
    width: 130px;
  }
}


@media (max-width: 1230px) {
  .table-row {
    display: grid;
    margin-bottom: 20px;
  }

  .table__top {
    display: none !important;
  }

  .table-item__mob-title {
    font-size: 12px;
    line-height: 15px;
  }
}

.table__mobil {
  display: none;
}

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

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

  .block-stock {
    display: none;
  }
}

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

.card-sec-info {
  width: calc(100% - 570px);
  max-width: inherit;
}

@media (max-width: 1100px) {
  .card-sec__slider {
    width: 450px;
  }

  .card-sec-info {
    width: calc(100% - 500px);
  }
}

@media (max-width: 970px) {
  .card-sec__slider {
    width: 100%;
  }

  .card-sec-info {
    width: 100%;
    margin-bottom: 30px;
  }
}

.product-item-detail-properties {
  display: block;
  overflow: hidden;
  margin: 0;
  color: #a5a5a5;
  font-size: 18px;
}

.product-item-detail-properties dl { clear: both; }
.product-item-detail-properties {
    max-width: 100%;
}
.product-item-detail-properties dt {
  float: left;
    width: 50%;
    clear: both;
    padding: 5px 10px;
    font-weight: normal;
    border-bottom: 1px solid #eeeeee;
    border-left: 1px solid #eeeeee;
}

.product-item-detail-properties dd {
  float: right;
    width: 50%;
    margin-bottom: 0px;
    border-bottom: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    margin-left: 0px;
    color: #000;
    text-align: center;
    padding: 5px 10px;
}
.product-item-detail-properties dt:first-child, .product-item-detail-properties dd:nth-child(2) {
    border-top: 1px solid #eeeeee;
}