/* sass --watch scss/style.scss:css/style.css */
:root {
  --font-family: "Magistral", sans-serif;
  --text-size: 16px;
  --header-height: 68px;
  --container-padding: 40px;
  --container: 1720px;
  --color-text: #213d52;
  --color-body-bg: #ffffff;
  --color-primary: #b9ff5d;
  --transition: 0.25s ease;
}

@media (max-width: 1799px) {
  :root {
    --container-padding: 20px;
    --container: 1360px;
  }
}
@media (max-width: 1399px) {
  :root {
    --container-padding: 15px;
    --container: 1120px;
  }
}
@media (max-width: 1149px) {
  :root {
    --header-height: 58px;
    --container-padding: 11px;
    --container: 970px;
    --text-size: 15px;
  }
}
@media (max-width: 991px) {
  :root {
    --container-padding: 9px;
    --container: 750px;
  }
}
@media (max-width: 767px) {
  :root {
    --container-padding: 15px;
    --container: 450px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  max-width: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
  pointer-events: none;
  scroll-behavior: none;
  overscroll-behavior: none;
}

body {
  font-family: var(--font-family);
  font-size: var(--text-size);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-body-bg);
}

img,
picture,
video,
canvas,
svg,
iframe {
  display: block;
  max-width: 100%;
  border: 0;
  height: auto;
}

a {
  font-family: inherit;
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), text-decoration-color var(--transition);
}

ul,
ol {
  list-style: none;
  text-align: left;
}

li {
  height: auto;
}

input,
textarea,
button,
select {
  font-family: inherit;
}

textarea {
  resize: none;
}

input,
textarea,
select {
  max-width: 100%;
  width: 100%;
  font-size: inherit;
}

button,
select {
  cursor: pointer;
  display: block;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  text-transform: none;
}

:focus-visible {
  outline: 0px solid currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

b,
strong {
  color: inherit;
  font-weight: bold;
}

.filterSelect .choices {
  border: 2px solid #1b2830;
  border-radius: 25px;
}
.filterSelect .choices__list--dropdown,
.filterSelect .choices__list[aria-expanded] {
  position: relative;
  top: auto;
  margin-top: 0px;
  background-color: transparent;
  border: 0px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  padding: 5px 20px 20px;
}
.filterSelect .choices__list--dropdown .choices__placeholder,
.filterSelect .choices__list[aria-expanded] .choices__placeholder {
  display: none;
}
.filterSelect .choices__inner {
  background-color: transparent;
  border-radius: 25px;
  padding: 0px;
  border: 0px;
  font-size: 16px;
  line-height: 20px;
  min-height: 46px;
  font-weight: 500;
  cursor: pointer;
}
.filterSelect .choices[data-type*=select-one] {
  cursor: initial;
}
.filterSelect .choices__list--single {
  padding: 13px 70px 13px 20px;
}
.filterSelect .choices__list--single .choices__item:not(.choices__placeholder)::before {
  content: var(--filter-prefix, none);
  color: #8c979e;
}
.filterSelect .choices__list--single,
.filterSelect .choices__list--single .choices__item {
  display: block;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.filterSelect .choices[data-type*=select-one] .choices__inner {
  padding-bottom: 0px;
}
.filterSelect .choices__placeholder {
  color: #8c979e;
  opacity: 1;
}
.filterSelect .choices[data-type*=select-one]::before,
.filterSelect .choices[data-type*=select-one]::after {
  height: 30px;
  width: 30px;
  right: 8px;
  top: 8px;
  pointer-events: none;
}
.filterSelect .choices[data-type*=select-one]::before {
  content: "";
  border-radius: 50%;
  background-color: #8c979e;
  display: block;
  position: absolute;
  transition: background-color var(--transition);
  display: inline;
}
.filterSelect .choices[data-type*=select-one]::after {
  content: "\e93e";
  font-family: icomoon;
  border-width: 0px;
  margin-top: 0px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  transform-origin: center;
  transition: transform var(--transition);
}
.filterSelect .choices[data-type*=select-one] .choices__button {
  background-image: none;
  height: 30px;
  top: 8px;
  right: 46px;
  margin-top: 0px;
  margin-right: 0px;
  width: 24px;
  border-radius: 0px;
  opacity: 1;
  overflow: hidden;
  text-indent: 0px;
  font-size: 12px;
  color: #8c979e;
}
@media (hover: hover) {
  .filterSelect .choices[data-type*=select-one] .choices__button:hover {
    color: #4bc49b;
  }
}
.filterSelect .choices.is-open:after {
  transform: scaleY(-1);
}
.filterSelect .choices.is-open:before {
  background-color: #4bc49b;
}
@media (hover: hover) {
  .filterSelect .choices:hover:before {
    background-color: #4bc49b;
  }
}
.filterSelect .choices__input {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  border: 2px solid #1b2830;
  height: 50px;
  border-radius: 25px;
  background-image: url("/img/icon-search.svg");
  background-size: 22px;
  background-position: calc(100% - 17px) center;
  background-repeat: no-repeat;
}
.filterSelect .choices[data-type*=select-one] .choices__input {
  padding: 13px 47px 13px 26px;
  border-bottom: 2px solid #1b2830;
  background-color: var(--choices-bg-color-dropdown, #fff);
}
.filterSelect .choices__list--dropdown .choices__list,
.filterSelect .choices__list[aria-expanded] .choices__list {
  margin-top: 20px;
  max-height: 172px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #b9ff5d #8c979e;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.filterSelect .choices__list--dropdown .choices__list::-webkit-scrollbar,
.filterSelect .choices__list[aria-expanded] .choices__list::-webkit-scrollbar {
  width: 8px;
  background-color: #8c979e;
}
.filterSelect .choices__list--dropdown .choices__list::-webkit-scrollbar-track,
.filterSelect .choices__list[aria-expanded] .choices__list::-webkit-scrollbar-track {
  background: #8c979e;
  border-radius: 4px;
}
.filterSelect .choices__list--dropdown .choices__list::-webkit-scrollbar-thumb,
.filterSelect .choices__list[aria-expanded] .choices__list::-webkit-scrollbar-thumb {
  background-color: #b9ff5d;
  border-radius: 4px;
  box-shadow: inset 0px 0px 0px transparent;
}
.filterSelect .choices__list--dropdown .choices__list::-webkit-scrollbar-thumb:hover,
.filterSelect .choices__list[aria-expanded] .choices__list::-webkit-scrollbar-thumb:hover {
  background-color: #b9ff5d;
}
.filterSelect .choices__list--dropdown .choices__list::-webkit-scrollbar-button, .filterSelect .choices__list--dropdown .choices__list::-webkit-scrollbar-button:single-button, .filterSelect .choices__list--dropdown .choices__list::-webkit-scrollbar-button:start, .filterSelect .choices__list--dropdown .choices__list::-webkit-scrollbar-button:end, .filterSelect .choices__list--dropdown .choices__list::-webkit-scrollbar-corner,
.filterSelect .choices__list[aria-expanded] .choices__list::-webkit-scrollbar-button,
.filterSelect .choices__list[aria-expanded] .choices__list::-webkit-scrollbar-button:single-button,
.filterSelect .choices__list[aria-expanded] .choices__list::-webkit-scrollbar-button:start,
.filterSelect .choices__list[aria-expanded] .choices__list::-webkit-scrollbar-button:end,
.filterSelect .choices__list[aria-expanded] .choices__list::-webkit-scrollbar-corner {
  display: none;
  width: 0;
  height: 0;
}
.filterSelect .choices__list--dropdown .choices__item,
.filterSelect .choices__list[aria-expanded] .choices__item {
  padding: 5px 0px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #05a7b6;
  transition: color var(--transition);
}
@media (hover: hover) {
  .filterSelect .choices__list--dropdown .choices__item:hover,
  .filterSelect .choices__list[aria-expanded] .choices__item:hover {
    color: #4bc49b;
  }
}
.filterSelect .choices__list--dropdown .choices__item--selectable.is-highlighted,
.filterSelect .choices__list--dropdown .choices__item--selectable.is-selected,
.filterSelect .choices__list[aria-expanded] .choices__item--selectable.is-highlighted,
.filterSelect .choices__list[aria-expanded] .choices__item--selectable.is-selected {
  background-color: transparent;
  color: #4bc49b;
}
.filterSelect .has-no-results {
  pointer-events: none;
}

@keyframes modalOverlayIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalOverlayOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes modalIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes modalOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes heroZoom {
  from {
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}
@keyframes themeIconSpin {
  to {
    transform: rotate(360deg);
  }
}
.modal {
  display: none;
}
.modal .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
}
.modal.is-open {
  display: block;
  pointer-events: all;
}
.modal[aria-hidden=false] .modalOverlay {
  animation: modalOverlayIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=false] .modalContainer {
  animation: modalIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=true] .modalOverlay {
  animation: modalOverlayOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=true] .modalContainer {
  animation: modalOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modalOverlay {
  position: fixed;
  overflow: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  z-index: 102;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(42, 47, 50, 0.9);
}

.modal .modalClose {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: calc(100% + 8px);
  z-index: 2;
  left: calc(100% + 8px);
  transition: color 0.2s;
}
.modal .closeBtn {
  position: absolute;
  color: #fff;
  bottom: calc(100% + 10px);
  left: calc(100% + 10px);
  font-size: 22px;
}

.closeBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color var(--transition);
}
@media (hover: hover) {
  .closeBtn:hover {
    color: #b9ff5d;
  }
}

.modalContent {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: transparent;
  max-width: 696px;
  background-color: #fff;
  background-image: url(../img/pattern.png);
  background-repeat: repeat-y;
  background-position: right center;
  padding: 40px 50px 50px;
}

.modalContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  width: 100%;
  padding: 42px;
  position: relative;
}

.tippy-box[data-theme~=contact] {
  background-color: #fff;
  border: 1px solid #2a2f32;
  border-radius: 0;
  color: #213d52;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  box-shadow: none;
}
.tippy-box[data-theme~=contact] .tippy-content {
  padding: 10px 16px;
  min-height: 69px;
  min-width: 209px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tippy-box[data-theme~=contact] .cardContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: static;
  opacity: 1;
  width: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  pointer-events: auto;
}
.tippy-box[data-theme~=contact] .cardContent:after {
  display: none;
}
.tippy-box[data-theme~=contact] .tippy-arrow {
  color: #fff;
}
.tippy-box[data-theme~=contact][data-placement^=top] > .tippy-arrow:before {
  border-top-color: #fff;
  filter: drop-shadow(0 1px 0 #2a2f32);
}
.tippy-box[data-theme~=contact][data-placement^=bottom] > .tippy-arrow:before {
  border-bottom-color: #fff;
  filter: drop-shadow(0 -1px 0 #2a2f32);
}
.tippy-box[data-theme~=contact][data-placement^=left] > .tippy-arrow:before {
  border-left-color: #fff;
  filter: drop-shadow(1px 0 0 #2a2f32);
}
.tippy-box[data-theme~=contact][data-placement^=right] > .tippy-arrow:before {
  border-right-color: #fff;
  filter: drop-shadow(-1px 0 0 #2a2f32);
}

.tippy-box[data-theme~=product-info] .tippy-content {
  display: block;
  min-width: 320px;
  max-height: 70vh;
  overflow: auto;
  text-align: left;
  padding: 16px 18px;
  background-color: #f2ffe2;
}
.tippy-box[data-theme~=product-info] .name {
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #05a7b6;
  margin-bottom: 12px;
}
.tippy-box[data-theme~=product-info] .productParams {
  padding-top: 0;
}
.tippy-box[data-theme~=product-info] .paramsTable .paramLine {
  padding: 3px 12px;
}
.tippy-box[data-theme~=product-info] .paramsTable .cardCaption {
  font-size: 13px;
}
.tippy-box[data-theme~=product-info] .productNote {
  margin-top: 12px;
  font-size: 13px;
  line-height: 18px;
}

.siteHeader {
  position: fixed;
  z-index: 100;
  top: 30px;
  width: 100%;
  left: 0;
  pointer-events: none;
  touch-action: none;
}
.siteHeader .logoLink {
  align-self: center;
}
.siteHeader .cartBtn {
  align-self: center;
}

.logoLink {
  transition: opacity var(--transition);
}
@media (hover: hover) {
  .logoLink:hover {
    opacity: 0.78;
  }
}

.headerInner {
  display: flex;
  gap: 20px;
  min-height: var(--header-height);
  pointer-events: auto;
  touch-action: auto;
}

.burger {
  display: none;
  min-width: var(--header-height);
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 101;
  box-shadow: 0px 4px 10px rgba(33, 61, 82, 0.1);
  transition: background-color var(--transition), box-shadow var(--transition);
}
.burger > * {
  display: block;
  position: absolute;
  width: 28px;
  border-top: 3px solid #05a7b6;
  top: 50%;
  left: calc(50% - 14px);
  transform-origin: center;
  transition: border-top-color var(--transition);
}
.burger > *:first-child {
  margin-top: -11px;
  transition: margin-top 0.1s 0.1s, transform 0.1s 0s, border-top-color var(--transition);
}
.burger > *:nth-child(2) {
  margin-top: -2px;
  transition: opacity 0s 0.1s, border-top-color var(--transition);
}
.burger > *:nth-child(3) {
  margin-top: 7px;
  transition: margin-top 0.1s 0.1s, transform 0.1s 0s, border-top-color var(--transition);
}
.burger.active {
  background-color: #2b3033;
  box-shadow: 0px 0px 0px transparent;
}
.burger.active > * {
  border-top-color: #05a7b6;
}
.burger.active > *:first-child {
  margin-top: -2px;
  transform: rotate(45deg);
  transition: margin-top 0.1s, transform 0.1s 0.1s, border-top-color var(--transition);
}
.burger.active > *:nth-child(2) {
  margin-top: -2px;
  opacity: 0;
}
.burger.active > *:nth-child(3) {
  margin-top: -2px;
  transform: rotate(-45deg);
  transition: margin-top 0.1s, transform 0.1s 0.1s, border-top-color var(--transition);
}

.headerContent {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-radius: calc(var(--header-height) / 2);
  padding: 0 var(--container-padding);
  width: 100%;
  gap: 16px;
  box-shadow: 0px 4px 10px rgba(33, 61, 82, 0.1);
}

.menuList a {
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  font-family: "Magistral Book";
  white-space: nowrap;
}

.menuContainer {
  display: flex;
}
.menuContainer .menuList {
  display: flex;
  min-height: 100%;
}
.menuContainer .menuList a {
  color: #2a2f32;
  transition: background-color var(--transition);
  min-height: 100%;
  display: flex;
  align-items: center;
  padding: 0px 16px;
}
@media (hover: hover) {
  .menuContainer .menuList a:hover {
    background-color: var(--color-primary);
  }
}
.menuContainer .menuList a.active {
  background-color: var(--color-primary);
}

.themeIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #8c979e;
  position: relative;
  margin: 4px;
  color: #fff;
  font-size: 28px;
  transition: background-color var(--transition), color var(--transition);
}
.themeIcon:after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  border: 2px solid #8c979e;
  color: #fff;
  clip-path: polygon(12px 6px, 0px 6px, 0px 0px, 100% 0px, 100% 100%, 0px 100%, 0px 11px, 12px 11px);
  transition: border-color var(--transition);
}
.themeIcon.dark {
  background-color: #2b3033;
}
.themeIcon.dark:after {
  border-color: #2b3033;
}
@media (hover: hover) {
  .themeIcon:hover:after {
    animation: themeIconSpin 2.5s linear infinite;
  }
}

@media (hover: hover) {
  a:hover .themeIcon {
    background-color: #b9ff5d;
    color: #8c979e;
  }
  a:hover .themeIcon:after {
    animation: themeIconSpin 2.5s linear infinite;
  }
  a:hover .themeIcon.dark {
    color: #2b3033;
  }
  a:hover .themeIcon.dark:after {
    border-color: #b9ff5d;
  }
}

.phoneLink {
  display: block;
  font-weight: 500;
  color: #2a2f32;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (hover: hover) {
  .phoneLink:hover {
    color: #4bc49b;
  }
}

.headContact {
  padding-left: 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.headContact .shedule {
  display: block;
  font-size: 15px;
  line-height: 1;
  color: #8c979e;
  margin-bottom: 6px;
}
.headContact .themeIcon {
  position: absolute;
  left: 0;
  top: calc(50% - 25px);
}

.headerContacts {
  align-self: center;
}

.cartBtn {
  position: relative;
}
.cartBtn .count {
  display: block;
  position: absolute;
  font-size: 13px;
  line-height: 19px;
  font-weight: 500;
  color: var(--color-primary);
  right: 0px;
  top: 0px;
  background-color: #2a2f32;
  border-radius: 50%;
  text-align: center;
  width: 19px;
}
.cartBtn .themeIcon {
  background-color: #4bc49b;
}

.container {
  width: var(--container);
  margin: 0 auto;
  max-width: calc(100% - var(--container-padding) * 2);
}

.inputContainer textarea,
.inputContainer input {
  display: block;
  background-color: transparent;
  border: 2px solid #fff;
  width: 100%;
  border-radius: 25px;
  text-align: left;
  padding: 13px 20px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #fff;
  transition: border-color var(--transition);
}
.inputContainer textarea::placeholder,
.inputContainer input::placeholder {
  color: #c0c0c0;
  opacity: 1;
  white-space: nowrap;
  transition: opacity 0.25s;
}
.inputContainer textarea::-webkit-input-placeholder,
.inputContainer input::-webkit-input-placeholder {
  color: #c0c0c0;
  opacity: 1;
  white-space: nowrap;
  transition: opacity 0.25s;
}
.inputContainer textarea:focus::placeholder,
.inputContainer input:focus::placeholder {
  color: inherit;
  opacity: 0;
  transition: opacity 0.25s;
}
.inputContainer textarea:focus::-webkit-input-placeholder,
.inputContainer input:focus::-webkit-input-placeholder {
  opacity: 0;
  color: inherit;
  transition: opacity 0.25s;
}
.inputContainer textarea:disabled::placeholder,
.inputContainer input:disabled::placeholder {
  color: inherit;
  opacity: 0.5;
}
.inputContainer textarea:disabled:-webkit-input-placeholder,
.inputContainer input:disabled:-webkit-input-placeholder {
  opacity: 0.5;
  color: inherit;
}
.inputContainer textarea {
  height: 100%;
}
.inputContainer input {
  height: 50px;
}
.inputContainer.dark input,
.inputContainer.dark textarea {
  border-color: #1b2830;
  color: #1b2830;
}

.countInput {
  position: relative;
}
.countInput .inputContainer input {
  height: 66px;
  border-radius: 10px 10px 0px 0px;
  border: 0px;
  font-size: 24px;
  line-height: 1;
  padding: 28px 72px 14px;
  background-color: #047b86;
  text-align: center;
}
.countInput .cardCaption {
  position: absolute;
  width: 100%;
  padding: 0px 72px;
  top: 6px;
  text-align: center;
  font-size: 18px;
  line-height: 20px;
  color: #05a7b6;
  pointer-events: none;
  user-select: none;
}

.countBtn {
  width: 67px;
  height: 100%;
  position: absolute;
  background-color: #05a7b6;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  top: 0;
}
.countBtn .icon {
  display: block;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: 1px solid #e0e0e0;
  position: relative;
}
.countBtn .icon:before {
  content: "";
  display: block;
  position: absolute;
  width: 19px;
  border-top: 1px solid #e0e0e0;
  left: calc(50% - 9px);
  top: 50%;
}
.countBtn.minus {
  left: 0;
  border-top-left-radius: 10px;
}
.countBtn.plus {
  right: 0;
  border-top-right-radius: 10px;
}
.countBtn.plus .icon:after {
  content: "";
  display: block;
  position: absolute;
  height: 19px;
  border-left: 1px solid #e0e0e0;
  top: calc(50% - 9px);
  left: 50%;
}

.iconInput {
  position: relative;
}
.iconInput input {
  padding-right: 48px;
}
.iconInput .icon {
  display: block;
  position: absolute;
  color: #c0c0c0;
  font-size: 22px;
  line-height: 1;
  right: 17px;
  top: calc(50% - 11px);
}

.textCaption {
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #05a7b6;
  font-weight: 500;
}

.textContainer {
  font-weight: 300;
}
.textContainer .sectionTitle:not(:first-child) {
  margin-top: 62px;
}
.textContainer .btnContainer {
  margin-top: 26px;
}
.textContainer > br {
  margin-top: 16px;
  display: block;
}
.textContainer > * + * {
  margin-top: 10px;
}
.textContainer.light {
  color: #fff;
}
.textContainer .lg {
  font-size: 18px;
  line-height: 24px;
}
.textContainer b,
.textContainer strong {
  font-weight: 500;
}
.textContainer .accent {
  color: #05a7b6;
}

.heroAdd {
  width: calc((100% - var(--container)) / 2 + var(--container) - 1422px);
  order: 1;
  position: relative;
  padding-right: calc((100% - 1920px) / 2);
  background-color: #2a2f32;
  background-image: url(../img/pattern.png);
  background-repeat: repeat-y;
  background-position: right center;
}
.heroAdd + .heroInner {
  padding-right: 0px;
  max-width: 1422px;
  margin-right: 0px;
}

.categoryCard {
  display: flex;
  flex-direction: column;
  background-color: rgba(239, 239, 239, 0.6);
  border: 1px solid #b1e9ec;
  border-radius: 10px;
  min-height: 157px;
  height: 100%;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.025em;
  color: #2a2f32;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 5px 0px;
  font-family: "Magistral Book";
  transition: background-color var(--transition), border-color var(--transition);
}
.categoryCard .cardInner {
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.categoryCard span {
  width: 0;
  min-width: min-content;
  min-height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.categoryCard img {
  height: 97px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.25));
}
@media (hover: hover) {
  .categoryCard:hover {
    background-color: #b9ff5d;
    border-color: #b9ff5d;
  }
  .categoryCard:hover .cardInner {
    transform: translateY(-10px);
  }
}
.categoryCard.active {
  background-color: #b9ff5d;
  border-color: #b9ff5d;
}
.categoryCard.active .cardInner {
  transform: translateY(-10px);
}

.heroTitle {
  font-size: 60px;
  line-height: 82px;
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
}
.heroTitle > * {
  display: block;
  letter-spacing: 0.025em;
}
.heroTitle > *:nth-child(2) {
  color: #05a7b6;
}
.heroTitle > *:nth-child(3) {
  color: #4cc59c;
}

.heroImage {
  position: absolute;
  top: 0;
  left: 0;
  width: calc((100% - var(--container)) / 2 + 1022px + 400px);
  height: 100%;
  z-index: -1;
  opacity: 0.6;
  overflow: hidden;
}
.heroImage img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0%;
  top: 0%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  animation: heroZoom 8s linear infinite alternate;
  animation-delay: 1.5s;
}

.heroContent {
  display: flex;
  align-items: center;
}

.heroText {
  width: 1022px;
  flex-shrink: 0;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  overflow-x: hidden;
}

.heroInner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 133px;
  min-height: 320px;
  padding-bottom: 36px;
  width: 1422px;
  width: 100%;
  max-width: var(--container);
  padding-right: calc(var(--container) - 1422px);
  margin-left: auto;
  margin-right: auto;
}
.heroInner:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 400px;
  right: calc((100% - var(--container)) / 2 + var(--container) - 1422px);
  top: 0;
  background: linear-gradient(to bottom, rgba(75, 196, 155, 0.2) 50%, #05a7b6 90%), linear-gradient(to bottom, rgba(75, 196, 155, 0.3), rgba(5, 167, 182, 0.3));
  z-index: -1;
}

main {
  overflow-x: hidden;
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  background-color: #1b2830;
}
.hero.home .heroInner {
  min-height: 100vh;
  padding-bottom: 0px;
}
.hero.home .heroContent {
  align-items: flex-end;
}
.hero.home .catalogMenu {
  margin-top: 51px;
  padding-bottom: 28px;
}
.hero.home .headContacts {
  flex-direction: column;
}
.hero .brandsList {
  width: calc(100% + var(--container) - 1422px);
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
  position: relative;
  z-index: 1;
}
.hero .brandsList li {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
}
.hero .brandsList li:last-child {
  min-width: 190px;
}
.hero .heroMenu {
  width: 400px;
  padding: 0px 30px;
}
.hero .catalogMenu {
  margin-top: 31px;
}
.hero .catalogMenu ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.hero .catalogMenu.splide.is-initialized:not(.is-active) .splide__list {
  display: grid;
}
.hero .catalogMenu.splide.is-initialized:not(.is-active) .splide__slide {
  width: auto;
}
.hero:not(.home) .headContacts li {
  display: flex;
  justify-content: center;
  width: 50%;
}
.hero:not(.home) .headContacts li + li {
  margin-top: 0px;
}
.hero:not(.home) .headContacts ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 56px;
  max-width: 218px;
  width: 100%;
}
.hero:not(.home) .brandsList {
  margin-bottom: -36px;
}
.hero:not(.home) .contactCard {
  position: relative;
  color: #2a2f32;
}
.hero:not(.home) .contactCard > .cardContent {
  display: none;
}
.hero:not(.home) .contactCard .themeIcon {
  margin-bottom: 4px;
}
.hero:not(.home) .contactCard.address {
  font-size: 14px;
  line-height: 16px;
}
.hero .headContacts {
  width: 100%;
  padding-top: 118px;
  padding-bottom: 118px;
  justify-content: center;
  min-height: 100%;
  align-items: center;
}
.hero .headContacts .contactCard {
  max-width: 194px;
}
@media (hover: hover) {
  .hero .headContacts .contactCard:hover .themeIcon {
    color: #2a2f32;
  }
  .hero .headContacts .contactCard:hover .themeIcon:after {
    border-color: #b9ff5d;
  }
}

.brandCard {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #b9ff5d 0%, #fff 50%);
  background-size: 100% 200%;
  background-position: 0% 100%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  width: 100%;
  min-height: 106px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.025em;
  color: #2a2f32;
  font-family: "Magistral Book";
  text-transform: uppercase;
  transition: background-position var(--transition), background-color var(--transition), color var(--transition);
}
.brandCard img {
  transition: transform var(--transition);
}
@media (hover: hover) {
  .brandCard:hover {
    background-color: #b9ff5d;
    background-position: 0% 25%;
  }
}
@media (hover: hover) {
  .brandCard:not(.linkCard):hover img {
    transform: translateY(-10px);
  }
}
.brandCard.linkCard {
  position: relative;
  background: #4bc49b;
  color: #fff;
  text-align: right;
  padding-left: 4px;
}
.brandCard.linkCard:after {
  content: "\e90a";
  font-family: icomoon;
  font-size: 26px;
  line-height: 1;
}
@media (hover: hover) {
  .brandCard.linkCard:hover {
    background-color: #b9ff5d;
    color: #2a2f32;
  }
}

.cardCaption {
  display: block;
  font-size: 14px;
  line-height: 1.14;
  color: #8c979e;
}

.formNote,
.formLabel {
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: #c0c0c0;
}

.formLabel {
  margin-bottom: 4px;
  padding-left: 20px;
}

.contactCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
}
.contactCard .cardCaption {
  margin-bottom: 5px;
}
.contactCard .themeIcon {
  margin-bottom: 18px;
}
.contactCard.address {
  font-size: 16px;
  line-height: 22px;
}
.contactCard.lg {
  font-size: 20px;
  letter-spacing: 0.05em;
}
.contactCard.lg .cardCaption {
  margin-bottom: 5px;
  font-size: 15px;
  letter-spacing: 0em;
  margin-bottom: 8px;
}
.contactCard.lg .themeIcon {
  margin-bottom: 28px;
}
.contactCard.light {
  color: #fff;
}
.contactCard.light .cardCaption {
  color: inherit;
}

.headContacts {
  display: flex;
}
.headContacts li + li {
  margin-top: 55px;
}

.sectionTitle {
  display: block;
  font-size: 30px;
  line-height: 41px;
  color: #2a2f32;
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.sectionTitle > * {
  display: block;
  font-style: inherit;
}
.sectionTitle > i {
  color: #05a7b6;
}
.sectionTitle.center {
  text-align: center;
}
.sectionTitle.light {
  color: #fff;
}
.sectionTitle.xs {
  font-size: 24px;
}

.startGradient,
.endGradient,
.middleGradient {
  position: relative;
}
.startGradient:after,
.endGradient:after,
.middleGradient:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 400px;
  left: calc(50% - var(--container) / 2 + 1022px);
  top: 0;
  z-index: -1;
}

.startGradient:after {
  background: linear-gradient(to bottom, #05a7b6 7%, #4bc49b 100%);
}
.startGradient .darkItem:after {
  background: linear-gradient(to bottom, transparent -10%, #4bc49b 100%);
}

.endGradient:after {
  background: linear-gradient(to bottom, #4bc49b, #05a7b6);
}
.endGradient .darkItem:after {
  background: linear-gradient(to bottom, #4bc49b 10%, #05a7b6 100%);
}

.advantagesSection .sectionGrid,
.pageAboutSection .sectionGrid,
.aboutSection .sectionGrid,
.contactsSection .sectionGrid {
  grid-template-columns: 32.8488372093% 34.3023255814% 32.8488372093%;
}
.advantagesSection .item,
.pageAboutSection .item,
.aboutSection .item,
.contactsSection .item {
  min-height: 498px;
  min-width: 0px;
}

.imageItem {
  position: relative;
  overflow: hidden;
}
.imageItem .imageContainer {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

.darkItem {
  position: relative;
  z-index: 1;
}
.darkItem:before {
  content: "";
  display: block;
  position: absolute;
  background-color: #2b3033;
  width: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/pattern.png);
  background-repeat: repeat-y;
  z-index: -1;
  pointer-events: none;
}
.darkItem.column-2:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 133px;
  opacity: 0.2;
  pointer-events: none;
}
.darkItem.column-3:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 267px;
  opacity: 0.2;
  pointer-events: none;
}

.middleGradient:after {
  background: #4bc49b;
}
.middleGradient .darkItem:after {
  z-index: -1;
  opacity: 1;
  background: linear-gradient(to bottom, rgba(75, 196, 155, 0.2), rgba(5, 167, 182, 0.2)), linear-gradient(to bottom, rgba(5, 167, 182, 0) 50%, #05a7b6 90%);
}

.sectionGrid {
  display: grid;
  grid-auto-flow: dense;
}
.sectionGrid .item {
  padding: 32px 30px;
}
.sectionGrid .item.row-1 {
  padding-top: 0;
}
.sectionGrid .item.mapItem {
  padding: 0px;
}
.sectionGrid .item.cardsItem {
  padding-bottom: 0px;
}
.sectionGrid .fullItem {
  grid-column: span 3;
}
.sectionGrid .column-1 {
  padding-left: 40px;
}
.sectionGrid .column-3 {
  padding-right: 40px;
}
.sectionGrid .column-2 {
  padding-right: 133px;
}
.sectionGrid .rightGradient {
  position: relative;
}
.sectionGrid .rightGradient:before {
  content: "";
  display: block;
  position: absolute;
  width: 133px;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.sectionGrid .leftGradient {
  position: relative;
}
.sectionGrid .leftGradient:after {
  content: "";
  display: block;
  top: 0;
  height: 100%;
  position: absolute;
  mix-blend-mode: overlay;
  left: 0;
  width: 267px;
}
.sectionGrid .centerGradient {
  position: relative;
}
.sectionGrid .centerGradient:after {
  content: "";
  display: block;
  top: 0;
  height: 100%;
  position: absolute;
  mix-blend-mode: overlay;
  left: 457px;
  width: 400px;
}
.sectionGrid .rows-2 {
  grid-row: span 2;
}
.sectionGrid .columns-2 {
  grid-column: span 2;
}

.headContactsList .cardCaption {
  font-size: 16px;
  line-height: 24px;
}
.headContactsList a {
  display: block;
  color: #2a2f32;
  font-size: 18px;
  line-height: 24px;
  padding-left: 15px;
}
@media (hover: hover) {
  .headContactsList a:hover {
    color: #4bc49b;
  }
}
.headContactsList li {
  padding-left: 211px;
  position: relative;
}
.headContactsList li + li {
  margin-top: 32px;
}
.headContactsList .logo {
  position: absolute;
  left: 210px;
  top: 50%;
  transform: translate(-100%, -50%);
}

@media (hover: hover) {
  .splide__arrow:hover .themeIcon {
    background-color: #b9ff5d;
    color: #8c979e;
    border-color: #b9ff5d;
  }
  .splide__arrow:hover .themeIcon:after {
    animation: themeIconSpin 2.5s linear infinite;
  }
}

.certificateSlider {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding-left: 55px;
  padding-right: 55px;
  display: flex;
  align-items: center;
  height: 100%;
}
.certificateSlider .splide__track {
  width: 240px;
  margin-left: auto;
  margin-right: auto;
}
.certificateSlider .certCard {
  display: block;
  padding-top: 141.25%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition);
}
.certificateSlider .certCard img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
}
@media (hover: hover) {
  .certificateSlider .certCard:hover {
    transform: scale(0.95);
  }
}
.certificateSlider .splide__arrow {
  width: auto;
  height: auto;
  background: transparent;
  opacity: 1;
}
.certificateSlider .splide__arrow:hover:not(:disabled), .certificateSlider .splide__arrow:focus:not(:disabled) {
  opacity: 1;
}
.certificateSlider .splide__arrow:disabled {
  opacity: 0.4;
}
.certificateSlider .splide__arrow--prev {
  left: 0;
}
.certificateSlider .splide__arrow--next {
  right: 0;
}

.hero + .section {
  padding-top: 120px;
}

.section {
  padding-bottom: 60px;
  padding-top: 60px;
}
.section:last-child {
  padding-bottom: 0px;
}

.aboutSection .aboutBullet {
  margin-top: 62px;
}
.aboutSection .leftGradient .imageContainer {
  width: 200%;
  height: 200%;
  right: 0;
  left: auto;
}
.aboutSection .leftGradient:after {
  background: linear-gradient(to bottom, #05a7b6, #4bc49b);
}
.aboutSection .rightGradient .imageContainer {
  width: 200%;
  height: 200%;
  top: -100%;
}
.aboutSection .rightGradient:before {
  background: linear-gradient(to bottom, rgba(5, 167, 182, 0.6) 50%, #4bc49b);
}
.aboutSection .darkItem:before {
  height: calc(100% + 120px);
  background-position: right bottom;
}
.aboutSection .darkItem:after {
  height: calc(100% + 120px);
}
.aboutSection .hideDesk {
  display: none;
}

.pageAboutSection .column-1 {
  padding-right: 20px;
}
.pageAboutSection .row-1 {
  padding-bottom: 0px;
}
.pageAboutSection .rightGradient:before {
  background: linear-gradient(to bottom, #4bc49b, #05a7b6);
}
.pageAboutSection .rightGradient.row-2:before {
  background: linear-gradient(to bottom, #4bc49b, #05a7b6), linear-gradient(to bottom, #4bc49b, #4bc49b);
}
.pageAboutSection .rightGradient.row-2:after {
  content: "";
  display: block;
  position: absolute;
  width: 133px;
  height: 100%;
  right: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(5, 167, 182, 0), #4bc49b);
  z-index: 1;
}
.pageAboutSection .leftGradient:after {
  background: linear-gradient(to bottom, #05a7b6, #4bc49b);
}
.pageAboutSection .leftGradient:before {
  content: "";
  display: block;
  position: absolute;
  width: 267px;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, #05a7b6, rgba(5, 167, 182, 0));
  z-index: 1;
}
.pageAboutSection .darkItem {
  padding: 76px 100px 76px 70px;
}
.pageAboutSection .darkItem .btnContainer {
  margin-top: 40px;
}
.pageAboutSection .darkItem:before {
  height: calc(100% + 120px);
  background-position: right bottom;
}
.pageAboutSection .darkItem:after {
  height: calc(100% + 120px);
}
.pageAboutSection .textContainer:not(:first-child) {
  margin-top: 20px;
}
.pageAboutSection .columns-2 {
  padding-right: 163px;
}
.pageAboutSection .vacanciesList {
  margin-right: -133px;
  margin-left: -40px;
}
.pageAboutSection .startVertical {
  align-self: flex-start;
}

.caption {
  display: block;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 2px;
}

.contactsList li {
  position: relative;
  padding-left: 70px;
  line-height: 30px;
}
.contactsList li + li {
  margin-top: 22px;
}
.contactsList .themeIcon {
  position: absolute;
  left: 0;
  top: 8px;
}
.contactsList.light {
  color: #fff;
}

.mapContainer {
  display: flex;
  width: 100%;
  height: 100%;
}

.themeBtn {
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  border: 0px;
  background: linear-gradient(to right, #4bc49b 0%, #05a7b6 100%);
  text-align: center;
  height: 50px;
  border-radius: 26px;
  min-width: 219px;
  padding: 13px 24px;
  overflow: visible;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0px 0px 0px transparent;
  transition: box-shadow var(--transition), transform var(--transition), opacity var(--transition);
}
.themeBtn:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  opacity: 0.11;
  background-color: #05a7b6;
  width: calc(100% + 60px);
  height: calc(100% + 20px);
  top: -10px;
  left: -30px;
  transform-origin: center;
  transform: scale(0);
  pointer-events: none;
  border-radius: 35px;
  transition: transform var(--transition);
}
.themeBtn .icon {
  font-size: 26px;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
}
.themeBtn.accent {
  background: linear-gradient(to right, #b9ff5d 0%, #4bc49b 100%);
  color: #1f232b;
}
.themeBtn.accent:before {
  background-color: #4bc49b;
}
@media (hover: hover) {
  .themeBtn:hover {
    box-shadow: 0px 6px 12px rgba(3, 5, 3, 0.22);
    transform: translateY(-3px);
  }
  .themeBtn:hover:before {
    transform: scale(1);
  }
}

.textList, .textContainer ul {
  font-weight: 300;
}
.textList li, .textContainer ul li {
  line-height: 30px;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  padding-left: 40px;
}
.textList li:before, .textContainer ul li:before, .textList li:after, .textContainer ul li:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.textList li:before, .textContainer ul li:before {
  background-color: #2a2f32;
  left: 0;
  width: 20px;
  height: 20px;
  top: 4px;
}
.textList li:after, .textContainer ul li:after {
  background-color: #4bc49b;
  left: 4px;
  width: 12px;
  height: 12px;
  top: 8px;
}
.textList li + li, .textContainer ul li + li {
  margin-top: 20px;
}
.textList.light, .textContainer ul.light {
  color: #fff;
}

.advantagesSection .item {
  padding-top: 55px;
}
.advantagesSection .item:not(:first-child) .contactsList {
  margin-top: 112px;
}
.advantagesSection .darkItem:before {
  height: 100%;
  background-position: right top;
}
.advantagesSection .darkItem:after {
  height: 100%;
}

.productSection:after {
  height: calc(100% + 120px);
}

.priceWrapper {
  background-color: #1f232b;
  color: #fff;
  text-align: center;
  min-height: 67px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.priceWrapper .price {
  font-size: 24px;
  font-weight: 500;
}

.productCard {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border: 2px solid #8c979e;
  color: #213d52;
  position: relative;
}
.productCard:active {
  cursor: grabbing;
}
.productCard .imageContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 165px;
  padding: 16px;
}
.productCard .imageContainer img {
  object-fit: contain;
  max-height: 100%;
  max-width: 175px;
}
.productCard .cardContent {
  flex: 1;
  padding: 0px 28px 28px;
  min-height: 170px;
}
.productCard .name {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #05a7b6;
  text-decoration: underline;
  transition: color var(--transition);
}
.productCard .params {
  font-family: "Magistral book";
  font-size: 16px;
  line-height: 20px;
}
.productCard .cardContent .cardCaption,
.productCard .cardDown .cardCaption {
  font-size: 16px;
  line-height: 20px;
  display: inline;
  font-weight: 500;
  font-family: var(--font-family);
}
.productCard .cardDown {
  margin-top: auto;
}
@media (hover: hover) {
  .productCard a.cardContent:hover .name {
    color: #b9ff5d;
  }
}
.productCard .tooltipBtn {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 30px;
  color: #8c979e;
  gap: 18px;
  font-family: "Magistral Book";
}
.productCard .tooltipBtn .icon {
  font-size: 30px;
  color: #556673;
  transition: color var(--transition);
}
@media (hover: hover) {
  .productCard .tooltipBtn:hover .icon {
    color: #b9ff5d;
  }
}
.productCard .productInfo {
  position: absolute;
  right: 17px;
  top: 17px;
}
.productCard .productInfo .productInfo {
  display: none;
}
.productCard .cardAction {
  padding-bottom: 15px;
  padding-top: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
.productCard.horizontal {
  flex-direction: row;
  min-height: 170px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  align-items: center;
  padding: 11px 10px 11px 20px;
}
.productCard.horizontal .cardAction {
  flex-direction: row;
  justify-content: space-between;
  padding-top: 0px;
}
.productCard.horizontal .imageContainer {
  min-width: 176px;
  padding: 0px;
  height: 144px;
}
.productCard.horizontal .cardContent {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0px;
  min-height: 0px;
}
.productCard.horizontal .basketContent {
  width: 400px;
}
.productCard.horizontal .cardDown {
  margin-top: 0px;
  width: 419px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}
.productCard.horizontal .cardDown .removeBtn {
  margin-left: auto;
}
.productCard.horizontal .priceWrapper {
  min-height: 79px;
  order: 1;
}
.productCard.horizontal .priceWrapper .cardCaption {
  color: #afebd7;
  font-size: 18px;
  line-height: 20px;
}
.productCard.horizontal .productInfo {
  position: relative;
  right: auto;
  top: auto;
}
.productCard.horizontal + .productCard {
  margin-top: 20px;
}
.productCard .removeBtn {
  color: #8c979e;
  font-family: "Magistral book";
  display: flex;
  align-items: center;
  gap: 20px;
}
.productCard .removeBtn .cardCaption {
  font-weight: normal;
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
}
.productCard .removeBtn .icon {
  font-size: 28px;
  line-height: 1;
  transition: color var(--transition);
}
@media (hover: hover) {
  .productCard .removeBtn:hover .icon {
    color: #b9ff5d;
  }
}

.basketList .productCard {
  padding-left: 30px;
  padding-right: 40px;
}
.basketList .productCard .cardContent {
  width: 746px;
  flex: initial;
}
.basketList .productCard .imageContainer {
  min-width: 244px;
}
.basketList .productCard .cardDown {
  width: calc(100% - 244px - 746px - 400px);
}
.basketList .productCard .priceWrapper {
  background-color: #4bc49b;
}

.price .rub {
  font-size: 0.8em;
}

.shopSection {
  padding-top: 60px;
}
.shopSection + .shopSection {
  padding-top: 50px;
}
.shopSection + .section {
  padding-top: 120px;
}

.productSlider {
  position: relative;
}
.productSlider .productCard {
  width: 310px;
}
.productSlider.is-overflow:before, .productSlider.is-overflow:after {
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  height: 100%;
  top: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
  opacity: 1;
  transition: opacity var(--transition);
}
.productSlider.is-overflow:before {
  left: 0;
  transform: scaleX(-1);
}
.productSlider.is-overflow:after {
  right: 0;
}
.productSlider.is-overflow.is-start:before {
  opacity: 0;
}
.productSlider.is-overflow.is-end:after {
  opacity: 0;
}

.sectionHead {
  padding-left: 40px;
}

.contactsSection .column-1 {
  display: flex;
  flex-direction: column;
}
.contactsSection .column-1 .btnContainer {
  margin-top: auto;
  padding-top: 30px;
}
.contactsSection .column-1,
.contactsSection .column-3 {
  padding-top: 52px;
}
.contactsSection .darkItem:before {
  height: 100%;
  background-position: right top;
}
.contactsSection .darkItem:after {
  height: 100%;
}
.contactsSection .rightGradient {
  padding: 0px;
}
.contactsSection .rightGradient:before {
  background: linear-gradient(to bottom, rgba(75, 196, 155, 0.4), rgba(5, 167, 182, 0.4) 50%);
}
.contactsSection .centerGradient:after {
  background: linear-gradient(to bottom, rgba(75, 196, 155, 0.4), rgba(5, 167, 182, 0.4) 100%);
}
.contactsSection:after {
  height: calc(100% + 120px);
}

main {
  padding-bottom: 120px;
}

.paymentsList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.paymentsList:not(:first-child) {
  margin-top: 38px;
}
.paymentsList .cardCaption {
  font-size: 16px;
  line-height: 24px;
}
.paymentsList .paymentItem + .paymentItem {
  margin-top: 20px;
}
.paymentsList .link .cardCaption {
  display: inline;
}
.paymentsList .bankCard {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #213d52;
}
.paymentsList .bankCard img {
  width: 36px;
  margin-top: 6px;
}
.paymentsList .cardValue {
  color: #1b2830;
}
@media (hover: hover) {
  .paymentsList a.cardValue:hover {
    color: #05a7b6;
  }
}

.proposalList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.proposalList .textCaption {
  margin-bottom: 20px;
}
.proposalList:not(:first-child) {
  margin-top: 65px;
}
.proposalList + * {
  margin-top: 65px;
}
.proposalList b {
  font-weight: 500;
}

.vacancyCard .head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
  background: linear-gradient(to right, #05a7b6 50%, #4bc49b 50%);
  padding: 12px 40px;
  min-height: 74px;
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
}
.vacancyCard .position {
  text-transform: uppercase;
}
.vacancyCard .salary .value {
  text-transform: uppercase;
}
.vacancyCard .content {
  background-color: #2a2f32;
  padding: 20px 40px 32px;
  columns: 2;
  gap: 60px;
  color: #fff;
}
.vacancyCard .content p {
  font-weight: 300;
}
.vacancyCard .paramItem {
  break-inside: avoid;
}
.vacancyCard .paramItem + .paramItem {
  margin-top: 20px;
}
.vacancyCard .cardCaption {
  font-size: 16px;
  line-height: 24px;
}
.vacancyCard + .vacancyCard {
  margin-top: 40px;
}

.contactsPanel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background-color: #2a2f32;
  background-image: url(../img/pattern.png);
  background-repeat: repeat-y;
  background-position: right center;
  position: relative;
  z-index: 1;
  --mask-cols: linear-gradient(to right,
          black calc((100% - 40px) / 3),
          transparent 0 calc((100% - 40px) / 3 + 20px),
          black 0 calc(((100% - 40px) / 3) * 2 + 20px),
          transparent 0 calc(((100% - 40px) / 3) * 2 + 40px),
          black 0);
  --mask-rows: linear-gradient(to bottom,
          black calc((100% - 20px) / 2),
          transparent 0 calc((100% - 20px) / 2 + 20px),
          black 0);
  mask-image: var(--mask-cols), var(--mask-rows);
  mask-composite: intersect;
  grid-auto-rows: 1fr;
}
.contactsPanel .contactItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 42px 16px 16px;
  min-height: 187px;
  min-width: 0px;
}
.contactsPanel .contactItem .cardCaption {
  font-size: 16px;
  line-height: 1;
}
.contactsPanel .contactCard {
  font-size: 15px;
  line-height: 22px;
}

.mapItem {
  border: 10px solid #2a2f32;
  background-color: #2a2f32;
  position: relative;
}
.mapItem .mapAddress {
  position: absolute;
  background-color: #2a2f32;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  padding: 8px 20px 18px;
  width: calc(100% - 112px);
}
.mapItem .address {
  color: #05a7b6;
}
.mapItem .cardCaption {
  font-size: 16px;
  line-height: 22px;
}

.cardTitle {
  display: block;
  font-size: 24px;
  line-height: 30px;
  color: #05a7b6;
  text-transform: uppercase;
  font-weight: 500;
  font-style: italic;
}

.repairSection .sectionGrid {
  grid-template-columns: 32.8488372093% 44.6511627907% 22.5%;
}
.repairSection .item {
  min-height: 498px;
  min-width: 0px;
}
.repairSection .column-3 {
  padding-left: 128px;
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.repairSection .rightGradient {
  -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, black 80%, transparent 100%);
}
.repairSection .rightGradient:before {
  width: 311px;
  background: linear-gradient(to bottom, #05a7b6, #4bc49b);
}

.repairsList {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.repairItem {
  display: flex;
  flex-direction: column;
  min-height: 499px;
  padding: 24px 20px;
  color: #fff;
  gap: 7px;
  font-size: 16px;
  font-weight: 300;
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: default;
}
.repairItem:before, .repairItem:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  z-index: -1;
}
.repairItem:after {
  height: 100%;
  top: 0;
  mix-blend-mode: overlay;
  transition: opacity var(--transition);
}
.repairItem:before {
  height: 50%;
  mix-blend-mode: overlay;
  transition: transform var(--transition);
}
.repairItem .imageContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
  opacity: 0.7;
  z-index: -1;
  transition: opacity var(--transition);
}
.repairItem .cardTitle {
  color: inherit;
}
.repairItem:nth-child(2n+1) {
  background-color: #078f9c;
}
.repairItem:nth-child(2n+1):before, .repairItem:nth-child(2n+1):after {
  background-color: #078f9c;
}
.repairItem:nth-child(2n+1):before {
  transform: translateY(-100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  top: 0;
}
.repairItem:nth-child(2n+1) .imageContainer {
  background-position: center bottom;
  -webkit-mask-image: linear-gradient(to bottom, transparent 30%, black 100%);
  mask-image: linear-gradient(to bottom, transparent 30%, black 100%);
}
.repairItem:nth-child(2n+1) .priceWrapper {
  margin-top: auto;
}
@media (hover: hover) {
  .repairItem:nth-child(2n+1):hover:before {
    transform: translateY(0%);
  }
}
.repairItem:nth-child(2n) {
  justify-content: flex-end;
  background-color: #3c9f7e;
}
.repairItem:nth-child(2n):before, .repairItem:nth-child(2n):after {
  background-color: #3c9f7e;
}
.repairItem:nth-child(2n):before {
  transform: translateY(100%);
  bottom: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
}
.repairItem:nth-child(2n) .imageContainer {
  background-position: center top;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 70%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 70%);
}
.repairItem:nth-child(2n) .priceWrapper {
  margin-bottom: auto;
  order: -1;
}
@media (hover: hover) {
  .repairItem:nth-child(2n):hover:before {
    transform: translateY(0%);
  }
}
.repairItem .priceWrapper {
  max-width: 279px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 12px 12px 6px;
  font-weight: 500;
  min-height: 0px;
  transition: opacity var(--transition);
}
.repairItem .priceWrapper .cardCaption {
  font-size: 18px;
  line-height: 20px;
  color: #afebd7;
}
.repairItem .priceWrapper .price {
  font-size: 24px;
  line-height: 40px;
}
@media (hover: hover) {
  .repairItem .priceWrapper {
    opacity: 0;
  }
  .repairItem:hover .priceWrapper {
    opacity: 1;
  }
  .repairItem:hover .imageContainer {
    opacity: 1;
  }
  .repairItem:hover:after {
    opacity: 0;
  }
}

.basketResult {
  background-color: #2a2f32;
  display: flex;
}

.basketForm {
  width: 1022px;
  padding: 40px 50px;
}
.basketForm .formContent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.basketForm .formItem {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.basketForm .formItem + .formItem {
  margin-top: 28px;
}
.basketForm .inputContainer {
  flex-grow: 1;
}
.basketForm .column {
  display: flex;
  flex-direction: column;
  min-width: 0px;
}
.basketForm .formLabel {
  color: #fff;
}
.basketForm .sectionTitle {
  margin-bottom: 56px;
}
.basketForm .formNote {
  margin-top: 66px;
  text-align: right;
  margin-left: auto;
}

.basketInfo {
  display: flex;
  flex-direction: column;
  width: calc(100% - 1022px);
  padding: 46px 68px 0px;
  background-image: url(../img/pattern-footer.png);
  background-repeat: repeat;
  background-position: center;
  position: relative;
  z-index: 1;
}
.basketInfo:after {
  content: "";
  display: block;
  position: absolute;
  width: 400px;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to right, #4bc49b 10%, transparent 50%);
}
.basketInfo .valCard {
  text-align: center;
  min-width: 0px;
}
.basketInfo .cardCaption {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 7px;
}
.basketInfo .cardValue {
  font-size: 24px;
  line-height: 1;
  color: #fff;
}
.basketInfo .valCards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.basketInfo .valCards + .valCards {
  margin-top: 40px;
}
.basketInfo .valCards:nth-child(2n) .cardCaption {
  color: #4bc49b;
}
.basketInfo .valCards:nth-child(2n+1) .cardCaption {
  color: #05a7b6;
}
.basketInfo .deliveryInfo {
  display: flex;
  flex-direction: column;
  margin-top: 42px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  gap: 10px;
}
.basketInfo .deliveryInfo .cardCaption {
  margin-bottom: 2px;
  color: #05a7b6;
}
.basketInfo .formAction {
  background-color: rgba(75, 196, 155, 0.2);
  margin: 0px -68px;
  padding: 32px 68px;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-grow: 1;
}
.basketInfo .formAction .cardCaption {
  color: #b9ff5d;
}
.basketInfo .formAction .btnContainer {
  margin-top: 32px;
}
.basketInfo .formAction .priceWrapper {
  background-color: transparent;
}

.catalogGrid {
  display: grid;
  grid-template-columns: 440px calc(100% - 440px);
  grid-auto-flow: dense;
  grid-template-rows: auto auto auto 1fr;
}

.catalogHead {
  padding-left: 40px;
  grid-row: span 2;
  padding-right: 10px;
}
.catalogHead .sectionTitle > * {
  display: inline;
}
.catalogHead .catalogMenu {
  padding-right: 50px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.catalogHead .catalogMenu li {
  min-width: 0px;
}

.catalogFilter {
  padding-right: 60px;
  padding-left: 40px;
  margin-top: 40px;
  grid-row: span 2;
  grid-column-start: 1;
}
.catalogFilter .cardCaption {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 20px;
}
.catalogFilter .filterItem + .filterItem {
  margin-top: 20px;
}
.catalogFilter .filterItem + .brandFilter {
  margin-top: 44px;
}

.catalogContent {
  grid-row: span 4;
}

.filterName {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 12px;
  display: block;
}

.rangeFilter {
  border: 2px solid #8c979e;
  padding: 24px 30px 40px;
}
.rangeFilter .priceInputs {
  display: flex;
  gap: 6px;
  justify-content: space-between;
}
.rangeFilter .priceInput {
  display: flex;
  gap: 6px;
  min-width: 0;
  position: relative;
  align-items: center;
}
.rangeFilter .priceInput .pricePrefix {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #8c979e;
}
.rangeFilter .priceInput input {
  width: 94px;
  padding-right: 8px;
}
.rangeFilter .priceSlider {
  margin-top: 30px;
}

.priceSlider {
  height: 8px;
  box-shadow: none;
  border: 1px solid #8c979e;
  background-color: #8c979e;
  margin-left: 15px;
  margin-right: 15px;
}
.priceSlider .noUi-base,
.priceSlider .noUi-connects {
  border-radius: 4px;
}
.priceSlider .noUi-connect {
  background: #b9ff5d;
}
.priceSlider .noUi-handle {
  border: 0px;
  background: #4bc49b;
  cursor: pointer;
  box-shadow: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  right: -15px;
  top: -11px;
}
.priceSlider .noUi-handle:after {
  display: none;
}
.priceSlider .noUi-handle:before {
  font-family: "icomoon";
  height: 100%;
  width: 100%;
  background: transparent;
  color: #fff;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.priceSlider .noUi-handle-lower:before {
  content: "\e914";
}
.priceSlider .noUi-handle-upper:before {
  content: "\e913";
}

.brandCheckbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  min-width: 0;
  position: relative;
}
.brandCheckbox input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.brandCheckbox .checkLabel {
  min-width: 0;
  font-size: 18px;
  line-height: 20px;
  color: #05a7b6;
  font-weight: 500;
  text-decoration: underline;
  transition: color var(--transition), text-decoration-color var(--transition);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (hover: hover) {
  .brandCheckbox:hover .checkLabel {
    text-decoration-color: transparent;
  }
}
.brandCheckbox input:checked + .checkLabel {
  color: #b9ff5d;
}

.brandsFilter li {
  display: flex;
}
.brandsFilter li + li {
  margin-top: 20px;
}

.catalogCount,
.pageCountControl {
  display: flex;
  align-items: center;
}
.catalogCount .num,
.pageCountControl .num {
  display: block;
  font-size: 18px;
  line-height: 20px;
}

.catalogCount {
  width: calc(100% - 582px - 400px - 90px);
  text-align: center;
  justify-content: center;
  gap: 5px;
  padding-left: 10px;
  padding-right: 10px;
}

.pageCountControl {
  justify-content: flex-end;
  width: 582px;
  padding-right: 80px;
  gap: 12px;
}
.pageCountControl ul {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pageCountControl .num {
  cursor: pointer;
  color: #05a7b6;
  text-decoration: underline;
  transition: color var(--transition), text-decoration-color var(--transition);
}
@media (hover: hover) {
  .pageCountControl .num:hover {
    color: #4bc49b;
  }
}
.pageCountControl .num.active {
  color: #4bc49b;
  text-decoration-color: transparent;
  pointer-events: none;
}

.catalogControls {
  display: flex;
  align-items: center;
}
.catalogControls > * {
  min-width: 0px;
}
.catalogControls:first-child {
  padding-bottom: 24px;
}
.catalogControls:last-child {
  padding-top: 24px;
}
.catalogControls .pagination {
  width: 400px;
  padding: 0px 10px;
}
.catalogControls .cardCaption {
  font-size: 18px;
  line-height: 20px;
}

.viewControl {
  display: flex;
  gap: 10px;
}

.viewBtn {
  display: flex;
  flex-direction: column;
  width: 40px;
  height: 40px;
  border: 1px solid #8c979e;
  border-radius: 5px;
  padding: 5px;
  transition: border-color var(--transition);
}
.viewBtn:before, .viewBtn:after {
  content: "";
  display: block;
  border-radius: 2px;
  transition: border-top-color var(--transition);
}
.viewBtn .icon {
  display: flex;
  flex-wrap: wrap;
  order: 1;
  width: 100%;
}
.viewBtn .icon:before, .viewBtn .icon:after {
  content: "";
  display: block;
  border-radius: 2px;
  transition: border-top-color var(--transition);
}
.viewBtn[data-mode=list] {
  gap: 3px;
}
.viewBtn[data-mode=list]:before, .viewBtn[data-mode=list]:after {
  border-top: 5px solid #8c979e;
  width: 100%;
}
.viewBtn[data-mode=list] .icon {
  gap: 3px;
}
.viewBtn[data-mode=list] .icon:before, .viewBtn[data-mode=list] .icon:after {
  border-top: 5px solid #8c979e;
  width: 100%;
}
.viewBtn[data-mode=grid] {
  gap: 4px;
  flex-direction: row;
  flex-wrap: wrap;
}
.viewBtn[data-mode=grid]:before, .viewBtn[data-mode=grid]:after {
  border-top: 12px solid #8c979e;
  width: calc(50% - 2px);
}
.viewBtn[data-mode=grid] .icon {
  gap: 4px;
}
.viewBtn[data-mode=grid] .icon:before, .viewBtn[data-mode=grid] .icon:after {
  border-top: 12px solid #8c979e;
  width: calc(50% - 2px);
}
@media (hover: hover) {
  .viewBtn:hover {
    border-color: #4bc49b;
  }
  .viewBtn:hover:before, .viewBtn:hover:after {
    border-top-color: #4bc49b;
  }
  .viewBtn:hover .icon:before, .viewBtn:hover .icon:after {
    border-top-color: #4bc49b;
  }
}
.viewBtn.active {
  border-color: #4bc49b;
}
.viewBtn.active:before, .viewBtn.active:after {
  border-top-color: #4bc49b;
}
.viewBtn.active .icon:before, .viewBtn.active .icon:after {
  border-top-color: #4bc49b;
}

.pagination {
  text-align: center;
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 59px;
  padding-right: 59px;
  position: relative;
  height: 67px;
  background-color: #047b86;
  border-radius: 10px 10px 0px 0px;
}
.pagination .countBtn {
  position: absolute;
  background-color: #fff;
}
.pagination .countBtn .icon {
  border-color: #0aa8b6;
}
.pagination .countBtn .icon:before, .pagination .countBtn .icon:after {
  border-color: #0aa8b6;
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  transition: color var(--transition), opacity var(--transition);
}
.pagination li {
  min-width: 32px;
}
.pagination .dist-0 {
  min-width: 35px;
}
.pagination .active a,
.pagination .dist-0 a {
  font-size: 24px;
  color: #b9ff5d;
  pointer-events: none;
}
.pagination .dist-1 a {
  font-size: 18px;
}
@media (hover: hover) {
  .pagination .dist-1 a:hover {
    color: #b9ff5d;
  }
}
.pagination .dist-2 a {
  font-size: 16px;
  opacity: 0.7;
}
@media (hover: hover) {
  .pagination .dist-2 a:hover {
    opacity: 1;
  }
}
.pagination .dist-3 a {
  font-size: 14px;
  opacity: 0.4;
}
@media (hover: hover) {
  .pagination .dist-3 a:hover {
    opacity: 1;
  }
}

.catalogList.grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.categoryHead {
  display: flex;
  justify-content: center;
  padding: 12px 58px;
  gap: 58px;
  border: 2px solid #4bc49b;
  background-color: #fff;
  align-items: center;
  height: 205px;
  margin-bottom: 24px;
}
.categoryHead .schemeImage {
  max-width: calc(50% - 29px);
  display: flex;
  max-height: 100%;
}
.categoryHead .schemeImage ~ .catalogContent {
  grid-row: span 3;
}
.categoryHead img {
  max-height: 100%;
}

.filterBtn {
  display: none;
}

.productPanel {
  border: 2px solid #8c979e;
  background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
  padding: 32px 0px 0px;
}
.productPanel .productImage {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.productPanel .productImage img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.productPanel .sectionTitle > * {
  display: inline;
}
.productPanel .productNote {
  font-family: "Magistral Book";
  font-weight: normal;
  line-height: 20px;
}
.productPanel .productNote .cardCaption {
  font-size: inherit;
  line-height: inherit;
  display: inline;
  font-family: var(--font-family);
  font-weight: 500;
}
.productPanel .productNote:not(:first-child) {
  margin-top: 15px;
}

.productHead {
  padding-right: 30px;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
}

.leftProductScheme {
  grid-column-start: 1;
  padding-right: 30px;
  padding-left: 40px;
  grid-row: span 2;
}
.leftProductScheme .productImage {
  max-width: 340px;
  margin-top: auto;
}

.productParams {
  padding-top: 12px;
  grid-row: span 3;
}

.rightProductScheme {
  padding-left: 18px;
  padding-right: 18px;
  margin-bottom: 10px;
  grid-column-start: 3;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.paramsTable {
  border-bottom: 1px solid #2a2f32;
}
.paramsTable .cardCaption {
  font-size: 15px;
}
.paramsTable .paramLine {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
  border: 1px solid #2a2f32;
  border-bottom: 0px;
  padding: 3px 22px;
  gap: 8px;
}
.paramsTable .paramLine:nth-child(2n) {
  background-color: #f2ffe2;
}
.paramsTable .paramValue {
  text-align: right;
}

.productContent,
.productAction {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: 440px calc(100% - 440px - 417px) 417px;
}

.productAction {
  margin-top: 32px;
}
.productAction .productPrice {
  padding-right: 60px;
}
.productAction .priceWrapper {
  min-height: 110px;
  height: 100%;
}
.productAction .priceWrapper .cardCaption {
  color: #afebd7;
  font-size: 18px;
  line-height: 20px;
}
.productAction .btnContainer {
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.productAction .fastOrderContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #f2ffe2;
}
.productAction .fastOrderContainer .themeBtn {
  min-width: 260px;
}
.productAction .fastOrderContainer .inputContainer {
  flex-grow: 1;
}

.productDelivery {
  text-align: center;
  padding-left: 18px;
  padding-right: 18px;
  grid-column-start: 3;
}
.productDelivery .cardCaption {
  font-size: 16px;
  margin-bottom: 8px;
}
.productDelivery .deliveryList {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 15px;
}
.productDelivery .deliveryList li {
  display: flex;
  justify-content: center;
}
.productDelivery .deliveryList img {
  max-height: 38px;
}

.brandsModal .sectionTitle {
  text-align: center;
  margin-bottom: 18px;
}
.brandsModal .sectionTitle > * {
  display: inline;
}

.fullBrandsList {
  columns: 4;
  column-gap: 3px;
}
.fullBrandsList li {
  break-inside: avoid;
}
.fullBrandsList a {
  display: block;
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  color: #2a2f32;
  text-align: center;
  padding: 6px 2px;
  background-color: transparent;
  border: 1px solid transparent;
  transition: background-color var(--transition), border-color var(--transition);
  border-radius: 10px;
}
@media (hover: hover) {
  .fullBrandsList a:hover {
    background-color: #b9ff5d;
    border-color: #deeee9;
  }
}

[data-aos-id=hero-aos].aos-init,
[data-aos-id=section-aos].aos-init {
  overflow-x: hidden;
}
[data-aos-id=hero-aos].aos-init > *,
[data-aos-id=section-aos].aos-init > * {
  opacity: 0;
}
[data-aos-id=hero-aos].aos-init > *:nth-child(2n+1),
[data-aos-id=section-aos].aos-init > *:nth-child(2n+1) {
  transform: translateX(-100%);
}
[data-aos-id=hero-aos].aos-init > *:nth-child(2n),
[data-aos-id=section-aos].aos-init > *:nth-child(2n) {
  transform: translateX(100%);
}
[data-aos-id=hero-aos].aos-init.in-view > *,
[data-aos-id=section-aos].aos-init.in-view > * {
  opacity: 1;
}
[data-aos-id=hero-aos].aos-init.in-view > *:nth-child(2n+1),
[data-aos-id=section-aos].aos-init.in-view > *:nth-child(2n+1) {
  transform: translateX(0%);
}
[data-aos-id=hero-aos].aos-init.in-view > *:nth-child(2n),
[data-aos-id=section-aos].aos-init.in-view > *:nth-child(2n) {
  transform: translateX(0%);
}

[data-aos-id=hero-aos].in-view > *:first-child {
  transition: opacity 2s 0.5s ease-in-out, transform 1.25s 0s ease-in-out;
}
[data-aos-id=hero-aos].in-view > *:nth-child(2) {
  transition: opacity 2s 0.5s ease-in-out, transform 1.5s 0.5s ease-in-out;
}
[data-aos-id=hero-aos].in-view > *:nth-child(3) {
  transition: opacity 2s 0.5s ease-in-out, transform 1.75s 0.75s ease-in-out;
}

[data-aos-id=section-aos].in-view > *:first-child {
  transition: opacity 2s 0s ease-in-out, transform 1s 0s ease-in-out;
}
[data-aos-id=section-aos].in-view > *:nth-child(2) {
  transition: opacity 2s 0.5s ease-in-out, transform 1.25s 0.5s ease-in-out;
}

[data-aos-id=theme-btn-aos].aos-init {
  transform: translateY(15px);
  opacity: 0;
}
[data-aos-id=theme-btn-aos].aos-init.in-view {
  transform: translateY(0px);
  opacity: 1;
  transition-duration: 0.25s;
}
@media (hover: hover) {
  [data-aos-id=theme-btn-aos].aos-init.in-view:hover {
    transform: translateY(-3px);
  }
}

.footerInner {
  display: flex;
  padding-right: 400px;
  position: relative;
  z-index: 1;
  padding-top: 56px;
  padding-bottom: 56px;
}

.siteFooter {
  background-color: #2b3033;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  padding-top: 56px;
  padding-bottom: 56px;
  z-index: 1;
}
.siteFooter:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 400px;
  left: calc(1022px + (100% - var(--container)) / 2);
  top: 0;
  background: linear-gradient(to bottom, #05a7b6 0%, rgba(75, 196, 155, 0.5) 100%);
  z-index: -1;
}
.siteFooter:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 565px;
  background-image: url(../img/pattern-footer.png);
  background-repeat: repeat-y;
  background-position: center;
  top: 0;
  left: calc((100% - var(--container)) / 2);
}
.siteFooter .container {
  margin-right: 0px;
}
.siteFooter .headContacts ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.siteFooter .headContacts ul:first-child {
  width: 400px;
}
.siteFooter .headContacts ul:first-child li + li {
  margin-top: 46px;
}
.siteFooter .headContacts ul:nth-child(2) {
  width: calc(100% - 400px);
}
@media (hover: hover) {
  .siteFooter .headContacts .contactCard:not(.light):hover .themeIcon {
    color: #2b3033;
  }
  .siteFooter .headContacts .contactCard:not(.light):hover .themeIcon:after {
    border-color: #b9ff5d;
  }
}
.siteFooter .logoItem {
  width: 565px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  position: relative;
  padding-top: 44px;
  order: -1;
}
.siteFooter .menuItem {
  width: 457px;
}
.siteFooter .copyright {
  color: #fff;
  font-size: 15px;
  font-family: "Magistral book";
  letter-spacing: 0.05em;
  margin-top: 54px;
}
.siteFooter .menuList {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.siteFooter .menuList a {
  color: #fff;
  display: block;
  position: relative;
  padding-bottom: 8px;
}
.siteFooter .menuList a:after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  border-top: 2px solid #b9ff5d;
  left: calc(50% - 20px);
  bottom: 0px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
@media (hover: hover) {
  .siteFooter .menuList a:hover:after {
    transform: scaleX(1);
  }
}
.siteFooter .menuList a.active {
  color: #b9ff5d;
}
.siteFooter .menuList a.active:after {
  transform: scaleX(1);
}
.siteFooter .menuList li + li {
  margin-top: 27px;
}

.footerAdd {
  position: relative;
  z-index: 1;
  width: calc(100% - (100% - var(--container)) / 2 - 1022px);
}

.choicingCurrency {
  display: flex;
}
.choicingCurrency .pre {
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-right: 15px;
}

.choicingCurrency .currencies {
  position: relative;
  display: flex;
  line-height: 21px;
}

.choicingCurrency .currencies .nameCur {
  font-size: 14px;
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 0.01em;
  cursor: pointer;
  margin-right: 10px;
  -webkit-transition: color 0.3s, border-color 0.3s;
  -moz-transition: color 0.3s, border-color 0.3s;
  -o-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
}

.choicingCurrency .currencies .nameCur.active,
.choicingCurrency .currencies .nameCur:hover {
  color: #4cc59c;
}

@media (max-width: 1799px) {
  .menuContainer {
    position: fixed;
    z-index: 101;
    width: 100%;
    top: 0;
    right: 0;
    transform-origin: right top;
    overflow: hidden;
    transform: scale(0);
    pointer-events: none;
    transition: transform 0s var(--transition);
  }
  .menuContainer .menuList {
    flex-direction: column;
    align-items: flex-end;
    pointer-events: all;
  }
  .menuContainer .menuList a {
    font-size: 24px;
    line-height: 40px;
    color: #213d52;
    transition: color var(--transition);
    padding-left: 0px;
    padding-right: 60px;
    position: relative;
  }
  .menuContainer .menuList a:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 60px;
    border-top: 2px solid #b9ff5d;
    width: 0px;
    transition: width var(--transition);
  }
  .menuContainer .menuList a:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    right: 24px;
    background-color: #4bc49b;
    border: 3px solid #2a2f32;
    box-shadow: inset 0px 0px 0px 1px #fff;
    top: calc(50% - 10px);
  }
}
@media (max-width: 1799px) and (hover: hover) {
  .menuContainer .menuList a:hover {
    color: var(--color-primary);
    background-color: transparent;
  }
  .menuContainer .menuList a:hover:before {
    width: 40px;
  }
}
@media (max-width: 1799px) {
  .menuContainer .menuList a.active {
    color: var(--color-primary);
    background-color: transparent;
  }
  .menuContainer .menuList a.active:before {
    width: 40px;
  }
  .menuContainer .menuList li + li {
    margin-top: 20px;
  }
  .menuContainer.active {
    transform: scale(1);
    transition: transform 0s;
  }
  .menuContainer.active .menuInner {
    transform: translateX(0);
  }
  .menuInner {
    padding: 145px calc(50% - var(--container) / 2) 70px 50%;
    transform: translateX(100%);
    height: 708px;
    max-height: 100vh;
    width: 100%;
    transition: transform var(--transition);
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #b9ff5d #8c979e;
    position: relative;
  }
  .menuInner::-webkit-scrollbar {
    width: 8px;
    background-color: #8c979e;
  }
  .menuInner::-webkit-scrollbar-track {
    background: #8c979e;
    border-radius: 4px;
  }
  .menuInner::-webkit-scrollbar-thumb {
    background-color: #b9ff5d;
    border-radius: 4px;
    box-shadow: inset 0px 0px 0px transparent;
  }
  .menuInner::-webkit-scrollbar-thumb:hover {
    background-color: #b9ff5d;
  }
  .menuInner::-webkit-scrollbar-button, .menuInner::-webkit-scrollbar-button:single-button, .menuInner::-webkit-scrollbar-button:start, .menuInner::-webkit-scrollbar-button:end, .menuInner::-webkit-scrollbar-corner {
    display: none;
    width: 0;
    height: 0;
  }
  .menuInner:before {
    content: "";
    display: block;
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: #fff;
    border-bottom-left-radius: 646px;
    top: 0;
    right: 0;
    pointer-events: all;
  }
  .burger {
    display: block;
  }
  .headerContent {
    padding-left: 30px;
    padding-right: 30px;
  }
  .headerContacts {
    min-width: 384px;
    margin-left: auto;
  }
  .heroImage {
    width: calc((100% - var(--container)) / 2 + 760px + 400px);
  }
  .heroText {
    width: 760px;
    padding-left: 0px;
  }
  .heroInner:after {
    right: calc((100% - var(--container)) / 2 + var(--container) - 1160px);
  }
  .heroContent {
    align-items: center;
  }
  .headContacts .contactCard.address {
    font-size: 14px;
    line-height: 18px;
  }
  .headContacts .contactCard.lg {
    font-size: 18px;
  }
  .headContacts .contactCard.lg .cardCaption {
    font-size: 14px;
  }
  .headContacts li + li {
    margin-top: 34px;
  }
  .headContacts .cardCaption {
    margin-bottom: 8px;
  }
  .heroAdd {
    width: calc((100% - var(--container)) / 2 + var(--container) - 1160px);
  }
  .heroAdd + .heroInner {
    max-width: 1160px;
  }
  .hero .catalogMenu {
    margin-top: 24px;
  }
  .hero .brandsList {
    gap: 7px;
    width: calc(100% + var(--container) - 1160px);
  }
  .hero .brandsList li:last-child {
    min-width: 144px;
  }
  .hero .headContacts {
    padding-top: 100px;
    padding-bottom: 110px;
  }
  .hero:not(.home) .headContacts ul {
    row-gap: 26px;
    max-width: 152px;
  }
  .hero.home .heroContent {
    align-items: center;
  }
  .hero.home .catalogMenu {
    padding-bottom: 0px;
  }
  .brandCard {
    min-height: 96px;
    font-size: 14px;
    line-height: 16px;
  }
  .brandCard img {
    transform: scale(0.826) translateY(0px);
    transform-origin: center;
  }
  .brandCard.linkCard > * {
    width: min-content;
  }
  .brandCard.linkCard:after {
    margin-top: 15px;
  }
}
@media (max-width: 1799px) and (hover: hover) {
  .brandCard:not(.linkCard):hover img {
    transform: scale(0.826) translateY(-10px);
  }
}
@media (max-width: 1799px) {
  .sectionTitle {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 15px;
  }
  .startGradient:after,
  .endGradient:after,
  .middleGradient:after {
    left: calc(50% - var(--container) / 2 + 760px);
  }
  .textContainer .sectionTitle:not(:first-child) {
    margin-top: 50px;
  }
  .advantagesSection .sectionGrid,
  .pageAboutSection .sectionGrid,
  .aboutSection .sectionGrid,
  .contactsSection .sectionGrid {
    grid-template-columns: repeat(3, 1fr);
  }
  .advantagesSection .item,
  .pageAboutSection .item,
  .aboutSection .item,
  .contactsSection .item {
    min-height: 450px;
  }
  .imageItem.rightGradient:before {
    width: 146px;
  }
  .darkItem.column-3:after {
    width: 253px;
  }
  .darkItem.column-2:after {
    width: 147px;
  }
  .sectionGrid .leftGradient:after {
    width: 253px;
  }
  .sectionGrid .rightGradient:before {
    width: 147px;
  }
  .sectionGrid .centerGradient:after {
    left: 307px;
  }
  .sectionGrid .item {
    padding: 17px 22px;
  }
  .sectionGrid .item.transparent {
    background-color: transparent;
  }
  .sectionGrid .column-1 {
    padding-left: 0px;
  }
  .headContactsList li {
    padding-left: 180px;
  }
  .headContactsList .logo {
    left: 180px;
  }
  .aboutBullet .sectionTitle {
    margin-bottom: 20px;
  }
  .caption {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 4px;
  }
  .hero + .section {
    padding-top: 100px;
  }
  .section {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .aboutSection .column-2 {
    padding-right: 24px;
    background-color: #fff;
  }
  .aboutSection .aboutBullet {
    margin-top: 55px;
  }
  .aboutSection .darkItem:before, .aboutSection .darkItem:after {
    height: calc(100% + 100px);
  }
  .contactsList li {
    padding-left: 60px;
    line-height: 24px;
  }
  .contactsList li + li {
    margin-top: 34px;
  }
  .contactsList .themeIcon {
    top: 5px;
  }
  .contactsSection .rightGradient {
    padding: 0px;
  }
  .contactsSection .column-1 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .contactsSection .column-3 {
    padding-top: 32px;
    padding-right: 16px;
  }
  .siteFooter:before {
    width: calc((100% - var(--container)) / 2 + 452px);
    left: 0;
  }
  .siteFooter .logoItem {
    width: 453px;
    padding-right: 20px;
  }
  .siteFooter .menuItem {
    width: 308px;
  }
  .siteFooter:after {
    left: calc(760px + (100% - var(--container)) / 2);
  }
  .siteFooter .headContacts .cardCaption {
    margin-bottom: 4px;
  }
  .siteFooter .headContacts .contactCard.address {
    font-size: 16px;
    line-height: 22px;
  }
  .siteFooter .headContacts ul:nth-child(2) li + li {
    margin-top: 54px;
  }
  .footerAdd {
    width: calc(100% - (100% - var(--container)) / 2 - 760px);
  }
  main {
    padding-bottom: 100px;
  }
  .advantagesSection .item {
    padding-top: 40px;
  }
  .advantagesSection .item:not(:first-child) .contactsList {
    margin-top: 112px;
  }
  .sectionHead {
    padding-left: 0px;
  }
  .pageAboutSection .leftGradient:before {
    width: 253px;
  }
  .pageAboutSection .rightGradient.row-2:after {
    width: 147px;
  }
  .pageAboutSection .darkItem {
    padding: 60px 70px 60px 40px;
  }
  .pageAboutSection .darkItem:before, .pageAboutSection .darkItem:after {
    height: calc(100% + 100px);
  }
  .pageAboutSection .item.row-1:not(.cardsItem):not(.transparent) {
    padding-top: 10px;
  }
  .pageAboutSection .row-1 {
    background-color: #fff;
  }
  .pageAboutSection .vacanciesList {
    margin-right: 0px;
    margin-left: 0px;
  }
  .themeBtn:before {
    width: calc(100% + 40px);
    left: -20px;
  }
  .advantagesSection .sectionTitle,
  .productSection .sectionTitle {
    margin-bottom: 40px;
  }
  .vacancyCard .head {
    gap: 50px;
    padding: 12px 30px;
    min-height: 60px;
  }
  .vacancyCard .content {
    padding: 20px 30px 32px;
    gap: 50px;
  }
  .vacancyCard + .vacancyCard {
    margin-top: 30px;
  }
  .mapItem .mapAddress {
    padding: 6px 16px 16px 6px;
    width: calc(100% - 88px);
  }
  .repairSection .sectionGrid {
    grid-template-columns: 28.3088235294% 56.9852941176% 14.7058823529%;
  }
  .repairSection .item {
    min-height: 450px;
  }
  .repairSection .column-3 {
    padding-top: 0px;
    padding-right: 0px;
  }
  .repairSection .rightGradient:before {
    width: 400px;
  }
  .repairsList {
    grid-template-columns: repeat(4, 1fr);
  }
  .productCard .cardContent {
    padding: 0px calc((100% - 250px) / 2) 28px;
  }
  .productCard.horizontal .cardDown {
    margin-top: 0px;
    width: 298px;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
  }
  .productCard.horizontal .cardAction {
    justify-content: flex-end;
  }
  .productCard.horizontal .productInfo {
    display: none;
  }
  .productCard.horizontal .cardContent {
    padding-right: 20px;
  }
  .basketList .productCard {
    padding-left: 20px;
  }
  .basketList .productCard .imageContainer {
    min-width: 176px;
    width: 176px;
  }
  .basketList .productCard .cardContent {
    width: 562px;
  }
  .basketList .productCard .cardDown {
    width: calc(100% - 176px - 562px - 400px);
  }
  .basketForm {
    width: 760px;
    padding: 40px 30px;
  }
  .basketForm .formContent {
    gap: 20px;
  }
  .basketForm .formNote {
    margin-top: 56px;
  }
  .basketForm .sectionTitle {
    margin-bottom: 42px;
  }
  .shopSection + .section {
    padding-top: 100px;
  }
  .basketInfo {
    width: calc(100% - 760px);
    padding: 46px 30px 0px;
  }
  .basketInfo .valCards + .valCards {
    margin-top: 32px;
  }
  .basketInfo .deliveryInfo {
    margin-top: 32px;
  }
  .basketInfo .formAction {
    padding: 32px 30px;
    margin-left: -30px;
    margin-right: -30px;
  }
  .basketInfo .formAction .btnContainer {
    margin-top: 12px;
  }
  .catalogGrid {
    grid-template-columns: 244px calc(100% - 244px);
  }
  .catalogFilter {
    padding-right: 24px;
    padding-left: 0px;
  }
  .catalogHead {
    padding-left: 0px;
  }
  .catalogHead .sectionTitle {
    min-height: 64px;
    margin-top: 12px;
  }
  .catalogHead .catalogMenu {
    padding-right: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .catalogFilter {
    margin-top: 36px;
  }
  .catalogFilter .cardCaption {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .brandsFilter li + li {
    margin-top: 10px;
  }
  .brandCheckbox .checkLabel {
    font-size: 16px;
  }
  .catalogControls {
    display: grid;
    grid-template-columns: 516px 400px 200px;
  }
  .catalogControls .cardCaption {
    font-size: 16px;
  }
  .catalogControls .pagination {
    grid-row: span 2;
    width: auto;
  }
  .pageCountControl {
    width: auto;
    padding-right: 26px;
    grid-row: span 2;
  }
  .pageCountControl .num {
    font-size: 16px;
  }
  .viewControl {
    justify-content: flex-end;
    padding-top: 8px;
  }
  .catalogCount {
    width: auto;
    padding-right: 0px;
    text-align: right;
    justify-content: flex-end;
  }
  .catalogCount:last-child {
    grid-row: span 2;
  }
  .catalogCount .num {
    font-size: 16px;
  }
  .filterSelect .choices__list--dropdown .choices__item,
  .filterSelect .choices__list[aria-expanded] .choices__item,
  .filterSelect .choices__inner {
    font-size: 15px;
  }
  .filterSelect .choices__list--dropdown,
  .filterSelect .choices__list[aria-expanded] {
    padding: 1px 12px 20px;
  }
  .filterSelect .choices[data-type*=select-one] .choices__input {
    padding: 13px 47px 13px 12px;
  }
  .filterSelect .choices__list--single {
    padding: 13px 78px 13px 12px;
  }
  .filterName {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .catalogFilter {
    margin-top: 30px;
  }
  .catalogFilter .filterItem + .brandFilter {
    margin-top: 30px;
  }
  .rangeFilter {
    padding: 20px 12px 30px;
  }
  .rangeFilter .priceInputs {
    flex-direction: column;
  }
  .rangeFilter .priceInput {
    justify-content: space-between;
  }
  .rangeFilter .priceInput input {
    padding-left: 12px;
    padding-right: 12px;
    flex-grow: 1;
    max-width: calc(100% - 44px);
  }
  .productContent {
    grid-template-columns: 316px calc(100% - 316px - 432px) 432px;
  }
  .productAction {
    grid-template-columns: 316px calc(100% - 316px - 276px) 276px;
  }
  .productAction .fastOrderContainer {
    padding-left: 20px;
    padding-right: 30px;
  }
  .productAction .fastOrderContainer .themeBtn {
    min-width: 238px;
  }
  .productHead {
    padding-right: 26px;
    padding-left: 20px;
  }
  .productHead .productImage {
    margin-top: 0px;
  }
  .productPanel {
    padding-top: 18px;
  }
  .productPanel .productImage {
    margin-top: 0px;
    height: 205px;
  }
  .productScheme {
    padding-top: 12px;
  }
  .productAction .productPrice {
    padding-right: 30px;
  }
  .paramsTable .paramLine {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    padding: 4px 22px 2px;
  }
  .paramsTable .paramValue {
    text-align: left;
  }
  .leftProductScheme {
    padding-right: 26px;
    padding-left: 20px;
  }
  .modalContent {
    max-width: 636px;
    padding: 20px 20px 30px;
  }
  .tippy-box[data-theme~=contact] .tippy-content {
    min-height: 0px;
    min-width: 0px;
    max-width: 209px;
  }
  .tippy-box[data-theme~=contact] .cardContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: static;
    opacity: 1;
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    pointer-events: auto;
  }
  .tippy-box[data-theme~=contact] .cardContent:after {
    display: none;
  }
  .tippy-box[data-theme~=contact] .tippy-arrow {
    color: #fff;
  }
  .tippy-box[data-theme~=contact] .tippy-arrow:before {
    border-top-color: #2a2f32;
  }
  .tippy-box[data-theme~=contact][data-placement^=top] > .tippy-arrow:before {
    border-top-color: #fff;
    filter: drop-shadow(0 1px 0 #2a2f32);
  }
}
@media (max-width: 1399px) {
  .siteHeader {
    top: 10px;
  }
  .menuContainer .menuList {
    max-width: 320px;
    margin-left: auto;
  }
  .menuContainer .menuList a {
    font-size: 20px;
  }
  .menuInner {
    padding: 125px calc((100% - var(--container)) / 2) 60px calc(100% - 698px);
  }
  .menuInner:before {
    width: 698px;
  }
  .headerContacts {
    min-width: 346px;
  }
  .categoryCard {
    min-height: 137px;
    font-size: 12px;
    line-height: 16px;
  }
  .categoryCard span {
    min-height: 32px;
  }
  .categoryCard img {
    height: 78px;
  }
  .heroTitle {
    font-size: 41px;
    line-height: 60px;
  }
  .heroImage {
    width: calc((100% - var(--container)) / 2 + 560px + 350px);
  }
  .heroInner {
    padding-top: 98px;
    min-height: 290px;
  }
  .heroInner:after {
    width: 350px;
    right: calc((100% - var(--container)) / 2 + var(--container) - 910px);
  }
  .heroText {
    width: 560px;
  }
  .heroAdd {
    width: calc((100% - var(--container)) / 2 + var(--container) - 910px);
  }
  .heroAdd + .heroInner {
    max-width: 910px;
  }
  .hero .catalogMenu ul {
    gap: 10px;
  }
  .hero .heroMenu {
    width: 350px;
  }
  .hero .brandsList {
    padding-top: 21px;
    gap: 5px;
    width: calc(100% + var(--container) - 910px);
  }
  .hero .brandsList li:last-child {
    min-width: 134px;
  }
  .hero .brandsList .hideMd {
    display: none;
  }
  .hero.home .catalogMenu {
    margin-top: 20px;
  }
  .headContacts li + li {
    margin-top: 24px;
  }
  .headContacts .cardCaption {
    margin-bottom: 5px;
  }
  .headContacts .themeIcon {
    margin-bottom: 11px;
  }
  .brandCard {
    min-height: 81px;
  }
  .brandCard img {
    transform: scale(0.74);
  }
}
@media (max-width: 1399px) and (hover: hover) {
  .brandCard:not(.linkCard):hover img {
    transform: scale(0.74) translateY(-5px);
  }
}
@media (max-width: 1399px) {
  .startGradient:after,
  .endGradient:after,
  .middleGradient:after {
    width: 350px;
    left: calc(50% - var(--container) / 2 + 560px);
  }
  .advantagesSection .item,
  .pageAboutSection .item,
  .aboutSection .item,
  .contactsSection .item {
    min-height: 350px;
  }
  .imageItem.rightGradient:before {
    width: 187px;
  }
  .certificateSlider .splide__track {
    width: 180px;
  }
  .headContactsList li {
    padding-left: 145px;
  }
  .headContactsList .logo {
    left: 145px;
  }
  .darkItem.column-3:after {
    width: 163px;
  }
  .hero + .section {
    padding-top: 90px;
  }
  .section {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .sectionGrid .leftGradient:after {
    width: 163px;
  }
  .aboutSection .aboutBullet {
    margin-top: 27px;
  }
  .aboutSection .column-2 {
    grid-column: span 2;
    padding-right: 0px;
  }
  .aboutSection .leftGradient {
    display: none;
  }
  .aboutSection .item.row-1 {
    padding-top: 10px;
  }
  .aboutSection .hideDesk {
    display: block;
  }
  .aboutSection .hideMd {
    display: none;
  }
  .aboutSection .rightGradient .imageContainer {
    width: 100%;
    height: 100%;
    top: 0%;
  }
  .aboutSection .darkItem:before, .aboutSection .darkItem:after {
    height: calc(100% + 90px);
  }
  .contactsList li + li {
    margin-top: 16px;
  }
  .sectionGrid .centerGradient:after {
    left: 187px;
    width: 350px;
  }
  .textList li, .textContainer ul li {
    padding-left: 30px;
    line-height: 22px;
  }
  .textList li + li, .textContainer ul li + li {
    margin-top: 8px;
  }
  .contactsSection .sectionTitle > * {
    display: inline;
  }
  .contactsSection .rightGradient:before {
    display: none;
  }
  .contactsSection .column-1 {
    position: relative;
  }
  .contactsSection .column-1 .btnContainer {
    position: absolute;
    bottom: 30px;
    left: calc(100% + 78px);
  }
  .contactsSection .column-3 {
    padding-top: 20px;
  }
  main {
    padding-bottom: 90px;
  }
  .siteFooter {
    padding-top: 42px;
    padding-bottom: 42px;
  }
  .siteFooter .logoItem {
    width: 333px;
    padding-right: 15px;
  }
  .siteFooter .menuList li + li {
    margin-top: 20px;
  }
  .siteFooter .menuItem {
    width: 227px;
  }
  .siteFooter:after {
    width: 350px;
    left: calc(560px + (100% - var(--container)) / 2);
  }
  .siteFooter:before {
    width: calc((100% - var(--container)) / 2 + 332px);
  }
  .siteFooter .logoLink img {
    height: 150px;
  }
  .siteFooter .headContacts .themeIcon {
    margin-bottom: 18px;
  }
  .siteFooter .headContacts ul:first-child {
    width: 350px;
  }
  .siteFooter .headContacts ul:first-child li + li {
    margin-top: 26px;
  }
  .siteFooter .headContacts ul:nth-child(2) {
    width: calc(100% - 350px);
  }
  .footerAdd {
    width: calc(100% - (100% - var(--container)) / 2 - 560px);
  }
  .textContainer .sectionTitle:not(:first-child) {
    margin-top: 40px;
  }
  .advantagesSection .sectionTitle,
  .productSection .sectionTitle {
    margin-bottom: 20px;
  }
  .darkItem.column-2:after {
    width: 187px;
  }
  .advantagesSection .item:not(:first-child) .contactsList {
    margin-top: 92px;
  }
  .advantagesSection .contactsList br {
    display: none;
  }
  .pageAboutSection .darkItem {
    padding: 40px 40px 40px 30px;
    grid-row-start: 2;
    grid-row-end: 4;
    grid-column-start: 3;
  }
  .pageAboutSection .leftGradient:before, .pageAboutSection .leftGradient:after {
    width: 163px;
  }
  .pageAboutSection .rightGradient.row-2:after {
    width: 187px;
  }
  .pageAboutSection .darkItem:before,
  .pageAboutSection .darkItem:after {
    height: calc(100% + 90px);
  }
  .pageAboutSection .column-1 {
    grid-column: span 2;
    padding-bottom: 34px;
  }
  .pageAboutSection .addItem.leftGradient {
    grid-row-start: 1;
    grid-column-start: 3;
  }
  .pageAboutSection .addItem.rightGradient:before {
    display: none;
  }
  .pageAboutSection .column-2.row-1 {
    grid-column: span 3;
    grid-row-start: 2;
    background-color: #fff;
    padding-left: 0px;
  }
  .productSection .sectionTitle > * {
    display: inline;
  }
  .textList li:before, .textContainer ul li:before {
    top: 2px;
  }
  .textList li:after, .textContainer ul li:after {
    top: 6px;
  }
  .priceWrapper {
    min-height: 47px;
  }
  .priceWrapper .price {
    font-size: 18px;
    line-height: 20px;
  }
  .productCard .imageContainer {
    height: 124px;
  }
  .productCard .cardContent {
    padding: 0px 18px 28px;
    min-height: 152px;
  }
  .productCard .removeBtn .cardCaption {
    display: none;
  }
  .productCard .name {
    font-size: 16px;
  }
  .productCard.horizontal {
    min-height: 144px;
    padding-left: 8px;
  }
  .productCard.horizontal .name {
    font-size: 16px;
  }
  .productCard.horizontal .basketContent {
    width: 350px;
  }
  .productCard.horizontal .imageContainer {
    height: 124px;
  }
  .productCard.horizontal .priceWrapper {
    min-height: 67px;
  }
  .productCard.horizontal .priceWrapper .cardCaption {
    font-size: 16px;
  }
  .productCard.horizontal .params {
    font-size: 15px;
    line-height: 18px;
  }
  .productCard.horizontal .cardContent .cardCaption,
  .productCard.horizontal .cardDown .cardCaption {
    font-size: 15px;
    line-height: 18px;
  }
  .productCard.horizontal .cardContent {
    padding-left: 10px;
  }
  .productCard.horizontal + .productCard {
    margin-top: 10px;
  }
  .productCard.horizontal .cardDown {
    width: auto;
    min-width: 229px;
  }
  .productSlider .productCard {
    width: 270px;
  }
  .shopSection {
    padding-top: 40px;
  }
  .countInput .cardCaption {
    padding: 0px 67px;
    top: 6px;
    font-size: 16px;
  }
  .countInput .countBtn {
    width: 57px;
  }
  .countInput .inputContainer input {
    height: 57px;
    line-height: 25px;
    padding: 24px 72px 8px;
  }
  .textContainer > br {
    margin-top: 12px;
  }
  .proposalList + * {
    margin-top: 50px;
  }
  .proposalList:not(:first-child) {
    margin-top: 50px;
  }
  .paymentsList {
    grid-template-columns: auto auto;
  }
  .vacancyCard .head {
    font-size: 18px;
    line-height: 26px;
    padding: 12px 22px;
    gap: 44px;
  }
  .vacancyCard .content {
    padding: 20px 22px 22px;
    gap: 44px;
    line-height: 22px;
  }
  .vacancyCard + .vacancyCard {
    margin-top: 22px;
  }
  .contactsPanel {
    gap: 11px;
    --mask-cols: linear-gradient(to right,
            black calc((100% - 22px) / 3),
            transparent 0 calc((100% - 22px) / 3 + 11px),
            black 0 calc(((100% - 22px) / 3) * 2 + 11px),
            transparent 0 calc(((100% - 22px) / 3) * 2 + 22px),
            black 0);
    --mask-rows: linear-gradient(to bottom,
            black calc((100% - 11px) / 2),
            transparent 0 calc((100% - 11px) / 2 + 11px),
            black 0);
  }
  .contactsPanel .contactItem {
    padding: 36px 11px 16px;
    min-height: 167px;
  }
  .mapItem .cardCaption {
    font-size: 14px;
    line-height: 18px;
  }
  .mapItem .mapAddress {
    font-size: 14px;
    line-height: 18px;
    padding: 0px 10px 10px 0px;
  }
  .repairSection .sectionGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .repairSection .sectionTitle > * {
    display: inline;
  }
  .repairSection .item {
    min-height: 0px;
  }
  .repairSection .imageItem {
    grid-row: span 2;
  }
  .repairSection .column-3 {
    padding-left: 0px;
    padding-bottom: 0px;
  }
  .repairSection .rightGradient:before {
    width: 350px;
    right: auto;
    left: 0;
  }
  .cardTitle {
    font-size: 18px;
    line-height: 24px;
  }
  .repairsList {
    grid-template-columns: repeat(3, 1fr);
  }
  .repairItem {
    min-height: 449px;
    padding: 16px 20px;
    font-size: 15px;
    line-height: 20px;
  }
  .basketList .productCard {
    padding-left: 8px;
    padding-right: 28px;
  }
  .basketList .productCard .imageContainer {
    min-width: 147px;
    width: 147px;
  }
  .basketList .productCard .cardContent {
    width: calc(100% - 147px - 54px - 350px);
  }
  .basketList .productCard .cardDown {
    min-width: 54px;
  }
  .formNote {
    font-size: 15px;
  }
  .inputContainer textarea {
    min-height: 192px;
  }
  .basketForm {
    width: 560px;
    padding: 30px;
  }
  .basketForm .formContent {
    display: block;
    gap: 20px;
  }
  .basketForm .formItem + .formItem {
    margin-top: 18px;
  }
  .basketForm .formNote {
    margin-top: 22px;
  }
  .basketForm .sectionTitle {
    margin-bottom: 18px;
  }
  .basketForm .column + .column {
    margin-top: 18px;
  }
  .shopSection + .section {
    padding-top: 90px;
  }
  .basketInfo {
    width: calc(100% - 560px);
    padding: 36px 60px 0px;
  }
  .basketInfo .cardValue {
    font-size: 18px;
  }
  .basketInfo .valCards + .valCards {
    margin-top: 18px;
  }
  .basketInfo .deliveryInfo {
    margin-top: 64px;
  }
  .basketInfo .formAction {
    padding: 32px 60px;
    margin-left: -60px;
    margin-right: -60px;
  }
  .basketInfo .formAction .btnContainer {
    margin-top: 16px;
  }
  .catalogFilter {
    padding-right: 20px;
  }
  .catalogHead .sectionTitle {
    min-height: 52px;
  }
  .catalogHead .catalogMenu {
    padding-right: 20px;
  }
  .pageCountControl {
    flex-direction: column;
    align-items: flex-end;
    gap: 0px;
    justify-content: center;
  }
  .catalogControls {
    grid-template-columns: 316px 350px 1fr;
  }
  .catalogControls:first-child {
    padding-bottom: 14px;
  }
  .catalogControls:last-child {
    padding-top: 14px;
  }
  .pagination .dist-3 {
    display: none;
  }
  .catalogList.grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .categoryHead {
    height: auto;
  }
  .productContent {
    grid-template-columns: 480px calc(100% - 480px);
    padding-right: 28px;
    grid-template-rows: auto auto auto 1fr;
  }
  .productScheme .productImage {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .leftProductScheme {
    grid-row: initial;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .productParams {
    grid-row: span 4;
  }
  .rightProductScheme {
    grid-column-start: 1;
    grid-row: initial;
  }
  .productDelivery {
    grid-column-start: 1;
  }
  .productHead .productImage {
    max-width: 268px;
    margin-left: auto;
    margin-right: auto;
  }
  .productAction {
    grid-template-columns: 350px calc(100% - 350px);
  }
  .productAction .btnContainer {
    padding: 32px 20px 38px;
    grid-column: span 2;
  }
  .productAction .productPrice {
    padding-right: 66px;
  }
}
@media (max-width: 1149px) {
  body {
    line-height: 22px;
  }
  .headerInner {
    gap: 11px;
  }
  .headerContent {
    padding-left: 22px;
    padding-right: 22px;
  }
  .themeIcon {
    width: 34px;
    height: 34px;
    margin: 3px;
    font-size: 22px;
  }
  .themeIcon:after {
    width: 40px;
    height: 40px;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    border-width: 1px;
  }
  .phoneLink {
    font-size: 18px;
  }
  .headContact {
    padding-left: 48px;
  }
  .headContact .shedule {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .headContact .themeIcon {
    top: calc(50% - 20px);
  }
  .headerContacts {
    min-width: 322px;
  }
  .inputContainer input {
    border-radius: 22px;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 16px;
    height: 44px;
  }
  .iconInput input {
    padding-right: 48px;
  }
  .categoryCard {
    min-height: 127px;
  }
  .categoryCard img {
    height: 68px;
    margin-bottom: 5px;
  }
  .heroTitle {
    font-size: 37px;
    line-height: 53px;
  }
  .heroImage {
    width: calc((100% - var(--container)) / 2 + 485px + 284px);
  }
  .heroText {
    width: 485px;
    padding-left: 15px;
  }
  .heroInner {
    min-height: 230px;
  }
  .heroInner:after {
    width: 284px;
    right: calc((100% - var(--container)) / 2 + var(--container) - 769px);
  }
  .heroAdd {
    width: calc((100% - var(--container)) / 2 + var(--container) - 769px);
  }
  .heroAdd + .heroInner {
    max-width: 769px;
  }
  .hero .catalogMenu ul {
    gap: 4px;
  }
  .hero .heroMenu {
    width: 284px;
    padding: 0px 11px;
  }
  .hero .brandsList {
    padding-top: 28px;
    width: calc(100% + var(--container) - 769px);
  }
  .hero .brandsList li:last-child {
    min-width: 144px;
  }
  .hero .headContacts {
    padding-bottom: 96px;
    padding-top: 96px;
  }
  .hero .headContacts ul {
    min-height: 0px;
  }
  .hero .headContacts .contactCard {
    width: 40px;
    height: 40px;
    overflow: hidden;
  }
  .hero.home .headContacts ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .headContacts .themeIcon {
    margin-bottom: 4px;
    min-height: 34px;
  }
  .headContacts ul {
    min-height: 321px;
  }
  .headContacts .contactCard.lg {
    font-size: 16px;
  }
  .headContacts .contactCard.lg .themeIcon {
    margin-bottom: 14px;
  }
  .brandCard {
    min-height: 66px;
    height: 66px;
  }
  .brandCard img {
    transform: scale(0.61);
  }
}
@media (max-width: 1149px) and (hover: hover) {
  .brandCard:not(.linkCard):hover img {
    transform: scale(0.61) translateY(-5px);
  }
}
@media (max-width: 1149px) {
  .sectionTitle {
    font-size: 20px;
    line-height: 30px;
  }
  .startGradient:after,
  .endGradient:after,
  .middleGradient:after {
    width: 284px;
    left: 50%;
  }
  .pageAboutSection .sectionGrid,
  .aboutSection .sectionGrid,
  .contactsSection .sectionGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pageAboutSection .item,
  .aboutSection .item,
  .contactsSection .item {
    min-height: 375px;
  }
  .headContactsList {
    display: flex;
    justify-content: center;
    gap: 60px;
  }
  .headContactsList .cardCaption {
    font-size: 14px;
    line-height: 22px;
  }
  .headContactsList a {
    font-size: 16px;
    line-height: 22px;
  }
  .headContactsList li {
    padding-left: 83px;
  }
  .headContactsList li + li {
    margin-top: 0px;
  }
  .headContactsList .logo {
    left: 83px;
  }
  .aboutSection .rightGradient:before {
    display: none;
  }
  .aboutSection .aboutBullet {
    margin-top: 10px;
  }
  .aboutSection .column-2 {
    grid-column: span 1;
  }
  .aboutSection .column-1 {
    grid-column: span 2;
    background-color: #fff;
    padding-bottom: 32px;
    padding-right: 0px;
  }
  .aboutSection .column-3 {
    padding-top: 47px;
    padding-bottom: 47px;
  }
  .aboutSection .item {
    min-height: 0px;
  }
  .aboutSection .item.row-1 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .aboutSection:after {
    height: calc(100% - 90px);
    top: 90px;
  }
  .aboutSection .darkItem:before {
    height: 100%;
  }
  .aboutSection .darkItem:after {
    display: none;
  }
  .caption {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0px;
  }
  .contactsList {
    line-height: 22px;
  }
  .contactsList li {
    padding-left: 54px;
  }
  .contactsList li br {
    display: none;
  }
  .themeBtn {
    font-size: 12px;
    height: 40px;
    border-radius: 20px;
    min-width: 159px;
    padding: 8px 24px;
  }
  .contactsSection .rightGradient {
    grid-row-start: 2;
    grid-column-start: 1;
  }
  .contactsSection .sectionGrid {
    position: relative;
    z-index: 1;
    grid-auto-flow: dense;
  }
  .contactsSection .rows-2 {
    grid-row: span 1;
  }
  .contactsSection .column-1 {
    padding-bottom: 28px;
  }
  .contactsSection .column-1 .btnContainer {
    bottom: auto;
    top: calc(100% + 2px);
    left: calc(100% + 60px);
  }
  .contactsSection .column-3 {
    padding-top: 68px;
    padding-left: 58px;
  }
  .contactsSection .column-3 .sectionTitle {
    font-size: 24px;
    line-height: 30px;
  }
  .contactsSection .column-3:after {
    left: 0;
    width: 284px;
  }
  .contactsSection .centerGradient:after {
    left: 0px;
    width: 284px;
  }
  .contactsSection .columns-2 {
    grid-column: span 1;
  }
  .textList li, .textContainer ul li {
    font-size: 15px;
  }
  .textList li + li, .textContainer ul li + li {
    margin-top: 28px;
  }
  .siteFooter {
    padding-bottom: 26px;
    padding-top: 22px;
  }
  .siteFooter .logoItem {
    width: 237px;
    padding-right: 11px;
  }
  .siteFooter .menuList li + li {
    margin-top: 13px;
  }
  .siteFooter .menuItem {
    width: 247px;
  }
  .siteFooter:after {
    width: 284px;
    left: calc(485px + (100% - var(--container)) / 2);
  }
  .siteFooter:before {
    width: calc((100% - var(--container)) / 2 + 236px);
  }
  .siteFooter .logoLink img {
    height: 109px;
  }
  .siteFooter .headContacts .themeIcon {
    margin-bottom: 10px;
  }
  .siteFooter .headContacts ul:first-child {
    width: 284px;
  }
  .siteFooter .headContacts ul:nth-child(2) {
    width: calc(100% - 284px);
  }
  .siteFooter .headContacts .contactCard.address {
    font-size: 15px;
    line-height: 20px;
  }
  .footerAdd {
    width: calc(100% - (100% - var(--container)) / 2 - 485px);
  }
  .advantagesSection .sectionGrid {
    grid-template-columns: repeat(1, 1fr);
    position: relative;
    z-index: 1;
  }
  .advantagesSection .item {
    min-height: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 30px;
  }
  .advantagesSection .item:not(:first-child) .contactsList {
    margin-top: 0px;
  }
  .advantagesSection .contactsList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 44px;
  }
  .advantagesSection .contactsList br {
    display: block;
  }
  .advantagesSection .contactsList li {
    padding-right: 22px;
  }
  .advantagesSection .contactsList li:nth-child(2n) {
    color: #fff;
    z-index: 2;
  }
  .advantagesSection .contactsList li:nth-child(2n+1) {
    color: var(--color-text);
  }
  .advantagesSection .contactsList li + li {
    margin-top: 0px;
  }
  .advantagesSection .darkItem {
    position: static;
  }
  .advantagesSection .darkItem:before {
    width: 50%;
    left: 50%;
    z-index: -1;
    height: calc(100% + 45px);
  }
  .advantagesSection .darkItem:after {
    display: none;
  }
  .pageAboutSection .textContainer .textList, .pageAboutSection .textContainer ul {
    columns: 2;
    column-gap: 44px;
  }
  .pageAboutSection .textContainer .textList > li, .pageAboutSection .textContainer ul > li {
    break-inside: avoid;
  }
  .pageAboutSection .imageItem.rightGradient:before {
    width: 284px;
    right: auto;
    left: 0;
  }
  .pageAboutSection .leftGradient:before,
  .pageAboutSection .leftGradient:after {
    width: 284px;
  }
  .pageAboutSection .darkItem {
    grid-row-start: 2;
    grid-row-end: 2;
    grid-column-start: 2;
  }
  .pageAboutSection .darkItem:after {
    width: 284px;
  }
  .pageAboutSection .darkItem:before, .pageAboutSection .darkItem:after {
    height: 100%;
  }
  .pageAboutSection .rightGradient.row-2:after,
  .pageAboutSection .rightGradient.row-2:before {
    display: none;
  }
  .pageAboutSection .column-1 {
    grid-column: initial;
  }
  .pageAboutSection .column-1.row-1:not(.columns-2):not(.rows-2) {
    grid-column: span 2;
  }
  .pageAboutSection .addItem {
    display: none;
  }
  .pageAboutSection .column-2.row-1 {
    grid-column: initial;
  }
  .pageAboutSection .columns-2 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .pageAboutSection .columns-2.transparent {
    padding-bottom: 22px;
    padding-top: 0px;
  }
  .textCaption {
    font-size: 16px;
    line-height: 22px;
  }
  .paymentsList {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .proposalList {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .proposalList:not(:first-child) {
    margin-top: 40px;
  }
  .proposalList + * {
    margin-top: 40px;
  }
  .productCard .name {
    margin-bottom: 6px;
    font-size: 16px;
  }
  .productCard .params {
    font-size: 15px;
    line-height: 18px;
  }
  .productCard .cardContent {
    padding: 0px 12px 28px;
    min-height: 152px;
  }
  .productCard.horizontal .basketContent {
    width: 230px;
  }
  .productCard.horizontal .cardAction {
    justify-content: center;
  }
  .productCard.horizontal .cardDown {
    padding-left: 10px;
  }
  .productCard.horizontal .priceWrapper {
    min-height: 59px;
  }
  .productCard.horizontal .priceWrapper .cardCaption {
    font-size: 15px;
  }
  .productSlider .productCard {
    width: 250px;
  }
  .vacancyCard .head {
    padding: 0px;
    display: block;
    background: #05a7b6;
  }
  .vacancyCard .position {
    padding: 9px 22px;
    display: block;
  }
  .vacancyCard .salary {
    padding: 9px 22px;
    background-color: #4bc49b;
  }
  .vacancyCard .content {
    columns: 1;
  }
  .vacancyCard .paramItem + .paramItem {
    margin-top: 12px;
  }
  .contactsPanel {
    grid-template-columns: repeat(2, 1fr);
    --mask-cols: linear-gradient(to right,
            black calc((100% - 11px) / 2),
            transparent 0 calc((100% - 11px) / 2 + 11px),
            black 0);
    --mask-rows: linear-gradient(to bottom,
            black calc((100% - 22px) / 3),
            transparent 0 calc((100% - 22px) / 3 + 11px),
            black 0 calc(((100% - 22px) / 3) * 2 + 11px),
            transparent 0 calc(((100% - 22px) / 3) * 2 + 22px),
            black 0);
  }
  .contactsPanel .contactItem {
    padding: 32px 11px 16px;
  }
  .pageContactsSection .column-1.row-1 {
    grid-row: span 2;
    padding-top: 0px;
  }
  .pageContactsSection .imageItem:not(.leftGradient) {
    grid-column-start: 1;
    grid-row: span 3;
  }
  .pageContactsSection .mapItem {
    grid-row: span 2;
  }
  .repairItem {
    padding: 16px;
  }
  .repairSection .rightGradient:before {
    width: 284px;
  }
  .countInput .cardCaption {
    display: none;
  }
  .countInput .countBtn {
    width: 47px;
  }
  .countInput .inputContainer input {
    height: 47px;
    font-size: 20px;
    line-height: 21px;
    padding: 13px 52px;
  }
  .shopSection {
    padding-top: 30px;
  }
  .formLabel {
    font-size: 15px;
  }
  .basketForm {
    width: 50%;
    padding: 30px 30px 20px;
  }
  .basketForm .sectionTitle {
    margin-bottom: 28px;
  }
  .basketInfo {
    width: 50%;
    padding: 36px 38px 0px;
  }
  .basketInfo .cardCaption {
    font-size: 16px;
  }
  .basketInfo .valCards + .valCards {
    margin-top: 42px;
  }
  .basketInfo .formAction {
    padding: 32px 38px;
    margin-left: -38px;
    margin-right: -38px;
  }
  .basketList .productCard {
    padding-right: 18px;
  }
  .basketList .productCard .cardContent {
    width: calc(100% - 147px - 44px - 230px);
  }
  .basketList .productCard .cardDown {
    min-width: 44px;
  }
  .catalogGrid {
    grid-template-columns: 100%;
  }
  .catalogHead {
    margin-bottom: 30px;
  }
  .catalogHead .sectionTitle {
    min-height: 0px;
  }
  .catalogHead .catalogMenu {
    background-color: #2b3033;
    padding: 30px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
  }
  .catalogHead .categoryCard {
    min-height: 47px;
    padding: 6px 5px;
    background-color: #fff;
    justify-content: center;
  }
  .catalogHead .categoryCard img {
    display: none;
  }
}
@media (max-width: 1149px) and (hover: hover) {
  .catalogHead .categoryCard:hover {
    background-color: #b9ff5d;
  }
  .catalogHead .categoryCard:hover .cardInner {
    transform: translateY(0px);
  }
}
@media (max-width: 1149px) {
  .catalogHead .categoryCard.active {
    background-color: #b9ff5d;
  }
  .catalogHead .categoryCard.active .cardInner {
    transform: translateY(0px);
  }
  .catalogFilter {
    margin-top: 0px;
  }
  .brandFilter {
    display: none;
  }
  .pageCountControl {
    grid-row: initial;
    align-items: flex-start;
  }
  .catalogCount {
    padding-right: 45px;
    flex-direction: column;
    align-items: flex-end;
    gap: 0px;
  }
  .viewControl {
    order: 1;
  }
  .pagination .dist-2 {
    display: none;
  }
  .pagination ul {
    padding-left: 59px;
    padding-right: 59px;
    height: 57px;
    border-radius: 10px 10px 0px 0px;
  }
  .pagination ul .countBtn {
    width: 57px;
  }
  .catalogControls {
    grid-template-columns: 1fr auto 284px calc(50% - 284px);
  }
  .catalogControls .pagination {
    grid-row: initial;
    order: 1;
  }
  .filterName {
    font-size: 15px;
  }
  .accordFilter {
    padding-right: 0px;
    border-radius: 22px;
    position: relative;
    padding-bottom: 20px;
    z-index: 1;
  }
  .accordFilter:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: calc(100% - 20px);
    top: 0;
    left: 0;
    border-radius: 22px;
    border: 2px solid #8c979e;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: -1;
  }
  .accordFilter .filterInner {
    padding: 0px 20px 20px;
  }
  .accordFilter [data-toggle-content] {
    display: none;
  }
  .accordFilter [data-toggle-content].active {
    display: block;
  }
  .filterBtn {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    min-height: 44px;
    width: 100%;
    font-size: 15px;
    line-height: 20px;
    color: #8c979e;
    position: relative;
    font-weight: 500;
  }
  .filterBtn:before, .filterBtn:after {
    height: 30px;
    width: 30px;
    right: 8px;
    position: absolute;
    border-radius: 50%;
  }
  .filterBtn:before {
    content: "";
    background-color: #8c979e;
    display: block;
    transition: background-color var(--transition);
  }
  .filterBtn:after {
    content: "\e93e";
    font-family: icomoon;
    border-width: 0px;
    margin-top: 0px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    transform-origin: center;
    transition: transform var(--transition);
  }
  .filterBtn.active:after {
    transform: scaleY(-1);
  }
  .filterBtn.active:before {
    background-color: #4bc49b;
  }
  .filterSelect .choices__input {
    height: 44px;
    font-size: 14px;
  }
  .filterSelect .choices {
    border-radius: 22px;
  }
  .filterSelect .choices__inner {
    min-height: 40px;
    border-radius: 22px;
  }
  .filterSelect .choices__list--dropdown,
  .filterSelect .choices__list[aria-expanded] {
    padding: 1px 20px 20px;
  }
  .filterSelect .choices[data-type*=select-one] .choices__input {
    padding: 10px 47px 10px 20px;
  }
  .filterSelect .choices[data-type*=select-one]::before, .filterSelect .choices[data-type*=select-one]::after,
  .filterSelect .choices[data-type*=select-one] .choices__button {
    top: 5px;
  }
  .filterSelect .choices__list--single {
    padding: 10px 78px 10px 20px;
  }
  .filterItem {
    background-color: rgba(255, 255, 255, 0.9);
  }
  .rangeFilter {
    padding-left: 20px;
    padding-right: 20px;
  }
  .rangeFilter .priceInput .pricePrefix {
    font-size: 15px;
  }
  .rangeFilter .priceInputs {
    flex-direction: row;
  }
  .rangeFilter .priceInput {
    width: calc(50% - 3px);
  }
  .rangeFilter .priceInput input {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }
  .productContent {
    grid-template-columns: 378px calc(100% - 378px);
    padding-right: 18px;
  }
  .productPanel .productImage {
    height: 185px;
  }
  .productScheme {
    padding-left: 10px;
    padding-right: 10px;
  }
  .themeBtn .icon {
    font-size: 22px;
    margin-left: 6px;
  }
  .productAction {
    grid-template-columns: 296px calc(100% - 296px);
  }
  .productAction .fastOrderContainer {
    gap: 20px;
  }
  .productAction .fastOrderContainer .themeBtn {
    min-width: 0px;
  }
  .productAction .priceWrapper {
    min-height: 88px;
  }
  .productAction .priceWrapper .cardCaption {
    font-size: 16px;
    line-height: 24px;
  }
  .productAction .btnContainer {
    padding: 28px 20px;
    grid-column: span 2;
  }
  .productAction .productPrice {
    padding-right: 10px;
  }
  .sectionTitle.xs {
    font-size: 20px;
  }
  .menuInner {
    padding: 100px calc((100% - var(--container)) / 2) 50px calc(100% - 576px);
  }
  .menuInner:before {
    width: 576px;
    border-bottom-left-radius: 607px;
  }
}
@media (max-width: 991px) {
  .headContact .shedule {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .headerContacts {
    min-width: 0px;
  }
  .headerContent {
    gap: 24px;
  }
  .heroImage {
    width: 100vw;
    left: calc(50% - 50vw);
  }
  .heroInner {
    min-height: 0px;
    padding: 48px calc((100% - var(--container)) / 2) 36px;
    position: relative;
  }
  .heroInner:after {
    width: 50vw;
    right: auto;
    left: 50%;
  }
  .heroAdd {
    display: flex;
    width: 100%;
    min-height: 150px;
    justify-content: center;
    background-color: #2a2f32;
    background-image: url(../img/pattern.png);
    background-repeat: repeat-y;
    background-position: right center;
    padding: 86px calc((100% - var(--container)) / 2) 24px calc(50% + 17px);
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
  }
  .heroAdd + .heroInner {
    max-width: 100%;
    padding-right: calc((100% - var(--container)) / 2);
  }
  .headContacts ul {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    min-height: 0px;
  }
  .headContacts li + li {
    margin-top: 0px;
  }
  .headContacts .contactCard.lg {
    font-size: 14px;
  }
  .headContacts .contactCard.lg .cardCaption {
    margin-bottom: 5px;
  }
  .headContacts .contactCard.lg .themeIcon {
    margin-bottom: 10px;
  }
  .categoryCard img {
    height: 60px;
  }
  .heroTitle {
    filter: drop-shadow(6px 6px 8px rgba(3, 5, 3, 0.22));
  }
  .heroText {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
  }
  .heroContent {
    display: block;
    position: relative;
    padding-top: 43px;
  }
  .brandCard {
    border-radius: 10px;
  }
  .heroInner {
    padding-top: 150px;
  }
  .heroInner:after {
    height: calc(100% - 150px);
    top: 150px;
  }
  .heroAdd {
    background-color: transparent;
    background-image: none;
  }
  .heroImage {
    height: calc(100% - 150px);
    top: 150px;
    z-index: initial;
  }
  .hero {
    display: block;
    padding-top: 0px;
    background-color: #2a2f32;
    background-image: url(../img/pattern.png);
    background-repeat: repeat-y;
    background-position: right center;
  }
  .hero .searchLine {
    position: absolute;
    z-index: 2;
    width: calc(var(--container) / 2 - 22px);
    bottom: calc(100% + 22px);
    left: calc((100% - var(--container)) / 2);
  }
  .hero .heroMenu {
    width: 100%;
    padding: 0px;
  }
  .hero .catalogMenu {
    margin-top: 70px;
  }
  .hero .catalogMenu ul {
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
  }
  .hero .brandsList {
    padding-top: 50px;
    gap: 5px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
  }
  .hero .brandsList li:last-child {
    min-width: 0px;
  }
  .hero .brandsList .hideMd {
    display: flex;
  }
  .hero .catalogMenu.splide.is-initialized:not(.is-active) .splide__list {
    display: flex;
    justify-content: center;
  }
  .hero .catalogMenu.splide.is-initialized:not(.is-active) .splide__slide {
    width: calc((100% - 25px) / 6);
  }
  .hero .headContacts {
    padding-bottom: 0px;
    padding-top: 0px;
    min-height: 0px;
    background-image: none;
    background-color: transparent;
  }
  .hero .headContacts ul {
    gap: 38px;
  }
  .hero.home .headContacts ul {
    flex-direction: row;
  }
  .hero.home .heroInner {
    padding-bottom: 20px;
    min-height: 0px;
  }
  .hero.home .heroText {
    min-height: 221px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero.home .catalogMenu {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .hero:not(.home) .headContacts ul {
    flex-wrap: nowrap;
  }
  .hero:not(.home) .headContacts li {
    width: auto;
  }
  .hero:not(.home) .brandsList {
    margin-bottom: 0px;
  }
  .hero:not(.home) .catalogMenu {
    margin-top: 40px;
  }
  .startGradient:after,
  .endGradient:after,
  .middleGradient:after {
    width: 50%;
  }
  .advantagesSection .imageItem,
  .pageAboutSection .imageItem,
  .aboutSection .imageItem,
  .contactsSection .imageItem {
    min-height: 328px;
  }
  .aboutSection .sectionGrid {
    display: block;
  }
  .imageItem.rightGradient:before {
    width: 50%;
  }
  .sectionTitle {
    margin-bottom: 22px;
  }
  .hero + .section {
    padding-top: 70px;
  }
  .section {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .aboutSection .rightGradient:before {
    display: block;
    background: rgba(75, 196, 155, 0.5);
  }
  .aboutSection .column-2 {
    padding-left: 0px;
  }
  .aboutSection .item.row-1 {
    padding-top: 30px;
    padding-bottom: 0px;
  }
  .aboutSection .column-3 {
    min-height: 349px;
  }
  .aboutSection:after {
    height: 747px;
    top: auto;
    bottom: -35px;
  }
  .certificateSlider {
    max-width: 365px;
  }
  .contactsSection .column-3 {
    padding-left: 28px;
    padding-bottom: 102p;
  }
  .contactsSection .column-3:after {
    width: 100%;
  }
  .contactsSection .column-1 .btnContainer {
    top: auto;
    bottom: 31px;
    z-index: 2;
    left: calc(100% + 28px);
  }
  .contactsSection .rightGradient {
    grid-column-end: 3;
  }
  .contactsSection .imageItem {
    display: none;
  }
  main {
    padding-bottom: 70px;
  }
  .siteFooter {
    flex-wrap: wrap;
    padding-bottom: 0px;
  }
  .siteFooter .menuItem {
    width: 50%;
    padding-bottom: 32px;
    padding-left: 9px;
    padding-right: 9px;
  }
  .siteFooter:before {
    display: none;
  }
  .siteFooter .logoLink img {
    height: 90px;
  }
  .siteFooter .copyright {
    margin-top: 20px;
  }
  .siteFooter .logoItem {
    width: 100%;
    order: initial;
    padding: 38px calc((100% - var(--container)) / 2) 30px;
    background-color: #2a2f32;
  }
  .siteFooter .logoItem:before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: url(../img/pattern-footer.png);
    background-repeat: repeat;
    background-position: center;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .siteFooter:after {
    width: 50%;
    left: 50%;
    background: linear-gradient(to bottom, #05a7b6 0%, rgba(75, 196, 155, 0.5) 50%);
  }
  .siteFooter .headContacts ul {
    justify-content: flex-start;
    padding-left: 9px;
    padding-right: 9px;
  }
  .siteFooter .headContacts ul:first-child {
    width: 50%;
  }
  .siteFooter .headContacts ul:nth-child(2) {
    width: 50%;
  }
  .siteFooter .headContacts ul:nth-child(2) li + li {
    margin-top: 26px;
  }
  .siteFooter .headContacts .contactCard.address {
    line-height: 18px;
  }
}
@media (max-width: 991px) and (hover: hover) {
  .siteFooter .headContacts .contactCard:hover .themeIcon {
    background-color: #b9ff5d;
  }
  .siteFooter .headContacts .contactCard:hover .themeIcon:after {
    border-color: #b9ff5d;
  }
}
@media (max-width: 991px) {
  .siteFooter .headContacts .themeIcon {
    background-color: #2b3033;
  }
  .siteFooter .headContacts .themeIcon:after {
    border-color: #2b3033;
  }
  .siteFooter .headContacts .cardCaption {
    color: #fff;
  }
  .footerAdd {
    width: 50%;
    padding-bottom: 32px;
  }
  .textContainer .sectionTitle:not(:first-child) {
    margin-top: 30px;
  }
  .pageAboutSection .rows-2 {
    grid-row: initial;
    grid-column: span 2;
  }
  .pageAboutSection .column-1 {
    padding-right: 0px;
  }
  .pageAboutSection .item.row-1 {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .pageAboutSection .item.transparent {
    padding-top: 0px;
  }
  .pageAboutSection .rightGradient:before {
    display: none;
  }
  .pageAboutSection .leftGradient {
    grid-column: span 2;
  }
  .pageAboutSection .leftGradient:before, .pageAboutSection .leftGradient:after {
    display: none;
  }
  .pageAboutSection .imageItem {
    min-height: 375px;
  }
  .pageAboutSection .column-2.row-1 {
    grid-column: span 2;
    grid-row-start: initial;
  }
  .pageAboutSection .columns-2 {
    grid-column: span 2;
  }
  .pageAboutSection .darkItem {
    padding: 28px 22px 28px 22px;
  }
  .pageAboutSection .darkItem:after {
    width: 100%;
  }
  .advantagesSection .item {
    padding-top: 22px;
    padding-bottom: 0px;
  }
  .advantagesSection .darkItem:before, .advantagesSection .darkItem:after {
    height: calc(100% + 35px);
  }
  .productCard .imageContainer {
    height: 115px;
  }
  .productCard .cardContent {
    padding: 0px 8px 28px;
  }
  .productCard.horizontal .basketContent {
    width: calc(50% - 125px);
  }
  .productCard.horizontal .cardDown {
    min-width: 209px;
  }
  .productCard.horizontal .cardDown .removeBtn {
    margin-left: 0px;
  }
  .productCard.horizontal .imageContainer {
    min-width: 144px;
    width: 144px;
  }
  .productSlider .productCard {
    width: 194px;
  }
  .paymentsList,
  .proposalList {
    display: grid;
    gap: 30px;
  }
  .textContainer .lg {
    font-size: 16px;
    line-height: 22px;
  }
  .vacancyCard .head {
    display: grid;
    align-items: stretch;
    min-height: 0px;
    gap: 0px;
  }
  .vacancyCard .content {
    columns: 2;
  }
  .pageContactsSection .column-1.row-1 {
    grid-row: initial;
  }
  .pageContactsSection .imageItem {
    order: 1;
  }
  .pageContactsSection .imageItem:not(.leftGradient) {
    display: none;
  }
  .repairsList {
    grid-template-columns: repeat(2, 1fr);
  }
  .repairSection .rightGradient:before {
    display: none;
  }
  .repairItem .priceWrapper {
    margin-left: 0px;
  }
  .basketList .productCard {
    flex-wrap: wrap;
    padding-left: 18px;
    padding-bottom: 25px;
  }
  .basketList .productCard .cardContent {
    order: 1;
    width: 100%;
    padding-left: 0px;
    padding-top: 16px;
    padding-right: 0px;
  }
  .basketList .productCard .cardDown {
    min-width: 125px;
    padding-left: 18px;
    align-items: center;
  }
  .basketList .productCard .imageContainer {
    min-width: 50%;
    height: 100px;
    padding-right: 18px;
    width: 50%;
  }
  .basketResult {
    flex-direction: column;
  }
  .basketInfo {
    width: 100%;
  }
  .basketInfo .deliveryInfo {
    text-align: center;
    font-size: 15px;
    margin-top: 34px;
  }
  .basketInfo .valCardsWrapper {
    display: flex;
  }
  .basketInfo .formAction {
    padding: 16px 38px 22px;
  }
  .basketInfo .valCards + .valCards {
    margin-top: 0px;
  }
  .basketInfo .valCards:first-child {
    width: 33.3333333333%;
    grid-template-columns: repeat(1, 1fr);
  }
  .basketInfo .valCards:nth-child(2) {
    width: 66.6666666667%;
  }
  .shopSection + .section {
    padding-top: 70px;
  }
  .basketForm {
    width: 100%;
  }
  .basketForm .formNote {
    text-align: center;
  }
  .catalogHead {
    margin-bottom: 20px;
  }
  .catalogHead .catalogMenu {
    padding: 30px 20px;
    gap: 20px;
  }
  .catalogControls {
    grid-template-columns: 1fr auto auto 50%;
  }
  .catalogControls .pagination {
    padding-left: calc((100% - 257px) / 2);
    padding-right: calc((100% - 257px) / 2);
  }
  .catalogControls:last-child {
    padding-top: 14px;
    grid-template-columns: 1fr auto 50%;
  }
  .catalogControls:last-child .catalogCount {
    padding-right: 15px;
  }
  .catalogCount {
    padding-right: 36px;
    padding-left: 0px;
  }
  .viewControl {
    order: initial;
    padding-right: 15px;
    padding-top: 0px;
  }
  .catalogList.grid {
    gap: 10px;
  }
  .productContent {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 18px;
  }
  .productHead {
    grid-column: span 2;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
  }
  .rightProductScheme {
    grid-column-start: initial;
    margin-bottom: 0px;
    padding-right: 0px;
  }
  .leftProductScheme {
    padding-right: 18px;
    padding-left: 0px;
  }
  .productParams {
    grid-column: span 2;
  }
  .productDelivery {
    padding-left: calc((100% - 320px) / 2);
    padding-right: calc((100% - 320px) / 2);
    grid-column: span 2;
    padding-top: 28px;
  }
  .productAction {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .productAction .priceWrapper {
    min-height: 79px;
  }
  .productAction .productPrice {
    padding-right: 0px;
  }
  .productAction .btnContainer {
    grid-column: initial;
    padding-top: 16px;
    padding-bottom: 20px;
  }
  .productAction .fastOrderContainer {
    grid-row: span 2;
    flex-direction: column;
    padding-bottom: 20px;
    justify-content: space-between;
    padding-right: 20px;
    padding-top: 25px;
  }
  .productAction .fastOrderContainer .inputContainer {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .siteHeader .logoLink {
    width: 62px;
    min-width: 62px;
    overflow: hidden;
  }
  .siteHeader .logoLink img {
    height: 34px;
    max-width: none;
    max-width: max-content;
  }
  .brandCard.linkCard {
    padding-left: 0px;
  }
  .headerContent {
    padding-left: 14px;
    padding-right: 14px;
  }
  .headerInner {
    margin-left: -10px;
    margin-right: -10px;
  }
  .headContact {
    padding-left: 44px;
  }
  .headContact .shedule {
    font-size: 13px;
  }
  .heroInner {
    padding-top: 0px;
    padding-bottom: 35px;
  }
  .heroInner:after {
    height: 100%;
    top: 0px;
  }
  .heroImage {
    height: 100%;
    top: 0px;
  }
  .brandCard.linkCard {
    text-align: center;
  }
  .brandCard.linkCard:after {
    display: none;
  }
  .heroAdd {
    padding: 155px 0px 0px;
  }
  .heroAdd {
    display: none;
  }
  .heroContent {
    position: static;
    padding-top: 35px;
  }
  .hero {
    background-color: #2a2f32;
    background-image: url(../img/pattern.png);
    background-repeat: repeat-y;
    background-position: right center;
    padding-top: 155px;
  }
  .hero .searchLine {
    width: 450px;
  }
  .hero .catalogMenu {
    margin-top: 42px;
  }
  .hero .catalogMenu ul {
    display: flex;
    gap: 0px;
  }
  .hero .catalogMenu:not(.is-overflow) {
    padding-left: 5px;
  }
  .hero .catalogMenu:not(.is-overflow) ul {
    justify-content: center;
  }
  .hero .brandsList {
    padding-top: 50px;
  }
  .hero + .section {
    padding-top: 32px;
  }
  .hero.home .heroInner {
    min-height: 0;
  }
  .hero.home .heroContent {
    padding-top: 65px;
  }
  .hero.home .brandsList {
    padding-top: 72px;
  }
  .hero.home .heroText {
    min-height: 0px;
  }
  .hero.home .catalogMenu {
    margin-top: 62px;
  }
  .hero.home + .section {
    padding-top: 70px;
  }
  .hero:not(.home) .catalogMenu {
    margin-top: 36px;
  }
  .hero:not(.home) .heroTitle {
    font-size: 28px;
    line-height: 40px;
  }
  .startGradient:not(.shopSection):after,
  .endGradient:not(.shopSection):after,
  .middleGradient:not(.shopSection):after {
    display: none;
  }
  .shopSection + .startGradient:after, .shopSection + .endGradient:after, .shopSection + .middleGradient:after {
    display: block;
  }
  .advantagesSection .imageItem,
  .pageAboutSection .imageItem,
  .aboutSection .imageItem,
  .contactsSection .imageItem {
    min-height: 268px;
  }
  .headContactsList {
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  .headContactsList li {
    padding-left: 0px;
  }
  .headContactsList a {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: auto auto;
    column-gap: 15px;
    padding-left: 0px;
  }
  .headContactsList .logo {
    left: auto;
    top: auto;
    transform: none;
    position: relative;
    grid-row: span 2;
    display: flex;
    align-items: center;
  }
  .aboutSection .item.row-1 {
    padding-top: 18px;
  }
  .aboutSection .column-3 {
    padding-top: 17px;
    padding-bottom: 17px;
    min-height: 0px;
  }
  .contactsSection .sectionGrid {
    grid-template-columns: repeat(1, 1fr);
  }
  .contactsSection .item {
    min-height: 350px;
  }
  .contactsSection .rightGradient {
    grid-column-end: 1;
    grid-row-start: 3;
  }
  .contactsSection .column-1 {
    padding-bottom: 50px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .contactsSection .column-1 .btnContainer {
    position: relative;
    bottom: auto;
    left: auto;
    text-align: center;
    padding-top: 45px;
  }
  .contactsSection .column-3 {
    padding-top: 26px;
    padding-bottom: 28px;
  }
  .contactsSection .column-3:after {
    width: 50%;
    left: 50%;
  }
  .siteFooter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .siteFooter .menuItem {
    width: auto;
  }
  .siteFooter .headContacts {
    flex-direction: column;
    gap: 26px;
    align-items: center;
  }
  .siteFooter .headContacts ul:first-child, .siteFooter .headContacts ul:nth-child(2) {
    width: 100%;
  }
  .footerAdd {
    grid-row: span 2;
    width: auto;
  }
  .pageAboutSection .column-1 {
    grid-row-start: 1;
    grid-column: initial;
  }
  .pageAboutSection .item {
    min-height: 0px;
    padding-right: 0px;
  }
  .pageAboutSection .imageItem {
    min-height: 268px;
  }
  .pageAboutSection .imageItem {
    min-height: 328px;
  }
  .pageAboutSection .sectionGrid {
    grid-template-columns: auto;
  }
  .pageAboutSection .item.row-1 {
    padding-top: 0px;
  }
  .pageAboutSection .rightGradient.row-2 {
    display: block;
  }
  .pageAboutSection .rightGradient.row-2:before, .pageAboutSection .rightGradient.row-2:after {
    display: block;
    width: 50%;
  }
  .pageAboutSection .darkItem {
    grid-column-start: initial;
    grid-row-start: initial;
    grid-row-end: initial;
  }
  .pageAboutSection .darkItem:after {
    width: 50%;
    left: 50%;
    transform: scaleY(-1);
  }
  .themeBtn:before {
    width: calc(100% + 22px);
    left: -11px;
  }
  .advantagesSection .darkItem:before {
    display: none;
  }
  .advantagesSection .column-1 {
    padding-top: 0px;
  }
  .advantagesSection .contactsList {
    display: block;
  }
  .advantagesSection .contactsList li:nth-child(2n) {
    color: var(--color-text);
  }
  .advantagesSection .contactsList li + li {
    margin-top: 22px;
  }
  .productSlider.is-overflow:before,
  .productSlider.is-overflow:after {
    width: 20px;
  }
  .paymentsList,
  .proposalList {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .vacancyCard .head {
    display: block;
  }
  .vacancyCard .content {
    columns: 1;
  }
  .mapItem .mapAddress {
    width: calc(100% - 108px);
  }
  .pageContactsSection .sectionGrid {
    grid-template-columns: 100%;
  }
  .pageContactsSection .mapItem {
    grid-row: initial;
    min-height: 375px;
  }
  .pageContactsSection .leftGradient {
    grid-column: initial;
  }
  .pageContactsSection .contactCard {
    font-size: 14px;
    line-height: 20px;
  }
  .contactsPanel .contactItem {
    padding: 32px 10px 22px;
  }
  .repairSection .sectionGrid {
    grid-template-columns: repeat(1, 1fr);
  }
  .repairSection .imageItem {
    order: 1;
    min-height: 328px;
  }
  .repairSection .rightGradient {
    mask-image: none;
  }
  .repairSection .column-3 {
    padding-bottom: 22px;
  }
  .repairItem {
    min-height: 0px;
    padding: 20px 16px;
  }
  .repairItem .priceWrapper {
    margin-left: auto;
    opacity: 1;
    margin-top: 22px;
  }
  .repairItem .priceWrapper .cardCaption {
    font-size: 16px;
  }
  .repairItem .priceWrapper .price {
    font-size: 18px;
  }
  .repairItem .imageContainer {
    display: none;
  }
  .repairItem:nth-child(2n) .priceWrapper, .repairItem:nth-child(2n+1) .priceWrapper {
    margin-top: 11px;
  }
  .repairItem:nth-child(2n) .priceWrapper {
    order: initial;
  }
  .repairsList {
    grid-template-columns: initial;
  }
  .productCard.horizontal {
    flex-wrap: wrap;
    padding-top: 20px;
    background-color: #fff;
    padding-left: 10px;
  }
  .productCard.horizontal .basketContent {
    width: calc(100% - 153px - 66px);
  }
  .productCard.horizontal .cardContent {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    flex: auto;
  }
  .productCard.horizontal .imageContainer {
    width: 100%;
    height: 88px;
    margin-bottom: 14px;
  }
  .productCard.horizontal .cardDown {
    width: calc(100% + 20px);
    margin-top: 35px;
    flex-direction: row;
    padding-left: 0px;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -11px;
    min-width: 0px;
  }
  .productCard.horizontal .priceWrapper {
    width: 50%;
  }
  .productCard.horizontal .cardAction {
    width: 50%;
    order: 1;
    padding-bottom: 0px;
    align-items: flex-start;
  }
  .shopSection + .shopSection {
    padding-top: 20px;
  }
  .basketForm {
    padding: 24px 10px 20px;
  }
  .basketInfo {
    padding: 36px 8px 0px;
  }
  .basketInfo .valCardsWrapper {
    display: block;
  }
  .basketInfo .deliveryInfo {
    margin-top: 24px;
  }
  .basketInfo .formAction {
    margin-top: 20px;
  }
  .basketInfo .valCards:first-child {
    width: 100%;
  }
  .basketInfo .valCards:nth-child(2) {
    width: 100%;
  }
  .basketInfo .valCards + .valCards {
    margin-top: 25px;
  }
  .basketList .productCard {
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 11px;
  }
  .basketList .productCard .cardDown {
    width: auto;
    min-width: 66px;
    padding-left: 8px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    justify-content: center;
  }
  .basketList .productCard .imageContainer {
    min-width: 153px;
    padding-right: 8px;
    width: 153px;
    margin-bottom: 0px;
  }
  .basketList .productCard .priceWrapper {
    width: 100%;
  }
  .catalogHead .catalogMenu {
    grid-template-columns: repeat(2, 1fr);
  }
  .viewControl,
  .pageCountControl {
    display: none;
  }
  .catalogCount {
    padding-right: 12px;
  }
  .catalogControls {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalogControls .pagination {
    padding-left: 5px;
    padding-right: 0px;
  }
  .catalogControls:last-child {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalogControls:last-child .catalogCount {
    padding-right: 12px;
  }
  .catalogList.grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categoryHead {
    padding: 12px 20px;
    gap: 20px;
  }
  .categoryHead .schemeImage {
    max-width: calc(50% - 10px);
  }
  .productContent {
    grid-template-columns: 1fr;
    padding-left: 8px;
    padding-right: 8px;
    grid-template-rows: none;
  }
  .rightProductScheme {
    padding-left: 0px;
    padding-top: 40px;
  }
  .leftProductScheme {
    padding-right: 0px;
  }
  .productParams {
    grid-column: initial;
    grid-row: initial;
    padding-top: 32px;
  }
  .productDelivery {
    grid-column: initial;
  }
  .productHead {
    grid-column: initial;
  }
  .productPanel {
    padding-top: 10px;
  }
  .productPanel .productImage {
    height: auto;
  }
  .paramsTable .paramLine {
    padding: 4px 10px 2px;
    display: block;
    line-height: 19px;
  }
  .paramsTable .cardCaption {
    display: inline;
    line-height: 19px;
  }
  .productAction {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
  }
  .productAction .fastOrderContainer {
    padding-left: 30px;
    padding-right: 30px;
  }
  .productAction .productPrice,
  .productAction .btnContainer {
    order: 1;
  }
  .productDelivery {
    padding-top: 14px;
  }
  .fullBrandsList {
    columns: 3;
  }
  .fullBrandsList a {
    font-size: 14px;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .modalContent {
    padding: 20px 10px 30px;
  }
  .menuContainer {
    height: 100vh;
  }
  .menuInner {
    padding: 100px calc((100% - 470px) / 2) 50px;
    width: 576px;
    margin-left: auto;
    position: absolute;
    top: 0;
    right: 0;
  }
  .textList li + li, .textContainer ul li + li {
    margin-top: 20px;
  }
}
@media (max-width: 479px) {
  .siteHeader .logoLink {
    width: 52px;
    min-width: 52px;
  }
  .siteHeader .logoLink img {
    height: 28px;
  }
  .headerContent {
    gap: 10px;
  }
  .headContact {
    padding-left: 0px;
    align-items: flex-end;
    text-align: right;
    padding-top: 3px;
  }
  .headContact .themeIcon {
    display: none;
  }
  .headContact .shedule {
    font-size: 11px;
    margin-bottom: 0px;
  }
  .phoneLink {
    font-size: 17px;
    line-height: 22px;
  }
  .heroAdd {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
  .heroAdd + .heroInner {
    padding-right: var(--container-padding);
  }
  .heroInner {
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
  }
  .hero .searchLine {
    width: calc(100% - var(--container-padding) * 2);
    left: var(--container-padding);
  }
  .hero .catalogMenu {
    margin-top: 50px;
  }
  .hero .brandsList {
    grid-template-columns: repeat(3, 1fr);
    padding-top: 50px;
  }
  .hero .brandsList .hideMd {
    display: none;
  }
  .heroContent {
    padding-top: 35px;
  }
  .heroTitle {
    font-size: 32px;
    line-height: 44px;
  }
  .headContactsList {
    flex-direction: column;
  }
  .headContactsList li {
    padding-left: calc(50% - 15px);
    width: 100%;
  }
  .headContactsList li + li {
    margin-top: 20px;
  }
  .headContactsList a {
    display: block;
    padding-left: 15px;
  }
  .headContactsList .logo {
    position: absolute;
    top: 50%;
    transform: translate(-100%, -50%);
    left: calc(50% - 15px);
  }
  .siteFooter:after {
    background: linear-gradient(to bottom, #05a7b6 0%, rgba(75, 196, 155, 0.5) 100%);
  }
  .pageAboutSection .textContainer .textList, .pageAboutSection .textContainer ul {
    columns: 1;
    column-gap: 0px;
  }
  .productSlider {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
  }
  .productSlider .splide__track {
    overflow: visible;
  }
  .contactsPanel {
    grid-template-columns: initial;
    mask-image: none;
    background-image: none;
    background-color: transparent;
  }
  .contactsPanel .contactItem {
    padding: 32px 11px 22px;
    background-color: #2a2f32;
    background-image: url(../img/pattern.png);
    background-repeat: repeat-y;
    background-position: center;
  }
  .productCard .cardContent {
    min-height: 0px;
  }
  .productCard.horizontal .basketContent {
    width: 187px;
  }
  .productCard.horizontal .cardDown {
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .productCard.horizontal .priceWrapper {
    width: 100%;
  }
  .productCard.horizontal .cardAction {
    width: 100%;
    padding-bottom: 12px;
    padding-top: 12px;
  }
  .basketList .productCard .cardDown {
    min-width: 40px;
    margin-top: 0px;
  }
  .basketList .productCard .imageContainer {
    min-width: 83px;
    height: 80px;
    width: calc(100% - 187px - 40px);
  }
  .startGradient:after,
  .endGradient:after,
  .middleGradient:after {
    display: none;
  }
  .shopSection + .startGradient:after, .shopSection + .endGradient:after, .shopSection + .middleGradient:after {
    display: none;
  }
  .pagination .countBtn {
    background-color: #05a7b6;
  }
  .pagination .countBtn .icon {
    border-color: #fff;
  }
  .pagination .countBtn .icon:before, .pagination .countBtn .icon:after {
    border-color: #fff;
  }
  .catalogControls {
    grid-template-columns: 1fr 236px;
  }
  .catalogControls:last-child {
    grid-template-columns: 1fr 236px;
  }
  .catalogList.grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .categoryHead {
    gap: 12px;
    flex-direction: column;
  }
  .categoryHead .schemeImage {
    max-width: 100%;
  }
  .rangeFilter {
    padding-left: 12px;
    padding-right: 12px;
  }
  .rangeFilter .priceInputs {
    gap: 10px;
  }
  .rangeFilter .priceInput input {
    flex-grow: initial;
  }
  .filterSelect .choices__list--single {
    padding-left: 12px;
  }
  .filterSelect .choices__list--dropdown .choices__list,
  .filterSelect .choices__list[aria-expanded] .choices__list {
    margin-top: 12px;
  }
  .filterSelect .choices__list--dropdown,
  .filterSelect .choices__list[aria-expanded] {
    padding: 1px 12px 12px;
  }
  .fullBrandsList {
    columns: 2;
  }
  .modalContainer {
    padding: 42px 15px 22px;
  }
  .modal .closeBtn {
    left: auto;
    right: 0px;
  }
}

/*# sourceMappingURL=style.css.map */

a:hover, a:focus {
  text-decoration: inherit;
}