@charset "UTF-8";


a, a:hover, a:visited {
    text-decoration: none;
    color: black;
}

.button, .choices__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  font-size: 16px;
  -webkit-box-align: center
}

.button, .button.orange {
  color: var(--white);
  background-color: var(--orange-500)
}

.button {
  border-radius: 1000px;
  min-height: 50px;
  padding: 4px 20px;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-weight: 700
}

.button svg {
  font-size: 20px
}

.button.orange-light {
  color: var(--orange-500);
  background-color: var(--orange-100)
}

.button.button-arrow {
  gap: 20px;
  padding-left: 30px;
  padding-right: 4px
}

.button.button-arrow svg {
  font-size: 30px
}

.button.button-arrow .arrow {
  color: var(--orange-500);
  font-size: 50px;
  padding: 9px;
  border-radius: 50%;
  background-color: var(--white)
}

.title-section {
  line-height: 111%;
  font-size: 38px
}

.range-slider {
  height: 4px;
  background-color: var(--gray-150)
}

.range-slider .range-slider__range {
  background: var(--orange-500)
}

.range-slider .range-slider__thumb {
  background: var(--orange-500);
  width: 10px;
  height: 10px
}

input[type=checkbox], input[type=radio].checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: 0;
  margin: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border: 1px solid var(--gray-150);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  -webkit-transition: .25s ease;
  transition: .25s ease;
  background-color: var(--white)
}

input[type=checkbox]::after, input[type=radio].checkbox::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 6px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translate(3px, -3px) rotate(45deg) scale(0);
  -ms-transform: translate(3px, -3px) rotate(45deg) scale(0);
  transform: translate(3px, -3px) rotate(45deg) scale(0);
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transition: .2s ease;
  transition: .2s ease
}

.header__body, .header__languages, input[type=radio] {
  position: relative
}

input[type=checkbox]:checked, input[type=radio].checkbox:checked {
  background: var(--orange-500);
  border-color: var(--orange-500)
}

input[type=checkbox]:checked::after, input[type=radio].checkbox:checked::after {
  -webkit-transform: translate(3px, -3px) rotate(45deg) scale(1);
  -ms-transform: translate(3px, -3px) rotate(45deg) scale(1);
  transform: translate(3px, -3px) rotate(45deg) scale(1)
}

input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: 0;
  margin: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: .25s ease;
  transition: .25s ease;
  background-color: var(--white)
}

input[type=radio]:checked {
  border-width: 6px;
  border-color: var(--orange-500)
}

.choices {
  width: 100%
}

.choices[data-type*=select-one]:after {
  width: 40px;
  height: 40px;
  position: absolute;
  top: calc(50% + 2.5px);
  right: 8px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17 7L10 14L3 7" stroke="%23282828" stroke-linecap="round" stroke-linejoin="round" /></svg>') center/20px 20px no-repeat;
  background-color: rgba(var(--white-rgb), .04);
  border-radius: 50%;
  border: 2px solid transparent
}

.choices[data-type*=select-one].is-open:after {
  -webkit-transform: translateY(calc(-50% + 5px)) scaleY(-1);
  -ms-transform: translateY(calc(-50% + 5px)) scaleY(-1);
  transform: translateY(calc(-50% + 5px)) scaleY(-1);
  border-color: transparent
}

.choices[data-type*=select-one] .choices__inner.error {
  border-color: var(--red-300);
  background-color: rgba(var(--red-300-rgb), .4)
}

.choices__inner {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  color: var(--black-900);
  -webkit-transition: border-color .3s ease 0s, background-color .3s ease 0s;
  transition: border-color .3s ease 0s, background-color .3s ease 0s;
  background-color: var(--white);
  padding: 0 20px !important;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: 48px
}

.choices__inner .choices__list {
  padding: 0 30px 0 0 !important
}

.is-flipped.is-open .choices__inner, .is-open .choices__inner {
  border-radius: 12px
}

.choices__item--selectable[data-value="0"] {
  color: var(--gray-500)
}

.categories-menu__link, .categories__card-title, body {
  color: var(--black-900)
}

.choices__list--dropdown .choices__item--selectable {
  padding-right: 10px
}

.choices__list--single {
  padding: 0
}

.choices__list--dropdown, .is-flipped .choices__list--dropdown {
  width: 100%;
  margin-top: 4px;
  border: none;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px !important;
  overflow: visible
}

.choices__list--dropdown .choices__list, .is-flipped .choices__list--dropdown .choices__list {
  padding: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  max-height: 260px
}

.choices__list--dropdown .choices__list::-webkit-scrollbar, .is-flipped .choices__list--dropdown .choices__list::-webkit-scrollbar {
  width: 10px
}

.choices__list--dropdown .choices__list::-webkit-scrollbar-track, .is-flipped .choices__list--dropdown .choices__list::-webkit-scrollbar-track {
  border-radius: 0 24px 24px 0;
  background: var(--white)
}

.choices__list--dropdown .choices__list::-webkit-scrollbar-thumb, .is-flipped .choices__list--dropdown .choices__list::-webkit-scrollbar-thumb {
  background: var(--gray-200);
  border-radius: 5px
}

.is-flipped .choices__list--dropdown {
  margin-top: 0;
  margin-bottom: 4px
}

.choices__item.choices__item--choice[data-value="0"] {
  display: none
}

.choices__item.choices__item--choice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 8px 8px 18px;
  min-height: 48px;
  border-radius: 5px;
  font-size: 18px;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-transition: background-color .3s, border-color .3s;
  transition: background-color .3s, border-color .3s
}

.header__body, .wrapper {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal
}

.choices__item.choices__item--choice.is-highlighted {
  background-color: transparent
}

.choices__item.choices__item--choice.is-selected {
  border-color: var(--orange-300);
  background-color: rgba(var(--white-rgb), .04)
}

.font-thin {
  font-weight: 100
}

.font-extraLight {
  font-weight: 200
}

.font-light {
  font-weight: 300
}

.font-normal {
  font-weight: 400
}

.font-medium {
  font-weight: 500
}

.font-semibold {
  font-weight: 600
}

.font-bold {
  font-weight: 700
}

.font-extraBold {
  font-weight: 800
}

.font-black {
  font-weight: 900
}

body {
  background-color: var(--gray-50);
  font-family: var(--font-Nunito);
  font-size: 14px
}

.header__languages-button, .header__languages-list, .header__main, .header__search {
  background-color: var(--white)
}

body._lock-scroll {
  overflow: hidden
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  overflow: hidden
}

.content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

._container {
  padding: 0 calc(var(--container-padding)/ 2);
  margin: 0 auto;
  max-width: var(--max-width-container)
}

.header__wrapper {
  padding-top: 20px
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 1173px;
  margin: 0 auto
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 30px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px
}

.header__link {
  font-weight: 400;
  font-size: 14px;
  color: var(--gray-600)
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px
}

.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px
}

.header__contact img {
  width: 24px;
  height: 24px
}

.header__languages-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border-radius: 1000px;
  padding: 6px 10px
}

.header__languages-value-img {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  -o-object-fit: cover;
  object-fit: cover
}

.header__languages-value {
  font-weight: 400;
  font-size: 16px
}

.header__languages-arrow {
  font-size: 28px
}

.header__languages-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s
}

.header__languages-list.open {
  opacity: 1;
  pointer-events: all
}

.header__languages-list button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 4px 8px;
  font-size: 16px
}

.header__languages-img {
  width: 100%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.header__buttons, .header__main {
  display: -webkit-box;
  display: -ms-flexbox
}

.header__languages-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.header__main {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 40px;
  border-radius: 30px;
  gap: 12px;
  -webkit-transition: all .1s ease .25s;
  transition: all .1s ease .25s;
  z-index: 100
}

.header__logo {
  width: 100%;
  max-width: 80px
}

.header__buttons {
  display: flex;
  gap: 10px
}

.header__search-body {
  width: 100%;
  max-width: 395px
}

.header__search {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  border-radius: 100px;
  padding: 13px 20px;
  border: 1px solid var(--gray-200);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all .3s ease 0s, top 0s, -webkit-transform 0s;
  transition: all .3s ease 0s, top 0s, -webkit-transform 0s;
  transition: all .3s ease 0s, transform 0s, top 0s;
  transition: all .3s ease 0s, transform 0s, top 0s, -webkit-transform 0s
}

.header__button-icon, .header__counter {
  -webkit-box-align: center;
  display: -ms-flexbox
}

.header__burger svg, .header__menu, .header__search input {
  -webkit-transition: all .3s ease 0s
}

.header__search:has(input:focus) {
  border-color: var(--orange-500)
}

.header__search svg {
  font-size: 20px;
  color: var(--orange-500)
}

.header__search input {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  transition: all .3s ease 0s
}

.header__search input::-webkit-input-placeholder {
  color: var(--gray-500)
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px
}

.header__button-icon {
  position: relative;
  font-size: 36px;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-color: transparent
}

.header__button-icon-text {
  font-size: 16px;
  display: none
}

.header__counter {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--orange-500);
  font-size: 10px;
  color: var(--white)
}

.header__burger {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 32px;
  color: var(--orange-500);
  display: none;
  width: 32px;
  height: 32px;
  position: relative
}

.header__burger svg {
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s ease 0s
}

.header__burger svg.close, .header__burger.open-menu .open {
  opacity: 0
}

.header__burger.open-menu .close {
  opacity: 1
}

.header__menu {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  background-color: var(--white);
  border-radius: 0 0 30px 30px;
  max-height: 0%;
  overflow: hidden;
  transition: all .3s ease 0s;
  z-index: 50
}

.categories-menu, .categories__card-all, .header__cart, .questions__head svg {
  -webkit-transition: all .3s ease 0s
}

.header__menu.open-menu {
  max-height: 100%
}

.header__menu-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 40px 200px
}

.header__cart, .header__cart-body {
  display: -ms-flexbox;
  -ms-flex-direction: column
}

.header__cart {
  border-radius: 30px;
  background: var(--white);
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 100%;
  max-width: 404px;
  position: absolute;
  z-index: 10;
  right: 0;
  top: calc(100% - 5px);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  pointer-events: none;
  opacity: 0;
  transition: all .3s ease 0s;
  padding-top: 30px;
  padding-bottom: 30px
}

.header__cart.open {
  opacity: 1;
  pointer-events: all
}

.header__cart-body {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding-left: 30px;
  padding-right: 30px
}

.header__cart-min {
  width: 100%;
  padding: 6px 0;
  border-radius: 100px;
  background-color: var(--red-100);
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px
}

.header__cart-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--black-900)
}

.header__cart-product {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 30px;
  padding-right: 30px
}

.header__cart-product:not(:last-child) {
  border-bottom: 1px solid var(--gray-150)
}

.header__cart-product:not(:first-child) {
  padding-top: 20px
}

.header__cart-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 15px
}

.header__cart-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px
}

.categories-menu, .header__cart-methods {
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical
}

.header__cart-price .title {
  font-size: 16px
}

.header__cart-price .line {
  height: 1px;
  background-color: var(--gray-150);
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

.categories-menu, .categories__card, .hero__texts, .paint__texts {
  background-color: var(--white)
}

.header__cart-price .value {
  font-size: 20px
}

.header__cart-total .title {
  font-weight: 700;
  font-size: 20px
}

.header__cart-total .value {
  font-weight: 700;
  font-size: 26px;
  color: var(--orange-500)
}

.header__cart-methods {
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px
}

.header__cart-method {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px
}

.header__cart-method span {
  color: var(--gray-600)
}

.header__cart-submit {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center
}

.categories-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  z-index: 100;
  border-radius: 0 30px 30px 0;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 30px;
  overflow: auto;
  transition: all .3s ease 0s;
  pointer-events: none;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%)
}

.advantages__body, .categories__card, .hero__img img, .hero__texts, .paint__img, .paint__texts {
  border-radius: 30px
}

.categories-menu__link, .hero__body {
  display: -webkit-box;
  display: -ms-flexbox
}

.categories-menu.open {
  pointer-events: all;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0)
}

.categories-menu__close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 25px
}

.categories-menu__link {
  padding: 10px 20px;
  font-size: 20px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-100)
}

.hero__body {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 35px
}

.hero__bottom, .hero__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-direction: normal
}

.hero__texts {
  width: 100%;
  max-width: 510px;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
  padding: 40px
}

.hero__bottom {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 28px
}

.categories__body, .questions__body {
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal
}

.hero__title {
  line-height: 96%;
  letter-spacing: -.01em;
  font-size: 52px
}

.categories__card-title, .hero__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 120%
}

.hero__img {
  width: 100%
}

.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 280px
}

.categories__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 35px;
  padding-bottom: 35px
}

.categories__cards {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(327px, 1fr));
  gap: 20px
}

.categories__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 20px
}

.categories__card-texts {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px 0 30px 30px
}

.categories__card-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  transition: all .3s ease 0s;
  font-size: 16px;
  line-height: 150%;
  white-space: nowrap
}

.categories__card-img {
  width: 100%;
  max-width: 220px;
  max-height: 200px
}

.categories__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.advantages {
  padding-top: 35px;
  padding-bottom: 35px
}

.advantages__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--white);
  gap: 66px;
  padding: 70px
}

.advantages__list {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px
}

.advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.advantages__item-img {
  width: 44px;
  height: 44px
}

.advantages__item-desc {
  font-weight: 400;
  line-height: 120%;
  text-align: center;
  font-size: 20px
}

.paint__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 30px;
  padding-top: 35px;
  padding-bottom: 35px
}

.paint__img {
  width: 100%;
  max-width: 616px;
  max-height: 404px;
  overflow: hidden
}

.paint__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.paint__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 40px
}

.paint__title {
  line-height: 111%;
  font-size: 38px;
  margin-bottom: 20px
}

.paint__category, .paint__desc {
  font-size: 16px;
  line-height: 125%
}

.paint__categories {
  max-width: 356px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 10px
}

.paint__category {
  border-radius: 100px;
  padding: 8px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: var(--gray-50)
}

.questions__body, .trust {
  padding-top: 35px;
  padding-bottom: 35px
}

.paint__category::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--orange-500)
}

.paint__desc {
  margin-bottom: 20px
}

.paint__button-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end
}

.paint__top, .trust__title br {
  display: none
}

.trust__body {
  background: var(--white);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  height: 520px
}

.trust__title {
  font-weight: 400;
  line-height: 111%;
  position: absolute;
  max-width: 338px;
  bottom: 50px;
  left: 50px
}

.footer__email, .footer__title {
  font-weight: 700
}

.questions__body, .trust__mark {
  display: -webkit-box;
  display: -ms-flexbox
}

.trust__mark {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 22px;
  z-index: 0;
  top: 70px;
  left: 70px
}

.trust__mark::after, .trust__mark::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%
}

.trust__mark::before {
  background-color: var(--orange-500);
  z-index: -1
}

.trust__mark::after {
  z-index: -2;
  background-color: var(--orange-150);
  -webkit-animation: pulse 1.5s ease 0s infinite normal both;
  animation: pulse 1.5s ease 0s infinite normal both
}

.trust__bg {
  position: absolute;
  width: 1701px;
  top: -15px;
  left: 187px
}

.trust__bg img {
  width: 100%;
  height: auto
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2)
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2)
  }
}

.questions__body {
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column
}

.questions__col, .questions__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  gap: 20px
}

.questions__grid {
  display: flex
}

.questions__col {
  width: 100%;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.footer__body, .questions__head {
  display: -webkit-box;
  display: -ms-flexbox
}

.questions__item {
  background: var(--white);
  border-radius: 30px;
  padding-left: 40px;
  padding-right: 40px
}

.questions__head {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px
}

.questions__head span {
  line-height: 120%;
  font-size: 20px
}

.questions__head svg {
  font-size: 32px;
  color: var(--orange-500);
  transition: all .3s ease 0s
}

.questions__head._active svg {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1)
}

.questions__answer {
  font-size: 16px;
  margin-top: -20px;
  padding-bottom: 30px
}

.footer {
  background-color: var(--black-800);
  color: var(--white);
  border-radius: 30px 30px 0 0;
  margin-top: 35px
}

.footer__body {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
  padding-top: 50px;
  padding-bottom: 50px
}

.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px
}

.footer__left, .footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px
}

.footer__logo-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px
}

.footer__logo {
  width: 153px
}

.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px
}

.footer__info, .footer__info-col {
  display: -webkit-box;
  display: -ms-flexbox
}

.footer__contact {
  width: 32px;
  height: 32px;
  border-radius: 50%
}

.footer__contact img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.footer__email {
  font-family: var(--font-family);
  font-size: 24px;
  color: var(--white)
}

.footer__company, .footer__info-value {
  color: var(--gray-400)
}

.footer__info {
  display: flex;
  gap: 40px
}

.footer__info-col {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px
}

.footer__info-item, .footer__right {
  display: -webkit-box;
  display: -ms-flexbox
}

.footer__info-item {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 14px;
  gap: 2px
}

.footer__link, .footer__title {
  font-size: 16px
}

.footer__right {
  display: flex;
  gap: 60px
}

.footer__bottom, .footer__col {
  display: -webkit-box;
  display: -ms-flexbox
}

.footer__col {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px
}

.footer__bottom {
  display: flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.footer__button {
  width: 100%;
  max-width: 163px
}

.footer__company {
  width: 100%;
  padding: 0 40px;
  min-height: 50px;
  background-color: var(--gray-800);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end
}

.page {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

@media (min-width:375px) {
  .max-mb {
    display: none
  }
}

@media (min-width:680px) {
  .max-sm {
    display: none
  }
}

@media (min-width:768px) {
  .max-md {
    display: none
  }
}

@media (min-width:992px) {
  .max-lg {
    display: none
  }
}

@media (min-width:1282px) {
  .max-xl {
    display: none
  }
}

@media (min-width:1366px) {
  .max-xl2 {
    display: none
  }
}

@media (max-width:1366px) {
  .min-xl2 {
    display: none
  }

  .header__nav {
    -webkit-column-gap: calc(15px - -15 * (100vw - 375px)/ 991);
    -moz-column-gap: calc(15px - -15 * (100vw - 375px)/ 991);
    column-gap: calc(15px - -15 * (100vw - 375px)/ 991)
  }

  .header__buttons {
    gap: calc(8px - -2 * (100vw - 375px)/ 991)
  }

  .header__search-body {
    max-width: calc(350px - -45 * (100vw - 992px)/ 374)
  }
}

@media (max-width:1282px) {
  .title-section {
    font-size: calc(28px - -10 * (100vw - 375px)/ 907)
  }

  .min-xl {
    display: none
  }

  .hero__body {
    gap: calc(16px - -4 * (100vw - 768px)/ 514);
    padding-top: calc(16px - -4 * (100vw - 768px)/ 514);
    padding-bottom: calc(25px - -10 * (100vw - 375px)/ 907)
  }

  .advantages, .categories__body {
    padding-top: calc(25px - -10 * (100vw - 375px)/ 907);
    padding-bottom: calc(25px - -10 * (100vw - 375px)/ 907)
  }

  .hero__texts {
    gap: calc(10px - -20 * (100vw - 375px)/ 907)
  }

  .hero__title {
    font-size: calc(40px - -12 * (100vw - 375px)/ 907)
  }

  .categories__body {
    gap: calc(24px - -6 * (100vw - 375px)/ 907)
  }

  .categories__cards {
    gap: calc(12px - -8 * (100vw - 375px)/ 907)
  }

  .advantages__body {
    gap: calc(28px - -38 * (100vw - 992px)/ 290);
    padding-top: calc(30px - -40 * (100vw - 992px)/ 290);
    padding-bottom: calc(30px - -40 * (100vw - 992px)/ 290);
    padding-left: calc(35px - -35 * (100vw - 992px)/ 290);
    padding-right: calc(35px - -35 * (100vw - 992px)/ 290)
  }

  .advantages__list {
    gap: calc(20px - -30 * (100vw - 992px)/ 290)
  }

  .advantages__item-desc {
    font-size: calc(16px - -4 * (100vw - 375px)/ 907)
  }

  .paint__body {
    padding-top: calc(25px - -10 * (100vw - 375px)/ 907);
    padding-bottom: calc(25px - -10 * (100vw - 375px)/ 907)
  }

  .paint__texts {
    padding: calc(20px - -20 * (100vw - 992px)/ 290)
  }

  .questions__body, .trust {
    padding-top: calc(25px - -10 * (100vw - 375px)/ 907);
    padding-bottom: calc(25px - -10 * (100vw - 375px)/ 907)
  }

  .trust__body {
    height: calc(383px - -137 * (100vw - 768px)/ 514)
  }

  .trust__title {
    bottom: calc(30px - -20 * (100vw - 768px)/ 514);
    left: calc(30px - -20 * (100vw - 768px)/ 514)
  }

  .trust__mark {
    top: calc(50px - -20 * (100vw - 768px)/ 514);
    left: calc(50px - -20 * (100vw - 768px)/ 514)
  }

  .trust__bg {
    width: calc(941px - -760 * (100vw - 768px)/ 514);
    top: calc(11px - 26 * (100vw - 768px)/ 514);
    left: calc(130px - -57 * (100vw - 768px)/ 514)
  }

  .questions__body {
    gap: calc(20px - -10 * (100vw - 768px)/ 514)
  }

  .questions__col, .questions__grid {
    gap: calc(12px - -8 * (100vw - 375px)/ 907)
  }

  .footer {
    margin-top: calc(25px - -10 * (100vw - 375px)/ 907)
  }

  .footer__body {
    gap: calc(30px - -20 * (100vw - 768px)/ 514);
    padding-top: calc(40px - -10 * (100vw - 768px)/ 514);
    padding-bottom: calc(40px - -10 * (100vw - 768px)/ 514)
  }

  .footer__right {
    gap: calc(30px - -30 * (100vw - 768px)/ 514)
  }

  .footer__link {
    font-size: calc(14px - -2 * (100vw - 768px)/ 514)
  }
}

@media (max-width:992px) {
  .min-lg {
    display: none
  }

  ._container {
    padding: 0 32px
  }

  .header__search-body {
    max-width: 350px
  }

  .header__main.open-menu {
    border-radius: 30px 30px 0 0;
    -webkit-transition: all .1s ease 0s;
    transition: all .1s ease 0s
  }

  .header__menu {
    display: block
  }

  .header__top {
    margin: 0;
    width: auto;
    -webkit-column-gap: 47px;
    -moz-column-gap: 47px;
    column-gap: 47px
  }

  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }

  .hero__texts {
    max-width: 100%
  }

  .hero__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }

  .advantages__body, .hero__body, .paint__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal
  }

  .hero__body {
    -ms-flex-direction: column;
    flex-direction: column
  }

  .hero__desc {
    max-width: 305px
  }

  .categories__card-img {
    max-width: calc(161px - -59 * (100vw - 768px)/ 224);
    max-height: calc(180px - -20 * (100vw - 768px)/ 224)
  }

  .advantages__body {
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: transparent;
    padding: 0;
    gap: 40px
  }

  .advantages__title {
    text-align: center
  }

  .advantages__list {
    width: 100%;
    gap: 45px
  }

  .paint__top {
    display: block
  }

  .paint__body {
    -ms-flex-direction: column;
    flex-direction: column
  }

  .paint__img {
    max-width: 100%
  }

  .paint__title {
    text-align: center
  }

  .paint__categories {
    max-width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0
  }

  .paint__category {
    background: var(--white)
  }

  .paint__texts {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    padding: 0;
    gap: 30px
  }

  .paint__desc {
    text-align: right;
    margin: 0;
    max-width: 225px
  }

  .paint__button-body {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
  }

  .footer__main, .questions__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .footer__left {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--black-700);
    gap: 30px
  }

  .footer__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }

  .footer__right {
    padding-top: 30px
  }
}

@media (max-width:992px) and (max-width:768px) {
  .header__top {
    -webkit-column-gap: calc(25px - -22 * (100vw - 680px)/ 88);
    -moz-column-gap: calc(25px - -22 * (100vw - 680px)/ 88);
    column-gap: calc(25px - -22 * (100vw - 680px)/ 88)
  }

  .paint__texts {
    gap: calc(22px - -8 * (100vw - 375px)/ 393)
  }
}

@media (max-width:992px) and (max-width:680px) {
  .header__top {
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px
  }
}

@media (max-width:992px) and (max-width:992px) {
  .advantages__body {
    gap: calc(28px - -12 * (100vw - 375px)/ 617)
  }

  .advantages__list {
    gap: calc(22px - -23 * (100vw - 375px)/ 617)
  }

  .footer__left {
    gap: calc(15px - -15 * (100vw - 375px)/ 617)
  }
}

@media (max-width:992px) and (max-width:375px) {
  .advantages__body {
    gap: 28px
  }

  .advantages__list, .paint__texts {
    gap: 22px
  }

  .footer__left {
    gap: 15px
  }
}

@media (max-width:768px) {
  .header__main, .header__menu-body {
    padding-left: calc(24px - -16 * (100vw - 375px)/ 393);
    padding-right: calc(24px - -16 * (100vw - 375px)/ 393)
  }

  .min-md {
    display: none
  }

  .header__cart-body, .header__cart-product {
    padding-left: calc(25px - -5 * (100vw - 375px)/ 393);
    padding-right: calc(25px - -5 * (100vw - 375px)/ 393)
  }

  .header__cart {
    padding-top: calc(25px - -5 * (100vw - 375px)/ 393);
    padding-bottom: calc(25px - -5 * (100vw - 375px)/ 393)
  }

  .header__cart-min {
    font-size: calc(12px - -2 * (100vw - 375px)/ 393)
  }

  .header__cart-price, .header__cart-prices {
    gap: calc(10px - -5 * (100vw - 375px)/ 393)
  }

  .header__cart-price .title {
    font-size: calc(14px - -2 * (100vw - 375px)/ 393)
  }

  .header__cart-price .value {
    font-size: calc(16px - -4 * (100vw - 375px)/ 393)
  }

  .hero__body {
    padding-top: 16px;
    gap: 16px
  }

  .hero__texts {
    padding: calc(0px - -40 * (100vw - 375px)/ 393)
  }

  .questions__answer, .questions__head {
    padding-bottom: calc(25px - -5 * (100vw - 375px)/ 393)
  }

  .categories__card-img {
    max-width: 161px;
    max-height: 180px
  }

  .paint__body {
    row-gap: calc(22px - -8 * (100vw - 375px)/ 393)
  }

  .paint__title {
    font-size: calc(28px - -10 * (100vw - 375px)/ 393);
    margin-bottom: calc(18px - -2 * (100vw - 375px)/ 393)
  }

  .paint__categories {
    gap: calc(8px - -2 * (100vw - 375px)/ 393)
  }

  .trust__title {
    bottom: 30px;
    left: 30px
  }

  .trust__mark {
    top: 50px;
    left: 50px
  }

  .trust__body {
    height: 383px
  }

  .trust__bg {
    width: 941px;
    top: 11px;
    left: 130px
  }

  .questions__body {
    gap: 20px
  }

  .questions__item {
    padding-left: calc(25px - -15 * (100vw - 375px)/ 393);
    padding-right: calc(25px - -15 * (100vw - 375px)/ 393)
  }

  .questions__head {
    padding-top: calc(25px - -5 * (100vw - 375px)/ 393)
  }

  .questions__head span {
    font-size: calc(18px - -2 * (100vw - 375px)/ 393)
  }

  .questions__answer {
    margin-top: calc(-10px - 10 * (100vw - 375px)/ 393)
  }

  .footer__body {
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 40px
  }

  .footer__info {
    gap: calc(16px - -24 * (100vw - 375px)/ 393)
  }

  .footer__info-col {
    gap: calc(16px - -4 * (100vw - 375px)/ 393)
  }

  .footer__link {
    font-size: 14px
  }

  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start
  }

  .footer__info {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .footer__main {
    gap: 30px
  }

  .footer__left, .footer__right {
    padding: 0;
    border: 0
  }

  .footer__right {
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}

@media (max-width:768px) and (max-width:768px) {
  .hero__body {
    padding-top: calc(25px - 9 * (100vw - 375px)/ 393);
    gap: calc(25px - 9 * (100vw - 375px)/ 393)
  }

  .trust__body {
    height: 370px
  }

  .trust__bg {
    width: calc(556px - -385 * (100vw - 375px)/ 393);
    top: calc(84px - 73 * (100vw - 375px)/ 393);
    left: calc(0 - -130 * (100vw - 375px)/ 393)
  }
}

@media (max-width:768px) and (max-width:375px) {
  .hero__body {
    padding-top: 25px;
    gap: 25px
  }

  .trust__bg {
    width: 556px;
    top: 84px;
    left: 0
  }
}

@media (max-width:768px) and (max-width:1282px) {
  .trust__body {
    height: calc(370px - -13 * (100vw - 768px)/ 514)
  }
}

@media (max-width:680px) {
  .header__right, .min-sm {
    display: none
  }

  .header__buttons, .header__menu-body, .header__nav, .header__top, .hero__bottom, .paint__texts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal
  }

  .header__search-body, .trust__title {
    max-width: 100%
  }

  .paint__desc, .trust__title {
    text-align: center
  }

  ._container {
    padding: 0 24px
  }

  .header__top {
    -ms-flex-direction: column;
    flex-direction: column
  }

  .header__buttons {
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%
  }

  .header__buttons button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  .header__nav {
    -ms-flex-direction: column;
    flex-direction: column
  }

  .header__link {
    font-size: 16px;
    color: var(--black-900)
  }

  .header__contact img {
    width: 32px;
    height: 32px
  }

  .header__main {
    border-radius: 20px
  }

  .header__main.open-menu {
    border-radius: 20px;
    -webkit-transition: all .1s ease 0s;
    transition: all .1s ease 0s
  }

  .header__button-icon-text {
    display: block
  }

  .header__menu {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--gray-50);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-y: auto
  }

  .header__menu-body {
    padding-top: 112px;
    padding-bottom: 100px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 22px
  }

  .header__menu-body > .header__search-body { order: 0; }
  .header__menu-body > .header__contacts {
    order: 1;
    justify-content: center;
    width: 100%;
    gap: 12px;
    padding: 0;
  }
  .header__menu-body > .header__top { order: 2; }
  .header__menu-body > .header__button-icon { order: 3; margin-top: 2px; }

  .header__menu-body .header__nav {
    row-gap: 16px;
  }

  .header__menu-body .header__search {
    min-height: 52px;
  }

  .hero__texts {
    background: 0 0
  }

  .hero__bottom {
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start
  }

  .advantages__body {
    background-color: var(--white);
    padding: 45px 50px
  }

  .advantages__list {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  .paint__texts {
    -ms-flex-direction: column;
    flex-direction: column
  }

  .trust__body {
    overflow: visible;
    background: 0 0
  }

  .trust__title {
    position: static
  }

  .trust__title br {
    display: block
  }

  .trust__mark {
    top: auto;
    bottom: 30px;
    left: 30px
  }
}

@media (max-width:680px) and (max-width:680px) {
  .advantages__body {
    padding-top: calc(30px - -15 * (100vw - 375px)/ 305);
    padding-bottom: calc(40px - -5 * (100vw - 375px)/ 305);
    padding-left: calc(35px - -15 * (100vw - 375px)/ 305);
    padding-right: calc(35px - -15 * (100vw - 375px)/ 305)
  }
}

@media (max-width:680px) and (max-width:375px) {
  .advantages__body {
    padding: 30px 35px 40px
  }
}

@media (max-width:568px) {
  .categories-menu {
    max-width: 100%;
    border-radius: 0
  }

  .footer__button {
    max-width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
  }

  .footer__company {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
  }

  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

@media (max-width:375px) {
  .header__main, .header__menu-body {
    padding-left: 24px;
    padding-right: 24px
  }

  .header__cart, .hero__body {
    padding-bottom: 25px
  }

  .title-section {
    font-size: 28px
  }

  .min-mb {
    display: none
  }

  .header__nav {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px
  }

  .header__buttons {
    gap: 8px
  }

  .header__cart-body, .header__cart-product {
    padding-left: 25px;
    padding-right: 25px
  }

  .header__cart {
    padding-top: 25px
  }

  .header__cart-min {
    font-size: 12px
  }

  .header__cart-price, .header__cart-prices {
    gap: 10px
  }

  .header__cart-price .title {
    font-size: 14px
  }

  .header__cart-price .value {
    font-size: 16px
  }

  .hero__texts {
    gap: 10px;
    padding: 0
  }

  .advantages, .categories__body, .paint__body, .questions__body, .questions__head, .trust {
    padding-top: 25px
  }

  .advantages, .categories__body, .paint__body, .questions__answer, .questions__body, .questions__head, .trust {
    padding-bottom: 25px
  }

  .hero__title {
    font-size: 40px
  }

  .categories__body {
    gap: 24px
  }

  .categories__cards {
    gap: 12px
  }

  .advantages__item-desc {
    font-size: 16px
  }

  .paint__body {
    row-gap: 22px
  }

  .paint__title {
    font-size: 28px;
    margin-bottom: 18px
  }

  .paint__categories {
    gap: 8px
  }

  .questions__col, .questions__grid {
    gap: 12px
  }

  .questions__item {
    padding-left: 25px;
    padding-right: 25px
  }

  .questions__head span {
    font-size: 18px
  }

  .questions__answer {
    margin-top: -10px
  }

  .footer {
    margin-top: 25px
  }

  .footer__info, .footer__info-col {
    gap: 16px
  }
}


@media (max-width: 680px) {
	.header__catalog {
    display: none;
}

.header__languages {
    display: none !important ;
}


	}

@media (max-width:992px) and (min-width:681px) {
  .header__search-body {
    width: 48px;
    height: 48px
  }

  .header__search {
    width: 100%;
    max-width: 48px;
    height: 48px
  }

  .header__search input {
    max-width: 0%
  }

  .header__search svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
  }

  .header__search.open {
    position: absolute;
    max-width: 75%;
    right: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    height: 50px
  }

  .header__search.open input {
    max-width: 100%;
    padding-right: 40px
  }

  .header__search.open svg {
    left: auto;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    right: 20px
  }
}

@media (any-hover:hover) {
  .button, .button.orange {
    -webkit-transition: all .3s ease 0s;
    cursor: pointer
  }

  .button.orange:hover, .button:hover {
    color: var(--orange-500);
    background-color: var(--orange-100)
  }

  input[type=checkbox]:hover, input[type=radio].checkbox:hover, input[type=radio]:hover {
    border-color: var(--orange-500)
  }

  .button {
    transition: all .3s ease 0s
  }

  .button.orange {
    transition: all .3s ease 0s
  }

  .button.orange-light {
    cursor: pointer;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
  }

  .button.orange-light:hover {
    color: var(--white);
    background-color: var(--orange-500)
  }

  input[type=checkbox], input[type=radio].checkbox {
    cursor: pointer;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
  }

  .header__link, input[type=radio] {
    -webkit-transition: all .3s ease 0s;
    cursor: pointer
  }

  input[type=radio] {
    transition: all .3s ease 0s
  }

  .choices__item.choices__item--choice:active, .choices__item.choices__item--choice:hover {
    background-color: rgba(var(--white-rgb), .04)
  }

  .header__link {
    transition: all .3s ease 0s
  }

  .header__link:hover {
    color: var(--black-900)
  }

  .categories-menu__close:hover, .categories-menu__link:hover, .header__button-icon:hover {
    color: var(--orange-500)
  }

  .header__languages-list button {
    cursor: pointer;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
  }

  .header__languages-list button:hover {
    background-color: var(--gray-100)
  }

  .header__button-icon {
    cursor: pointer;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
  }

  .categories-menu__close, .categories-menu__link {
    cursor: pointer;
    -webkit-transition: all .3s ease 0s
  }

  .categories-menu__close {
    transition: all .3s ease 0s
  }

  .categories-menu__link {
    transition: all .3s ease 0s
  }

  .categories__card, .questions__head {
    -webkit-transition: all .3s ease 0s;
    cursor: pointer
  }

  .categories__card:hover .categories__card-all, .questions__head:hover svg {
    color: var(--black-900)
  }

  .categories__card {
    transition: all .3s ease 0s
  }

  .categories__card:hover {
    background-color: var(--gray-50)
  }

  .questions__head {
    transition: all .3s ease 0s
  }


  a.footer__link {
    cursor: pointer;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    color: #ffffff;
  }

  a.footer__link:hover {
    color: var(--orange-500);
  }

  .footer__link {
    cursor: pointer;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
  }

  .footer__link:hover {
    color: var(--orange-500);
  }
}

/* Контейнер хлебных крошек */
.breadcrumb {
    background: transparent;
    padding: 20px 0;
    margin: 0 0 0px 0;
    font-size: 14px;
    margin: 0 20%;
    max-width: 1200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    /* width: max-content; */
    /* padding: 30px 5px 25px; */
}



/* Убираем стандартный bootstrap фон */
.breadcrumb > li + li:before {
    content: "›";
    color: #bbb;
    padding: 0 10px;
}

/* Ссылки */
.breadcrumb li a {
    color: #777;
    text-decoration: none;
    transition: 0.3s;
}

/* Hover */
.breadcrumb li a:hover {
    color: #ff7a00;
}

/* Активный пункт */
.breadcrumb li:last-child a {
    color: #222;
    font-weight: 600;
    pointer-events: none;
}

/* Иконка дома */
.breadcrumb .fa-home {
    font-size: 16px;
    color: #ff7a00;
}

.alert {
    position: relative;
    margin: 20px 0;
    padding: 18px 20px 18px 24px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.5;
    animation: fadeSlideDown 0.35s ease;
	    margin: auto;
}

.alert-success {
    background: #f0fff4;
    border-left: 4px solid #38a169;
    color: #1f3d2b;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
	width: 50%;
}

/* Ссылки внутри уведомления */
.alert-success a {
    color: #2f855a;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.alert-success a:hover {
    color: #276749;
    text-decoration: underline;
}

/* Анимация появления */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.login-panel-bg {
    min-height: 500px;
    padding: 10px 50px;
    display: none !important;
}




.mobile-bottom-menu {
    position: fixed;
    bottom: 10px;
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 14px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 9999;
    border-radius: 22px 22px;
    box-shadow: 0 -6px 24px rgba(0,0,0,.08);
	        height: 54px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        max-width: 100%;
        transition: all .3s ease-out;
}


.mobile-bottom-menu .mb-item {
    flex: 1;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.mobile-bottom-menu .mb-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 22px;
    border-radius: 999px;
    color: #1a1a1a;
    transition: background .15s ease, color .15s ease;
}

.mobile-bottom-menu .mb-icon {
    font-size: 19px;
    line-height: 1;
    color: inherit;
}

.mobile-bottom-menu .mb-text {
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    color: inherit;
}

.mobile-bottom-menu .mb-item.mb-active .mb-pill {
    background: #ffe2c2;
    color: #ff8a00;
}

.mobile-bottom-menu .mb-item:active .mb-pill {
    background: #fff0dc;
}

.mobile-lang-popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    z-index:99999;
    backdrop-filter:blur(4px);
}

.mobile-lang-box{
    position:absolute;
    left:50%;
    top:15%;
    transform:translateX(-50%);
    width:calc(100% - 30px);
    max-width:380px;
    max-height:70vh;
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 15px 50px rgba(0,0,0,.25);
    overflow-y:auto;
}

.mobile-lang-title{
    font-size:16px;
    font-weight:600;
    color:#1a1a1a;
    margin:0 0 14px;
    padding-right:20px;
}

.mobile-lang-list{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.mobile-lang-item{
    width:100%;
    display:flex;
    align-items:center;
    gap:12px;
    border:none;
    background:transparent;
    padding:11px 10px;
    border-radius:10px;
    font-size:15px;
    color:#1a1a1a;
    cursor:pointer;
    text-align:left;
    transition: background .15s ease;
}

.mobile-lang-item:hover{
    background:#fafafa;
}

.mobile-lang-item.active{
    background:#fff4e8;
    color:#ff8a00;
    font-weight:600;
}

.mobile-lang-flag{
    width:22px;
    height:auto;
    border-radius:3px;
    flex-shrink:0;
}

.close-search{
    position:absolute;
    top:10px;
    right:15px;
    font-size:28px;
    line-height:1;
    color:#999;
    cursor:pointer;
}

@media (min-width:768px){
    .mobile-bottom-menu{display:none;}
}

@media (max-width:767px){
    body{padding-bottom:80px !important;}
	
	
	
}
@media (max-width:967px){

	/* Контейнер хлебных крошек */
.breadcrumb {
    background: transparent;
    padding: 20px 0;
    margin: 0 0 0px 0;
    font-size: 14px;
    margin: 0 5%;
    max-width: 1200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    /* width: max-content; */
    /* padding: 30px 5px 25px; */
}

}

/* Global LFbra scrollbar: page and all scrollable components */
* {
    scrollbar-width: thin;
    scrollbar-color: #ff7a00 #f1f1f1;
}

*::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}

*::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
    background-color: #ff7a00 !important;
    border: 2px solid #f1f1f1;
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #e56e00 !important;
}

*::-webkit-scrollbar-thumb:active {
    background-color: #cc6200 !important;
}

/* A slightly narrower scrollbar inside the mobile language popup */
.mobile-lang-box {
    scrollbar-color: #ff7a00 #f6f6f6;
}

.mobile-lang-box::-webkit-scrollbar {
    width: 6px;
}

.mobile-lang-box::-webkit-scrollbar-track {
    margin: 14px 0;
    background: #f6f6f6 !important;
}

.mobile-lang-box::-webkit-scrollbar-thumb {
    border: 1px solid #f6f6f6;
}
