@keyframes a {
  0% {
    transform: translatey(-100%)
  }

  to {
    transform: translatey(0)
  }
}

@keyframes b {
  0% {
    transform: rotate(0)
  }

  to {
    transform: rotate(359deg)
  }
}

.container,
body {
  position: relative
}

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

body {
  margin: 0;
  font-family: Onest-Regular;
  color: #343434
}

body.no-scroll {
  overflow-y: hidden
}

* {
  box-sizing: border-box
}

*,
:focus {
  outline: 0
}

sup {
  font-size: .5em
}

svg {
  transition: all .4s
}

a,
button,
fieldset,
figure,
iframe,
input,
li,
textarea {
  border: 0;
  text-decoration: none;
  color: inherit;
  background: 0 0
}

a,
button,
fieldset,
figure,
iframe,
li {
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit
}

a:active,
button:active,
fieldset:active,
figure:active,
iframe:active,
input:active,
li:active,
textarea:active {
  outline: 0
}

button {
  font-size: inherit
}

ul li {
  list-style: none;
  cursor: default
}

strong {
  font-family: Onest-Bold, Onest-SemiBold, Onest-Medium, Onest-Regular;
  font-weight: 400
}

input,
textarea {
  outline: 0;
  -webkit-appearance: none;
  appearance: none;
  font-family: Onest-Regular
}

input::placeholder,
textarea::placeholder {
  color: inherit;
  font: inherit;
  transition: all .4s
}

textarea {
  resize: none;
  max-height: 100%;
  padding-right: 9px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: #5ab584 #f7f7f7;
  scrollbar-width: thin
}

textarea::-webkit-scrollbar {
  width: 4px
}

textarea::-webkit-scrollbar-track {
  background: #f7f7f7
}

textarea::-webkit-scrollbar-thumb {
  background: #5ab584
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none
}

input[type=number] {
  -moz-appearance: textfield
}

html {
  display: grid;
  grid-template-columns: 100%
}

.wrapper,
body,
html {
  min-height: 100%
}

b {
  font-weight: 400
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: inherit
}

img,
small {
  max-width: 100%
}

img {
  border: 0
}

small {
  display: block
}

input[type=button],
input[type=submit] {
  cursor: pointer
}

picture {
  display: flex
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 1.5px solid #347552
}

.input-wrapper,
.input-wrapper p {
  display: grid
}

.logo {
  display: flex
}

.wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%
}

.wrapper>* {
  width: 100%
}

.button,
.menu li,
.submit,
.tel,
a {
  transition: all .4s
}

.menu li:not(.menu-item-has-children) a {
  transition: none
}

.link-button {
  display: inline-flex;
  justify-content: center;
  align-items: center
}

.underline {
  position: relative
}

.ibg img,
.underline:before {
  position: absolute;
  width: 100%;
  left: 0
}

.underline:before {
  content: "";
  bottom: -2px;
  height: 1px;
  background: 0 0;
  transition: all .4s
}

.form__icon {
  flex-grow: 0;
  flex-shrink: 0
}

.form__check {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none
}

.form__check a:hover,
.text-block a {
  text-decoration: underline
}

.form__check.error .form__icon {
  border-color: #c00
}

.form__check.error .form__text,
.form__check.error .form__text a {
  color: #c00
}

.text-block b,
.text-block h1,
.text-block h2,
.text-block h3,
.text-block strong {
  font-family: Onest-Bold, Onest-SemiBold, Onest-Medium, Onest-Regular
}

.text-block ol,
.text-block ul {
  padding-left: 10px
}

.text-block ol+ul,
.text-block ol ol,
.text-block ul+ul,
.text-block ul ol {
  padding-top: 0 !important
}

.text-block ul li {
  position: relative;
  padding-left: 15px
}

.text-block ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  background: #343434;
  border-radius: 50%
}

.text-block h2+ol,
.text-block h2+ul,
.text-block h3+ol,
.text-block h3+ul,
.text-block h4+ol,
.text-block h4+ul,
.text-block h5+ol,
.text-block h5+ul,
.text-block h6+ol,
.text-block h6+ul,
.text-block p+ol,
.text-block p+ul {
  padding-top: 0
}

.text-block mark {
  background: #4fb07c
}

.is-closing {
  z-index: 1 !important
}

[hidden] {
  display: none !important
}

.img-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.ibg {
  position: relative
}

.ibg img {
  height: 100%;
  top: 0;
  object-fit: cover
}

.d-flex {
  display: flex;
  flex-wrap: wrap
}

.flex {
  display: grid;
  grid-auto-flow: column;
  width: 100%
}

.justify-center {
  justify-content: center
}

.justify-end {
  justify-content: end
}

.justify-start {
  justify-content: start;
  justify-items: start
}

.flex-between {
  justify-content: space-between
}

.align-center {
  align-items: center
}

.align-start {
  align-items: start;
  align-content: start
}

.col {
  justify-items: start
}

.col,
.grid {
  display: grid;
  grid-template-columns: 100%
}

.hide-xs {
  display: block
}

.show-xs {
  display: none
}

.hide-sm {
  display: block
}

.show-sm {
  display: none
}

.hide-md {
  display: block
}

.show-md {
  display: none
}

.hide-xl {
  display: block
}

.menu-link,
.show-xl,
html:not(.loaded) ._dynamic_adapt_,
html:not(.loaded) .catalog__content,
html:not(.loaded) .sub-menu-wrapper,
html:not(.loaded) [data-da*=header__mobile] {
  display: none
}

.menu-link {
  position: relative;
  width: 25px;
  height: 25px;
  order: 10
}

.catalog.menu-link_active .catalog__icon .menu-lines,
.menu-link_active .menu-lines {
  background: 0 0
}

.menu-link_active .menu-lines:after {
  top: 0;
  transform: rotate(-135deg)
}

.menu-link_active .menu-lines:before {
  top: 0;
  transform: rotate(135deg)
}

.menu-lines,
.menu-lines:after,
.menu-lines:before {
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: #44986b;
  transition: .4s
}

.menu-lines {
  top: 50%;
  right: 0;
  transform: translateY(-50%)
}

.menu-lines:after,
.menu-lines:before {
  content: "";
  top: -7px;
  right: 0
}

.menu-lines:after {
  top: 7px
}

body {
  padding-top: 143.5px;
  line-height: 1.375;
  background: #f6f6f6
}

.logo img {
  width: 100%;
  object-fit: contain
}

.section__top {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr auto;
  gap: 15px;
  align-items: center
}

.title {
  line-height: 1.2708333333;
  font-family: Onest-Black
}

.button {
  padding: .625em 1.125em;
  min-height: 45px;
  align-self: center;
  color: #44986b;
  font-family: Onest-Medium;
  background: #e0f1e9;
  border-radius: 8px
}

a.button {
	line-height:30px;
	text-align:center;
	display:block;
	text-decoration:none;
}
.button_dark {
  background: #44986b;
  color: #fff
}

.button_black {
  background: #343434;
  color: #fff
}

.input {
  width: 100%;
  max-width: 260px;
  padding: 0 18px;
  background: #fff;
  border-radius: 8px;
  color: #343434
}

.submit {
  padding: 1em 2em
}

.slider {
  position: relative
}

.slider__navigation {
  display: grid;
  grid-auto-flow: column;
  gap: 16px
}

.slider__arrow,
.swiper-pagination {
  display: flex;
  justify-content: center
}

.slider__arrow {
  width: 46px;
  height: 46px;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: -2px 5px 20px rgba(0, 0, 0, .07);
  transition: all .4s;
  cursor: pointer
}

.slider__arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #353744;
  stroke-width: 2px
}

.swiper-pagination {
  flex-wrap: wrap;
  margin: 20px -5px -5px 0
}

.swiper-pagination-bullet {
  position: relative;
  margin: 0 5px 5px 0;
  border: 2px solid transparent;
  border-radius: 50%;
  background: 0 0;
  cursor: pointer;
  transition: all .4s
}

.swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: #343434
}

.swiper-pagination-bullet-active {
  border-color: #343434
}

.swiper-pagination-bullet-active:after {
  background: #44986b
}

.swiper-wrapper {
  display: grid;
  grid-auto-flow: column
}

.social,
.swiper-slide {
  display: grid
}

.social {
  grid-auto-flow: column;
  justify-content: start
}

.social__item {
  width: 32px;
  height: 32px
}

.social__item svg {
  width: 100%;
  height: 100%
}

.siteup {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 10px
}

.tax-product_category .main {
  overflow: initial
}

.loaded .banner,
.loaded .header {
  opacity: 1;
  pointer-events: auto
}

.popup,
.popup__dialog {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center
}

.popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11;
  display: none;
  overflow: hidden;
  background: rgba(0, 0, 0, .7)
}

.popup__dialog {
  display: flex;
  flex-direction: column
}

.popup__content {
  position: relative;
  width: 582px;
  max-width: 96%;
  max-height: 90vh;
  background: #fff;
  overflow-y: auto;
  transition: all .4s;
  border-radius: 16px
}

.popup__top {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center
}

.popup__title {
  line-height: 1.2916666667;
  font-family: Onest-Black
}

.popup__form-title {
  font-family: Onest-Medium
}

.popup__form form {
  display: grid;
  justify-content: center;
  grid-template-columns: 100%
}

.popup__form .input-wrapper {
  grid-template-columns: 1fr 1fr
}

.popup__form .input-wrapper>:nth-child(3) {
  grid-column: 1/-1
}

.popup__form .input {
  max-width: 100%;
  background: #f7f7f7
}

.popup__form .submit {
  grid-column: 1/-1;
  width: 100%
}

.popup__form .form__text {
  font-size: 14px;
  opacity: .6
}

.popup__close {
  opacity: .6;
  transition: all .4s
}

.popup-thank .popup__content {
  display: grid;
  min-width: 280px;
  justify-items: center;
  background: #fff;
  color: #343434
}

.popup-thank .popup__subtitle,
.popup-thank .popup__title {
  margin: 0
}

.popup-thank img {
  object-fit: contain
}

.popup__product {
  display: grid;
  grid-template: auto auto/minmax(60px, auto) 1fr;
  align-items: start;
  justify-items: start;
  border-bottom: 1px solid #ebebeb
}

.popup__product-img {
  grid-row: span 2;
  width: 100%;
  justify-self: start
}

.popup__product-img img {
  object-fit: contain;
  object-position: left
}

.popup__product-title {
  font-family: Onest-Bold
}

.header-fixed {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  animation: a .4s ease-in-out;
  background: #fff
}

.header__top {
  display: grid;
  grid-template-columns: minmax(auto, 73%) auto;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #ececec
}

.header__top-wrapper {
  display: flex;
  align-items: center
}

.header__items {
  gap: 10px;
  justify-content: space-between;
  width: 100%
}

.header__items,
.header__tel span {
  display: grid;
  grid-auto-flow: column
}

.header__bottom,
.header__item {
  display: grid;
  grid-template-columns: auto 1fr
}

.header__item {
  transition: all .4s
}

.header__item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #44986b;
  stroke-width: 1.5px
}

.header__bottom {
  align-items: center
}

.header__bottom-wrapper {
  padding: 10px 0
}

.header__left,
.header__right {
  display: grid;
  grid-auto-flow: column
}

.header__right {
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: center
}

.header__menu {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px
}

.footer {
  background: rgba(52, 52, 52, .97);
  color: #fff;
  overflow: hidden
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  align-items: start
}

.footer__left {
  position: relative
}

.footer__left:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background: #343434
}

.footer__logo {
  margin-bottom: 20px
}

.contact__tel span,
.footer__info {
  display: grid;
  gap: 8px
}

.footer__tel {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 4px;
  font-family: Onest-Bold
}

.footer__right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 15px
}

.footer__item-info {
  grid-column: 1/-1;
  display: grid;
  gap: 16px
}

.footer__menu {
  display: grid
}

.delivery__item blockquote strong,
.footer__menu-category {
  font-family: Onest-Medium
}

.banner {
  position: relative
}

.banner .swiper-slide {
  aspect-ratio: 1280/310;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%
}

.banner__item-title {
  line-height: 1.28125;
  font-family: Onest-Black
}

.banner__item-list ul {
  padding-left: 20px
}

.banner__item-list ul li {
  padding-left: 15px
}

.banner__item-list ul li:before {
  content: "";
  top: 50%;
  transform: translatey(-50%);
  width: 7px;
  height: 7px
}

.banner__item-right {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  justify-items: end
}

.banner__item-col {
  transform: translatey(-50px);
  display: grid;
  justify-items: end
}

.banner__item-price {
  padding: .15625em .515625em;
  background: #fff;
  border-radius: 120px;
  font-family: Onest-Black
}

.banner__item-size {
  padding: .5833333333em;
  transform: translatey(-17px);
  border-radius: 120px;
  background: #343434;
  color: #fff;
  font-family: Onest-Medium
}

.banner__arrow {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  z-index: 5
}

.banner__prev {
  left: calc(-20px + 70*((100vw - 320px)/1600))
}

.banner__next {
  right: calc(-20px + 70*((100vw - 320px)/1600))
}

.banner__pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 7
}

.delivery-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start
}

.delivery__item {
  display: grid;
  grid-template-columns: 100%;
  justify-items: start;
  align-content: start;
  background: #fff;
  border-radius: 8px
}

.delivery__item-title {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  font-family: Onest-Bold
}

.delivery__item-title svg {
  width: 25px;
  height: 25px
}

.delivery__item blockquote {
  margin: 0;
  display: grid;
  gap: 8px;
  padding-left: 12px;
  border-left: 2px solid #44986b
}

.delivery__item blockquote p {
  margin-bottom: 8px !important
}

.offer__bg {
  background: #44986b;
  border-radius: 12px;
  color: #fff
}

.catalog__categories>li>a,
.offer__subtitle {
  font-family: Onest-Medium
}

.offer__form .input-wrapper {
  display: flex
}

.offer__img {
  position: absolute;
  bottom: 0;
  max-width: 191px
}

.card {
  position: relative;
  display: grid;
  grid-template: auto 1fr auto/100%;
  background: #fff;
  border-radius: 10px
}

.card-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-flow: row
}

.card__img {
  display: block;
  justify-self: center
}

.card__img img {
  width: 100%;
  object-fit: contain
}

.card__content {
  display: grid;
  grid-template-rows: 1fr auto
}

.card__title {
  margin-bottom: 8px;
  font-family: Onest-Medium;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3
}

.price {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  gap: .6666666667em
}

.price-new {
  font-family: Onest-Black
}

.price-discount,
.price-old {
  font-size: .75em
}

.price-old {
  font-family: Onest-Medium;
  opacity: .6;
  text-decoration: line-through
}

.price-discount {
  font-family: Onest-Black;
  color: #e26868
}

.catalog,
.catalog__icon {
  position: relative;
  align-items: center
}

.catalog {
  display: grid;
  gap: 10px;
  grid-auto-flow: column
}

.catalog.menu-link_active .catalog__content {
  opacity: 1;
  pointer-events: auto
}

.catalog.menu-link_active .catalog__icon .menu-lines:after,
.catalog.menu-link_active .catalog__icon .menu-lines:before {
  top: 50%
}

.catalog.menu-link_active .catalog__icon .menu-lines:after {
  transform: translatey(-50%) rotate(45deg)
}

.catalog.menu-link_active .catalog__icon .menu-lines:before {
  transform: translatey(-50%) rotate(135deg)
}

.catalog__icon {
  width: 13px;
  height: 13px;
  display: flex;
  justify-content: center
}

.catalog__icon .menu-lines,
.catalog__icon .menu-lines:after,
.catalog__icon .menu-lines:before {
  width: 100%;
  height: 1.2px;
  background: #fff
}

.catalog__icon .menu-lines:after {
  top: 5px
}

.catalog__icon .menu-lines:before {
  top: -5px
}

.catalog__content {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  max-height: 76vh;
  padding-right: 9px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: #5ab584 #f7f7f7;
  scrollbar-width: thin;
  background: #fff;
  box-shadow: 0 4px 60px rgba(0, 0, 0, .25);
  border-radius: 12px;
  color: #343434;
  font-family: Onest-Regular;
  text-align: left;
  opacity: 0;
  transition: all .4s;
  pointer-events: none
}

.catalog__content::-webkit-scrollbar {
  width: 4px
}

.catalog__content::-webkit-scrollbar-track {
  background: #f7f7f7
}

.catalog__content::-webkit-scrollbar-thumb {
  background: #5ab584
}

.catalog__categories {
  display: grid
}

.catalog__categories>li {
  display: grid;
  align-items: start;
  justify-content: start;
  grid-template-columns: auto 1fr
}

.catalog__categories>li:before {
  content: "";
  display: inline-block;
  background: url(../img/slash.svg) 50% no-repeat
}

.catalog .sub-menu {
  display: grid;
  grid-area: 2/2/2/2
}

.catalog__pages ul {
  display: grid;
  font-family: Onest-Medium
}

.category-wrapper {
  display: grid;
  align-content: start;
  align-items: start;
  grid-template-columns: minmax(200px, 300px) 1fr
}

.category__right,
.filter {
  display: grid
}

.category__right.loading {
  position: relative;
  z-index: 1
}

.category__right.loading:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 12px;
  background: hsla(0, 0%, 100%, .9) url(../img/loader.gif) center 20% no-repeat
}

.filter {
  position: sticky;
  left: 0;
  top: 159.5px;
  z-index: 5;
  align-content: start
}

.filter__block {
  display: grid;
  background: #fff;
  border-radius: 10px
}

.filter__block-title {
  font-family: Onest-Medium
}

.filter__block-price {
  display: grid;
  grid-template-columns: 1fr 1fr
}

.filter__block-price input {
  padding: 0 10px;
  width: 100%;
  border: 1px solid rgba(56, 63, 73, .1);
  border-radius: 8px;
  font-family: Onest-Medium
}

.filter .price-item {
  display: grid;
  gap: 8px;
  justify-items: start
}

.filter__items {
  display: grid;
  align-content: start
}

.filter-button,
.filter__reset,
.sort {
  display: grid;
  grid-auto-flow: column;
  align-items: center
}

.filter__reset {
  gap: 12px;
  justify-content: center
}

.filter__reset svg {
  width: 15px;
  height: 15px;
  fill: #e26868
}

.filter-button,
.sort {
  gap: 10px
}

.filter-button {
  justify-self: start;
  width: auto;
  padding: 5px 10px;
  background: #44986b;
  border-radius: 6px;
  font-family: Onest-Medium;
  font-size: 15px;
  color: #fff
}

.filter-button svg,
.sort__label svg {
  width: 20px;
  height: 20px;
  fill: #fff
}

.sort {
  background: #fff;
  border-radius: 10px
}

.sort__row {
  width: 100%
}

.sort__label,
.sort__row {
  display: grid;
  grid-auto-flow: column;
  justify-content: start
}

.sort__label {
  gap: 8px;
  align-items: center
}

.sort__label svg {
  fill: none;
  stroke-width: 2px;
  stroke: #343434
}

.sort__button {
  display: flex;
  align-items: center;
  transition: all .4s;
  font-family: Onest-Medium
}

.sort__button.down,
.sort__button.up {
  position: relative
}

.sort__button.down:after,
.sort__button.up:after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translatey(-50%);
  width: 10px;
  height: 15px;
  background: url(../img/up.svg) 50%/contain no-repeat;
  transition: all .4s
}

.sort__button.down:after {
  transform: translatey(-50%) rotate(180deg)
}

.sort__button.active {
  color: #44986b
}

.partner-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))
}

.partner__item {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px
}

.product {
  overflow: hidden
}

.product-wrapper {
  display: grid;
  grid-template-columns: 38.5802469136% 1fr;
  align-items: start;
  gap: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 8px
}

.product__sliders {
  display: grid;
  grid-template-columns: 75px auto
}

.product__sliders .swiper-wrapper {
  display: flex
}

.product__sliders .thumb {
  max-height: 368px;
  max-width: 100%
}

.product__sliders .thumb__item {
  max-height: 75px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer
}

.product__sliders .thumb__item img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.product__sliders .thumb__item.swiper-slide-thumb-active {
  border-color: #44986b
}

.product__sliders .slider {
  max-width: 100%
}

.product__sliders .slider__item {
  display: flex;
  border-radius: 8px;
  overflow: hidden
}

.product__sliders .slider__item img {
  width: 100%;
  max-width: 368px;
  max-height: 368px;
  object-fit: contain
}

.product__right {
  display: grid;
  gap: 20px
}

.product__title {
  font-family: Onest-Bold;
  line-height: 1.21875
}

.product__button {
  min-width: 163px
}

.product__content {
  display: grid;
  grid-template-columns: 1.42fr 1fr;
  align-items: start
}

.product__item {
  display: grid;
  justify-items: start;
  background: #fff;
  border-radius: 8px
}

.product__item-title {
  font-family: Onest-Bold
}

.product-table {
  width: 100%
}

.product-table__row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: start
}

.product-table__row:not(:last-child) {
  border-bottom: 1px solid #ebebec
}

.product-table__row-label {
  opacity: .6
}

.product-table__row-value {
  justify-self: end
}

.product__img {
  width: 100%;
  object-fit: contain
}

.product-labels {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.product-labels_static {
  position: static
}

.product-label {
  padding: 4px 12px;
  border-radius: 20px;
  font-family: Onest-Medium
}

.product-label_hit {
  background: #eed198
}

.product-label_action {
  background: #e26868;
  color: #fff
}

.product-label_new {
  background: #98eea4
}

.contact__block,
.contact__map {
  border-radius: 8px
}

.contact__block {
  position: absolute;
  z-index: 3;
  display: grid;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15)
}

.contact__item {
  display: grid;
  align-items: start;
  justify-content: start;
  grid-auto-flow: column;
  gap: 10px
}

.contact__item svg {
  width: 18px;
  height: 18px;
  stroke: #44986b;
  stroke-width: 1.5px;
  fill: none
}

.features-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.features__item {
  display: grid;
  grid-template: auto auto 1fr auto/100%;
  background: #e0f1e9;
  border-radius: 12px
}

.features__item-number {
  font-family: Onest-Medium;
  color: #44986b
}

.features__item-title {
  margin-bottom: 6px;
  font-family: Onest-ExtraBold
}

.features__item-icon {
  display: flex;
  align-items: center
}

.features__item-icon img {
  max-height: 100%;
  object-fit: contain
}

.info-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-content: start
}

.info__item {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 15px;
  border-radius: 10px;
  background: #fff
}

.info__item-title {
  font-family: Onest-Bold;
  text-transform: uppercase
}

.info__item-text {
  font-family: Onest-Medium
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer
}

.checkbox__round {
  display: flex;
  gap: 10px
}

.checkbox__round:before {
  content: "";
  width: 18px;
  height: 18px;
  background: #dfdfdf;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background-color .3s, border-color .3s;
  box-sizing: border-box
}

.checkbox__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  overflow: hidden
}

.checkbox__input:checked+span:before {
  content: "";
  background: #44986b url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCgk8cGF0aCBkPSJNMSA0LjM5MUwzLjcyNyA3IDEwIDEiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIC8+DQo8L3N2Zz4NCg==) 50% no-repeat;
  background-size: 65%;
  border-color: #44986b
}

.checkbox__input:disabled~span {
  opacity: .4;
  cursor: not-allowed
}

.checkbox__input:focus-visible+span:before {
  box-shadow: 0 0 20px rgba(68, 152, 107, .3);
  border-color: #245239
}

.count {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 5px;
  padding-bottom: 5px;
  border: 1px solid #ebebeb;
  border-radius: 8px
}

.count__input,
.crumbs {
  display: flex;
  align-items: center
}

.count__input {
  max-width: 35px;
  height: 100%;
  margin: 0 5px;
  font-family: Onest-Medium;
  text-align: center;
  box-shadow: none;
  -webkit-user-select: none;
  user-select: none
}

.count__input input {
  width: 100%;
  text-align: center;
  color: #343434
}

.count .up {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGhlaWdodD0iNTEycHgiIGlkPSJMYXllcl8xIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgd2lkdGg9IjUxMnB4IiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48cGF0aCBkPSJNNDE3LjQsMjI0SDI4OFY5NC42YzAtMTYuOS0xNC4zLTMwLjYtMzItMzAuNmMtMTcuNywwLTMyLDEzLjctMzIsMzAuNlYyMjRIOTQuNkM3Ny43LDIyNCw2NCwyMzguMyw2NCwyNTYgIGMwLDE3LjcsMTMuNywzMiwzMC42LDMySDIyNHYxMjkuNGMwLDE2LjksMTQuMywzMC42LDMyLDMwLjZjMTcuNywwLDMyLTEzLjcsMzItMzAuNlYyODhoMTI5LjRjMTYuOSwwLDMwLjYtMTQuMywzMC42LTMyICBDNDQ4LDIzOC4zLDQzNC4zLDIyNCw0MTcuNCwyMjR6Ii8+PC9zdmc+) 50%/50% no-repeat
}

.count .down {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgYmFzZVByb2ZpbGU9InRpbnkiIGhlaWdodD0iMjRweCIgaWQ9IkxheWVyXzEiIHZlcnNpb249IjEuMiIgdmlld0JveD0iMCAwIDI0IDI0IiB3aWR0aD0iMjRweCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PHBhdGggZD0iTTE4LDExSDZjLTEuMTA0LDAtMiwwLjg5Ni0yLDJzMC44OTYsMiwyLDJoMTJjMS4xMDQsMCwyLTAuODk2LDItMlMxOS4xMDQsMTEsMTgsMTF6Ii8+PC9zdmc+) 50%/50% no-repeat
}

.count .down,
.count .up {
  width: 20px;
  height: 20px;
  margin: 0 -5px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none
}

.count .down.default,
.count .up.default {
  cursor: not-allowed;
  opacity: .2
}

.crumbs {
  flex-wrap: wrap;
  row-gap: 5px
}

.crumbs li:last-child {
  opacity: .4
}

.crumbs li:last-child a {
  cursor: default
}

.crumbs li:not(:last-child) {
  position: relative
}

.crumbs li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  width: 8px;
  height: 10px;
  background: url(../img/arrow.svg) 50%/contain no-repeat
}

.search {
  flex: 1 1 auto
}

.search__input {
  position: relative
}

.search__input input {
  padding-right: 50px;
  max-width: 100%;
  border-radius: 9px;
  font-size: 16px;
  background: #f7f7f7
}

.search__button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translatey(-50%);
  transition: all .4s
}

.search__button svg {
  width: 19px;
  height: 19px
}

.search__content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 15px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, .1);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px
}

.search__scroll {
  max-height: 70vh;
  padding-right: 9px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: #5ab584 #f7f7f7;
  scrollbar-width: thin
}

.search__scroll::-webkit-scrollbar {
  width: 4px
}

.search__scroll::-webkit-scrollbar-track {
  background: #f7f7f7
}

.search__scroll::-webkit-scrollbar-thumb {
  background: #5ab584
}

.search__more {
  margin-top: 10px
}

.search__item {
  display: grid;
  gap: 10px
}

.search__item:not(:first-child) {
  padding-top: 10px
}

.search__item:not(:last-child) {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.search__item-title {
  font-family: Onest-Bold
}

.search__item-links {
  display: grid;
  gap: 6px
}

.switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer
}

.switch__round {
  position: relative;
  display: flex
}

.switch__round:before {
  content: "";
  width: 33px;
  height: 20px;
  border-radius: 10px;
  background: #dfdfdf;
  border: 1px solid transparent;
  transition: all .4s;
  box-sizing: border-box
}

.switch__round:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  width: min(14px, 17px);
  height: min(14px, 17px);
  max-height: calc(100% - 3px);
  transform: translatey(-50%);
  border-radius: 50%;
  background: #343434;
  transition: all .4s
}

.switch__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  overflow: hidden
}

.switch__input:checked+span:before {
  background: #44986b
}

.switch__input:checked+span:after {
  left: calc(100% - 3px);
  transform: translate(-100%, -50%);
  background: #fff
}

.switch__input:disabled~span {
  cursor: not-allowed;
  opacity: .4
}

.switch__input:focus-visible+span:before {
  border-color: #245239
}

.product__sizes {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  align-items: center
}

.product__sizes-label {
  opacity: .8
}

.product__sizes-items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%
}

.product__sizes-item {
  cursor: pointer;
  transition: all .4s
}

.product__sizes-item input,
.product__sizes-item label {
  cursor: pointer
}

.product__sizes-item input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  overflow: hidden
}

.product__sizes-item input[disabled=disabled]+span {
  opacity: .4
}

.product__sizes-item input:checked+span {
  background: #e0f1e9;
  color: #44986b
}

.product__sizes-item input:focus-visible+span {
  outline: 1px solid #44986b
}

.product__sizes-item span {
  min-width: 54px;
  height: 26px;
  padding: 4px 8px;
  font-size: 14px;
  font-family: Onest-Medium;
  background: #fff;
  border-radius: 4px;
  transition: background .4s;
  -webkit-user-select: none;
  user-select: none
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px
}

.pagination__label {
  font-family: Onest-Medium
}

.pagination__items {
  display: flex
}

.pagination__items li,
.product__sizes-item span {
  display: flex;
  align-items: center;
  justify-content: center
}

.pagination__items li.active {
  margin: 0 -5px;
  border-radius: 2px;
  color: #d38ad3;
  background: rgba(228, 129, 155, .05)
}

.contact__map {
  position: relative;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  background-color: #fff;
  overflow: hidden
}

.map {
  object-fit: cover
}

.loader,
.map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%
}

.loader {
  z-index: 2;
  background-color: rgba(68, 152, 107, .4);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none
}

.loader.is-active {
  opacity: 1
}

.loader-default:after {
  content: "";
  position: absolute;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  border: 8px solid #fff;
  border-left-color: transparent;
  border-radius: 50%;
  animation: b .7s linear infinite
}

@media (min-width:576px) {
  .container {
    width: 520px;
    padding: 0
  }
}

@media (min-width:768px) {
  .container {
    width: 720px
  }
}

@media (min-width:992px) {
  .container {
    width: 940px
  }

  .banner__item {
    padding-left: clamp(1px, 47.8px + -2.4375vw, 40px);
    padding-right: clamp(1px, 47.8px + -2.4375vw, 40px)
  }

  .banner__item-list {
    max-width: 63%
  }

  .filter-button {
    display: none
  }
}

@media (min-width:992px) and (min-width:1401px) {
  .banner__item-title {
    margin-bottom: 24px
  }

  .banner__item-list {
    margin-bottom: 68px
  }
}

@media (min-width:1200px) {
  .container {
    width: 1140px
  }
}

@media (min-width:1401px) {
  .container {
    width: 1290px
  }

  .main {
    padding-bottom: 32px
  }

  .section-bg+.section-bg {
    margin-top: -32px
  }

  .text-block h1:not(.title),
  .text-block h2:not(.title) {
    margin-bottom: 30px;
    font-size: 30px
  }

  .text-block h3 {
    margin-bottom: 25px;
    font-size: 20px
  }

  .text-block p:not(:last-child) {
    margin-bottom: 24px
  }

  .text-block ol:not(:first-of-type),
  .text-block ul:not(:first-of-type) {
    padding-top: 20px
  }

  .text-block ol:not(:last-child),
  .text-block ul:not(:last-child) {
    padding-bottom: 20px
  }

  .text-block ol li:not(:last-child),
  .text-block ul li:not(:last-child) {
    margin-bottom: 10px
  }

  .flex {
    gap: 20px
  }

  .catalog__categories>li,
  .grid {
    gap: 12px
  }

  body {
    font-size: 16px
  }

  .logo {
    width: 183px
  }

  .section {
    padding-bottom: 32px;
    padding-top: 32px
  }

  .section__top {
    margin-bottom: 32px
  }

  .section__top .title {
    margin-bottom: 0
  }

  .section-small {
    padding-bottom: 21.3333333333px;
    padding-top: 21.3333333333px
  }

  .section-bg {
    margin-bottom: 32px;
    margin-top: 32px
  }

  .section-bottom {
    padding-bottom: 32px
  }

  .section-top {
    padding-top: 32px
  }

  .section-not-margin {
    margin: 0
  }

  .title {
    margin-bottom: 32px;
    font-size: 48px
  }

  .title-page {
    font-size: 36px
  }

  .button {
    font-size: 18px
  }

  .input-wrapper {
    gap: 16px
  }

  .input,
  .submit {
    height: 55px
  }

  .swiper-pagination-bullet {
    width: 18px;
    height: 18px
  }

  .header__tel span,
  .social {
    gap: 24px
  }

  .popup__content {
    padding: 30px
  }

  .popup__top {
    margin-bottom: 37px
  }

  .popup__title {
    font-size: 24px
  }

  .popup__form-title {
    margin-bottom: 16px;
    font-size: 18px
  }

  .popup__form .form__text {
    margin-top: 16px
  }

  .popup-thank .popup__content {
    gap: 20px
  }

  .popup-thank img {
    width: 161px;
    height: 161px
  }

  .popup__product {
    column-gap: 47px;
    row-gap: 16px;
    padding-bottom: 30px;
    margin-bottom: 20px
  }

  .popup__product-img img {
    max-height: 100px
  }

  .popup__product-title {
    font-size: 20px
  }

  .header__top {
    padding-bottom: 12px;
    padding-top: 12px
  }

  .header__item {
    gap: 15px
  }

  .header__button {
    font-size: 16px
  }

  .header__bottom,
  .header__left {
    gap: 40px
  }

  .header__right {
    gap: 30px
  }

  .header__menu {
    column-gap: 32px
  }

  .footer__left {
    padding-bottom: 55px;
    padding-top: 55px;
    padding-right: 51px
  }

  .delivery__item blockquote strong,
  .footer__tel {
    font-size: 18px
  }

  .footer__right {
    row-gap: 58px;
    padding-bottom: 55px;
    padding-top: 55px;
    padding-left: 128px;
    margin-top: 20px
  }

  .footer__menu {
    gap: 24px
  }

  .banner__item {
    padding-bottom: 60px;
    padding-top: 60px
  }

  .banner__item-title {
    font-size: 64px
  }

  .banner__item-list {
    font-size: 24px
  }

  .banner__item-img {
    max-width: 441px
  }

  .banner__item-price {
    font-size: 64px
  }

  .banner__item-size {
    font-size: 24px
  }

  .banner__pagination {
    bottom: -50px
  }

  .delivery-wrapper {
    gap: 30px
  }

  .delivery__item {
    padding: 30px
  }

  .delivery__item-title {
    gap: 16px;
    margin-bottom: 24px;
    font-size: 24px
  }

  .delivery__item blockquote {
    margin-bottom: 24px
  }

  .offer__bg {
    padding: 25px 30px
  }

  .offer__left {
    max-width: 800px
  }

  .offer__title {
    margin-bottom: 5px;
    font-size: 36px
  }

  .offer__form .input-wrapper,
  .offer__subtitle {
    margin-bottom: 24px
  }

  .offer__img {
    right: 179px
  }

  .card {
    gap: 20px;
    padding: 35px 20px 20px
  }

  .card-wrapper {
    gap: 30px
  }

  .card__img img {
    height: 260px
  }

  .card__title {
    font-size: 16px
  }

  .price {
    font-size: 24px
  }

  .catalog {
    max-width: 127px;
    min-height: 48px
  }

  .catalog__content {
    gap: 24px;
    padding: 30px;
    min-width: 566px;
    font-size: 16px
  }

  .catalog__categories,
  .catalog__pages ul {
    gap: 24px
  }

  .catalog__categories>li:before {
    width: 20px;
    height: 20px
  }

  .category-wrapper {
    gap: 30px
  }

  .catalog .sub-menu,
  .category__right,
  .filter {
    gap: 16px
  }

  .filter__block {
    padding: 16px;
    gap: 16px
  }

  .filter__block-price {
    gap: 15px;
    font-size: 14px
  }

  .filter__block-price input {
    height: 44px
  }

  .filter__items {
    gap: 16px
  }

  .sort {
    padding: 21px;
    font-size: 16px
  }

  .sort__row {
    gap: 20px
  }

  .partner-wrapper {
    gap: 30px
  }

  .partner__item {
    min-height: 126px
  }

  .partner__item-img {
    max-width: 182px;
    max-height: 85px
  }

  .product__sliders {
    gap: 57px
  }

  .product__price,
  .product__title {
    font-size: 32px
  }

  .product__content {
    margin-top: 30px;
    gap: 30px
  }

  .product__item {
    gap: 24px;
    padding: 30px
  }

  .product__item-title {
    font-size: 24px
  }

  .product-table__row {
    gap: 12px;
    padding-bottom: 10px;
    padding-top: 10px
  }

  .product__img {
    height: 400px
  }

  .product-labels {
    top: 20px;
    left: 20px
  }

  .product-labels_static {
    margin-bottom: 20px
  }

  .product-label {
    font-size: 14px
  }

  .contact__map {
    height: 466px
  }

  .contact__block {
    left: 30px;
    bottom: 30px;
    gap: 25px;
    padding: 20px
  }

  .features-wrapper {
    gap: 30px
  }

  .features__item {
    padding: 30px 20px
  }

  .features__item-number {
    font-size: 18px
  }

  .features__item-title {
    font-size: 36px
  }

  .features__item-text {
    margin-bottom: 15px;
    font-size: 18px
  }

  .features__item-icon {
    width: 132px;
    height: 132px
  }

  .info-wrapper {
    gap: 40px;
    padding-top: 60px
  }

  .info__item {
    padding: 30px
  }

  .info__item-title {
    font-size: 25px
  }

  .info__item-text {
    font-size: 17px
  }

  .count {
    padding-left: 20px;
    padding-right: 20px;
    min-height: 51px
  }

  .count__input input {
    font-size: 16px
  }

  .crumbs {
    margin-bottom: -10px;
    column-gap: 23px;
    font-size: 14px
  }

  .crumbs li {
    margin-bottom: 10px
  }

  .crumbs li:not(:last-child):after {
    right: -14px
  }

  .search__item-title {
    font-size: 17px
  }

  .search__item-links {
    font-size: 15px
  }

  .product__sizes {
    gap: 16px
  }

  .pagination {
    padding-bottom: 15px;
    padding-top: 15px
  }

  .pagination__label {
    font-size: 14px
  }

  .pagination__items {
    gap: 15px
  }

  .pagination__items li {
    font-size: 16px;
    height: 26px
  }

  .pagination__items li.active {
    width: 26px;
    height: 26px
  }
}

@media (max-width:1400px) {
  .main {
    padding-bottom: clamp(16px, 12.8px + 1vw, 32px)
  }

  .section-bg+.section-bg {
    margin-top: clamp(-32px, -12.8px + -1vw, -16px)
  }

  .text-block h1:not(.title),
  .text-block h2:not(.title) {
    margin-bottom: clamp(20px, 18px + .625vw, 30px);
    font-size: clamp(23px, 21.6px + .4375vw, 30px)
  }

  .text-block h3 {
    margin-bottom: clamp(15px, 13px + .625vw, 25px);
    font-size: clamp(17px, 16.4px + .1875vw, 20px)
  }

  .text-block p:not(:last-child) {
    margin-bottom: clamp(12px, 9.6px + .75vw, 24px)
  }

  .text-block ol:not(:first-of-type),
  .text-block ul:not(:first-of-type) {
    padding-top: clamp(10px, 8px + .625vw, 20px)
  }

  .text-block ol:not(:last-child),
  .text-block ul:not(:last-child) {
    padding-bottom: clamp(10px, 8px + .625vw, 20px)
  }

  .text-block ol li:not(:last-child),
  .text-block ul li:not(:last-child) {
    margin-bottom: clamp(5px, 4px + .3125vw, 10px)
  }

  .flex {
    gap: clamp(10px, 8px + .625vw, 20px)
  }

  .grid {
    gap: clamp(8px, 7.2px + .25vw, 12px)
  }

  .hide-xl {
    display: none
  }

  .show-xl {
    display: block
  }

  body {
    font-size: clamp(15px, 14.8px + .0625vw, 16px)
  }

  .logo {
    width: clamp(140px, 131.4px + 2.6875vw, 183px)
  }

  .section {
    padding-bottom: clamp(16px, 12.8px + 1vw, 32px);
    padding-top: clamp(16px, 12.8px + 1vw, 32px)
  }

  .section__top {
    margin-bottom: clamp(20px, 17.6px + .75vw, 32px)
  }

  .section__top .title {
    margin-bottom: 0
  }

  .section-small {
    padding-bottom: clamp(16px, 14.9333333333px + .3333333333vw, 21.3333333333px);
    padding-top: clamp(16px, 14.9333333333px + .3333333333vw, 21.3333333333px)
  }

  .section-bg {
    margin-bottom: clamp(16px, 12.8px + 1vw, 32px);
    margin-top: clamp(16px, 12.8px + 1vw, 32px)
  }

  .section-bottom {
    padding-bottom: clamp(16px, 12.8px + 1vw, 32px)
  }

  .section-top {
    padding-top: clamp(16px, 12.8px + 1vw, 32px)
  }

  .section-not-margin {
    margin: 0
  }

  .title {
    margin-bottom: clamp(20px, 17.6px + .75vw, 32px);
    font-size: clamp(24px, 19.2px + 1.5vw, 48px)
  }

  .title-page {
    font-size: clamp(24px, 21.6px + .75vw, 36px)
  }

  .button {
    font-size: clamp(13px, 12px + .3125vw, 18px)
  }

  .input-wrapper {
    gap: clamp(10px, 8.8px + .375vw, 16px)
  }

  .input,
  .submit {
    height: clamp(50px, 49px + .3125vw, 55px)
  }

  .swiper-pagination-bullet {
    width: clamp(15px, 14.4px + .1875vw, 18px);
    height: clamp(15px, 14.4px + .1875vw, 18px)
  }

  .social {
    gap: clamp(20px, 19.2px + .25vw, 24px)
  }

  .popup__content {
    padding: clamp(20px, 18px + .625vw, 30px) clamp(15px, 12px + .9375vw, 30px)
  }

  .popup__top {
    margin-bottom: clamp(20px, 16.6px + 1.0625vw, 37px)
  }

  .popup__title {
    font-size: clamp(20px, 19.2px + .25vw, 24px)
  }

  .popup__form-title {
    margin-bottom: clamp(12px, 11.2px + .25vw, 16px);
    font-size: clamp(16px, 15.6px + .125vw, 18px)
  }

  .popup__form .form__text {
    margin-top: clamp(12px, 11.2px + .25vw, 16px)
  }

  .popup-thank .popup__content {
    gap: clamp(10px, 8px + .625vw, 20px)
  }

  .popup-thank img {
    width: clamp(100px, 87.8px + 3.8125vw, 161px);
    height: clamp(100px, 87.8px + 3.8125vw, 161px)
  }

  .popup__product {
    column-gap: clamp(10px, 2.6px + 2.3125vw, 47px);
    row-gap: clamp(12px, 11.2px + .25vw, 16px);
    padding-bottom: clamp(15px, 12px + .9375vw, 30px);
    margin-bottom: clamp(15px, 14px + .3125vw, 20px)
  }

  .popup__product-img img {
    max-height: clamp(70px, 64px + 1.875vw, 100px)
  }

  .popup__product-title {
    font-size: clamp(16px, 15.2px + .25vw, 20px)
  }

  .header__top {
    padding-bottom: clamp(10px, 9.6px + .125vw, 12px);
    padding-top: clamp(10px, 9.6px + .125vw, 12px)
  }

  .header__tel span {
    gap: clamp(12px, 9.6px + .75vw, 24px)
  }

  .header__item {
    gap: clamp(8px, 6.6px + .4375vw, 15px)
  }

  .header__button {
    font-size: clamp(13px, 12.4px + .1875vw, 16px)
  }

  .header__bottom,
  .header__left {
    gap: clamp(10px, 4px + 1.875vw, 40px)
  }

  .header__right {
    gap: clamp(10px, 6px + 1.25vw, 30px)
  }

  .header__menu {
    column-gap: clamp(15px, 11.6px + 1.0625vw, 32px)
  }

  .footer__left {
    padding-bottom: clamp(30px, 25px + 1.5625vw, 55px);
    padding-top: clamp(30px, 25px + 1.5625vw, 55px);
    padding-right: clamp(30px, 25.8px + 1.3125vw, 51px)
  }

  .delivery__item blockquote strong,
  .footer__tel {
    font-size: clamp(16px, 15.6px + .125vw, 18px)
  }

  .footer__right {
    row-gap: clamp(20px, 12.4px + 2.375vw, 58px);
    padding-bottom: clamp(30px, 25px + 1.5625vw, 55px);
    padding-top: clamp(30px, 25px + 1.5625vw, 55px);
    padding-left: clamp(20px, -1.6px + 6.75vw, 128px)
  }

  .footer__menu {
    gap: clamp(12px, 9.6px + .75vw, 24px)
  }

  .banner__item {
    padding-bottom: clamp(30px, 24px + 1.875vw, 60px);
    padding-top: clamp(30px, 24px + 1.875vw, 60px)
  }

  .banner__item-title {
    font-size: clamp(25px, 17.2px + 2.4375vw, 64px)
  }

  .banner__item-list {
    font-size: clamp(18px, 16.8px + .375vw, 24px)
  }

  .banner__item-img {
    max-width: clamp(250px, 211.8px + 11.9375vw, 441px)
  }

  .banner__item-price {
    font-size: clamp(24px, 16px + 2.5vw, 64px)
  }

  .banner__item-size {
    font-size: clamp(18px, 16.8px + .375vw, 24px)
  }

  .banner__pagination {
    bottom: clamp(-50px, -14px + -1.875vw, -20px)
  }

  .delivery-wrapper {
    gap: clamp(15px, 12px + .9375vw, 30px)
  }

  .delivery__item {
    padding: clamp(15px, 12px + .9375vw, 30px)
  }

  .delivery__item-title {
    gap: clamp(12px, 11.2px + .25vw, 16px);
    font-size: clamp(20px, 19.2px + .25vw, 24px)
  }

  .delivery__item-title,
  .delivery__item blockquote {
    margin-bottom: clamp(12px, 9.6px + .75vw, 24px)
  }

  .offer__bg {
    padding: clamp(15px, 13px + .625vw, 25px) clamp(10px, 6px + 1.25vw, 30px)
  }

  .offer__left {
    max-width: clamp(300px, 200px + 31.25vw, 800px)
  }

  .offer__title {
    margin-bottom: clamp(5px, 11px + -.3125vw, 10px);
    font-size: clamp(24px, 21.6px + .75vw, 36px)
  }

  .offer__form .input-wrapper,
  .offer__subtitle {
    margin-bottom: clamp(12px, 9.6px + .75vw, 24px)
  }

  .offer__img {
    right: clamp(-100px, -155.8px + 17.4375vw, 179px)
  }

  .card {
    gap: clamp(15px, 14px + .3125vw, 20px);
    padding: clamp(30px, 29px + .3125vw, 35px) clamp(15px, 14px + .3125vw, 20px) clamp(15px, 14px + .3125vw, 20px)
  }

  .card-wrapper {
    gap: clamp(15px, 12px + .9375vw, 30px)
  }

  .card__img img {
    height: clamp(200px, 188px + 3.75vw, 260px)
  }

  .card__title {
    font-size: clamp(14px, 13.6px + .125vw, 16px)
  }

  .price {
    font-size: clamp(20px, 19.2px + .25vw, 24px)
  }

  .catalog {
    max-width: clamp(100px, 94.6px + 1.6875vw, 127px);
    min-height: clamp(40px, 38.4px + .5vw, 48px)
  }

  .catalog__content {
    padding: clamp(15px, 12px + .9375vw, 30px);
    min-width: clamp(300px, 246.8px + 16.625vw, 566px);
    font-size: clamp(15px, 14.8px + .0625vw, 16px)
  }

  .catalog__categories,
  .catalog__content {
    gap: clamp(12px, 9.6px + .75vw, 24px)
  }

  .catalog__categories>li {
    gap: clamp(10px, 9.6px + .125vw, 12px)
  }

  .catalog__categories>li:before {
    width: clamp(18px, 17.6px + .125vw, 20px);
    height: clamp(18px, 17.6px + .125vw, 20px)
  }

  .catalog__pages ul {
    gap: clamp(16px, 14.4px + .5vw, 24px)
  }

  .category-wrapper {
    gap: clamp(15px, 12px + .9375vw, 30px)
  }

  .catalog .sub-menu,
  .category__right,
  .filter,
  .filter__block {
    gap: clamp(12px, 11.2px + .25vw, 16px)
  }

  .filter__block {
    padding: clamp(12px, 11.2px + .25vw, 16px)
  }

  .filter__block-price {
    gap: clamp(10px, 9px + .3125vw, 15px);
    font-size: clamp(13px, 12.8px + .0625vw, 14px)
  }

  .filter__block-price input {
    height: clamp(40px, 39.2px + .25vw, 44px)
  }

  .filter__items {
    gap: clamp(12px, 11.2px + .25vw, 16px)
  }

  .sort {
    padding: clamp(14px, 12.6px + .4375vw, 21px);
    font-size: clamp(14px, 13.6px + .125vw, 16px)
  }

  .sort__row {
    gap: clamp(14px, 12.8px + .375vw, 20px)
  }

  .partner-wrapper {
    gap: clamp(12px, 8.4px + 1.125vw, 30px)
  }

  .partner__item {
    min-height: clamp(100px, 94.8px + 1.625vw, 126px)
  }

  .partner__item-img {
    max-width: clamp(163.8px, 160.16px + 1.1375vw, 182px);
    max-height: clamp(76.5px, 74.8px + .53125vw, 85px)
  }

  .product__sliders {
    gap: clamp(20px, 12.6px + 2.3125vw, 57px)
  }

  .product__title {
    font-size: clamp(21px, 18.8px + .6875vw, 32px)
  }

  .product__price {
    font-size: clamp(24px, 22.4px + .5vw, 32px)
  }

  .product__content {
    margin-top: clamp(15px, 12px + .9375vw, 30px);
    gap: clamp(15px, 12px + .9375vw, 30px)
  }

  .product__item {
    gap: clamp(12px, 9.6px + .75vw, 24px);
    padding: clamp(15px, 12px + .9375vw, 30px)
  }

  .product__item-title {
    font-size: clamp(19px, 18px + .3125vw, 24px)
  }

  .product-table__row {
    gap: clamp(8px, 7.2px + .25vw, 12px);
    padding-bottom: clamp(7px, 6.4px + .1875vw, 10px);
    padding-top: clamp(7px, 6.4px + .1875vw, 10px)
  }

  .product__img {
    height: clamp(250px, 220px + 9.375vw, 400px)
  }

  .product-labels {
    top: clamp(15px, 14px + .3125vw, 20px);
    left: clamp(15px, 14px + .3125vw, 20px)
  }

  .product-labels_static {
    margin-bottom: clamp(15px, 14px + .3125vw, 20px)
  }

  .product-label {
    font-size: clamp(12px, 11.6px + .125vw, 14px)
  }

  .contact__map {
    height: clamp(300px, 266.8px + 10.375vw, 466px)
  }

  .contact__block {
    left: clamp(15px, 12px + .9375vw, 30px);
    bottom: clamp(15px, 12px + .9375vw, 30px);
    gap: clamp(15px, 13px + .625vw, 25px);
    padding: clamp(15px, 14px + .3125vw, 20px)
  }

  .features-wrapper {
    gap: clamp(12px, 8.4px + 1.125vw, 30px)
  }

  .features__item {
    padding: clamp(20px, 18px + .625vw, 30px) clamp(10px, 8px + .625vw, 20px)
  }

  .features__item-number {
    font-size: clamp(16px, 15.6px + .125vw, 18px)
  }

  .features__item-title {
    font-size: clamp(21px, 18px + .9375vw, 36px)
  }

  .features__item-text {
    margin-bottom: clamp(10px, 9px + .3125vw, 15px);
    font-size: clamp(16px, 15.6px + .125vw, 18px)
  }

  .features__item-icon {
    width: clamp(80px, 69.6px + 3.25vw, 132px);
    height: clamp(80px, 69.6px + 3.25vw, 132px)
  }

  .info-wrapper {
    gap: clamp(15px, 10px + 1.5625vw, 40px);
    padding-top: clamp(30px, 24px + 1.875vw, 60px)
  }

  .info__item {
    padding: clamp(15px, 12px + .9375vw, 30px)
  }

  .info__item-title {
    font-size: clamp(19px, 17.8px + .375vw, 25px)
  }

  .info__item-text {
    font-size: clamp(15px, 14.6px + .125vw, 17px)
  }

  .count {
    padding-left: clamp(10px, 8px + .625vw, 20px);
    padding-right: clamp(10px, 8px + .625vw, 20px);
    min-height: clamp(40px, 37.8px + .6875vw, 51px)
  }

  .count__input input {
    font-size: clamp(14px, 13.6px + .125vw, 16px)
  }

  .crumbs {
    margin-bottom: clamp(-10px, -4px + -.3125vw, -5px);
    column-gap: clamp(18px, 17px + .3125vw, 23px);
    font-size: clamp(11px, 10.4px + .1875vw, 14px)
  }

  .crumbs li {
    margin-bottom: clamp(5px, 4px + .3125vw, 10px)
  }

  .crumbs li:not(:last-child):after {
    right: clamp(-14px, -10.4px + -.1875vw, -11px)
  }

  .search__item-title {
    font-size: clamp(15px, 14.6px + .125vw, 17px)
  }

  .search__item-links {
    font-size: clamp(13px, 12.6px + .125vw, 15px)
  }

  .product__sizes {
    gap: clamp(12px, 11.2px + .25vw, 16px)
  }

  .pagination {
    padding-bottom: clamp(10px, 9px + .3125vw, 15px);
    padding-top: clamp(10px, 9px + .3125vw, 15px)
  }

  .pagination__label {
    font-size: clamp(13px, 12.8px + .0625vw, 14px)
  }

  .pagination__items {
    gap: clamp(10px, 9px + .3125vw, 15px)
  }

  .pagination__items li {
    font-size: clamp(14px, 13.6px + .125vw, 16px);
    height: clamp(20px, 18.8px + .375vw, 26px)
  }

  .pagination__items li.active {
    width: clamp(20px, 18.8px + .375vw, 26px);
    height: clamp(20px, 18.8px + .375vw, 26px)
  }
}

@media (max-width:1199px) {
  .header__top {
    grid-template-columns: minmax(auto, 83%) auto
  }

  .features-wrapper,
  .product-wrapper {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:991px) {
  .hide-md {
    display: none
  }

  .menu-link,
  .show-md {
    display: block
  }

  .header__mobile,
  body {
    padding-top: 139.77px
  }

  .header__mobile {
    padding-bottom: 139.77px;
    max-height: calc(100vh - 139.77px)
  }

  .header-fixed {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    animation: a .4s ease-in-out;
    background: #fff
  }

  .header__mobile {
    position: fixed;
    right: -100vw;
    top: 0;
    z-index: 5;
    display: grid;
    align-content: start;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    gap: 20px;
    padding-left: clamp(25px, 18px + 2.1875vw, 60px);
    padding-right: clamp(25px, 18px + 2.1875vw, 60px);
    overflow: auto;
    background: rgba(0, 0, 0, .92);
    transition: right .3s, opacity .3s;
    text-align: center;
    color: #fff
  }

  .header__mobile_active {
    right: 0;
    opacity: 1
  }

  .header__menu {
    display: grid;
    gap: 20px;
    font-size: 19px
  }

  .footer-wrapper {
    grid-template-columns: 100%
  }

  .footer__left:after {
    right: -20%;
    width: 120vw;
    height: 100%
  }

  .footer__right {
    padding: 0
  }

  .footer__left,
  .footer__right {
    padding-bottom: clamp(25px, 17.8464977645px + 2.2354694486vw, 40px);
    padding-top: clamp(25px, 17.8464977645px + 2.2354694486vw, 40px)
  }

  .banner__arrow {
    display: none
  }

  .banner__item {
    display: grid;
    justify-items: start;
    gap: 20px
  }

  .banner__item-right {
    position: static;
    display: flex;
    align-items: center
  }

  .banner__item-col,
  .banner__item-price,
  .banner__item-size {
    transform: none
  }

  .delivery-wrapper {
    grid-template-columns: 100%
  }

  .offer__left {
    max-width: 100%
  }

  .offer__img {
    display: none
  }

  .offer__subtitle {
    max-width: 420px
  }

  .filter {
    top: 154.77px;
    position: static;
    grid-column: 1/-1;
    background: #f6f6f6
  }

  .category-wrapper {
    grid-template-columns: 100%;
    gap: 0
  }

  .category-wrapper>:not(:last-child) {
    margin-bottom: clamp(10px, 5.2309985097px + 1.4903129657vw, 20px)
  }

  .sort {
    position: sticky;
    left: 0;
    z-index: 5;
    grid-template-columns: 1fr auto;
    grid-auto-flow: row;
    background: #e0f1e9;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2)
  }

  .product-wrapper,
  .product__content,
  .product__sliders {
    grid-template-columns: 100%
  }

  .product__sliders .swiper-wrapper {
    display: grid;
    justify-content: start
  }

  .product__sliders .thumb {
    order: 2;
    width: 100%
  }

  .product__sliders .thumb__item img {
    max-height: 75px
  }

  .product__sliders .slider__item img {
    max-width: 100%;
    max-height: clamp(250px, 202.3099850969px + 14.9031296572vw, 350px)
  }

  .contact__block {
    position: static;
    margin-bottom: 20px
  }

  .crumbs {
    padding-top: clamp(15px, 14px + .3125vw, 20px)
  }
}

@media (max-width:991px) and (max-width:991px) {
  .sort {
    top: 154.77px
  }
}

@media (max-width:991px) and (max-width:767px) {
  .sort {
    top: 75px
  }
}

@media (max-width:991px) and (max-width:575px) {
  .sort {
    top: 79.84px
  }
}

@media (max-width:767px) {
  .hide-sm {
    display: none
  }

  .show-sm {
    display: block
  }

  .mobile-sm {
    display: grid;
    grid-auto-flow: row
  }

  .header__mobile,
  body {
    padding-top: 60px
  }

  .header__mobile {
    padding-bottom: 60px;
    max-height: calc(100vh - 60px)
  }

  .header__top {
    grid-template-columns: 100%;
    gap: 15px;
    padding: 0;
    order: 2;
    border: 0
  }

  .header__tel span {
    grid-auto-flow: row
  }

  .header__item {
    justify-items: start
  }

  .footer__right {
    grid-template-columns: 1fr 1fr
  }

  .footer__item-info {
    grid-column: span 1
  }

  .banner__slider {
    padding: 0
  }

  .banner__navigation {
    display: none
  }

  .banner__item-right {
    display: grid;
    justify-items: start;
    gap: 10px
  }

  .banner__item-img {
    max-height: clamp(110px, 81.3646532438px + 8.9485458613vw, 150px)
  }

  .banner__item-col {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap
  }

  .offer {
    text-align: center
  }

  .offer__form .input-wrapper {
    display: grid
  }

  .offer__form .input {
    max-width: 100%
  }

  .filter {
    top: 75px
  }

  .sort {
    grid-template-columns: 100%
  }

  .filter-button {
    justify-content: center;
    min-height: 40px;
    width: 100%
  }
}
.card_items{display:flex;margin-bottom:20px;}
.card_items .card{
	width:50%;
}
@media (max-width:575px) {
	.card_items {	flex-direction: column;}
.card_items .card{
	width:100%;
}
  .hide-xs {
    display: none
  }

  .show-xs {
    display: block
  }

  body {
    padding-top: 64.84px
  }

  .popup__form .input-wrapper,
  .section__top {
    grid-template-columns: 100%
  }

  .slider__navigation {
    display: none
  }

  .popup__dialog {
    width: 400px;
    max-width: 100%;
    padding: 0 10px;
    margin: 0 auto
  }

  .header__mobile {
    padding-bottom: 64.84px;
    padding-top: 64.84px;
    max-height: calc(100vh - 64.84px)
  }

  .header {
    opacity: 0;
    pointer-events: none
  }

  .header__bottom {
    grid-template-columns: 1fr auto
  }

  .header__catalog {
    justify-self: end;
    position: static
  }

  .header__right {
    display: block
  }

  .header__mobile {
    grid-template-columns: 100%
  }

  .header__search {
    color: #343434
  }

  .header__button,
  .header__item,
  .header__items {
    justify-content: center;
    justify-self: center
  }

  .footer__right {
    grid-template-columns: 100%;
    gap: 30px
  }

  .banner {
    opacity: 0;
    pointer-events: none
  }

  .filter {
    top: 79.84px
  }

  .features-wrapper {
    grid-template-columns: 100%
  }

  .pagination {
    flex-direction: column;
    align-items: center
  }
}

@media (max-width:430px) {
  .catalog__content {
    grid-template-columns: 100%
  }
}

@media (min-width:992px) and (max-width:1400px) {
  .banner__item-title {
    margin-bottom: clamp(15px, 13.2px + .5625vw, 24px)
  }

  .banner__item-list {
    margin-bottom: clamp(30px, 22.4px + 2.375vw, 68px)
  }
}

@media not all and (-webkit-min-device-pixel-ratio:0),
not all and (min-resolution:.001dpcm) {
  input {
    -webkit-appearance: none;
    appearance: none;
    font-size: 16px
  }

  .count__input input {
    color: #343434;
    opacity: 1
  }
}

@media (any-hover:hover) {

  .button:hover,
  .underline:hover:before {
    background: #44986b
  }

  .button:hover {
    color: #fff
  }

  .button_dark:hover {
    background: #397f5a
  }

  .button_black:hover {
    background: #272727
  }

  .slider__arrow:hover {
    background: #44986b
  }

  .slider__arrow:hover svg {
    stroke: #fff
  }

  .catalog a:hover,
  .contact a:hover,
  .crumbs li:not(:last-child):hover,
  .footer__item-info a:hover,
  .footer__left a:hover,
  .footer__menu li:hover,
  .header .header__item a:hover,
  .header__menu li:hover,
  .header a.header__item:hover,
  .popup__close:hover,
  .sort__button:hover {
    color: #44986b
  }

  .search__button:hover {
    background: #397f5a
  }

  .product__sizes-item input[disabled=disabled]+span:hover {
    cursor: not-allowed
  }
}