:root {
  --color-orange: #ff5d02;
  --color-gray: #757575;
  --color-gray-medium: #282828;
  --color-gray-dark: #1e1e1e;
  --color-black: #1a1a1a;
  --color-green: #46e050;
  --color-red: #eb1717;
  --color-border: #343434;
  --color-border-grid: #ffffff20;
  --font-title: 'Buyan', 'System Font', sans-serif;
  --font-text: 'Kelson Sans RU', 'System Font', sans-serif;
}
html {
  height: auto;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  line-height: 1.2;
  font-family: var(--font-text), sans-serif;
  height: auto;
  color: var(--color-gray);
  margin: 0;
  background-color: var(--color-black);
  position: relative;
  background-image: url(../img/bg-page.webp);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
main {
  display: block;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
button,
select {
  text-transform: none;
}
[type='button'],
[type='reset'],
[type='submit'],
button {
  -webkit-appearance: button;
}
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring,
button:-moz-focusring {
  outline: ButtonText dotted 1px;
}
textarea {
  overflow: auto;
  resize: none;
}
[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
[hidden] {
  display: none;
}
*,
::after,
::before {
  box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-family: var(--font-title), sans-serif;
}
ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
p {
  margin: 0;
}
a {
  text-decoration: none;
  background-color: transparent;
  color: var(--color-text);
  cursor: pointer;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
input {
  border: none;
  background-color: #fff;
  font: inherit;
}
button {
  border: none;
  padding: 0;
  font: inherit;
  background-color: transparent;
}
@font-face {
  font-family: Buyan;
  src: url(../fonts/Buyan-Thin.woff2) format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Buyan;
  src: url(../fonts/Buyan-Regular.woff2) format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Buyan;
  src: url(../fonts/Buyan-Bold.woff2) format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kelson Sans RU';
  src: url(../fonts/KelsonSans-BoldRU.woff2) format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kelson Sans RU';
  src: url(../fonts/KelsonSans-LightRU.woff2) format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kelson Sans RU';
  src: url(../fonts/KelsonSans-RegularRU.woff2) format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.container {
  max-width: 1700px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.no-overflow {
  overflow: hidden;
}
.hidden,
.hidden-desctop,
.hidden-mobile {
  display: none;
}
.content-center {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.no-wrap {
  flex-wrap: nowrap;
}
.btn {
  text-align: center;
  font-family: var(--font-title);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  background-color: var(--color-orange);
  padding: 10px;
  display: block;
  width: 100%;
  border: 1px solid transparent;
  transition-duration: 0.3s;
  cursor: pointer;
}
.btn:hover {
  background-color: #fff;
  color: var(--color-orange);
}
.btn-inv {
  background-color: transparent;
  border-color: var(--color-gray);
}
.btn-messanger {
  max-width: 310px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 11px;
  font-size: 30px;
  padding: 3px;
  flex-shrink: 0;
}
.btn-messanger_tel {
  display: none;
}
.btn-messanger__name {
  display: block;
}
.btns-messanger-block {
  display: block;
}
.btns-messanger-block__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.btn-messanger rect {
  transition-duration: 0.3s;
}
.btn-messanger path {
  transition-duration: 0.3s;
}
.btn-messanger:hover {
  border-color: var(--color-orange);
}
.btn-messanger:hover rect {
  stroke: var(--color-orange);
}
.btn-messanger:hover path {
  fill: var(--color-orange);
}
.title {
  font-size: 96px;
  line-height: 104px;
  margin-bottom: 60px;
  text-transform: uppercase;
}
.mini-title {
  font-size: 34px;
  line-height: 34px;
  font-family: var(--font-text);
  margin-bottom: 0;
}
.page__title {
  font-size: 220px;
  line-height: 220px;
}
.page__title-medium {
  font-size: 128px;
  line-height: 128px;
}
.page__title-normal {
  font-size: 64px;
  line-height: 59px;
}
.swiper-slide {
  box-sizing: border-box;
}
.stock-status {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--font-title);
}
.in-stock {
  color: var(--color-green);
  border-color: var(--color-green);
}
.out-of-stock {
  color: var(--color-red);
  border-color: var(--color-red);
}
.discount {
  border-radius: 6px;
  color: #fff;
  display: inline-block;
  padding: 2px 4px;
  text-align: center;
  background-color: var(--color-red);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-title);
  position: relative;
  top: 0;
}
.slider-controls {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
.slider-controls__arrows {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.slider-nav {
  display: block;
  line-height: 0;
}
.slider-nav__l {
  display: block;
}
.slider-nav__r {
  display: block;
}
.arrows-wite rect {
  stroke: #a7a7a7;
}
.arrows-wite path {
  fill: #fff;
}

.swiper-button-lock,
.slider-pagination.swiper-pagination-lock {
  display: none;
}

.slider-pagination {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.slider-pagination .swiper-pagination-bullet {
  display: block;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background-color: var(--color-gray-medium);
  transition-duration: 0.3s;
  flex-shrink: 0;
  margin: 0 !important;
  opacity: 1;
}
.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-orange);
  width: 20px;
}
.slider-marquee {
  pointer-events: none;
}
.slider-marquee .swiper-wrapper {
  transition: transform 2s linear;
}
.decor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  max-width: 1700px;
  width: 100%;
  height: calc(100% + 150px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 113px;
  z-index: 1;
  pointer-events: none;
  padding: 0 8px;
}
.decor-grid__col {
  display: block;
}
.decor-grid__col:nth-child(1) {
  border-left: 1px solid var(--color-border-grid);
  border-right: 1px solid var(--color-border-grid);
  position: relative;
  left: 1px;
}
.decor-grid__col:nth-child(2) {
  border-right: 1px solid var(--color-border-grid);
  position: relative;
  left: 0px;
}
.decor-grid__col:nth-child(3) {
  border-right: 1px solid var(--color-border-grid);
  position: relative;
  left: -1px;
}
.decor-grid__col:nth-child(4) {
  border-right: 1px solid var(--color-border-grid);
  position: relative;
  left: 1px;
}
.breadcrumbs {
  display: block;
  padding-top: 154px;
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.breadcrumbs__container {
  display: block;
  position: relative;
  overflow: hidden;
}
.breadcrumbs a {
  display: block;
}

.breadcrumbs a:hover {
  color: var(--color-orange);
}

.breadcrumbs span {
  display: block;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.text-block {
  display: block;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 40px;
  width: 50%;
  background-color: var(--color-gray-dark);
  position: relative;
  z-index: 1;
  font-size: 20px;
  line-height: 1.5;
}
.text-block p {
  margin-bottom: 20px;
}
.text-block p:last-child {
  margin-bottom: 0;
}
.overlay:after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
  z-index: 0;
}
.disclaimer-metacorp {
  font-size: 12px;
  margin-top: 20px;
  display: block;
  text-align: center;
}
.home {
  background-image: none;
}
.ps__rail-y {
  right: 0 !important;
  left: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.modal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.5s;
  opacity: 0;
  visibility: hidden;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal__content {
  max-width: 560px;
  width: 95%;
  margin: 0 auto;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #f2f8fa;
  z-index: 999;
  padding: 39px 42px;
  border-radius: 20px;
  background-size: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  display: block;
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 17px;
  height: 18px;
  cursor: pointer;
  background: 0 0;
  border: none;
  z-index: 998;
}
.modal__close:hover {
  cursor: pointer;
}
.modal__close:hover::after,
.modal__close:hover::before {
  background-color: var(--color-orange);
}
.modal__close::after,
.modal__close::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--color-gray-dark);
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-content {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: 20s linear infinite scroll-left;
}
@keyframes scroll-left {
  to {
    transform: translateX(-50%);
  }
}
.marquee:hover .marquee-content {
  animation-play-state: paused;
}
.hamburger,
.menu-mobile {
  display: none;
}

.header {
  display: block;
  padding: 34px 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 997;
  width: 100%;
  border-bottom: 1px solid var(--color-border-grid);
  transition: background-color 0.2s;
}
.header.sticky {
  background-color: var(--color-black);
}
.header__container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 52px;
  max-width: 1610px;
  position: relative;
}
.header__container:after,
.header__container:before {
  content: '';
  display: block;
  width: 1px;
  height: 113px;
  background-color: var(--color-border-grid);
  position: absolute;
  left: -37px;
  top: -35px;
}
.header__container:after {
  left: auto;
  right: -38px;
}
.catalog-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  position: relative;
  transition-duration: 0.3s;
}
.catalog-btn__ico {
  display: block;
  line-height: 0;
  position: relative;
  z-index: 2;
}
.catalog-btn__ico svg {
  line-height: 1;
}
.catalog-btn__name {
  font-size: 32px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-title);
  position: relative;
  z-index: 2;
}
.menu {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.menu-overlay {
  display: none;
}
.menu li {
  display: block;
}
.menu a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  transition-duration: 0.3s;
}
.menu a:hover {
  color: var(--color-orange);
}
.sub-menu {
  position: absolute;
  top: -20px;
  left: -30px;
  padding-top: 0;
  pointer-events: none;
  opacity: 0;
  max-height: 0;
  transition:
    max-height 0.3s,
    opacity 0.3s;
  background-color: var(--color-gray-dark);
  border-radius: 10px;
  border: 1px solid var(--color-border);
  min-width: 477px;
  z-index: 1;
}
.service__sub-menu {
  top: -28px;
}
.sub-menu li {
  display: block;
}
.sub-menu a {
  display: block;
  font-size: 20px;
  padding: 10px 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-top: -1px;
  text-transform: none;
  color: var(--color-gray);
  transition-duration: 0.3s;
}
.sub-menu a:hover {
  background-color: var(--color-orange);
  color: #fff;
}
.sub-menu li:last-child a {
  border-bottom: none;
  border-radius: 0 0 10px 10px;
  bottom: -1px;
}
.sub-menu img {
  display: block;
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}
a.sub-menu-filler {
  height: 80px;
  border-top: none;
  border-radius: 10px 10px 0 0;
}
.menu-has-child {
  position: relative;
}
.menu-has-child:hover .sub-menu {
  opacity: 1;
  pointer-events: auto;
  max-height: 600px;
  background-color: var(--color-gray-dark);
  box-shadow: 0 80px 80px -28px rgba(0, 0, 0, 0.6);
}
.menu-has-child:hover .service__sub-menu {
  max-height: 800px;
}
.menu-has-child:hover a {
  position: relative;
  z-index: 2;
}
.catalog-btn__ico:hover + .catalog-btn__name + .sub-menu .sub-menu-filler,
.catalog-btn__name:hover + .sub-menu .sub-menu-filler,
.menu-has-child__service-link:hover + .sub-menu .sub-menu-filler {
  background-color: var(--color-orange);
}
.menu-has-child__service-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
}
a.menu-has-child__service-link:hover {
  color: #fff;
}
.menu-has-child__service svg {
  display: block;
  position: relative;
  top: -1px;
  transition-duration: 0.3s;
}
.menu-has-child__service:hover svg {
  transform: rotate(180deg);
}
@supports (-webkit-hyphens: none) and (not (-webkit-touch-callout: none)) {
  @media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
    .menu-has-child__service svg {
      top: -3px;
    }
  }
}
.catalog-btn__sub-menu {
  display: block;
}
.logo {
  display: block;
}
.header__logo {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 6px 0 0 -9px;
}
.header__logo img {
  display: block;
}
.header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  min-width: 629px;
  margin-left: auto;
}
.header__tel {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header__tel svg {
  display: block;
}
.header__tel-number {
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  display: block;
  font-family: var(--font-title);
}
.sch {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
}
.header__btn {
  min-width: 231px;
  flex-shrink: 0;
  position: relative;
}
.header__btn-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  background-color: var(--color-orange);
  border-radius: 20px;
  padding: 10px;
  font-family: var(--font-title);
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition-duration: 0.3s;
}
.header__btn-name {
  display: block;
  margin-left: 17px;
  color: #fff;
}
.header__btn-arrow {
  display: block;
  transition-duration: 0.3s;
}
.header__btn-btns-wrapper {
  display: block;
  background-color: var(--color-gray-dark);
  border-radius: 0 0 20px 20px;
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.3s;
  position: absolute;
  top: 25px;
  width: 100%;
  padding: 30px 5px 15px 10px;
  z-index: 0;
  box-shadow: 0 80px 80px -28px rgba(0, 0, 0, 0.6);
}
.header__btn .btns-messanger-block__wrap {
  flex-direction: column;
  gap: 5px;
}
.header__btn .btn-messanger__name {
  font-size: 20px;
}
.header__btn .btn-messanger {
  background-color: transparent;
  opacity: 0.6;
  gap: 10px;
  transition-duration: 0.3s;
  color: #fff;
}
.header__btn .btn-messanger:hover {
  opacity: 1;
  border-color: transparent;
}
.header__btn .disclaimer-metacorp {
  display: none;
}
.header__btn:hover .header__btn-btns-wrapper {
  visibility: visible;
  opacity: 1;
}
.header__btn:hover .header__btn-inner {
  background-color: #fff;
}
.header__btn:hover .header__btn-name {
  color: var(--color-orange);
}
.header__btn:hover .header__btn-arrow {
  transform: rotate(180deg);
}
.header__btn-arrow path {
  transition-duration: 0.3s;
}
.header__btn:hover .header__btn-arrow path {
  fill: var(--color-orange);
}
.header__btn .btn-messanger:hover rect {
  stroke: #fff;
}
.header__btn .btn-messanger:hover path {
  fill: #fff;
}
.hero {
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 181px;
  height: 960px;
  margin-bottom: 199px;
  overflow: hidden;
}
.hero:after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
  z-index: 0;
}
.hero__container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 155px;
}
.hero__title {
  font-size: 128px;
  line-height: 117px;
  position: relative;
  z-index: 1;
}
.hero__title span {
  font-size: 300px;
  line-height: 258px;
}
.hero__right {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: auto;
  top: -17px;
  flex-shrink: 0;
}
.hero__desc {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 64px;
  color: #fff;
  text-transform: uppercase;
  flex-shrink: 0;
}
.hero__btn {
  max-width: 400px;
  padding: 11px 10px;
  font-size: 30px;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.catalog-entrance {
  display: block;
  margin-bottom: 93px;
  position: relative;
  z-index: 1;
}
.catalog-entrance__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.catalog-entrance__info {
  display: block;
  max-width: 541px;
  width: 100%;
}
.catalog-entrance__title {
  margin-bottom: 20px;
  line-height: 87px;
}
.catalog-entrance__desc {
  font-size: 24px;
  margin-bottom: 60px;
}
.catalog-entrance__btn {
  max-width: 338px;
  font-size: 30px;
  padding: 11px;
  margin-top: 28px;
}
.catalog-entrance__btn-mob {
  display: none;
}
.catalog-entrance__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: flex-start;
  gap: 21px;
  width: 100%;
  position: relative;
  left: -1px;
}
.brand-tile {
  border-radius: 20px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid var(--color-border);
  height: 188px;
  background-color: var(--color-gray-dark);
}
.brand-tile__img {
  display: block;
  max-width: 185px;
  width: auto;
  max-height: 74px;
  -o-object-fit: contain;
  object-fit: contain;
}
.wide-slider {
  display: block;
  padding-top: 108px;
  margin-bottom: 79px;
}
.wide-slider__container {
  background-color: #fff;
  border-radius: 20px;
  max-width: 1660px;
  position: relative;
  height: 494px;
}
.wide-slider__left {
  display: block;
  padding: 31px 20px;
  position: relative;
  z-index: 1;
}
.wide-slider__content {
  max-width: 640px;
  width: 100%;
}
.wide-slider__info-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}
.wide-slider__title {
  color: var(--color-black);
  margin-bottom: 1px;
}
.wide-slider__info {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.wide-slider__info-name {
  font-size: 24px;
  color: var(--color-black);
  font-weight: 700;
}
.wide-slider .stock-status {
  padding: 7px 22px;
  border: 1px solid;
  border-radius: 50px;
  font-size: 18px;
  flex-shrink: 0;
}
.wide-slider__info-desc {
  font-size: 20px;
  width: 100%;
}
.wide-slider__img {
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}
.wide-slider__img-mob {
  display: none;
}
.wide-slider__btn {
  font-size: 30px;
  max-width: 263px;
  margin-top: 41px;
}
.wide-slider__btn:hover {
  border-color: var(--color-orange);
}
.wide-slider__container-controls {
  display: block;
  position: relative;
  top: -120px;
  z-index: 1;
}
.wide-slider__controls {
  display: block;
}
.wide-slider .slider-controls {
  position: relative;
  margin-left: 41px;
}
.sidebar .wide-slider {
  display: block;
  padding: 0 0 40px;
  margin-top: 20px;
  margin-bottom: 0;
}
.sidebar .wide-slider__title {
  line-height: 81px;
  margin-bottom: 8px;
}
.sidebar .wide-slider__info-name {
  font-size: 20px;
}
.sidebar .wide-slider__info-head {
  flex-direction: column;
  align-items: flex-start;
}
.sidebar .wide-slider__info-desc {
  font-size: 16px;
}
.sidebar .wide-slider__container-controls {
  top: 40px;
  left: -20px;
}
.sidebar .wide-slider .slider-controls {
  margin-left: 0;
}
.sidebar .wide-slider__container {
  height: 713px;
  overflow: hidden;
}
.sidebar .slider-controls__arrows {
  margin-right: 0;
}
.sidebar .wide-slider__img {
  display: none;
}
.sidebar .wide-slider__img-mob {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.sidebar .wide-slider__left {
  height: 100%;
  padding: 41px 20px;
}
.sidebar .page__title-normal {
  font-size: 48px;
  line-height: 45px;
}
.sidebar .wide-slider__btn {
  margin: 45px auto 0;
  position: absolute;
  top: auto;
  bottom: 40px;
  max-width: 324px;
  width: 100%;
}
.sidebar .slider-nav rect {
  stroke: #ccc;
}
.sidebar .slider-nav path {
  fill: #ccc;
}
.catalog-line {
  display: block;
  margin-bottom: 193px;
  position: relative;
  z-index: 1;
}
.catalog-line__name {
  font-size: 228px;
  line-height: 228px;
  text-transform: uppercase;
  color: var(--color-gray-dark);
  text-align: center;
  position: relative;
  z-index: 1;
  top: 6px;
}
.catalog-line__slider {
  display: block;
  margin-top: -70px;
  background-color: var(--color-black);
  position: relative;
  z-index: 1;
  padding: 35px 0;
  border-top: 1px solid var(--color-border-grid);
  border-bottom: 1px solid var(--color-border-grid);
}
.catalog-line__item {
  position: relative;
  font-size: 24px;
  line-height: 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
  margin-left: 18px;
  color: #fff;
  font-weight: 400;
  width: 100%;
  white-space: nowrap;
  transition-duration: 0.3s;
}

.catalog-line__item:before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--color-orange);
  border-radius: 50px;
  position: relative;
  top: -1px;
}
.catalog-line .swiper-slide {
  width: auto;
}
.catalog-line .swiper-wrapper {
  transition-timing-function: linear !important;
}
.catalog {
  margin-bottom: 101px;
}
.catalog__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 21px;
}
.catalog-category-tile {
  border-radius: 20px;
  padding: 43px 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid var(--color-border);
  background-color: var(--color-gray-dark);
  transition-duration: 0.3s;
  position: relative;
  z-index: 1;
  width: 100%;
}
.catalog-category-tile__num {
  font-size: 128px;
  line-height: 1;
  font-weight: 700;
  font-family: var(--font-title);
  transition-duration: 0.3s;
}
.catalog-category-tile__img {
  display: block;
  margin-top: -113px;
  margin-bottom: 2px;
  transition-duration: 0.3s;
  height: 260px;
  object-fit: contain;
}
.catalog-category-tile__title {
  font-size: 24px;
  font-family: var(--font-text);
  text-transform: uppercase;
  transition-duration: 0.3s;
}
.catalog-category-tile:hover {
  background-color: var(--color-orange);
}
.catalog-category-tile:hover .catalog-category-tile__num {
  color: #fff;
}
.catalog-category-tile:hover .catalog-category-tile__img {
  transform: scale(1.1);
}
.product-list {
  display: block;
  margin-bottom: 191px;
}
.product-list__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.product-list__slider {
  display: block;
}
.product-list .swiper-slide {
  height: auto;
}
.product-list__title {
  display: block;
}
.slider-controls-white .slider-nav rect {
  stroke: #7a7a7a;
}
.slider-controls-white .slider-nav path {
  fill: #fff;
}
.product-list .slider-controls__arrows {
  margin-right: 0;
}
.product-list .slider-controls {
  gap: 40px;
}
.product-type .product-list {
  margin-bottom: 0;
}
.product-type .wide-slider {
  margin-bottom: 120px;
  margin-top: 120px;
}
.product-type .consult {
  margin-top: 200px;
}
.catalog-card {
  border: 1px solid var(--color-border);
  border-radius: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 34px 40px 39px;
  height: 100%;
  background: linear-gradient(to bottom, #1e1e1e 30%, #272727 42%);
  min-height: 590px;
}
.catalog-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.catalog-card__img-link {
  display: block;
}
.catalog-card__img {
  display: block;
  margin-bottom: 28px;
  height: 227px;
  object-fit: contain;
}
.catalog-card__title {
  font-size: 24px;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-text);
  font-weight: 400;
  margin-bottom: 5px;
}
.catalog-card__desc {
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catalog-card__price-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 19px;
}

.catalog-card__price .symbol {
  font-weight: 400;
}

.catalog-card__price {
  font-size: 30px;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}
s.catalog-card__price {
  font-weight: 400;
  font-size: 20px;
  color: var(--color-gray);
}
.catalog-card__buttons {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.catalog-card__btn-more {
  width: 100%;
  padding: 9px 10px;
  font-size: 20px;
}
.catalog-card__btn-order {
  width: 100%;
  font-size: 20px;
  padding: 9px 10px;
}
.catalog-card__price_on-demand {
  color: var(--color-gray);
}
.services {
  display: block;
  margin-bottom: 200px;
  position: relative;
  z-index: 1;
}
.services__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.services__tile {
  border-radius: 20px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid var(--color-border);
  background-color: var(--color-gray-tile);
  position: relative;
  width: 100%;
  background-color: var(--color-gray-dark);
  transition-duration: 0.3s;
}
.services__tile:hover {
  background-color: var(--color-orange);
}
.services__tile-arrow {
  position: absolute;
  right: 40px;
  top: 40px;
  z-index: 1;
}
.services__tile-img {
  display: block;
  margin-bottom: 10px;
  max-width: 178px;
}
.services__tile-title {
  display: block;
  font-size: 24px;
  font-family: var(--font-text);
  text-transform: uppercase;
}
.consult {
  display: block;
  margin-bottom: 296px;
}
.consult__container {
  display: block;
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  height: 530px;
  max-width: 1660px;
  padding: 40px;
  z-index: 1;
}
.consult__img {
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}
.consult__content {
  display: block;
  max-width: 641px;
  position: relative;
  z-index: 1;
}

.consult .btns-messanger-block__wrap {
  width: 966px;
  /* width: 100%; */
}

.consult__title {
  color: var(--color-black);
  margin-bottom: 8px;
  line-height: 87px;
}
.consult__desc {
  margin-bottom: 33px;
}
.consult__desc p {
  font-size: 20px;
}
.consult__desc b {
  font-size: 24px;
  display: block;
  margin-bottom: 11px;
  color: var(--color-black);
  font-weight: 400;
}
.consult__buttons {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.consult .disclaimer-metacorp {
  text-align: left;
}
.about {
  display: block;
  margin-bottom: 198px;
  position: relative;
  z-index: 1;
}
.about__head {
  display: block;
  position: relative;
}
.about__title {
  display: block;
}
.about__title-background {
  font-size: 220px;
  text-transform: uppercase;
  color: var(--color-gray-dark);
  position: absolute;
  left: 0;
  top: -120px;
  font-family: var(--font-title);
  font-weight: 700;
  z-index: -1;
  pointer-events: none;
}
.about__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.about__left {
  display: block;
  max-width: 672px;
  width: 100%;
}
.about__desc {
  display: block;
  margin-bottom: 45px;
}
.about__desc b {
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 21px;
  display: block;
}
.about__desc p {
  display: block;
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 23px;
}
.about__buttons {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
}
.about__btn {
  max-width: 263px;
  font-size: 30px;
}
.about__video-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.about__video-btn:hover .about__video-btn-name {
  color: var(--color-orange);
}
.about__video-btn svg {
  display: block;
}
.about__video-btn-name {
  display: block;
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-title);
  transition-duration: 0.3s;
}
.about__right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 73px 20px;
  max-width: 832px;
  width: 100%;
  flex-wrap: wrap;
}
.about-num-block {
  max-width: 400px;
  width: 100%;
  padding: 15px 40px;
  position: relative;
}
.about-num-block:before {
  content: '';
  display: block;
  width: 4px;
  height: 210px;
  border-radius: 29px;
  background-color: var(--color-orange);
  position: absolute;
  left: 0;
  top: -1px;
}
.about-num-block__big-text {
  font-size: 96px;
  line-height: 96px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
  font-family: var(--font-title);
  color: #fff;
  font-weight: 700;
  position: relative;
}
.about-num-block__big-text sup {
  position: absolute;
  top: -19px;
  font-size: 54px;
}
.about-num-block__desc {
  font-size: 20px;
}
.home-contacts {
  display: block;
  background-image: url(../img/bg-contacts.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 218px;
  position: relative;
}
.home-contacts__title {
  text-align: center;
  font-size: 220px;
  line-height: 220px;
  margin-bottom: 22px;
}
.contacts-block {
  display: block;
}
.contacts-block__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 60px;
}
.contacts-block__item {
  border-radius: 20px;
  padding: 58px 20px 70px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #191919;
  position: relative;
  z-index: 1;
}
.contacts-block__item-name {
  color: #fff;
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
  font-weight: 400;
  text-align: center;
}
.contacts-block__item-contact {
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-orange);
  font-family: var(--font-title);
}
.contacts-block__buttons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.contacts-block .disclaimer-metacorp {
  text-align: center;
}
.home-contacts__bottom {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 80px;
}
.home-contacts__info {
  display: block;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 40px;
  width: 50%;
  background-color: var(--color-gray-dark);
  position: relative;
  z-index: 1;
}
.home-contacts__name {
  font-size: 34px;
  display: block;
  margin-bottom: 20px;
  color: #fff;
}
.address {
  display: block;
  margin-bottom: 125px;
  font-style: normal;
  font-size: 24px;
}
.company-details {
  display: block;
  font-size: 24px;
}
.company-details p {
  display: block;
  margin-bottom: 10px;
}
.home-contacts__map {
  display: block;
  width: 50%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}
.home-contacts__map iframe,
.home-contacts__map img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.footer {
  background-color: var(--color-gray-dark);
  color: var(--color-gray);
  padding: 53px 0;
  margin-top: 150px;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer__logo-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  margin-left: 12px;
}
.footer__logo {
  display: block;
  filter: opacity(0.35);
}
.footer__company-desc {
  display: block;
}
.copyright {
  font-size: 16px;
  display: block;
  margin-bottom: 6px;
}
.footer__company-details {
  font-size: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.btn-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 17px;
}
.btn-top__name {
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  color: var(--color-gray);
}
.footer__links {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 21px;
}
.footer__links a {
  color: var(--color-gray);
}
.footer__links a:hover {
  text-decoration: underline;
}
.catalog {
  display: block;
}
.catalog-page__title {
  font-size: 220px;
  line-height: 220px;
}
.page-template-catalog .product-list {
  margin-bottom: 90px;
}
.consult-next {
  display: block;
}
.consult-next__container {
  display: block;
  background-image: url(../img/bg-consult-next.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  max-width: 1660px;
  padding-top: 110px;
  height: 500px;
  position: relative;
  z-index: 1;
}
.consult-next__title {
  text-align: center;
  margin-bottom: 3px;
}
.consult-next__desc {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
}
.consult-next__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.contacts__info-wrap {
  display: flex;
  justify-content: space-between;
  gap: 21px;
  margin-bottom: 100px;
}
.contacts__item {
  border-radius: 20px;
  border: 1px solid var(--color-border);
  background-color: var(--color-gray-dark);
  padding: 32px 40px 46px;
  width: 50%;
  line-height: 39px;
}
.contacts__item-name {
  font-size: 64px;
  line-height: 64px;
  font-family: var(--font-title);
  margin-bottom: 8px;
  display: block;
  color: #fff;
}
.contacts__item-desc {
  display: block;
  font-size: 32px;
}
.contacts__item-desc p {
  display: block;
  margin-bottom: 0;
}
.contacts__mail {
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
}
.contacts__mail-desc {
  text-align: center;
  display: block;
  margin-bottom: 7px;
  font-size: 24px;
}
.contacts__mail-item {
  color: #fff;
  font-size: 64px;
  font-family: var(--font-title);
  display: block;
  font-weight: 700;
}
.page-template-contacts .consult-next__container {
  background-image: none;
  padding-top: 31px;
  height: 400px;
}
.map {
  margin-top: 0;
}
.map__container {
  border-radius: 20px;
  height: 660px;

  position: relative;
  z-index: 1;
}

.map__container,
.home-contacts__map {
  transition-duration: 0.3s;
  filter: invert(1) grayscale(1) brightness(0.8);
}

.map__container:hover,
.home-contacts__map:hover {
  filter: unset;
}

.map iframe,
.map img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}
.about-hero {
  display: block;
  background-image: url(../img/bg-hero.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 960px;
  margin-bottom: 203px;
}
.about-hero__container {
  position: relative;
  z-index: 1;
}
.about-hero__innumbers {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 164px;
  color: #fff;
  position: relative;
  left: -12px;
}
.about-why {
  display: block;
  margin-bottom: 179px;
}
.about-why__head {
  position: relative;
}
.about-why__title {
  display: block;
}
.about-why__head-background {
  font-size: 220px;
  font-family: var(--font-title);
  text-transform: uppercase;
  color: var(--color-gray-dark);
  font-weight: 700;
  position: absolute;
  top: -34px;
  right: 0;
  z-index: -1;
}
.about-why__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}
.about-why__item {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 32px;
  width: calc(50% - 11px);
}
.about-why__item-slider {
  height: auto;
}
.about-why__item b {
  font-size: 34px;
  line-height: 1.2;
  color: #fff;
  display: block;
  margin-bottom: 20px;
  font-weight: 400;
}
.about-why__item-num {
  font-weight: 700;
  display: block;
  position: absolute;
  z-index: -1;
  right: -12px;
  top: -34px;
  font-size: 220px;
  line-height: 220px;
  font-family: var(--font-title);
  text-transform: uppercase;
  color: var(--color-gray-medium);
}
.about-why-slider {
  display: block;
  position: relative;
  border-radius: 20px;
  height: 100%;
}
.about-why-slider:after {
  content: '';
  display: block;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.35) 32%, rgba(0, 0, 0, 0.6) 71%, rgba(0, 0, 0, 0.7) 100%);
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  pointer-events: none;
}
.about-why-slider__item {
  display: block;
  height: 100%;
}
.about-why-slider__item img {
  border-radius: 20px;
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-why .slider-controls {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  position: absolute;
  padding-left: 36px;
  padding-right: 36px;
  bottom: 40px;
  z-index: 2;
}
.about-why .gallery-ico {
  display: block;
  margin-left: auto;
  position: absolute;
  right: 39px;
  bottom: 28px;
  z-index: 2;
  pointer-events: none;
}
.about-line {
  display: block;
  margin-bottom: 157px;
  text-align: center;
}
.about-line__item {
  display: block;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 220px;
  line-height: 220px;
  font-family: var(--font-title);
  text-transform: uppercase;
  color: var(--color-gray-medium);
  font-weight: 700;
  white-space: nowrap;
}
.about-video {
  display: block;
  margin-bottom: 200px;
}
.about-video__container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.about-video__item {
  display: block;
  position: relative;
  width: 50%;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}
.about-video__item-cover {
  display: block;
  width: 100%;
  height: 100%;
}
.about-video__item-link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.about-video__item img {
  display: block;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-video .ico-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.about-video__content {
  display: block;
  width: 50%;
}
.about-video__title {
  display: block;
  margin-bottom: 5px;
}
.about-video__content p {
  font-size: 34px;
}
.about-video__decor {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
}
.gallery-block {
  display: block;
  margin-bottom: 200px;
}
.gallery-block__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.gallery-block__title {
  display: block;
}
.gallery-block-slider {
  display: block;
}
.gallery-block__item {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.gallery-block .swiper-slide {
  outline: 0;
}
.gallery-block__item:hover:after,
.gallery-block__item:hover:before {
  opacity: 1;
}
.gallery-block__item:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgb(0 0 0 / 80%);
  position: absolute;
  left: 0;
  top: 0;
  transition-duration: 0.3s;
  opacity: 0;
}
.gallery-block__item:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url(../svg/ico-gallery.svg);
  background-size: 60px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition-duration: 0.3s;
  opacity: 0;
}
.gallery-block__item img {
  display: block;
  border-radius: 20px;
  width: 100%;
  height: 572px;
  -o-object-fit: cover;
  object-fit: cover;
}
.leasing-hero {
  display: block;
  margin-bottom: 0;
}
.leasing-hero__title {
  margin-bottom: -70px;
}
.page-template-leasing .consult-next__container {
  background-image: none;
  height: 377px;
}
.partners {
  display: block;
  margin-top: 110px;
  margin-bottom: 202px;
}
.partners__head {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.partners__head-wrap {
  display: block;
}
.partners__title {
  margin-bottom: 13px;
}
.partners__title-sub {
  font-size: 24px;
  display: block;
}
.partners__wrap {
  display: block;
}
.partners-slider {
  display: block;
}
.partners-slider-1 {
  margin-bottom: 20px;
}
.partners .swiper-slide {
  display: block;
}
.leasing-advantages {
  margin-bottom: 193px;
}
.leasing-advantages__title {
  display: block;
  line-height: 86px;
}
.leasing-advantages__wrap {
  display: flex;
  justify-content: space-between;
  gap: 21px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.leasing-advantages__item {
  border-radius: 20px;
  padding: 40px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  width: calc(25% - 16px);
}
.leasing-advantages__num {
  font-size: 129px;
  line-height: 128px;
  font-family: var(--font-title);
  position: relative;
  color: var(--color-orange);
  display: block;
  font-weight: 700;
  width: 120px;
  height: 80px;
  text-align: center;
  overflow: hidden;
  margin: 0 0 40px;
}
.leasing-advantages__num:after {
  content: '';
  display: block;
  width: 120px;
  height: 4px;
  background-color: var(--color-orange);
  position: absolute;
  left: 0;
  bottom: 0;
}
.leasing-advantages__name {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 10px;
  color: #000;
  display: block;
}
.leasing-advantages__desc {
  font-size: 20px;
}
.leasing-advantages__item-img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.leasing-for-customers {
  display: block;
  margin-bottom: 191px;
}
.leasing-for-buyers__title {
  display: block;
}
.leasing-for-buyers__wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.leasing-for-buyers__item {
  max-width: 540px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  line-height: 1.6;
}
.leasing-for-buyers__item img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}
.leasing-recomend {
  margin-bottom: 198px;
}
.leasing-recomend__title {
  display: block;
}
.leasing-recomend__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 21px;
}
.leasing-recomend__item {
  display: block;
  width: 100%;
}
.leasing-benefits {
  margin-bottom: 191px;
}
.leasing-benefits__title {
  display: block;
  line-height: 87px;
}
.leasing-benefit__wrap {
  display: flex;
  justify-content: space-between;
  gap: 21px;
}
.leasing-benefit__item {
  border-radius: 20px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  padding: 40px;
  font-size: 24px;
  width: 100%;
}
.leasing-benefit__item svg {
  margin-bottom: 40px;
  display: block;
}
.leasing-benefit__item img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.leasing-benefit__desc {
  color: #000;
}
.faq {
  display: block;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.faq__title {
  display: block;
}
.faq__item {
  padding: 54px 120px 54px 40px;
  background-color: var(--color-gray-dark);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
  position: relative;
}
.faq__item-title {
  display: block;
}
.faq__item-title-item {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-text);
}
.faq__item.active svg {
  fill: #fff;
}
.faq__item.active path {
  fill: var(--color-orange);
}
.faq__item-control {
  transform: rotate(0);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  position: absolute;
  right: 38px;
  top: 38px;
  cursor: pointer;
}
.faq__item.active .faq__item-control {
  background-color: #fff;
}
.faq__item-control svg {
  display: block;
}
.faq__item-body {
  display: block;
  overflow: hidden;
  transition-duration: 0.3s;
  height: 0;
  max-width: 85%;
}
.faq__item-body-inner {
  display: block;
  padding: 39px 0 0;
  line-height: 31px;
  font-size: 20px;
}
.faq__item.active .faq__item-body {
  height: auto;
  opacity: 1;
}
.faq__item-body p {
  display: block;
  margin-bottom: 20px;
}
.faq__item-body p:last-child {
  margin-bottom: 0;
}
.faq__item-body ul {
  display: list-item;
  margin: 20px 40px;
}
.faq__item-body li {
  font-size: 18px;
  list-style: disc;
}
.faq__item-body a {
  color: var(--color-orange);
}
.service-hero {
  display: block;
  margin-bottom: 100px;
}
.service-hero__title {
  margin-bottom: 40px;
}
.service-hero .btns-messanger-block__wrap {
  justify-content: flex-start;
}
.service-hero .disclaimer-metacorp {
  text-align: left;
}
.service-numbers {
  display: block;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.service-numbers__container {
  display: flex;
  justify-content: space-between;
  gap: 21px;
}
.service-numbers__item {
  display: block;
  text-align: center;
  background-color: var(--color-gray-dark);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  padding: 31px 40px 40px;
  width: 100%;
}
.service-numbers__item-num {
  display: block;
  font-size: 64px;
  line-height: 64px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-title);
  color: var(--color-orange);
}
.service-numbers__item-desc {
  color: #fff;
  font-size: 20px;
  display: block;
}
.service-big-desc {
  display: block;
  margin-bottom: 201px;
}
.service-big-desc__container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.service-big-desc__content {
  display: block;
  width: 50%;
}
.service-big-desc__content b {
  display: block;
  font-size: 34px;
  line-height: 41px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
}
.service-big-desc__media {
  border-radius: 20px;
  position: relative;
  width: 50%;
  z-index: 1;
}
.service-big-desc__media-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}
.service-big-desc__decor {
  position: absolute;
  pointer-events: none;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.service-list {
  display: block;
  margin-bottom: 200px;
  position: relative;
  z-index: 1;
}
.service-list__title {
  margin-bottom: 40px;
}
.service-list__block {
  border-radius: 20px;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.service-list__wrapper {
  position: relative;
  padding-right: 40px;
}
.service-list__scroll-block {
  position: relative;
  overflow: hidden;
  max-height: 608px;
  padding-right: 43px;
}
.service-list__wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0) 0, rgba(26, 26, 26, 0.82) 42%, #1a1a1a 100%);
  z-index: 2;
  transition-duration: 0.3s;
}
.service-list__wrapper.end::before {
  opacity: 0;
}
.service-list__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 78px;
  font-size: 24px;
  padding: 22px 40px;
  width: 100%;
  background-color: #1a1a1a;
}
.service-list__item:nth-child(odd) {
  background-color: var(--color-gray-medium);
}
.service-list__item-num {
  display: block;
}
.service-list__item-desc {
  display: block;
  font-size: 20px;
}
.product-hero {
  display: block;
  margin-bottom: 80px;
}
.product-hero__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.product-hero__title {
  margin-bottom: 11px;
  font-size: 64px;
  line-height: 58px;
}
.product-hero__info {
  display: block;
  position: relative;
  z-index: 1;
}
.product-hero__desc {
  font-size: 24px;
  margin-bottom: 35px;
}
.product-hero .stock-status {
  display: block;
  /* margin-bottom: 33px; */
  font-size: 32px;
  /* line-height: 30px; */
}

.product-hero__status-line {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 33px;
}
.product-hero .discount {
  display: inline-block;
  top: 2px;
}

.product-hero__price {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 23px;
  margin-bottom: 36px;
}
.product-hero__price-item {
  color: #fff;
  font-size: 48px;
  font-family: var(--font-title);
}

.product-hero__price-item_on-req {
  color: var(--color-gray);
}

.product-hero__price-item_old {
  color: var(--color-gray);
  font-size: 24px;
  font-weight: 400;
  font-family: var(--font-text);
}

.product-hero__price-inmonth {
  font-size: 24px;
  font-weight: 400;
}
.product-hero__buttons {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.product-hero__btn-order {
  max-width: 260px;
  font-size: 30px;
  padding: 11px 10px;
  flex-shrink: 0;
}
.product-hero__btn-claim {
  max-width: 260px;
  font-size: 30px;
  padding: 11px 10px;
  background-color: #1e1e1e;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.product-hero__btn-credit {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  transition-duration: 0.3s;
  flex-shrink: 0;
}
.product-hero__btn-credit:hover {
  color: var(--color-orange);
}
.product-hero__media {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 827px;
  width: 100%;
  margin-top: 7px;
  overflow: hidden;
}

.product-hero__media-info.active {
  z-index: 2;
}

.product-hero__media-info {
  display: block;
  position: absolute;
  cursor: pointer;
  height: 60px;
}

.product-hero__media-info-cross {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}

.product-hero__media-info-cross:after,
.product-hero__media-info-cross:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background-color: #fff;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(90deg);
  transition-duration: 0.3s;
}

.product-hero__media-info-cross:after {
  transform: translate(-50%, -50%) rotate(-180deg);
}

.product-hero__media-info-inner {
  border-radius: 50px;
  width: 60px;
  height: 60px;
  border: 2px solid var(--color-border);
  background-color: hsl(0deg 0% 1% / 70%);
  display: flex;
  align-items: center;
  padding-left: 55px;
  font-size: 0;
  color: #fff;
  transition:
    width 0.3s,
    opacity 0.3s,
    transform 0.3s;
  position: absolute;
  left: 0;
  right: auto;
}

.product-hero__media-info.reverse .product-hero__media-info-inner {
  left: auto;
  right: -60px;
  padding-left: 20px;
  padding-right: 36px;
  text-align: right;
}

.product-hero__media-info-desc {
  display: block;
  transition-duration: 0.3s;
  opacity: 0;
  position: relative;
  overflow: hidden;
  padding-right: 20px;
}

.product-hero__media-info.active .product-hero__media-info-inner {
  width: 260px;
  font-size: 16px;
  background-color: hsl(0deg 0% 1% / 100%);
  z-index: 1;
}

.product-hero__media-info.active .product-hero__media-info-cross {
  z-index: 2;
}

.product-hero__media-info.active .product-hero__media-info-desc {
  opacity: 1;
}

.product-hero__media-info.active .product-hero__media-info-cross:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.product-hero__media-info.active .product-hero__media-info-cross:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.product-info {
  display: block;
  margin-bottom: 201px;
}
.product-info__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.product-info__item {
  border-radius: 20px;
  border: 1px solid var(--color-border);
  padding: 40px 40px 21px;
  text-align: center;
  background-color: var(--color-gray-dark);
  width: 100%;
  position: relative;
  z-index: 1;
}
.product-info__item-name {
  font-size: 20px;
  display: block;
  margin-bottom: 6px;
}
.product-info__item-desc {
  font-size: 64px;
  font-weight: 700;
  font-family: var(--font-title);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.product-info__item-desc svg {
  display: block;
}

.product-spec {
  display: block;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.product-spec__title {
  display: block;
  text-transform: none;
  line-height: 34px;
  margin-bottom: 23px;
}
.product-spec__container {
  display: block;
}
.product-spec__inner {
  padding: 43px 40px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  background-color: #191919;
}
.product-spec__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.product-spec__table {
  display: block;
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.product-spec__table-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  font-size: 20px;
  padding: 20px 38px;
  border-bottom: 1px solid var(--color-border);
  background-color: #191919;
}
.product-spec__table-row:nth-child(odd) {
  background-color: var(--color-gray-medium);
}
.product-spec__table-row:last-child {
  border: none;
}
.product-spec__table-label {
  display: block;
}
.product-spec__table-value {
  display: block;
}
.product-desc {
  display: block;
  margin-bottom: 204px;
  position: relative;
  z-index: 1;
}
.product-desc__title {
  font-size: 34px;
  margin-bottom: 22px;
  display: block;
  font-family: var(--font-text);
}

.product-desc__body > :first-child {
  margin-top: 0;
}

.product-desc__wrap {
  border-radius: 20px;
  border: 1px solid var(--color-border);
  padding: 40px 39px 32px;
  background-color: #191919;
}
.product-desc__body {
  font-size: 20px;
  line-height: 1.3;
  overflow: hidden;
  transition-duration: 0.3s;
  max-height: 78px;
  position: relative;
  padding-right: 40px;
}

div.product-desc__body h2,
div.product-desc__body h3 {
  color: var(--color-gray);
  font-size: 24px;
}

.product-desc__body:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 115%;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0) 0, rgba(26, 26, 26, 0.82) 100%, #1a1a1a 100%);
  z-index: 2;
  transition-duration: 0.3s;
}
.product-desc__wrap.active .product-desc__body:after {
  opacity: 0;
}
.product-desc__wrap.active .product-desc__body {
  max-height: 500px;
}
.product-desc__toggle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 38px;
}
.product-desc__toggle:hover .product-desc__toggle-name {
  color: var(--color-orange);
}
.product-desc__toggle:hover path {
  fill: var(--color-orange);
}
.product-desc__toggle-name {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font-title);
  color: #fff;
  transition-duration: 0.3s;
}
.product-desc__toggle svg {
  display: block;
  transition-duration: 0.3s;
}
.product-desc__toggle path {
  transition-duration: 0.3s;
}
.product-desc__wrap.active .product-desc__toggle svg {
  transform: rotate(180deg);
}
.product-gallery {
  display: block;
  margin-bottom: 200px;
  position: relative;
  z-index: 1;
}
.product-gallery__title {
  display: block;
  text-transform: none;
  margin-bottom: 61px;
}
.product-gallery__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.product-gallery__wrap_no {
  flex-wrap: nowrap;
}

.product-gallery__wrap_no .product-gallery__item:nth-child(n) {
  width: 100%;
}

.product-gallery__item {
  display: block;
}
.product-gallery__item img {
  display: block;
  border-radius: 20px;
  height: 462px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product-gallery__item:nth-child(1) {
  width: calc(50% - 10px);
}
.product-gallery__item:nth-child(2) {
  width: calc(50% - 10px);
}
.product-gallery__item:nth-child(3) {
  width: calc(25% - 20px);
}
.product-gallery__item:nth-child(4) {
  width: calc(50% - 10px);
}
.product-gallery__item:nth-child(5) {
  width: calc(25% - 10px);
}
.btn-back {
  display: block;
  margin-top: -236px;
}
.btn-back__back {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.btn-back__back-name {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font-title);
  color: #fff;
  transition-duration: 0.3s;
}
.btn-back__back path,
.btn-back__back rect {
  transition-duration: 0.3s;
}
.btn-back__back:hover .btn-back__back-name {
  color: var(--color-orange);
}
.btn-back__back:hover path {
  fill: var(--color-orange);
}
.btn-back__back:hover rect {
  stroke: var(--color-orange);
}
.category-hero {
  display: block;
  margin-bottom: 82px;
}
.category-hero__title {
  display: block;
}
.category-top {
  display: block;
  margin-bottom: 38px;
  position: relative;
  z-index: 2;
}
.filter-block {
  background-color: var(--color-gray-medium);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  padding: 40px;
  position: relative;
  /* z-index: 0; */
}
.filter-block-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.filter-select {
  display: block;
  font-size: 20px;
}
.filter-select__name {
  display: block;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 400;
}
.filter-select__item {
  display: block;
  position: relative;
  z-index: 1;
}
.filter-select__item-head {
  display: block;
  color: #fff;
  background-color: var(--color-gray-dark);
  border-radius: 10px;
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  height: 60px;
  position: relative;
  z-index: 1;
}
.filter-select__item svg {
  position: absolute;
  right: 20px;
  top: 16px;
  transition-duration: 0.3s;
}
.filter-select__item.active svg {
  transform: rotate(180deg);
}
.filter-select__wheel {
  max-width: 380px;
  width: 100%;
}
.filter-select__brand {
  max-width: 800px;
  width: 100%;
}
.filter-select__brand .filter-select__box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.filter-select__inner {
  display: block;
  border: 1px solid var(--color-border);
  padding: 25px 20px 20px;
  border-radius: 0 0 20px 20px;
  border-top: 0;
  background-color: var(--color-gray-medium);
  width: 100%;
  position: absolute;
  left: 0;
  top: 53px;
  /* z-index: 0; */
  transition-duration: 0.3s;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 80px 80px -28px rgba(0, 0, 0, 0.6);
}
.filter-select__item.active .filter-select__inner {
  opacity: 1;
  visibility: visible;
}
.filter-select__inner span {
  display: block;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 16px;
}
.filter-select__inner span:hover {
  color: #fff;
}
.filter-select__inner span:last-child {
  margin-bottom: 0;
}
.filter-select__box {
  position: relative;
}
.filter-select__box_scroll {
  max-height: 180px;
  overflow: hidden;
}
.filter-select__box_scroll span:nth-last-of-type(1) {
  margin-bottom: 0;
}
.filter-block-top__btn {
  max-width: 360px;
  padding: 11px 10px;
  font-size: 30px;
}
.category-main {
  display: block;
  margin-bottom: 160px;
  position: relative;
  z-index: 1;
}
.category-main__container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 19px;
}
.sidebar {
  display: block;
  max-width: 400px;
  width: 100%;
}
.filter-block-left {
  display: block;
  width: 100%;
  padding: 20px 40px;
}
.filter-block__head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding-bottom: 17px;
}
.filter-block__bottom:after,
.filter-block__head:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  position: absolute;
  left: 0;
  top: 78px;
}
.filter-block__head-filter-ico {
  position: relative;
  left: 4px;
  top: -2px;
}
.filter-block__head-arrow-ico {
  display: none;
  transition-duration: 0.3s;
}
.filter-block__head-name {
  font-weight: 700;
  font-size: 34px;
  text-transform: uppercase;
  font-family: var(--font-title);
  color: #fff;
}
.filter-section {
  display: block;
  padding: 35px 0;
  position: relative;
}
.filter-section:after {
  content: '';
  display: block;
  width: calc(100% + 80px);
  height: 1px;
  background-color: var(--color-border);
  position: absolute;
  left: -40px;
  bottom: 0;
}
.filter-checkbox {
  font-size: 18px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  cursor: pointer;
}
.filter-checkbox:last-child {
  margin-bottom: 0;
}
.filter-checkbox__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid var(--color-border);
  width: 26px;
  height: 26px;
  border-radius: 6px;
  padding: 0;
  margin: 0;
  background-color: var(--color-gray-dark);
  flex-shrink: 0;
}
.filter-checkbox__input:checked::after {
  content: '';
  display: block;
  width: 15px;
  height: 16px;
  background-image: url(../svg/ico-check.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  left: 4px;
  top: 3px;
}
.filter-checkbox__name {
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  display: block;
  color: #fff;
}
.filter-dropdown {
  display: block;
  padding: 20px 0;
  position: relative;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-top: -1px;
}
.filter-dropdown svg {
  display: block;
  position: absolute;
  right: 0;
  top: -1px;
  transition-duration: 0.3s;
}
.filter-dropdown__head {
  display: block;
  position: relative;
  cursor: pointer;
}
.filter-dropdown__head-name {
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}
.filter-dropdown__box {
  padding-top: 16px;
}

/* .filter-dropdown__box .filter-checkbox {
  margin-bottom: 0;
} */

.filter-dropdown__inner {
  padding: 0;
  transition-duration: 0.3s;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
}
.filter-dropdown__inner.active {
  max-height: 300px;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
}
.filter-dropdown .filter-checkbox__name {
  font-size: 16px;
  text-transform: none;
  color: var(--color-gray);
}
.filter-dropdown.open svg {
  transform: rotate(180deg);
}

.filter-dropdown + .filter-checkbox,
.filter-checkbox + .filter-dropdown {
  margin-top: 20px;
}

.filter-block__bottom {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding-top: 35px;
}
.filter-block__bottom:after {
  left: 0;
  top: auto;
  bottom: 86px;
  display: none;
}
.filter-block-left-btn {
  width: 100%;
  font-size: 20px;
}
.filter-select__left {
  display: block;
  font-size: 16px;
}
.filter-select__left .filter-select__item-head {
  height: 46px;
  padding: 13px 19px;
  font-size: 16px;
}
.filter-select__left .filter-select__name {
  font-size: 16px;
}
.filter-select__left .filter-select__item svg {
  top: 10px;
  right: 15px;
}
.filter-select__left .filter-select__inner {
  top: 40px;
}
.category-main__wrap {
  display: block;
  width: 100%;
}
.category-main__wrap-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 19px;
  margin-bottom: 25px;
}
.category-main__wrap-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navigation.pagination {
  text-align: center;
  margin: 15px 0;
}
.nav-links .page-numbers {
  text-decoration: none;
  background-color: transparent;
  border: 1px solid var(--color-border);
  padding: 3px 13px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 30px;
  font-family: var(--font-title);
  color: #fff;
  line-height: 29px;
  transition-duration: 0.3s;
}
.nav-links .page-numbers:hover {
  background-color: var(--color-border);
}
.page-numbers.current {
  font-weight: 700;
  background-color: var(--color-border);
}
.nav-links {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.load-more-btn {
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 11px 10px;
  max-width: 330px;
  flex-shrink: 0;
  margin-left: auto;
}
.modal-order .modal__content {
  max-width: 820px;
  width: 100%;
  background-color: #fff;
}
.modal__title {
  font-weight: 700;
  font-size: 64px;
  line-height: 58px;
  color: #000;
  margin-bottom: 23px;
}
.modal__tel {
  display: block;
  margin-bottom: 20px;
  margin-top: 14px;
}
.modal__tel-desc {
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
  font-weight: 400;
  color: #000;
}
.modal__tel-item {
  font-size: 40px;
  font-family: var(--font-title);
  font-weight: 700;
  display: block;
  color: var(--color-orange);
}
.modal__attr {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.modal__attr-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--color-border);
  width: 16px;
  height: 16px;
  border-radius: 4px;
  padding: 0;
  margin: 0;
  background-color: transparent;
  flex-shrink: 0;
}
.modal__attr-checkbox:checked::after {
  content: '';
  display: block;
  width: 10px;
  height: 11px;
  background-image: url(../svg/ico-check.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  left: 2px;
  top: 2px;
  filter: invert(1);
}
.modal__attr-desc {
  font-size: 12px;
  line-height: 12px;
}
.modal__attr-desc a {
  text-decoration: underline;
}
.modal__attr-desc a:hover {
  text-decoration: none;
}
.modal-order .disclaimer-metacorp {
  margin-top: 36px;
  text-align: left;
  max-width: 300px;
}
.modal-order .btns-messanger-block .disclaimer-metacorp {
  display: none;
}
.modal-order .btns-messanger-block__wrap {
  justify-content: flex-start;
  gap: 17px;
}
.modal-order .btns-messanger-block__wrap .btn-messanger_tel {
  display: none;
}
.modal-order .btn-messanger__name {
  font-size: 24px;
  color: #000;
}
.modal-order .btn-messanger {
  background-color: transparent;
  opacity: 1;
  gap: 8px;
  color: #fff;
  max-width: -moz-max-content;
  max-width: max-content;
  width: auto;
  padding: 0;
  transition: unset;
}
.modal-order .btn-messanger svg {
  display: block;
  width: 41px;
  height: 41px;
  transition: unset;
}
.modal-order .btn-messanger path {
  fill: #fff;
  transition-duration: 0s;
}
.modal-order .btn-messanger rect {
  stroke: transparent;
  fill: var(--color-orange);
  transition-duration: 0s;
}
.modal-order .btn-messanger:hover {
  border-color: transparent;
}
.modal__content-img {
  position: absolute;
  right: -74px;
  bottom: -1px;
  width: 880px;
  height: 446px;
  pointer-events: none;
  max-width: unset;
}

.no-rusults {
  font-size: 30px;
  line-height: 30px;
  color: #fff;
}

.page-template-default:not(.home) .decor-grid {
  display: none;
}

.page-content {
  padding-top: 154px;
}

.content__container {
  min-height: 500px;
}

.content h2,
.content h3,
.content h4,
.content h5 {
  margin-top: 45px;
  margin-bottom: 25px;
  position: relative;
  line-height: normal;
}
.content h2 {
  font-size: 32px;
}
.content h3 {
  font-size: 28px;
}
.content h4 {
  font-size: 26px;
}
.content h5 {
  font-size: 24px;
}
.content p {
  margin: 20px 0;
}
.content a {
  color: var(--color-orange);
  text-decoration: underline;
}
.content ol,
.content ul {
  margin: 30px 0 30px 30px;
}
.content li {
  margin-bottom: 15px;
}
.content ul li {
  list-style-type: disc;
}
.content ol li {
  list-style-type: auto;
}
.wp-block-quote {
  background-color: #eee;
  padding: 30px;
  margin: 30px 0;
  border-left: 4px solid var(--color-orange);
}
.wp-block-quote cite {
  display: none;
}
.wp-block-quote p {
  margin-top: 0;
}
.wp-block-quote p:last-child {
  margin-bottom: 0;
}

.content table {
  font-size: 14px;
}

.content figure {
  margin: 0 0 20px;
}

.content iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: 0 0;
  position: absolute;
  bottom: -35px;
  margin-top: 0;
  color: #000;
}

.fancybox__html5video,
.fancybox__iframe,
.fancybox-image {
  border-radius: 16px;
}

.fancybox__container {
  --fancybox-bg: rgba(24, 24, 27, 0.8);
}

.category-main + .wide-slider {
  display: none;
}

.gallery-block_prod .slider-pagination {
  flex-wrap: wrap;
}

.gallery-block_prod .swiper-pagination-bullet:nth-child(n + 8) {
  display: none;
}

@media (max-width: 1699px) {
  .container {
    max-width: 1280px;
  }
  .title {
    font-size: 68px;
    line-height: 72px;
  }
  .page__title {
    font-size: 98px;
    line-height: 77px;
  }
  .mini-title {
    font-size: 34px;
    line-height: 30px;
  }
  .page__title-about {
    font-size: 220px;
    line-height: 220px;
  }
  .page__title-normal {
    font-size: 48px;
    line-height: 46px;
  }
  .header__container {
    max-width: 100%;
    gap: 20px;
    justify-content: space-between;
  }
  .header__tel {
    gap: 7px;
  }
  .header__logo {
    margin: 0 auto;
    transform: none;
    position: static;
  }
  .header__right {
    min-width: 535px;
    margin: 0;
  }
  .header__tel-number {
    font-size: 24px;
  }
  .header__btn {
    min-width: 191px;
  }
  .header__btn-inner {
    max-width: 191px;
  }
  .header__btn .btn-messanger svg {
    width: 35px;
    height: 35px;
  }
  .header__btn .btn-messanger__name {
    font-size: 16px;
  }
  .sub-menu {
    left: -15px;
  }
  .sub-menu a {
    padding: 5px;
  }
  .sub-menu img {
    height: 80px;
  }
  .hero__container {
    gap: 90px;
  }
  .hero__title {
    font-size: 117px;
    line-height: 117px;
  }
  .hero__title span {
    font-size: 270px;
    line-height: 220px;
  }
  .brand-tile__img {
    max-width: 158px;
  }
  .catalog-entrance__title {
    line-height: 70px;
  }
  .catalog-entrance__desc {
    font-size: 20px;
  }
  .catalog-line__name {
    font-size: 160px;
  }
  .catalog-card {
    padding: 34px 20px 39px;
  }
  .catalog-card__title {
    font-size: 20px;
  }
  .catalog-card__price {
    font-size: 24px;
  }
  .catalog-card__desc {
    font-size: 16px;
  }
  .services__tile-title {
    font-size: 20px;
  }
  .about__title-background {
    font-size: 170px;
    top: -100px;
  }
  .about-num-block {
    max-width: 295px;
    padding: 15px 25px;
  }
  .about-num-block__big-text {
    font-size: 70px;
    line-height: 70px;
  }
  .about-num-block__desc {
    font-size: 18px;
  }
  .about-num-block:before {
    height: 196px;
  }
  .about__desc b {
    font-size: 20px;
  }
  .about__desc p {
    font-size: 16px;
  }
  .about__left {
    max-width: 550px;
  }
  .about__right {
    max-width: 621px;
  }
  .about__video-btn-name {
    font-size: 24px;
  }
  .contacts-block__item-contact {
    font-size: 50px;
  }
  .address {
    font-size: 20px;
  }
  .contacts__item-name {
    font-size: 40px;
    line-height: 46px;
  }
  .contacts__item-desc {
    font-size: 24px;
    line-height: 30px;
  }
  .about-why__item b {
    font-size: 28px;
  }
  .about-why__head-background {
    font-size: 181px;
    top: -125px;
  }
  .catalog-page__title {
    font-size: 220px;
    line-height: 220px;
  }
  .leasing-advantages__item {
    padding: 20px 20px 40px;
  }
  .leasing-advantages__name {
    font-size: 20px;
  }
  .leasing-advantages__desc {
    font-size: 18px;
  }
  .leasing-for-buyers__item {
    font-size: 18px;
  }
  .leasing-benefit__desc {
    font-size: 20px;
  }
  .leasing-benefit__item {
    padding: 30px 20px;
  }
  .category-main__wrap-inner {
    grid-template-columns: 1fr 1fr;
  }
  .product-hero__title {
    font-size: 48px;
    line-height: 52px;
  }
  .product-hero__buttons {
    flex-wrap: wrap;
  }
  .product-hero__media {
    max-width: 670px;
  }
  .product-info__item {
    padding: 40px 15px 21px;
  }
  .product-info__item-desc {
    font-size: 48px;
  }
  .product-info__item-name {
    font-size: 18px;
  }
  .product-spec__title {
    margin-bottom: 23px;
    line-height: 34px;
  }
  .wide-slider__container {
    height: 420px;
    max-width: 1240px;
  }
  .wide-slider__container-controls {
    top: -85px;
  }
  .wide-slider .slider-controls {
    margin-left: 20px;
  }
  .wide-slider .slider-nav svg {
    width: 60px;
    height: 60px;
  }
  .wide-slider__content {
    max-width: 560px;
  }
  .wide-slider__btn {
    padding: 7px 10px;
    font-size: 24px;
  }
  .wide-slider__info-name {
    font-size: 21px;
  }
  .page__title-medium {
    font-size: 128px;
    line-height: 128px;
  }
  .product-spec__inner {
    padding: 30px 40px;
  }
  .header {
    padding: 28px 0;
  }
  .decor-grid {
    max-width: 1274px;
  }
  .decor-grid__col:nth-child(2) {
    left: 1px;
  }

.consult .btns-messanger-block__wrap {
    width: auto;
    flex-wrap: wrap;
}

}
@media (max-width: 1279px) {
  .container {
    max-width: 1024px;
  }
  .header__logo {
    transform: translateX(-31px);
  }
  .header__container {
    gap: 0;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    width: 46px;
    height: 11px;
    flex-shrink: 0;
    position: relative;
    transition-duration: 0.3s;
  }
  .hamburger__container {
    z-index: 999;
    position: fixed;
    top: 57px;
    left: 50%;
    transform: translatex(-50%);
    display: flex;
    justify-content: flex-end;
    height: 0;
  }
  .hamburger.active {
    width: 20px;
  }
  .hamburger span {
    height: 3px;
    width: 100%;
    background-color: #fff;
    display: block;
    transition-duration: 0.3s;
  }
  .hamburger.active span:nth-child(1),
  .hamburger.active span:nth-child(2) {
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    transform-origin: center center;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .hamburger.active span:nth-child(1) {
    display: block;
    position: absolute;
  }
  .hamburger.active span:nth-child(2) {
    display: block;
    position: absolute;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .header__right,
  .menu,
  .sub-menu {
    display: none;
  }
  .menu-mobile {
    display: block;
    background-color: var(--color-gray-medium);
    color: #fff;
    z-index: 998;
    position: fixed;
    right: 0;
    top: 0;
    width: 450px;
    height: 100%;
    transition-duration: 0.3s;
    transform: translateX(100%);
  }
  .menu-overlay {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: hsl(0deg 0% 0% / 70%);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 997;
    transition-duration: 0.3s;
    visibility: hidden;
    opacity: 0;
  }
  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  .menu-mobile.active {
    transform: translate(0, 0);
  }
  .menu-mobile__head {
    padding: 51px 17px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.25);
  }
  .menu-mobile__name {
    font-size: 26px;
    font-weight: 700;
    font-family: var(--font-title);
  }
  .menu-mobile__main {
    display: block;
    padding: 60px 30px 30px;
  }
  .menu-mobile__list {
    display: block;
    margin-bottom: 40px;
  }
  .menu-mobile__list li {
    display: block;
  }
  .menu-mobile__list a {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 40px;
  }
  .menu-mobile__list-has-child {
    display: block;
  }
  .menu-mobile__list-has-child > a svg {
    display: block;
    position: relative;
    top: -2px;
    transition-duration: 0.3s;
  }
  .menu-mobile__list-has-child.open > a svg {
    transform: rotate(180deg);
  }
  .menu-mobile__list-has-child > a {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  .menu-mobile__sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    margin-top: -20px;
    margin-bottom: 10px;
  }
  .menu-mobile__list-has-child.open .menu-mobile__sub {
    max-height: 1000px;
  }
  .menu-mobile__sub li {
    display: block;
  }
  .menu-mobile__sub a {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-gray);
    margin-bottom: 20px;
    text-transform: none;
  }
  .menu-mobile__bottom {
    display: block;
  }
  .menu-mobile__soc {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
  .menu-mobile__soc-item {
    display: block;
  }
  .menu-mobile__sch {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
  }
  .hero {
    height: 700px;
    margin-bottom: 100px;
  }
  .hero__title {
    font-size: 80px;
    line-height: 80px;
  }
  .hero__title span {
    font-size: 213px;
    line-height: 170px;
  }
  .hero__container {
    gap: 70px;
  }
  .hero__desc {
    font-size: 20px;
  }
  .catalog-entrance__container {
    flex-direction: column;
  }
  .catalog-entrance__info {
    max-width: 100%;
  }
  .catalog-entrance__desc br,
  .catalog-entrance__title br {
    display: none;
  }
  .catalog-entrance__desc {
    margin-bottom: 0;
  }
  .catalog__wrap {
    flex-wrap: wrap;
  }
  .catalog-category-tile {
    width: calc(50% - 10px);
  }
  .services__wrap {
    grid-template-columns: 1fr 1fr;
  }
  .services__tile-arrow {
    right: 20px;
    top: 20px;
  }
  .about__wrap {
    flex-direction: column;
  }
  .about__right {
    order: -1;
    max-width: 100%;
  }
  .about-num-block {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 10px 15px;
  }
  .about__left {
    max-width: 100%;
    margin-top: 40px;
  }
  .contacts-block__item-contact {
    font-size: 40px;
  }
  .footer__container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer__logo-wrap {
    flex-direction: column;
    align-items: center;
    gap: 35px;
    text-align: center;
    order: 0;
  }
  .footer__company-details {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 50px;
  }
  .footer__links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .btn-top {
    order: 2;
    margin-top: 50px;
  }
  .about-why__wrap {
    flex-direction: column;
  }
  .about-why__item {
    width: 100%;
  }
  .about-why__item-slider {
    height: 460px;
  }
  .about-video__container {
    flex-direction: column;
  }
  .about-video__item {
    width: 100%;
    height: 460px;
  }
  .about-video__content {
    width: 100%;
  }
  .about-video__decor {
    width: 211px;
  }
  .gallery-block__item img {
    height: 400px;
  }
  .about-line__item {
    font-size: 150px;
    line-height: 150px;
  }
  .leasing-for-buyers__wrap {
    flex-direction: column;
  }
  .leasing-for-buyers__item {
    max-width: 100%;
  }
  .leasing-for-buyers__item:nth-child(2) {
    height: 280px;
  }
  .leasing-recomend__wrap {
    flex-direction: column;
  }
  .leasing-benefit__wrap {
    flex-wrap: wrap;
  }
  .leasing-benefit__item {
    width: calc(50% - 10px);
  }
  .leasing-advantages__item {
    width: calc(33.333% - 14px);
  }
  .service-numbers__item {
    padding: 31px 20px 40px;
  }
  .service-numbers__item-desc {
    font-size: 16px;
  }
  .service-big-desc__content b {
    font-size: 24px;
    line-height: 31px;
  }
  .category-main__container {
    flex-direction: column;
  }
  .sidebar {
    max-width: 100%;
  }
  .sidebar .wide-slider {
    display: none;
  }
  .category-main__wrap {
    width: 100%;
  }
  .category-main__wrap-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .filter-block-top {
    flex-direction: column;
  }
  .filter-select__wheel {
    max-width: 100%;
    position: relative;
    z-index: 2;
  }
  .filter-select__brand {
    max-width: 100%;
  }
  .filter-block-top__btn {
    margin: 0 auto;
    max-width: 100%;
  }
  .filter-block__head-arrow-ico {
    display: block;
    margin-left: auto;
    transform: rotate(-90deg);
    width: 30px;
    height: 30px;
    position: relative;
    top: 0;
  }
  .filter-block__head-name {
    font-size: 26px;
    line-height: 26px;
  }
  .filter-block__head-filter-ico {
    top: -1px;
    width: 21px;
    height: 21px;
  }
  .filter-block__head {
    gap: 15px;
    padding-bottom: 0;
  }
  .filter-block__body {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition-duration: 0.3s;
  }
  .filter-block__head.active + .filter-block__body {
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
  }
  .filter-block__head.active .filter-block__head-arrow-ico {
    transform: rotate(0);
  }
  .filter-block__head:after {
    display: none;
  }
  .product-hero__container {
    flex-direction: column;
  }
  .product-hero__media {
    order: -1;
    max-width: 827px;
    margin: 0 auto;
  }
  .product-info__container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .product-info__item {
    width: calc(33.33% - 14px);
  }
  .product-spec__title {
    margin-bottom: 23px;
  }
  .wide-slider__info-name {
    font-size: 16px;
  }
  .wide-slider__info-desc {
    font-size: 16px;
  }
  .wide-slider__container {
    height: 345px;
    max-width: 984px;
  }
  .wide-slider__btn {
    padding: 8px 10px;
    font-size: 20px;
  }
  .wide-slider__content {
    max-width: 460px;
  }
  .wide-slider__title {
    font-size: 38px;
    line-height: 36px;
  }
  .consult__img {
    display: none;
  }
  .consult__content {
    max-width: 100%;
  }
  .consult .disclaimer-metacorp {
    text-align: center;
  }
  .consult__container {
    height: auto;
  }
  .consult {
    padding-left: 20px;
    padding-right: 20px;
  }
  .service-hero__title {
    font-size: 98px;
    line-height: 104px;
  }
  .service-list__wrapper {
    padding-right: 0;
  }
  .decor-grid {
    max-width: 1020px;
  }
  .header__container:after,
  .header__container:before {
    left: 10px;
    height: 119px;
  }
  .header__container:after {
    left: auto;
    right: 9px;
  }

  .category-main + .wide-slider {
    display: flex;
    padding-top: 60px;
  }

  .category-main {
    margin-bottom: 0;
  }
}
@media (max-width: 1023px) {
  .container {
    max-width: 768px;
  }
  .title {
    font-size: 48px;
    line-height: 54px;
    margin-bottom: 40px;
  }
  .catalog-page__title,
  .page__title {
    font-size: 98px;
    line-height: 98px;
  }
  .breadcrumbs {
    padding-top: 100px;
  }
  .header {
    padding: 13px 0;
  }
  .hamburger__container {
    top: 38px;
  }
  .menu-mobile__head {
    padding: 31px 17px;
  }
  .hero__container {
    gap: 40px;
  }
  .hero__title {
    font-size: 60px;
    line-height: 60px;
  }
  .hero__title span {
    font-size: 158px;
    line-height: 128px;
  }
  .hero__desc {
    font-size: 16px;
  }
  .hero__btn {
    max-width: 350px;
  }
  .catalog-entrance__tiles {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .catalog-line__name {
    font-size: 108px;
    top: 19px;
  }
  .services__tile-title {
    font-size: 18px;
  }
  .about__title-background {
    font-size: 112px;
    top: -61px;
  }
  .about-num-block__big-text {
    font-size: 48px;
    line-height: 48px;
  }
  .about-num-block:before {
    height: 158px;
  }
  .home-contacts {
    padding-top: 100px;
  }
  .contacts-block__item-contact {
    font-size: 28px;
  }
  .contacts-block__item-name {
    font-size: 20px;
  }
  .home-contacts__bottom {
    flex-direction: column;
  }
  .home-contacts__info {
    width: 100%;
  }
  .home-contacts__map {
    width: 100%;
    height: 460px;
  }
  .home-contacts__name {
    font-size: 28px;
  }
  .address {
    margin-bottom: 90px;
  }
  .company-details {
    font-size: 20px;
  }
  .contacts__info-wrap {
    flex-direction: column;
  }
  .contacts__item {
    width: 100%;
  }
  .map__container {
    height: 460px;
  }
  .about-video__title {
    margin-bottom: 5px;
  }
  .about-hero__innumbers {
    flex-wrap: wrap;
    gap: 60px 20px;
    margin-top: 110px;
  }
  .about-hero {
    height: 800px;
  }
  .about-why__head-background {
    font-size: 142px;
    top: -98px;
  }
  .consult-next__title {
    margin-bottom: 10px;
  }
  .consult-next {
    padding-left: 20px;
    padding-right: 20px;
  }
  .leasing-advantages__item {
    width: calc(50% - 10px);
  }
  .service-numbers__container {
    flex-wrap: wrap;
  }
  .service-numbers__item {
    width: calc(50% - 10px);
  }
  .service-big-desc__container {
    flex-direction: column;
  }
  .service-big-desc__content {
    width: 100%;
  }
  .service-big-desc__media {
    width: 100%;
    order: -1;
  }
  .service-list__wrapper {
    position: relative;
    padding-right: 0;
  }
  .service-list__scroll-block {
    padding-right: 20px;
  }
  .service-list__item {
    gap: 45px;
  }
  .category-main__wrap-inner {
    grid-template-columns: 1fr 1fr;
  }
  .category-main__wrap-bottom {
    flex-direction: column;
  }
  .product-spec__title {
    margin-bottom: 23px;
    font-size: 34px;
    line-height: 34px;
  }
  .product-spec__wrap {
    flex-direction: column;
  }
  .product-gallery__wrap {
    flex: 1;
  }
  .product-gallery__item:nth-child(n) {
    width: calc(50% - 10px);
  }
  .product-gallery__item img {
    width: 100%;
    height: 360px;
  }
  .product-hero__title {
    margin-bottom: 10px;
  }
  .wide-slider__title {
    font-size: 38px;
    line-height: 36px;
    margin-bottom: 0;
  }
  .wide-slider .stock-status {
    font-size: 14px;
    line-height: 14px;
  }
  .wide-slider__container {
    height: 260px;
    border-radius: 22px;
    max-width: 728px;
  }
  .wide-slider__img {
    display: none;
  }
  .wide-slider__img-mob {
    -o-object-fit: contain;
  }
  .wide-slider {
    margin-bottom: 20px;
    padding: 20px 20px 35px;
  }
  .wide-slider .slider-controls__arrows {
    display: none;
  }
  .wide-slider .page__title-normal {
    margin-bottom: 7px;
  }
  .wide-slider .slider-pagination {
    justify-content: center;
  }
  .wide-slider__container-controls {
    top: 20px;
  }
  .modal__content-img,
  .modal__tel {
    display: none;
  }
  .modal-order .btns-messanger-block__wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    margin-bottom: 20px;
  }
  .modal-order .modal__content {
    max-width: 373px;
  }
  .modal-order .btns-messanger-block__wrap .btn-messanger_tel {
    display: flex;
  }
  .modal-order .btn-messanger {
    background-color: var(--color-orange);
    max-width: 286px;
    width: 100%;
    padding: 4px;
    gap: 30px;
  }
  .modal-order .btn-messanger__name {
    color: #fff;
    line-height: 20px;
  }
  .modal-order .btn-messanger rect {
    stroke: #fff;
    fill: var(--color-orange);
  }
  .modal-order .btns-messanger-block__wrap .btn-messanger_tel path {
    fill: transparent;
  }
  .consult__title {
    margin-bottom: 8px;
  }
  .page__title-medium {
    margin-bottom: 0;
  }
  .service-hero__title {
    margin-bottom: 40px;
  }
  .category-hero {
    margin-bottom: 35px;
  }
  .product-type .wide-slider {
    margin-top: 60px;
  }
  .about-why .slider-pagination,
  .gallery-block .slider-pagination,
  .partners .slider-pagination,
  .product-list .slider-pagination {
    justify-content: center;
    margin-top: 20px;
  }
  .about,
  .about-line,
  .about-video,
  .about-why,
  .catalog-line,
  .category-main,
  .contacts__info-wrap,
  .leasing-advantages,
  .leasing-benefits,
  .leasing-for-customers,
  .leasing-recomend,
  .page-template-catalog .wide-slider,
  .partners,
  .product-desc,
  .product-gallery,
  .product-info,
  .product-list,
  .product-type .wide-slider,
  .service-big-desc,
  .service-list,
  .services {
    margin-bottom: 100px;
  }
  .catalog-line,
  .product-type .consult {
    margin-top: 100px;
  }
  .decor-grid {
    max-width: 760px;
    top: 83px;
  }
  .header__container:after,
  .header__container:before {
    left: 12px;
    height: 104px;
  }
  .header__container:after {
    left: auto;
    right: 11px;
  }
  .product-gallery__wrap_no {
    flex-wrap: wrap;
  }
  .category-main {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding-left: 17px;
    padding-right: 17px;
  }
  .title {
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 20px;
  }
  .catalog-page__title,
  .page__title {
    font-size: 98px;
    line-height: 98px;
  }
  .mini-title {
    font-size: 20px;
  }
  .breadcrumbs {
    padding-top: 70px;
  }
  .btn {
    font-size: 20px;
    padding: 10px;
  }
  .btns-messanger-block__wrap {
    flex-direction: column;
  }
  .stock-status {
    font-size: 14px;
  }
  .discount {
    border-radius: 4px;
    font-size: 14px;
    top: 0;
  }
  .text-block {
    font-size: 16px;
    padding: 20px;
    border-radius: 10px;
    line-height: 1.5;
  }
  .header {
    padding: 9px 0 8px;
  }
  .hamburger__container {
    top: 20px;
  }
  .menu-mobile {
    width: 290px;
  }
  .menu-mobile__head {
    padding: 10px 17px;
  }
  .header__logo {
    order: -1;
    transform: none;
    margin: 0;
    width: 38px;
  }
  .hero__title {
    font-size: 50px;
    line-height: 46px;
  }
  .catalog-btn__name {
    font-size: 28px;
    line-height: 28px;
  }
  .catalog-btn__ico svg {
    width: 30px;
    height: 23px;
    position: relative;
    top: -1px;
  }
  .catalog-btn {
    gap: 7px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .hero {
    padding-top: 80px;
    height: 620px;
    margin-bottom: 80px;
  }
  .hero__title span {
    font-size: 115px;
    line-height: 92px;
  }
  .hero__container {
    flex-direction: column;
    gap: 80px;
  }
  .hero__right {
    position: static;
  }
  .hero__desc {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .catalog-entrance__tiles {
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    position: relative;
    left: 0px;
  }
  .catalog-entrance__desc {
    font-size: 14px;
  }
  .catalog-entrance__btn {
    display: none;
  }
  .catalog-entrance__btn-mob {
    display: block;
    margin: 20px auto;
  }
  .catalog-entrance__container {
    gap: 0;
  }
  .brand-tile {
    height: 108px;
    border-radius: 10px;
    padding: 20px;
  }
  .brand-tile__img {
    max-width: 100%;
  }
  .catalog-line__name {
    font-size: 76px;
    line-height: 68px;
    top: -38px;
    text-align: center;
  }
  .catalog-line__slider {
    padding: 12px 0;
  }
  .catalog-line__item {
    font-size: 12px;
    gap: 12px;
  }
  .catalog-category-tile {
    width: 100%;
    padding: 43px 0 20px;
    border-radius: 10px;
  }
  .catalog-category-tile__title {
    font-size: 18px;
  }
  .product-list .slider-controls {
    display: none;
  }
  .product-list__title br {
    display: none;
  }
  .product-list__head {
    margin-bottom: 20px;
  }
  .catalog-card {
    padding: 10px;
    border-radius: 10px;
    min-height: unset;
  }
  .catalog-card__img {
    height: 98px;
  }
  .catalog-card__title {
    font-size: 14px;
  }
  .catalog-card__desc {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .catalog-card__buttons {
    flex-direction: column;
  }
  .catalog-card__price {
    font-size: 16px;
    display: block;
    text-align: left;
    width: 100%;
  }
  .catalog-card__price-wrap {
    margin-bottom: 10px;
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 0;
  }
  .catalog-card__btn-more,
  .catalog-card__btn-order {
    padding: 7px 10px;
  }
  .services__wrap {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    align-items: unset;
  }
  .services__tile-arrow {
    display: none;
  }
  .services__tile {
    /* width: calc(50% - 5px); */
    width: calc((100% - 11px) / 2);
    padding: 20px;
    border-radius: 10px;
  }
  .services__tile-img {
    max-width: 118px;
  }
  .services__tile-title {
    font-size: 16px;
  }
  .consult__container {
    height: auto;
  }
  .consult__img {
    display: none;
  }
  .about__title-background {
    font-size: 60px;
    top: -23px;
  }
  .about-num-block__big-text {
    font-size: 40px;
    line-height: 40px;
  }
  .about-num-block__big-text sup {
    top: -15px;
    font-size: 30px;
    margin-left: 3px;
  }
  .about-num-block__desc {
    font-size: 16px;
  }
  .about__left {
    margin-top: 50px;
  }
  .about__right {
    gap: 45px 20px;
    position: relative;
    left: -11px;
  }
  .about__desc p {
    margin-bottom: 10px;
  }
  .about__video-btn-name {
    font-size: 20px;
    line-height: 19px;
  }
  .about__video-btn svg {
    height: 48px;
  }
  .home-contacts__title {
    font-size: 98px;
    line-height: 98px;
    margin-bottom: 30px;
  }
  .contacts-block__wrap {
    flex-direction: column;
    gap: 10px;
  }
  .contacts-block__item {
    padding: 40px;
    border-radius: 10px;
  }
  .contacts-block__item-contact {
    font-size: 40px;
  }
  .contacts-block__item-name {
    font-size: 16px;
  }
  .home-contacts__info {
    padding: 20px;
    border-radius: 10px;
  }
  .address {
    font-size: 16px;
  }
  .home-contacts__name {
    font-size: 24px;
  }
  .contacts__item {
    border-radius: 10px;
    padding: 20px;
  }
  .contacts__item-desc {
    font-size: 20px;
    line-height: 26px;
  }
  .contacts__mail-item {
    font-size: 40px;
  }
  .contacts__mail-desc {
    font-size: 16px;
  }
  .about-hero__innumbers {
    margin-top: 60px;
  }
  .about-hero {
    height: 720px;
    margin-bottom: 80px;
  }
  .about-why__head-background {
    font-size: 76px;
    top: -52px;
  }
  .about-why__item b {
    font-size: 20px;
  }
  .about-why__item-num {
    right: -8px;
    top: -20px;
    font-size: 115px;
    line-height: 115px;
  }
  .about-why .gallery-ico,
  .about-why .slider-controls {
    display: none;
  }
  .about-why__item-slider {
    height: auto;
    margin-bottom: 20px;
  }
  .about-why-slider__item img {
    height: 280px;
    border-radius: 10px;
  }
  .about-why-slider {
    border-radius: 10px;
  }
  .about-why__wrap {
    gap: 10px;
  }
  .about-line__item {
    font-size: 76px;
    line-height: 76px;
  }
  .about-video__content {
    order: -1;
    height: 300px;
  }
  .about-video__container {
    gap: 10px;
  }
  .about-video__item {
    height: 178px;
  }
  .about-video .ico-play svg {
    width: 46px;
    height: 46px;
  }
  .about-video__title {
    margin-bottom: 10px;
  }
  .about-video__content p {
    font-size: 20px;
  }
  .gallery-block__head .slider-controls {
    display: none;
  }
  .gallery-block__head {
    margin-bottom: 20px;
  }
  .gallery-block {
    display: block;
    margin-bottom: 80px;
  }
  .gallery-block__item {
    border-radius: 10px;
  }
  .gallery-block__item img {
    height: 228px;
    border-radius: 10px;
  }
  .consult-next__desc {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .consult-next__title {
    margin-bottom: 10px;
  }
  .consult-next__container {
    padding: 40px;
    height: auto;
    border-radius: 10px;
  }
  .partners__head .slider-controls {
    display: none;
  }
  .partners-slider-1 {
    margin-bottom: 10px;
  }
  .partners__title-sub {
    font-size: 16px;
  }
  .partners__head {
    margin-bottom: 20px;
  }
  .partners__title {
    margin-bottom: 10px;
  }
  .leasing-advantages__item {
    width: 100%;
    border-radius: 10px;
    padding: 20px;
  }
  .leasing-advantages__item-photo {
    height: 345px;
  }
  .leasing-advantages__num {
    font-size: 74px;
    line-height: 74px;
    margin: 0 0 20px;
    width: 67px;
    height: 47px;
  }
  .leasing-advantages__num:after {
    width: 65px;
  }
  .leasing-advantages__name {
    font-size: 16px;
  }
  .leasing-advantages__desc {
    font-size: 16px;
  }
  .leasing-for-buyers__item img {
    border-radius: 10px;
    height: 180px;
  }
  .leasing-for-buyers__item:nth-child(2) {
    height: 180px;
    border-radius: 10px;
  }
  .leasing-for-buyers__wrap {
    gap: 10px;
  }
  .leasing-benefit__item {
    width: 100%;
    border-radius: 10px;
    padding: 20px;
  }
  .leasing-benefit__item svg {
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
  }
  .leasing-benefit__desc {
    font-size: 16px;
  }
  .leasing-benefit__item:nth-child(3) {
    height: 196px;
  }
  .faq__item {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .faq__item-title-item {
    font-size: 20px;
    padding-right: 60px;
  }
  .faq__item-control {
    width: 46px;
    height: 46px;
    right: 20px;
    top: 22px;
  }
  .faq__item-body-inner {
    font-size: 16px;
    line-height: 23px;
  }
  .faq__item-body p {
    margin-bottom: 10px;
  }
  .faq__item-body li {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .service-numbers__item {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
  }
  .service-numbers__item-num {
    font-size: 40px;
    line-height: 40px;
  }
  .service-numbers__container {
    gap: 10px;
  }
  .service-big-desc__media-img {
    border-radius: 10px;
  }
  .service-big-desc__content b {
    font-size: 20px;
    line-height: 28px;
  }
  .service-big-desc__content {
    padding-bottom: 0;
  }
  .service-big-desc__decor {
    width: 200px;
  }
  .service-list__item {
    gap: 20px;
    padding: 20px 40px;
    font-size: 14px;
  }
  .service-list__item-desc {
    font-size: 14px;
  }
  .category-main__wrap-inner {
    gap: 11px;
    margin-bottom: 0;
  }
  .filter-block {
    border-radius: 10px;
    padding: 20px 20px 20px;
  }
  .filter-select__name {
    font-size: 16px;
  }
  .filter-select__item-head {
    height: 46px;
    font-size: 16px;
    padding: 14px 20px;
  }
  .filter-select__item svg {
    right: 20px;
    top: 10px;
  }
  .filter-select__inner {
    top: 37px;
  }
  .filter-checkbox {
    font-size: 16px;
  }
  .filter-dropdown__head-name {
    font-size: 16px;
  }
  .filter-checkbox__name {
    font-size: 16px;
    line-height: 16px;
  }
  .filter-dropdown svg {
    top: -3px;
  }
  .filter-section:after {
    width: calc(100% + 40px);
    left: -20px;
  }
  .nav-links .page-numbers {
    background-color: transparent;
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
  .load-more-btn {
    max-width: 100%;
  }
  .product-hero__title {
    font-size: 40px;
    line-height: 37px;
    margin-bottom: 5px;
  }
  .product-hero__desc {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .product-hero .stock-status {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .product-hero__price-item {
    font-size: 32px;
  }
  .product-hero__price-inmonth,
  .product-hero__price-item_old {
    font-size: 16px;
  }
  .product-hero__price {
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
  }
  .product-hero__btn-credit {
    font-size: 20px;
  }
  .product-hero__btn-credit svg {
    width: 46px;
    height: 46px;
  }
  .product-hero__buttons {
    gap: 20px;
    flex-direction: column;
  }
  .product-hero__btn-claim,
  .product-hero__btn-order {
    max-width: 100%;
  }
  .product-info__container {
    gap: 10px;
  }
  .product-info__item {
    width: 100%;
    border-radius: 10px;
    padding: 20px;
  }
  .product-info__item-name {
    font-size: 16px;
  }
  .product-info__item-desc {
    font-size: 36px;
  }
  .product-spec__inner {
    padding: 10px;
    border-radius: 10px;
  }
  .product-spec__title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .product-spec__table-row {
    font-size: 14px;
    padding: 20px;
  }
  .product-desc__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .product-desc__body {
    font-size: 16px;
  }
  .product-desc__toggle-name {
    font-size: 20px;
  }
  .product-desc__wrap.active .product-desc__body {
    padding-right: 0;
  }
  .product-gallery__wrap {
    gap: 10px;
  }
  .product-gallery__item:nth-child(n) {
    width: 100%;
  }
  .product-gallery__item img {
    border-radius: 10px;
    height: 180px;
  }
  .wide-slider__img-mob {
    display: block;
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
    pointer-events: none;
    height: 460px;
    width: 100%;
    -o-object-fit: contain;
    object-fit: cover;
  }
  .wide-slider__container {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
  }
  .wide-slider__title {
    font-size: 38px;
    line-height: 36px;
    margin-bottom: 5px;
  }
  .wide-slider__left {
    padding: 0;
    position: relative;
    height: 100%;
  }
  .wide-slider__btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .wide-slider__info-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .wide-slider__info-desc {
    font-size: 14px;
  }
  .wide-slider .page__title-normal {
    font-size: 32px;
    line-height: 32px;
  }
  .btn-messanger {
    font-size: 20px;
    max-width: 286px;
    gap: 30px;
    padding: 3px 10px;
  }
  .btn-messanger svg {
    width: 40px;
    height: 40px;
  }
  .modal-order .modal__content {
    max-width: 326px;
    padding: 40px 20px 20px;
  }
  .modal__title {
    font-size: 40px;
    line-height: 38px;
  }
  .modal__attr-checkbox {
    width: 22px;
    height: 22px;
  }
  .modal__attr-checkbox:checked::after {
    width: 16px;
    height: 16px;
  }
  .consult__title {
    margin-bottom: 8px;
    font-size: 40px;
  }
  .consult__desc b {
    font-size: 16px;
  }
  .consult__desc p {
    font-size: 14px;
  }
  .consult__container {
    padding: 20px;
    border-radius: 10px;
  }
  .leasing-hero__title {
    margin-bottom: -5px;
  }
  .service-hero__title {
    font-size: 48px;
    margin-bottom: 35px;
  }
  .service-hero .disclaimer-metacorp {
    text-align: center;
  }
  .product-desc__wrap {
    padding: 20px;
    border-radius: 10px;
  }
  .product-hero__media-info {
    /* display: none; */
  }
  .catalog-entrance__title {
    margin-bottom: 10px;
  }
  .catalog-entrance__desc {
    margin-bottom: 20px;
  }
  .catalog-entrance {
    margin-bottom: 60px;
  }
  .about,
  .about-line,
  .about-video,
  .about-why,
  .catalog-line,
  .category-main,
  .contacts__info-wrap,
  .leasing-advantages,
  .leasing-benefits,
  .leasing-for-customers,
  .leasing-recomend,
  .page-template-catalog .wide-slider,
  .partners,
  .product-desc,
  .product-gallery,
  .product-info,
  .product-list,
  .product-type .wide-slider,
  .service-big-desc,
  .service-list,
  .services {
    margin-bottom: 100px;
  }
  .catalog-line,
  .product-type .consult {
    margin-top: 80px;
  }
  .about__desc,
  .consult__desc {
    margin-bottom: 20px;
  }
  .consult {
    margin-bottom: 50px;
  }
  .service-list__block {
    border-radius: 10px;
  }
  .about-video__item,
  .about-video__item img,
  .home-contacts__map,
  .map iframe,
  .map img {
    border-radius: 10px;
  }
  .footer {
    margin-top: 100px;
  }
  .faq,
  .page-template-contacts .consult-next__container {
    margin-bottom: 40px;
  }
  .leasing-advantages__wrap,
  .leasing-benefit__wrap {
    gap: 10px;
  }
  .partners {
    margin-top: 60px;
  }
  .btn-back {
    margin-top: -20px;
  }
  .btn-back__back-name {
    font-size: 20px;
  }
  .btn-back svg {
    width: 46px;
    height: 46px;
  }
  .decor-grid {
    max-width: 100%;
    top: 51px;
    padding: 0 7px;
    display: flex;
    justify-content: space-between;
  }
  .decor-grid__col:nth-child(1) {
    border-right: none;
    display: none;
  }
  .decor-grid__col:nth-child(2) {
    position: relative;
    left: 0;
  }

  .header__container:after,
  .header__container:before {
    left: 7px;
    height: 78px;
  }
  .header__container:after {
    left: auto;
    right: 6px;
  }
  .product-hero__status-line {
    margin-bottom: 0;
    margin-bottom: 0;
  }
  .product-hero .discount {
    top: 3px;
  }
  .product-hero__media-info-cross {
    width: 40px;
    height: 40px;
  }

  .product-hero__media-info-inner {
    width: 40px;
    height: 40px;
    padding-left: 33px;
    transition:
      width 0s,
      opacity 0s,
      transform 0s;
  }
  .product-hero__media-info.reverse .product-hero__media-info-inner {
    right: -41px;
    padding-left: 20px;
    padding-right: 13px;
  }

  .product-hero__media-info.active .product-hero__media-info-inner {
    width: 200px;
  }

  .product-hero__media-info-desc {
    font-size: 12px;
    line-height: 12px;
  }

  .product-hero__media-info-cross:after,
  .product-hero__media-info-cross:before {
    width: 12px;
  }

  .product-hero__media-info-desc {
    transition-duration: 0s;
  }
  .category-main {
    margin-bottom: 60px;
  }
  .decor-grid__col:nth-child(3) {
    left: 0px;
  }

  .catalog__wrap {
    gap: 10px;
  }

  .contacts__info-wrap {
    gap: 10px;
  }

  .leasing-benefits {
    position: relative;
    z-index: 1;
  }

  .faq__item-body {
    max-width: 100%;
  }

  .filter-dropdown__head {
    padding-right: 21px;
  }

  .filter-select__brand .filter-select__box {
    grid-template-columns: 1fr 1fr;
  }

  s.catalog-card__price {
    order: -1;
    font-size: 12px;
  }
  .filter-block-left {
    padding: 11px 20px 9px;
  }

  .category-main {
    margin-bottom: 0;
  }

  div.product-desc__body h2,
  div.product-desc__body h3 {
    color: var(--color-gray);
    font-size: 18px;
    margin: 20px 0 10px;
  }
}
