::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}

::-moz-placeholder {
  color: #999;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}

::placeholder {
  color: #999;
  opacity: 1;
}

::-moz-selection {
  background-color: #f00b0b;
  color: #fff;
}

::selection {
  background-color: #f00b0b;
  color: #fff;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
  font-family: Nunito,sans-serif;
  font-size: 1.7rem;
  height: 100%;
  line-height: 1.61;
  min-width: 320px;
  overflow-x: hidden;
  position: relative;
}

body.lock {
  overflow: hidden;
  padding-right: 16px;
}

:root {
  scroll-behavior: auto;
}

html {
  font-size: 10px;
  height: 100%;
  scroll-behavior: auto;
}

.wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  opacity: 0;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.header {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20.2%, rgba(0, 0, 0, .5)), color-stop(80.1%, rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, .5) 20.2%, rgba(0, 0, 0, 0) 80.1%);
  background: linear-gradient(180deg, rgba(0, 0, 0, .5) 20.2%, rgba(0, 0, 0, 0) 80.1%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 22rem;
  left: 0;
  padding-top: .4rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.header .container {
  width: 100%;
}

.header.scrolled {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #232323;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, .2);
  box-shadow: 0 0 25px rgba(0, 0, 0, .2);
  height: 8rem;
  padding-top: 0;
}

.header.scrolled .header__logo img {
  max-width: 8rem;
}

.header.scrolled .header__right {
  top: 0;
}

.header__wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__menu ul,
.header__wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__menu ul {
  gap: 4.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__menu ul a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.375;
}

.header__menu ul a:hover {
  color: #f00b0b;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  top: -1rem;
}

.header__logo {
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.header__logo img {
  height: 12.5rem;
  -o-object-fit: contain;
  object-fit: contain;
  width: 16.6rem;
}

.header__geo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.header__geo span {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__geo span:before {
  background: url(../images/dist/geo_icon.svg) 50%/contain no-repeat;
  content: "";
  display: inline-block;
  height: 1.5rem;
  margin-right: 1.1rem;
  width: 1.3rem;
}

.header__phone {
  margin-left: 9rem;
}

.header__phone a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.375;
}

.header__phone a:hover {
  color: #f00b0b;
}

.header__phone a:before {
  background: url(../images/dist/phone_icon.svg) 50%/contain no-repeat;
  content: "";
  display: inline-block;
  height: 1.6rem;
  margin-right: .7rem;
  width: 1.5rem;
}

.header__cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 5rem;
}

.header__cart:hover .header__cart-sum {
  color: #f00b0b;
}

.header__cart-count {
  background: url(../images/dist/cart_icon.svg) 50%/contain no-repeat;
  height: 1.8rem;
  position: relative;
  width: 1.4rem;
}

.header__cart-count span {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background: #f00b0b;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  height: 1.3rem;
  justify-content: center;
  line-height: 1.2;
  position: absolute;
  right: -.6rem;
  top: -.4rem;
  width: 1.3rem;
}

.header__cart-sum {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-left: 1.7rem;
}

.header-mobile,
.header__cart-sum {
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.header-mobile {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 995;
}

.header-mobile__logo img {
  max-width: 65px;
}

.header-mobile.active {
  background-color: #e0e0e0;
}

.header-mobile__cnt {
  width: 100%;
}

.header-mobile__meta-flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

.header-mobile__meta-flex .header__cart {
  margin-left: 0;
}

.header-mobile__meta-flex .header__cart-sum {
  font-size: 14px;
  margin-left: 13px;
}

.header-mobile__meta {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: center;
  background-color: #2b2c2f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
}

.header-mobile__meta-icons {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-mobile__tel a {
  color: #292d32;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 17px;
}

.header-mobile__burger {
  background: url(../images/dist/burger.svg) 100% 50%/26px 24px no-repeat;
  cursor: pointer;
  height: 40px;
  margin-left: -2px;
  width: 35px;
}

.header-mobile__call {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  justify-content: center;
  margin-left: 5px;
  width: 35px;
}

.header-mobile__burger.active {
  background: url(../images/dist/burger_close.svg) 90% 50%/30px 23px no-repeat;
  display: block;
}

.header-mobile-menu {
  background-color: #fff;
  height: calc(100vh - 60px);
  left: 0;
  left: -100%;
  opacity: 1;
  overflow: scroll;
  padding-bottom: 60px;
  position: fixed;
  top: 60px;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  visibility: hidden;
  width: 100%;
  z-index: 999;
  z-index: -1;
}

.header-mobile-menu .header__phone a {
  color: #000;
}

.header-mobile-menu .header__phone a:before {
  display: none;
}

.header-mobile-menu .header-mobile-menu__list {
  list-style: none;
  margin: 60px 0 0;
  overflow: scroll;
  padding: 0 40px;
  text-align: left;
}

.header-mobile-menu .header-mobile-menu__list li {
  margin-bottom: 15px;
}

.header-mobile-menu .header-mobile-menu__list li a {
  color: #000;
  display: block;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  text-transform: none;
  width: 100%;
}

.header-mobile-menu .header-mobile-menu__list li.active a {
  color: #000;
}

.header-mobile-menu .header-mobile-center {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 15vh;
  padding: 0 40px;
  text-align: left;
}

.header-mobile-menu .header__phone {
  color: #000;
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-left: 0;
  margin-top: 2vh;
  text-align: left;
}

.header-mobile-menu .header__phone a {
  display: block;
  font-size: 24px;
  margin-bottom: 1vh;
}

.header-mobile-menu .header__phone:after {
  display: none;
}

.header-mobile-menu.active {
  left: 0;
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

button:focus {
  outline: none;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.wrapper {
  position: relative;
}

.wrapper:after {
  background: transparent;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  visibility: hidden;
  width: 100%;
  z-index: -1;
}

.wrapper.fade-menu:after {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: hsla(0, 0%, 8%, .8);
  background-blend-mode: multiply;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: auto;
  position: absolute;
  top: 0;
  visibility: visible;
  width: 100%;
  z-index: 100;
}

input[type=search]::-ms-clear {
  display: none;
  height: 0;
  width: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.input,
.textarea {
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #d9d9d9;
  border-radius: 0;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .1em;
  padding: 0 0 2.5rem;
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: #777;
  font-size: 1.2rem;
  opacity: 1;
  text-transform: uppercase;
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
  color: #777;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  color: #777;
  font-size: 1.2rem;
  opacity: 1;
  text-transform: uppercase;
}

.input::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
  color: #777;
  font-size: 1.2rem;
  opacity: 1;
  text-transform: uppercase;
}

.input::placeholder,
.textarea::placeholder {
  color: #777;
  font-size: 1.2rem;
  opacity: 1;
  text-transform: uppercase;
}

.textarea {
  padding: 1.9rem 2.1rem;
  resize: none;
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: #616161;
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
  color: #616161;
  opacity: 1;
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  color: #616161;
}

.input:-moz-placeholder,
.textarea:-moz-placeholder {
  color: #616161;
  opacity: 1;
}

.link {
  position: relative;
}

.link:hover {
  color: #f00b0b;
}

.link:after {
  background: #434343;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  width: 100%;
}

.link:hover:after {
  width: 0;
}

.h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.24;
  margin-bottom: 2.7rem;
  text-transform: uppercase;
}

.h2 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2272727273;
}

img {
  height: auto;
  max-width: 100%;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

a:hover {
  color: #000;
  text-decoration: none;
}

.container-w100 {
  margin: 0 auto;
  max-width: 2000px;
  padding-left: 40px;
  padding-right: 40px;
}

.container {
  margin: 0 auto;
  max-width: 152rem;
  padding-left: 4rem;
  padding-right: 4rem;
}

.container-1750 {
  margin: 0 auto;
  max-width: 183rem;
  padding-left: 4rem;
  padding-right: 4rem;
}

.btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background-color: #000;
  border: none;
  border-radius: 25px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Gilroy,sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: normal;
  line-height: normal;
  padding: 0;
  text-shadow: none;
  text-transform: none;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.btn:hover {
  background-color: var(--a-hover-color);
  color: #fff;
}

svg {
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.svg-hidden {
  display: none;
}

.fancybox-custom .fancybox-button {
  background: #000;
  color: #fff;
  height: 5.6rem;
  width: 5.6rem;
}

.fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
.fancybox-custom .fancybox-navigation .fancybox-button--arrow_right {
  background: #000;
  color: #fff;
  height: 5.6rem;
  padding: .5rem;
  width: 5.6rem;
}

.fancybox-custom.fancybox-is-open .fancybox-bg {
  background: #fff;
  opacity: .98;
}

.swiper-wrapper {
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.hero__slider-text,
.hero__wrap {
  position: relative;
}

.hero__slider-text {
  z-index: 5;
}

.hero__slider-text .swiper-slide {
  opacity: 0;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.hero__slider-text .swiper-slide-active {
  opacity: 1;
}

.hero__slider-text-wrap {
  max-width: 69rem;
}

.hero-pagination__wrap {
  bottom: 15.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 152rem;
  padding-left: 4rem;
  padding-right: 4rem;
  position: absolute;
  right: 0;
  width: 100%;
}

.hero-pagination__wrap .swiper-pagination-bullet {
  background: #d9d9d9;
  height: 1.7rem;
  opacity: .8;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  width: 1.7rem;
}

.hero-pagination__wrap .swiper-pagination-bullet-active {
  opacity: 1;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

.hero-pagination__wrap .swiper-pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
}

.hero-pagination__wrap .swiper-pagination:after {
  background: #d9d9d9;
  content: "";
  display: inline-block;
  height: 2px;
  margin-left: -.4rem;
  width: 14.2rem;
}

.hero__slider-text-item {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 89rem;
  padding-top: 31.1rem;
  position: relative;
}

.hero__slider-text-item-title h2 {
  color: #fff;
  font-size: 7.5rem;
  font-weight: 900;
  line-height: .9333333333;
  margin-bottom: 2rem;
}

.hero__slider-text-item-description {
  max-width: 58rem;
}

.hero__slider-text-item-description p {
  color: #ccc;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 1.5rem;
}

.hero__slider-text-item-weight p {
  color: #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  line-height: 1.35;
  margin-bottom: .6rem;
}

.hero__slider-text-item-weight p span {
  padding-left: .8rem;
  padding-right: .8rem;
}

.hero__slider-text-item-price {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero__slider-text-item-price-normal {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #f00b0b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.36;
  margin-left: -.4rem;
  margin-right: .9rem;
}

.hero__slider-text-item-price-sale {
  color: #ccc;
  font-size: 2rem;
  line-height: 1.35;
  margin-right: 1rem;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
}

.hero__slider-photos {
  height: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

.hero__slider-photos,
.hero__slider-photos .swiper-slide {
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.hero__slider-photos .swiper-slide {
  max-width: 83.3rem;
}

.hero__slider-photos .swiper-slide:after {
  background: #000;
  border-radius: 13px;
  content: "";
  -webkit-filter: blur(27px);
  filter: blur(27px);
  height: 100%;
  opacity: 0;
  position: absolute;
  right: -1.3rem;
  top: 0;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  width: 2.7rem;
  z-index: 2;
}

.hero__slider-photos .swiper-slide-next {
  opacity: .8;
}

.hero__slider-photos .swiper-slide-active {
  opacity: 1;
  position: relative;
}

.hero__slider-photos .swiper-slide-active:after {
  opacity: .7;
}

.hero__slider-photos-item {
  height: 100%;
}

.hero__slider-photos-item img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.hero__slider-nav {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 5.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.9rem;
  left: 0;
  padding-left: 23rem;
  position: absolute;
  z-index: 2;
}

.hero__slider-nav.disabled {
  pointer-events: none;
}

.hero__slider-nav-prev {
  background: url(../images/dist/hero_nav_prev.svg) 50%/contain no-repeat;
  cursor: pointer;
  height: 3rem;
  width: 3.3rem;
}

.hero__slider-nav-prev.active {
  background: url(../images/dist/hero_nav_prev_2.svg) 50%/contain no-repeat;
  height: 3rem;
  width: 5.6rem;
}

.hero__slider-nav-next {
  background: url(../images/dist/hero_nav_next.svg) 50%/contain no-repeat;
  cursor: pointer;
  height: 3rem;
  width: 5.6rem;
}

.bestsellers {
  padding-bottom: 3.7rem;
  padding-top: 5.5rem;
}

.bestsellers .h2 {
  min-height: 3rem;
}

.bestsellers__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3rem;
}

.bestsellers__slider-nav {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  margin-left: 6rem;
  margin-top: -.9rem;
}

.bestsellers__slide-nav-prev {
  background: url(../images/dist/hits_arrow_prev.svg) 50%/.9rem no-repeat;
  cursor: pointer;
  height: 3rem;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  width: 2rem;
}

.bestsellers__slide-nav-prev.swiper-button-disabled {
  opacity: .5;
}

.bestsellers__slide-nav-next {
  background: url(../images/dist/hits_arrow_next.svg) 50%/.9rem no-repeat;
  cursor: pointer;
  height: 3rem;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  width: 2rem;
}

.bestsellers__slide-nav-next.swiper-button-disabled {
  opacity: .5;
}

.bestsellers__slider {
  margin-left: -3.1rem;
  margin-right: -3.1rem;
}

.bestsellers__slider .swiper-slide {
  border-radius: 10px;
  height: auto;
  opacity: 0;
  padding-bottom: 3.1rem;
  padding-left: 3.1rem;
  padding-right: 3.1rem;
  -webkit-transition: opacity .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: opacity .45s cubic-bezier(.39, .575, .565, 1);
  transition: opacity .45s cubic-bezier(.39, .575, .565, 1);
}

.bestsellers__slider .swiper-slide-visible {
  opacity: 1;
}

.card-item {
  max-width: 25.1rem;
  text-align: center;
}

.card-item__absolute {
  background: #f00b0b;
  border-radius: 10px 0;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  left: 0;
  line-height: 1.1875;
  padding: .4rem 1.5rem;
  position: absolute;
  top: 0;
  z-index: 3;
}

.card-item__absolute img {
  max-height: 2.1rem;
  max-width: 2.8rem;
}

.card-item__photo img {
  cursor: crosshair;
  height: 17.4rem;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  width: 17.4rem;
}

.card-item__title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.375;
  margin: -.5rem -1rem .2rem;
  text-align: center;
}

.card-item__description-hover {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: hsla(0, 0%, 100%, .97);
  border-radius: .4rem;
  -webkit-box-shadow: 0 0 28px rgba(0, 0, 0, .07);
  box-shadow: 0 0 28px rgba(0, 0, 0, .07);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  height: 100%;
  justify-content: center;
  left: 0;
  line-height: 1.3888888889;
  opacity: 0;
  padding: 7.8rem 1rem 0;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
  visibility: hidden;
  z-index: -1;
  
  width: 100%;
}

.card-item__description-hover.showed {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  z-index: 2;
}

.card-item__description {
  display: none;
  font-size: 1.3rem;
  line-height: 1.3846153846;
  margin: -.9rem -1.2rem 1.3rem;
  text-align: center;
}

.card-item__aw {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .7rem;
  justify-content: center;
  margin-bottom: .7rem;
}

.card-item__amount,
.card-item__weight {
  color: #828282;
  font-size: 1.5rem;
  line-height: 1.3333333333;
}

.card-item__info {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
}

.quantity-inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bt-minus {
  background: url(../images/dist/minus_icon.svg) 50%/11px no-repeat;
  cursor: pointer;
  height: 2rem;
  width: 1.5rem;
}

.bt-minus,
.quantity {
  border: none;
  margin: 0;
  padding: 0;
}

.quantity {
  background: none;
  color: #000;
  font-size: 1.8rem;
  font-weight: 400;
  max-width: 3rem;
  text-align: center;
}

.bt-plus {
  background: url(../images/dist/plus_icon.svg) 50%/11px no-repeat;
  border: none;
  cursor: pointer;
  height: 2rem;
  margin: 0;
  outline: none;
  padding: 0;
  width: 1.5rem;
}

.card-item__info-price {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card-item__info-price-sale {
  color: #acacac;
  font-size: 1.3rem;
  font-weight: 200;
  line-height: 1.3846153846;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
}

.card-item__info-price-normal {
  color: #040404;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3888888889;
  margin-left: .6rem;
}

.card-item__add-cart {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background: transparent;
  border: 1px solid #f00b0b;
  border-radius: .4rem;
  color: #000;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  font-weight: 500;
  height: 4rem;
  justify-content: center;
  margin: 0;
  max-width: 18rem;
  padding: 0 0 .2rem;
  position: relative;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
  width: 100%;
  z-index: 2;
}

.card-item__add-cart:hover {
  background: #f00b0b;
  color: #fff;
}

.card-item__add-cart:hover span:after {
  color: #fff;
}

.card-item__add-cart span {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .5rem;
}

.card-item__add-cart span:after {
  color: #000;
  content: "+";
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3333333333;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.catalog-menu {
  margin-bottom: 0;
  padding-bottom: 8rem;
  padding-top: 7.6rem;
}

.catalog-menu__header-h-categories {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #acacac;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
  margin-bottom: 3.4rem;
  padding-bottom: .7rem;
    justify-content: space-between;
}

.catalog-menu__header-h-category {
  color: #8c8c8c;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  padding: 0 1.7rem;
  position: relative;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.catalog-menu__header-h-category:hover {
  color: #000;
}

.catalog-menu__header-h-category:last-of-type {
  margin-right: 0;
}

.catalog-menu__header-h-category:after {
  background: #acacac;
  bottom: -.8rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  width: 100%;
}

.catalog-menu__header-h-category.active {
  color: #000;
  font-weight: 700;
  -webkit-transform: translateY(-9px);
  -ms-transform: translateY(-9px);
  transform: translateY(-9px);
}

.catalog-menu__header-h-category.active:after {
  background: #f00b0b;
  content: "";
  height: 4px;
  -webkit-transform: translateY(9px);
  -ms-transform: translateY(9px);
  transform: translateY(9px);
}

.catalog-menu__body .card-item {
  border-radius: .4rem;
  padding-bottom: 3.1rem;
  padding-left: 3.1rem;
  padding-right: 3.1rem;
  position: relative;
}

.catalog-menu__body .card-item .card-item__info-price-sale {
  font-size: 12px;
  margin-bottom: -4px;
  padding-bottom: 0;
}

.catalog-menu__body-main-tab {
  display: none;
}

.catalog-menu__body-main-tab.active-tab {
  -webkit-animation: fadein 1.2s;
  animation: fadein 1.2s;
  display: block;
}

.catalog-menu__header-h-tabs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog-menu__header-h-tab {
  color: #1f1f1f;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1.375;
  margin-right: 2.9rem;
  position: relative;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.catalog-menu__header-h-tab:hover {
  color: #f00b0b;
}

.catalog-menu__header-h-tab:after {
  background: #f00b0b;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  visibility: hidden;
  width: 100%;
  z-index: -1;
}

.catalog-menu__header-h-tab:last-of-type {
  margin-right: 0;
}

.catalog-menu__header-h-tab.active {
  color: #f00b0b;
  font-weight: 700;
}

.catalog-menu__header-h-tab.active:after {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.catalog-menu__body-inner-tab {
  display: none;
}

.catalog-menu__body-inner-tab.active-tab {
  -webkit-animation: fadein 1.2s;
  animation: fadein 1.2s;
  display: block;
}

.catalog-menu__body-grid {
  -ms-grid-columns: 1fr 11px 1fr 11px 1fr 11px 1fr 11px 1fr 11px 1fr;
  -ms-grid-rows: auto;
  display: -ms-grid;
  display: grid;
  gap: 1rem 11px;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  margin-left: -3.1rem;
  margin-right: -3.1rem;
  margin-top: 2.5rem;
}

.catalog-menu__body-grid>:first-child {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
}

.catalog-menu__body-grid>:nth-child(2) {
  -ms-grid-column: 3;
  -ms-grid-row: 1;
}

.catalog-menu__body-grid>:nth-child(3) {
  -ms-grid-column: 5;
  -ms-grid-row: 1;
}

.catalog-menu__body-grid>:nth-child(4) {
  -ms-grid-column: 7;
  -ms-grid-row: 1;
}

.catalog-menu__body-grid>:nth-child(5) {
  -ms-grid-column: 9;
  -ms-grid-row: 1;
}

.catalog-menu__body-grid>:nth-child(6) {
  -ms-grid-column: 11;
  -ms-grid-row: 1;
}

.about {
  background: url(../images/dist/about-bg.jpg) 50%/cover no-repeat;
  padding-bottom: 10.1rem;
  padding-top: 12.3rem;
}

.about__wrap {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  padding-right: 11.3rem;
}

.about__photo-circle {
  background: #fe5b00;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 94%;
  left: 0;
  mix-blend-mode: color-dodge;
  overflow: hidden;
  position: absolute;
  top: 2.4rem;
  width: 97%;
}

.about__text-span {
  color: #fff;
  display: block;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3666666667;
  margin-bottom: 2.2rem;
  text-transform: uppercase;
}

.about__text {
  max-width: 59.8rem;
  width: 100%;
}

.about__text-p {
  margin-bottom: 2.4rem;
}

.about__text-p p {
  color: #fff;
  font-size: 1.9rem;
  line-height: 1.6315789474;
  margin-bottom: 2.1rem;
}

.about__text-p p:last-of-type {
  margin-bottom: 0;
}

.delivery {
  padding-bottom: 10.1rem;
  padding-top: 4.6rem;
}

.delivery .h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3666666667;
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
}

.delivery__wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  background: url(../images/dist/dil-bg.svg) 23rem 7.9rem/137.1rem 45.2rem no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding-left: 26.2rem;
  padding-top: 13.2rem;
}

.delivery__text-item {
  margin-bottom: 6rem;
  position: relative;
}

.delivery__text-item:first-of-type .delivery__text-item-title {
  max-width: 25.8rem;
}

.delivery__text-item:first-of-type .delivery__text-item-p {
  max-width: 20.2rem;
}

.delivery__text-item:nth-of-type(2) {
  margin-bottom: 5.6rem;
}

.delivery__text-item:nth-of-type(2) .delivery__text-item-num {
  left: -10.7rem;
  top: -5.4rem;
}

.delivery__text-item:nth-of-type(2) .delivery__text-item-title {
  margin-bottom: -.4rem;
  max-width: 32.4rem;
}

.delivery__text-item:nth-of-type(2) .delivery__text-item-p {
  max-width: 23.6rem;
}

.delivery__text-item:nth-of-type(3) .delivery__text-item-num {
  left: -10.7rem;
  top: -7.2rem;
}

.delivery__text-item:nth-of-type(3) .delivery__text-item-title {
  max-width: 30.5rem;
}

.delivery__text-item:nth-of-type(3) .delivery__text-item-p {
  max-width: 20.2rem;
}

.delivery__text-item-num {
  color: #eee;
  font-size: 11rem;
  font-weight: 700;
  left: -10.7rem;
  line-height: 1.6909090909;
  position: absolute;
  top: -6.6rem;
  z-index: -1;
}

.delivery__text-item-title h4 {
  color: #f00b0b;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.1363636364;
  margin-bottom: 0;
}

.delivery__text-item-p p {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.3571428571;
}

.delivery__photo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-top: -4.7rem;
}

.delivery__photo img {
  height: 42.3rem;
}

.sale-site__wrap {
  background: url(../images/dist/sale-site-bg.jpg) 50%/cover no-repeat;
  border-radius: .8rem;
  padding-bottom: 5.2rem;
  padding-left: 23.4rem;
  padding-top: 5.8rem;
}

.sale-site__wrap p {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2285714286;
  margin-bottom: 0;
}

.sale-site__wrap span {
  color: #f00b0b;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: .9333333333;
  text-transform: uppercase;
}

.sale-site__wrap .sale-site-big {
  font-size: 6rem;
  line-height: .9666666667;
  position: relative;
  top: .6rem;
}

.about__info {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.4rem;
}

.about__info-logo img {
  height: 12.5rem;
  -o-object-fit: contain;
  object-fit: contain;
  width: 16.6rem;
}

.about__info-social {
  gap: 1.9rem;
  padding-top: 4rem;
}

.about__info-social,
.about__info-social a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about__info-social a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 15px rgba(95, 106, 117, .15);
  box-shadow: 0 0 15px rgba(95, 106, 117, .15);
  height: 3.5rem;
  justify-content: center;
  width: 3.5rem;
}

.gallery {
  padding-top: 4.6rem;
}

.gallery .h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3666666667;
  margin-bottom: 1.2rem;
  text-align: center;
  text-transform: uppercase;
}

.gallery p {
  font-size: 1.9rem;
  line-height: 1.6315789474;
  margin: 0 auto;
  max-width: 76.5rem;
  text-align: center;
  width: 100%;
}

.gallery p:last-of-type {
  margin-bottom: 3.5rem;
}

.gallery__grid {
  -ms-grid-columns: 1fr 1.3rem 1fr 1.3rem 1fr 1.3rem 1fr 1.3rem 1fr;
  -ms-grid-rows: auto;
  display: -ms-grid;
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
}

.gallery__grid>:first-child {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
}

.gallery__grid>:nth-child(2) {
  -ms-grid-column: 3;
  -ms-grid-row: 1;
}

.gallery__grid>:nth-child(3) {
  -ms-grid-column: 5;
  -ms-grid-row: 1;
}

.gallery__grid>:nth-child(4) {
  -ms-grid-column: 7;
  -ms-grid-row: 1;
}

.gallery__grid>:nth-child(5) {
  -ms-grid-column: 9;
  -ms-grid-row: 1;
}

.gallery__grid img {
  border-radius: .4rem;
  height: 34rem;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  width: 34rem;
}

.gallery__grid .custom-fancy:hover img {
  opacity: .9;
}

.footer {
  background: url(../images/dist/footer-bg.jpg) 50%/cover no-repeat;
  padding-bottom: 3.2rem;
  padding-top: 11rem;
  width: 100%;
}

.footer .h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 3.7rem;
  text-align: center;
  text-transform: uppercase;
}

.footer__wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.4rem;
  padding-left: 15.2rem;
  padding-right: 8rem;
}

.footer__geo {
  max-width: 51.2rem;
  width: 100%;
}

.footer__geo .h2 {
  display: block;
  text-align: left;
}

.footer__geo h3 {
  color: #f00b0b;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.7391304348;
  margin-bottom: 3.3rem;
  position: relative;
  text-transform: uppercase;
  top: -3.2rem;
}

.footer__geo p {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 600;
  gap: 3rem;
  line-height: 1.25;
  margin-bottom: .9rem;
  text-transform: uppercase;
}

.footer__geo p a,
.footer__geo p span {
  color: #f00b0b;
  display: block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  text-transform: none;
}

.footer__geo p:nth-of-type(2) {
  gap: 2.4rem;
}

.footer__geo p:nth-of-type(3) {
  gap: 2.2rem;
}

.footer__geo-map iframe {
  border-radius: 8px;
  height: 42rem;
  width: 100%;
}

.footer__text {
  margin-top: .3rem;
  max-width: 64.1rem;
  width: 100%;
}

.footer__text p {
  color: #d9d9d9;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2.1rem;
}

.footer__text ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__text ul li {
  color: #d9d9d9;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: .7rem;
}

.footer__text ul li:before {
  content: "-";
  display: inline-block;
  margin-right: .4rem;
}

.footer__text-title1 {
  color: #fff;
  display: block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1.3rem;
  text-transform: uppercase;
}

.footer__text-title2 {
  color: #d9d9d9;
  display: block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: .7rem;
}

.footer__text-title3 {
  color: #ff5c00;
  display: block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: .9rem;
  margin-top: 2.8rem;
}

.footer-copy {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding-left: 15.2rem;
  padding-right: 8rem;
}

.footer-copy span {
  color: #646564;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width:1700px) {
  html {
    font-size: 9px;
  }

  .hero__slider-nav {
    padding-left: 11.5rem;
  }

  .delivery__wrap {
    gap: 5rem;
  }
}

@media (max-width:1500px) {
  .gallery__grid img {
    aspect-ratio: 1;
    height: auto;
  }
}

@media (max-width:1430px) {
  html {
    font-size: 8.6px;
  }
}

@media (max-width:1320px) {
  html {
    font-size: 8.4px;
  }
}

@media (max-width:1200px) {
  main {
    padding-top: 60px;
  }

  .header {
    display: none;
  }

  .header-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .card-item__add-cart {
    max-width: 100%;
  }

  .catalog-menu__header-h-category {
    padding: 0 1.5rem;
  }

  .catalog-menu__body-grid {
    -ms-grid-columns: (1fr)[5];
    -ms-grid-rows: auto;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto;
  }

  .catalog-menu__body-grid>:first-child {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
  }

  .catalog-menu__body-grid>:nth-child(2) {
    -ms-grid-column: 2;
    -ms-grid-row: 1;
  }

  .catalog-menu__body-grid>:nth-child(3) {
    -ms-grid-column: 3;
    -ms-grid-row: 1;
  }

  .catalog-menu__body-grid>:nth-child(4) {
    -ms-grid-column: 4;
    -ms-grid-row: 1;
  }

  .catalog-menu__body-grid>:nth-child(5) {
    -ms-grid-column: 5;
    -ms-grid-row: 1;
  }

  .about__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4rem;
    padding-left: 0;
    padding-right: 0;
  }

  .about__text {
    margin-top: 0;
    max-width: 100%;
  }

  .delivery__wrap {
    background: url(../images/dist/dil-bg.svg) 3rem 7.9rem/137.1rem 45.2rem no-repeat;
    padding-left: 0;
    padding-right: 0;
  }

  .delivery__text-item:nth-of-type(2) .delivery__text-item-num {
    left: 0;
  }

  .delivery__text-item:nth-of-type(3) .delivery__text-item-num {
    left: 0;
  }

  .delivery__text-item-num {
    font-size: 10rem;
    left: 0;
  }

  .footer__wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .footer__geo {
    max-width: 100%;
  }

  .footer__text {
    max-width: 100%;
  }

  .footer-copy {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width:1100px) {
  body.lock {
    padding-right: 0;
  }

  .wrapper {
    opacity: 1;
    overflow-x: hidden;
  }
}

@media (max-width:960px) {
  .bestsellers {
    padding: 35px 0 50px;
  }

  .card-item {
    max-width: 100%;
  }

  .catalog-menu__body-grid {
    -ms-grid-columns: (1fr)[4];
    -ms-grid-rows: auto;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
  }

  .catalog-menu__body-grid>:first-child {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
  }

  .catalog-menu__body-grid>:nth-child(2) {
    -ms-grid-column: 2;
    -ms-grid-row: 1;
  }

  .catalog-menu__body-grid>:nth-child(3) {
    -ms-grid-column: 3;
    -ms-grid-row: 1;
  }

  .catalog-menu__body-grid>:nth-child(4) {
    -ms-grid-column: 4;
    -ms-grid-row: 1;
  }

  .delivery__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background: url(../images/dist/dil-bg.svg) 3rem 2rem/137.1rem 45.2rem no-repeat;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .delivery__text-item:first-of-type .delivery__text-item-title {
    max-width: 100%;
  }

  .delivery__text-item:first-of-type .delivery__text-item-p {
    max-width: 100%;
  }

  .delivery__text-item:nth-of-type(2) {
    margin-left: 0;
  }

  .delivery__text-item:nth-of-type(2) .delivery__text-item-title {
    margin-bottom: 0;
    max-width: 100%;
  }

  .delivery__text-item:nth-of-type(2) .delivery__text-item-p {
    max-width: 100%;
  }

  .delivery__text-item:nth-of-type(3) {
    margin-left: 0;
  }

  .delivery__text-item:nth-of-type(3) .delivery__text-item-title {
    max-width: 100%;
  }

  .delivery__text-item:nth-of-type(3) .delivery__text-item-p {
    max-width: 100%;
  }

  .delivery__photo {
    margin-top: 0;
    text-align: center;
  }

  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5rem;
  }
}

@media (max-width:960px) and (max-width:767px) {
  .delivery__text {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media (max-width:767px) {
  html {
    font-size: 10px;
  }

  .header-mobile__meta {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-mobile-menu .header-mobile-menu__list {
    padding: 0 25px;
  }

  .header-mobile-menu .header-mobile-center {
    padding: 0 25px;
  }

  .input,
  .textarea {
    padding-bottom: 10px;
  }

  .textarea {
    padding-left: 24px;
    padding-right: 24px;
  }

  .h1 {
    font-size: 20px;
    line-height: inherit;
  }

  .h2 {
    font-size: 20px;
    line-height: inherit;
  }

  .container-w100 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container-1750 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .btn {
    font-size: 14px;
    height: 40px;
    line-height: 1;
    padding: 0;
  }

  .fancybox-custom .fancybox-button {
    height: 4rem;
    width: 4rem;
  }

  .fancybox-custom .fancybox-navigation .fancybox-button {
    top: calc(50% - 20px);
  }

  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_right {
    height: 4rem;
    width: 4rem;
  }

  .hero {
    display: none;
  }

  .bestsellers {
    padding: 35px 0 10px;
  }

  .bestsellers__header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 0;
  }

  .bestsellers__slider-nav {
    gap: 1rem;
  }

  .bestsellers__slide-nav-prev {
    height: 3rem;
  }

  .bestsellers__slide-nav-next {
    width: 3rem;
  }

  .bestsellers__slider {
    margin-left: 0;
    margin-right: 0;
  }

  .bestsellers__slider .swiper-slide {
    padding-left: 0;
    padding-right: 0;
  }

  .card-item__absolute {
    font-size: 12px;
    padding: .3rem 1.1rem;
  }

  .card-item__absolute img {
    max-height: 1.5rem;
    max-width: 2rem;
  }

  .card-item__photo img {
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
  }

  .card-item__title {
    margin-top: 0;
  }

  .card-item__description-hover {
    display: none;
  }

  .card-item__description-hover.showed {
    display: none;
  }

  .card-item__description {
    display: block;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .card-item__aw {
    margin-bottom: 1.2rem;
  }

  .card-item__info {
    margin: 0 auto 12px;
    max-width: 90%;
  }

  .quantity {
    font-size: 16px;
  }

  .card-item__info-price-sale {
    font-size: 10px;
    padding-bottom: 2px;
  }

  .card-item__info-price-normal {
    font-size: 16px;
  }

  .card-item__add-cart {
    padding-bottom: 0;
  }

  .catalog-menu {
    margin-bottom: 0;
    padding: 35px 0;
  }

  .catalog-menu__header-h-categories {
    border-color: transparent;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px 12px;
    margin-bottom: 25px;
    padding-bottom: 2px;
  }

  .catalog-menu__header-h-category {
    font-size: 15px;
    margin-right: 0;
  }

  .catalog-menu__header-h-category:after {
    bottom: -3px;
  }

  .catalog-menu__body .card-item {
    padding-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .catalog-menu__body .card-item .card-item__photo {
    margin-left: -10px;
    margin-right: -10px;
  }

  .catalog-menu__body .card-item .card-item__add-cart {
    font-size: 14px;
    max-width: 100%;
  }

  .catalog-menu__body .card-item .card-item__title {
    font-size: 13px;
    margin-bottom: 3px;
  }

  .catalog-menu__body .card-item .card-item__amount,
  .catalog-menu__body .card-item .card-item__weight {
    font-size: 13px;
  }

  .catalog-menu__body .card-item .card-item__aw {
    margin-bottom: 10px;
  }

  .catalog-menu__body .card-item .card-item__description {
    font-size: 10px;
    line-height: 1.3;
    margin-top: -5px;
    padding: 0 3px;
  }

  .catalog-menu__header-h-tabs {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 13px;
  }

  .catalog-menu__header-h-tab {
    font-size: 13px;
    margin-right: 0;
  }

  .catalog-menu__header-h-tab:after {
    bottom: -2px;
  }

  .catalog-menu__body-grid {
    -ms-grid-columns: 1fr 7px 1fr;
    -ms-grid-rows: auto;
    gap: 0 7px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    margin-left: 0;
    margin-right: 0;
    margin-top: 35px;
  }

  .catalog-menu__body-grid>:first-child {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
  }

  .catalog-menu__body-grid>:nth-child(2) {
    -ms-grid-column: 3;
    -ms-grid-row: 1;
  }

  .about {
    -webkit-box-shadow: inset 0 0 0 2100px rgba(44, 45, 48, .7);
    box-shadow: inset 0 0 0 2100px rgba(44, 45, 48, .7);
    padding: 35px 0 15px;
  }

  .about__wrap {
    gap: 20px;
  }

  .about__photo-circle {
    height: 92%;
    width: 95%;
  }

  .about__text-span {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: left;
  }

  .about__text-p {
    margin-bottom: 0;
  }

  .about__text-p p {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .delivery {
    padding: 35px 0;
  }

  .delivery .h2 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: left;
  }

  .delivery__wrap {
    gap: 0;
    padding-top: 0;
  }

  .delivery__text-item {
    margin: 0 auto 15px;
    max-width: 100%;
    text-align: left;
    width: 100%;
  }

  .delivery__text-item:nth-of-type(2) {
    margin: 0 auto 15px;
    max-width: 100%;
    text-align: left;
    width: 100%;
  }

  .delivery__text-item:nth-of-type(3) {
    margin: 0 auto 15px;
    max-width: 100%;
    text-align: left;
    width: 100%;
  }

  .delivery__text-item-num {
    font-size: 5rem;
    left: 0;
    margin-bottom: -10px;
    position: static;
    top: 0;
  }

  .delivery__text-item-title h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .delivery__photo {
    margin-top: 20px;
  }

  .delivery__photo img {
    height: auto;
  }

  .sale-site__wrap {
    -webkit-box-shadow: inset 0 0 0 2100px rgba(44, 45, 48, .7);
    box-shadow: inset 0 0 0 2100px rgba(44, 45, 48, .7);
    padding: 35px 15px;
  }

  .sale-site__wrap p {
    font-size: 20px;
  }

  .sale-site__wrap span {
    display: block;
    font-size: 25px;
    padding-top: 5px;
  }

  .sale-site__wrap .sale-site-big {
    display: inline-block;
    font-size: 30px;
    top: 0;
  }

  .about__info-logo img {
    width: 12rem;
  }

  .gallery {
    padding: 35px 0 0;
  }

  .gallery .h2 {
    font-size: 20px;
    text-align: left;
  }

  .gallery p {
    font-size: 16px;
    text-align: left;
  }

  .gallery p:last-of-type {
    margin-bottom: 20px;
  }

  .gallery__grid {
    -ms-grid-columns: 1fr 7px 1fr;
    -ms-grid-rows: auto;
    gap: 7px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery__grid>:first-child {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
  }

  .gallery__grid>:nth-child(2) {
    -ms-grid-column: 3;
    -ms-grid-row: 1;
  }

  .footer {
    -webkit-box-shadow: inset 0 0 0 2100px rgba(44, 45, 48, .7);
    box-shadow: inset 0 0 0 2100px rgba(44, 45, 48, .7);
    padding: 35px 0;
  }

  .footer .h2 {
    margin-bottom: 20px;
  }

  .footer__wrap {
    gap: 0;
  }

  .footer__geo h3 {
    font-size: 18px;
    margin-bottom: 20px;
    top: 0;
  }

  .footer__geo {
    max-width: 100%;
  }

  .footer__geo p {
    font-size: 16px;
    gap: 10px;
    margin-bottom: 10px;
  }

  .footer__geo p a,
  .footer__geo p span {
    font-size: 16px;
  }

  .footer__geo p:nth-of-type(2) {
    gap: 10px;
  }

  .footer__geo p:nth-of-type(3) {
    gap: 10px;
  }

  .footer__geo-map {
    margin-top: 20px;
  }

  .footer__geo-map iframe {
    height: 267px;
  }

  .footer__text p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer__text ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer__text-title1 {
    margin-bottom: 10px;
  }

  .footer__text-title2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer__text-title3 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 15px;
  }

  .footer-copy span {
    font-size: 13px;
  }
}

@media (max-width:400px) {
  .sale-site__wrap .sale-site-big {
    font-size: 26px;
  }

  .footer__geo p {
    font-size: 15px;
  }
}

@media (max-width:390px) {
  .catalog-menu__body .card-item .card-item__description {
    padding: 0 5px;
  }
}

@media (max-width:360px) {
  .header-mobile__meta-flex {
    gap: 15px;
  }

  .header-mobile-menu .header__phone {
    margin-top: 2vh;
  }
}

@media (max-width:320px) {
  .header-mobile__meta-flex {
    gap: 10px;
  }

  .header-mobile-menu .header-mobile-menu__list {
    margin-top: 40px;
  }

  .header-mobile-menu .header-mobile-menu__list li a {
    font-size: 18px;
  }

  .header-mobile-menu .header__phone {
    font-size: 18px;
  }

  .header-mobile-menu .header__phone:first-of-type {
    font-size: 18px;
  }

  .card-item__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__geo p {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
  }

  .footer__geo p:nth-of-type(2) {
    gap: 5px;
  }

  .footer__geo p:nth-of-type(3) {
    gap: 5px;
  }
}

@media (prefers-reduced-motion:no-preference) {
  :root {
    scroll-behavior: auto;
  }
}
#payments{
 display: none!important;
   opacity: 0;
   visibility: hidden;
}
@media (max-width: 767px){
    #msCart .table .image img{
        width: 100%!important;
    }
    .catalog-menu__header-h-category{
        font-size: 20px;
    }
}