@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap");
@font-face {
  font-family: "icons";
  src: url("../src/fonts/icons.eot?vr8eiz");
  src: url("../src/fonts/icons.eot?vr8eiz#iefix") format("embedded-opentype"), url("../src/fonts/icons.ttf?vr8eiz") format("truetype"), url("../src/fonts/icons.woff?vr8eiz") format("woff"), url("../src/fonts/icons.svg?vr8eiz#icons") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
[class^=_icon-]::after,
[class*=" _icon-"]::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

._icon-arrow-down:before {
  content: "\e900";
}

._icon-cart:before {
  content: "\e901";
}

._icon-compare:before {
  content: "\e902";
}

._icon-email:before {
  content: "\e903";
}

._icon-hard:before {
  content: "\e904";
}

._icon-location:before {
  content: "\e905";
}

._icon-logo:before {
  content: "\e906";
}

._icon-manay:before {
  content: "\e907";
}

._icon-phone:before {
  content: "\e908";
}

._icon-search:before {
  content: "\e909";
}

._icon-spoller-arrow:before {
  content: "\e90a";
}

._icon-star:before {
  content: "\e90b";
}

._icon-time:before {
  content: "\e90c";
}

._icon-user:before {
  content: "\e90d";
}

._icon-back-2:before {
  content: "\e90e";
}

/* reset start*/
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  list-style: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
}

button,
input {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  outline: none;
}

button {
  cursor: pointer;
  background-color: inherit;
}

/* :focus,
:active {
  outline: none;
} */
/* a:focus,
a:active {
  outline: none;
} */
/* Links */
a,
a:link,
a:visited {
  /* color: inherit; */
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Упрощаем работу с изображениями */
img {
  vertical-align: top;
  max-width: 100%;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* reset end*/
[class*=__container] {
  max-width: 99.375rem;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #000;
}

.wrapper {
  overflow: hidden;
  min-height: 100vh;
}

.swiper {
  margin-left: unset !important;
  margin-right: unset !important;
}

._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

._ibg img {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.button {
  display: inline-block;
  border-radius: 3px;
  background: #e8aa31;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 0.5rem 3.25rem;
  color: #fff;
  line-height: 1.6;
  box-shadow: 0px 4px 20px rgba(232, 170, 49, 0.43);
}
@media (max-width: 20em) {
  .button {
    font-size: 0.9375rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .button {
    font-size: calc(
                0.9375rem + 5 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (any-hover: hover) {
  .button:hover {
    box-shadow: 0px 4px 25px rgba(232, 170, 49, 0.43);
  }
}
.button_border {
  border: 2px solid #e8aa31;
  background-color: #fff;
  color: #e8aa31;
}
.button_black {
  background-color: #313131;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.43);
}
@media (any-hover: hover) {
  .button_black:hover {
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.43);
  }
}

/* Popup */
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 2, 2, 0.93);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.8s ease;
  z-index: 10;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.popup.open .popup__content {
  transform: perspective(600px) translate(0px, 0px) rotateX(0deg);
  opacity: 1;
}

.popup__area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: default;
}

.popup__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
}

.popup__content {
  background-color: #fff;
  color: #333;
  max-width: 600px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  border-radius: 10px;
  transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
}

.popup__content_image {
  padding: 0;
}

.popup__image img {
  max-width: 100%;
}

body.lock {
  overflow: hidden;
}

.popup__close {
  position: absolute;
  margin: 10px 10px 0px 0px;
  text-decoration: none;
  top: 0;
  right: 0;
  font-size: 16px;
  color: #333;
}

.popup__close:hover {
  background-color: #bbb6b6;
}

.popup__title {
  font-size: 40px;
  margin: 0px 0px 1em 0px;
}

@media (max-width: 61.99875em) {
  .icon-menu {
    z-index: 100;
    display: block;
    position: relative;
    width: 40px;
    height: 1.40625rem;
    cursor: pointer;
  }
  .icon-menu::before, .icon-menu::after, .icon-menu span {
    content: "";
    left: 0;
    position: absolute;
    height: 0.125rem;
    width: 100%;
    border-radius: 0.625rem;
    transition: all 0.3s ease 0s;
    background-color: #fff;
  }
  .icon-menu::before, .icon-menu::after {
    content: "";
  }
  .icon-menu::before {
    top: 0;
  }
  .icon-menu::after {
    bottom: 0;
  }
  .icon-menu span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .icon-menu._active span {
    transform: scale(0);
  }
  .icon-menu._active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .icon-menu._active::after {
    top: 50%;
    transform: rotate(45deg) translate(0px, -50%);
  }
}

.top-header {
  background-color: #141414;
  color: #fff;
  padding: 10px 0;
}
.top-header__container {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 50px;
}
@media (max-width: 61.99875em) {
  .top-header__container {
    gap: 1.875rem;
  }
}
.top-header__menu {
  flex: 1 1 auto;
}
.top-header__user {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  line-height: 1.222; /* 22/18 */
  font-weight: 600;
}
.top-header__user::before {
  font-size: 1.75rem;
}
@media (min-width: 61.99875em) {
  .top-header__user::before {
    margin-right: 0.5357142857em;
  }
}
@media (any-hover: hover) {
  .top-header__user span:hover {
    text-decoration: underline;
  }
}
@media (max-width: 61.99875em) {
  .top-header__user::before {
    font-size: 2.1875rem;
  }
  .top-header__user span {
    display: none;
  }
}

.menu-top-header__list {
  display: flex;
  row-gap: 5px;
  column-gap: 3.75rem;
  line-height: 1.25; /* 20/16 */
}
@media (max-width: 20em) {
  .menu-top-header__list {
    column-gap: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .menu-top-header__list {
    column-gap: calc(
                1.25rem + 40 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 61.99875em) {
  .menu-top-header__list {
    flex-direction: column;
    row-gap: 1.5625rem;
  }
}
@media (min-width: 61.99875em) {
  .menu-top-header__item_catalog {
    display: none;
  }
}
.menu-top-header__link {
  font-size: 1rem;
}
@media (any-hover: hover) {
  .menu-top-header__link:hover {
    text-decoration: underline;
  }
}
.menu-top-header__link_catalog {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.menu-top-header__link_catalog::before {
  flex: 0 0 0.875rem;
  height: 0.875rem;
  font-size: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: rotate(-90deg);
}
@media (max-width: 61.99875em) {
  .menu-top-header__link {
    font-size: 1.875rem;
  }
}
@media (max-width: 61.99875em) and (max-width: 20em) {
  .menu-top-header__link {
    font-size: 1.375rem;
  }
}
@media (max-width: 61.99875em) and (min-width: 20em) and (max-width: 62em) {
  .menu-top-header__link {
    font-size: calc(
                1.375rem + 8 * ((100vw - 20rem) / 672)
            );
  }
}
@media (max-width: 61.99875em) {
  .menu-top-header {
    display: none;
  }
}

@media (max-width: 61.99875em) {
  .menu__body {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -120%;
    overflow: auto;
    background-color: #141414;
    padding: 6.25rem 0.9375rem 3.125rem 0.9375rem;
    z-index: 4;
    transition: left 0.3s ease;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 4.375rem;
    left: -100%;
    top: 0;
    background: #141414;
    z-index: 3;
  }
  .menu__body._active {
    left: 0;
  }
  .menu__body._active::before {
    left: 0;
  }
}
@media (max-width: 61.99875em) {
  .menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1 auto;
  }
}

.body-header {
  padding: 0.625rem 0;
  background: #ecf1f2;
}
.body-header__container {
  display: flex;
  min-height: 4.375rem;
  align-items: center;
}
@media (max-width: 61.99875em) {
  .body-header__container {
    justify-content: space-between;
  }
}
.body-header__logo {
  font-size: 2.625rem;
  color: #141414;
}
.body-header__search {
  flex: 1 1 auto;
}
@media (min-width: 61.99875em) {
  .body-header__search {
    padding-right: 1.25rem;
  }
}
@media (min-width: 61.99875em) {
  .body-header__search {
    padding-left: 9.875rem;
  }
}
@media (min-width: 61.99875em) and (max-width: 88.75em) {
  .body-header__search {
    padding-left: 1.25rem;
  }
}
@media (min-width: 61.99875em) and (min-width: 88.75em) and (max-width: 101.25em) {
  .body-header__search {
    padding-left: calc(
                1.25rem + 138 * ((100vw - 88.75rem) / 200)
            );
  }
}
.search-header {
  background: rgba(7, 7, 7, 0.03);
  border-radius: 0.1875rem;
  position: relative;
  border-radius: 0.1875rem;
  border: 1px solid rgba(4, 4, 4, 0.5);
}
@media (min-width: 61.99875em) {
  .search-header {
    max-width: 23.5625rem;
  }
}
.search-header__button {
  position: absolute;
  background-color: transparent;
  height: 2.5625rem;
  width: 2.5625rem;
  top: 0;
  left: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}
.search-header__button::before {
  color: rgba(0, 0, 0, 0.5);
}
.search-header__input {
  width: 100%;
  border-radius: 0.1875rem;
  background-color: transparent;
  height: 2.5625rem;
  padding: 0px 1.25rem 0px 3.125rem;
  color: #000;
}
.search-header__input:focus {
  box-shadow: 0px 0px 8px rgba(232, 171, 49, 0.527);
}
.search-header__input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 29.99875em) {
  .search-header {
    background: #fff;
  }
}

.actions-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  column-gap: 1.875rem;
}
@media (max-width: 61.99875em) {
  .actions-header {
    display: none;
  }
}
@media (max-width: 62.5em) {
  .actions-header {
    column-gap: 0.9375rem;
  }
}
@media (min-width: 62.5em) and (max-width: 101.25em) {
  .actions-header {
    column-gap: calc(
                0.9375rem + 15 * ((100vw - 62.5rem) / 620)
            );
  }
}
.actions-header__location {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  margin: 1.5625rem;
}
@media (max-width: 78.125em) {
  .actions-header__location {
    margin: 0rem;
  }
}
@media (min-width: 78.125em) and (max-width: 101.25em) {
  .actions-header__location {
    margin: calc(
                0rem + 25 * ((100vw - 78.125rem) / 370)
            );
  }
}
.actions-header__location::before {
  color: #000;
  font-size: 1.5rem;
  margin: 0px 0.4166666667em 0px 0px;
}
@media (any-hover: hover) {
  .actions-header__location span:hover {
    text-decoration: underline;
  }
}
.actions-header__favotite {
  font-size: 1.6875rem;
  position: relative;
  z-index: 5;
}
@media (any-hover: hover) {
  .actions-header__favotite:hover {
    color: #e8aa31;
  }
}
.actions-header__cart {
  position: relative;
  z-index: 5;
}

.phones-header {
  position: relative;
  z-index: 5;
}
.phones-header__item {
  position: relative;
  display: flex;
  text-align: center;
}
.phones-header__arrow {
  color: #e8aa31;
  font-size: 0.625rem;
  margin: 0px 0px 0px 1.0625em;
  transition: transform 0.3s ease;
}
.phones-header__arrow._active {
  transform: rotate(-180deg);
}
@media (max-width: 61.99875em) {
  .phones-header__arrow {
    display: none;
  }
}
.phones-header__list {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  background: #fff;
  padding: 0.9375rem;
  border-radius: 0.625rem;
  margin: 0.3125rem 0px 0px 0px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.phones-header__list li:not(:last-child) {
  margin-bottom: 0.4444444444em;
}
@media (max-width: 61.99875em) {
  .phones-header__list {
    display: none;
  }
}
.phones-header__callback {
  font-weight: 700;
  line-height: 1.222; /* 22/18 */
  color: #e8aa31;
  text-align: center;
  font-size: 1.125rem;
}
@media (any-hover: hover) {
  .phones-header__callback:hover {
    text-decoration: underline;
  }
}
@media (max-width: 61.99875em) {
  .phones-header__callback {
    display: none;
  }
}
.phones-header__phone {
  font-weight: 600;
  line-height: 1.222; /* 22/18 */
  white-space: nowrap;
}
.phones-header__phone::before {
  font-size: 1.875rem;
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e908";
  display: none;
}
@media (max-width: 61.99875em) {
  .phones-header__phone {
    font-size: 1.25rem;
  }
}
@media (max-width: 29.99875em) {
  .phones-header__phone::before {
    display: block;
  }
  .phones-header__phone span {
    display: none;
  }
}

.cart-header {
  display: flex;
  column-gap: 15px;
  align-items: center;
  position: relative;
  z-index: 5;
}
.cart-header__icon {
  flex: 0 0 37px;
  font-size: 2.1875rem;
  position: relative;
}
.cart-header__icon span {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.75rem;
  padding: 0.125rem 0.25rem;
  color: #fff;
  background-color: #e8aa31;
  border-radius: 50%;
}
@media (any-hover: hover) {
  .cart-header__icon:hover {
    color: #e8aa31;
  }
}
.cart-header__body {
  font-size: 1rem;
  line-height: 1.25; /* 20/16 */
}
@media (max-width: 78.125em) {
  .cart-header__body {
    display: none;
  }
}
.cart-header__summ {
  font-weight: 500;
}
.cart-header__summ:not(:last-child) {
  margin-bottom: 0.3125em;
}
.cart-header__link {
  color: #e8aa31;
}

.catalog-header {
  position: relative;
  background-color: #141414;
  color: #fff;
}
@media (max-width: 29.99875em) {
  .catalog-header {
    padding: 1.25rem 0;
  }
}

.menu-catalog__list {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
@media (max-width: 61.99875em) {
  .menu-catalog__list {
    flex-direction: column;
    row-gap: 1.5625rem;
  }
}
.menu-catalog__link {
  display: flex;
  position: relative;
  transition: color 0.3s ease;
}
@media (min-width: 61.99875em) {
  .menu-catalog__link {
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 4.375rem;
    padding: 0 0.625rem;
  }
}
@media (min-width: 61.99875em) {
  .menu-catalog__link::after {
    content: "";
    position: absolute;
    visibility: hidden;
    opacity: 0;
    bottom: 2px;
    left: 0.625rem;
    height: 2px;
    background-color: #e8aa31;
    width: calc(100% - 1.25rem);
    transition: all 0.3s ease;
  }
}
@media (min-width: 61.99875em) and (any-hover: hover) {
  .menu-catalog__link:hover {
    color: #e8aa31;
  }
  .menu-catalog__link:hover::after {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 61.99875em) {
  .menu-catalog__link._submenu-active {
    color: #e8aa31;
  }
  .menu-catalog__link._submenu-active::after {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 61.99875em) {
  .menu-catalog__link {
    font-size: 1.875rem;
  }
}
@media (max-width: 61.99875em) and (max-width: 20em) {
  .menu-catalog__link {
    font-size: 1.375rem;
  }
}
@media (max-width: 61.99875em) and (min-width: 20em) and (max-width: 62em) {
  .menu-catalog__link {
    font-size: calc(
                1.375rem + 8 * ((100vw - 20rem) / 672)
            );
  }
}
@media (max-width: 61.99875em) {
  .menu-catalog__link {
    display: flex;
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media (max-width: 61.99875em) {
  .menu-catalog__link::before {
    font-family: "icons" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e900";
    font-size: 0.625rem;
    transform: rotate(-90deg);
  }
}
.menu-catalog__back {
  display: none;
}
@media (max-width: 61.99875em) {
  .menu-catalog__back {
    display: inline-flex;
    align-items: center;
    font-size: 1.875rem;
  }
}
@media (max-width: 61.99875em) and (max-width: 20em) {
  .menu-catalog__back {
    font-size: 1.375rem;
  }
}
@media (max-width: 61.99875em) and (min-width: 20em) and (max-width: 62em) {
  .menu-catalog__back {
    font-size: calc(
                1.375rem + 8 * ((100vw - 20rem) / 672)
            );
  }
}
@media (max-width: 61.99875em) {
  .menu-catalog__back:not(:last-child) {
    margin-bottom: 2.3333333333em;
  }
}
@media (max-width: 61.99875em) {
  .menu-catalog__back::before {
    margin-right: 0.4333333333em;
  }
}
@media (max-width: 61.99875em) {
  .menu-catalog {
    position: fixed;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #141414;
    padding: 1.5625rem 0.9375rem 3.125rem 0.9375rem;
    z-index: 4;
    transition: left 0.3s ease;
  }
  .catalog-open .menu-catalog {
    left: 0;
    z-index: 6;
  }
}
.menu-catalog__sub-menu {
  position: absolute;
  width: 100%;
  left: 0;
  top: 99%;
  background-color: #141414;
  transition: opacity 0.3s ease;
}

.sub-menu-catalog {
  position: absolute;
  z-index: 4;
}
@media (max-width: 61.99875em) {
  .sub-menu-catalog {
    position: fixed;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #141414;
    padding: 1.5625rem 0.9375rem 3.125rem 0.9375rem;
    z-index: 4;
    transition: left 0.3s ease;
  }
  .sub-menu-open .sub-menu-catalog {
    display: block;
    left: 0;
    z-index: 6;
  }
}
.sub-menu-catalog__back {
  display: none;
}
@media (max-width: 61.99875em) {
  .sub-menu-catalog__back {
    display: inline-flex;
    align-items: center;
    font-size: 1.875rem;
  }
}
@media (max-width: 61.99875em) and (max-width: 20em) {
  .sub-menu-catalog__back {
    font-size: 1.375rem;
  }
}
@media (max-width: 61.99875em) and (min-width: 20em) and (max-width: 62em) {
  .sub-menu-catalog__back {
    font-size: calc(
                1.375rem + 8 * ((100vw - 20rem) / 672)
            );
  }
}
@media (max-width: 61.99875em) {
  .sub-menu-catalog__back:not(:last-child) {
    margin-bottom: 2.3333333333em;
  }
}
@media (max-width: 61.99875em) {
  .sub-menu-catalog__back::before {
    margin-right: 0.4333333333em;
  }
}
.sub-menu-catalog__block {
  padding-bottom: 1.875rem;
  display: none;
}
.sub-menu-catalog__block_1 {
  grid-template-columns: repeat(1, minmax(auto, 20rem));
}
.sub-menu-catalog__block_2 {
  grid-template-columns: repeat(2, minmax(auto, 20rem));
}
.sub-menu-catalog__block_3 {
  grid-template-columns: repeat(3, minmax(auto, 20rem));
}
.sub-menu-catalog__block_4 {
  grid-template-columns: repeat(4, minmax(auto, 20rem));
}
.sub-menu-catalog__block_5 {
  grid-template-columns: repeat(5, minmax(auto, 20rem));
}
.sub-menu-catalog__block._submenu-open {
  display: grid;
}
@media (max-width: 61.99875em) {
  .sub-menu-catalog__block._submenu-open {
    display: block;
  }
}
.sub-menu-catalog__category {
  font-size: 1rem;
  line-height: 1.25; /* 20/16 */
}
@media (max-width: 61.99875em) {
  .sub-menu-catalog__category {
    font-size: 1.875rem;
  }
}
@media (max-width: 61.99875em) and (max-width: 20em) {
  .sub-menu-catalog__category {
    font-size: 1.375rem;
  }
}
@media (max-width: 61.99875em) and (min-width: 20em) and (max-width: 62em) {
  .sub-menu-catalog__category {
    font-size: calc(
                1.375rem + 8 * ((100vw - 20rem) / 672)
            );
  }
}
@media (any-hover: hover) {
  .sub-menu-catalog__category:hover {
    text-decoration: underline;
  }
}
@media (min-width: 61.99875em) {
  .sub-menu-catalog__category {
    font-weight: 700;
    padding: 1.875rem 0.9375rem;
  }
}
@media (max-width: 61.99875em) {
  .sub-menu-catalog__category:not(:last-child) {
    margin-bottom: 1.5625em;
  }
}
.sub-menu-catalog__list {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 1.875rem 0rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media (min-width: 61.99875em) {
  .sub-menu-catalog__list {
    padding: 1.875rem 0.9375rem;
  }
}
@media (max-width: 61.99875em) {
  .sub-menu-catalog__list {
    display: none;
  }
}
.sub-menu-catalog__link {
  font-size: 1rem;
  line-height: 1.25; /* 20/16 */
}
@media (any-hover: hover) {
  .sub-menu-catalog__link:hover {
    text-decoration: underline;
  }
}
.sub-menu-catalog__all {
  align-self: flex-start;
  padding-top: 1.875rem;
  font-size: 16px;
  font-weight: 500;
  color: #e8aa31;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}
@media (max-width: 61.99875em) {
  .sub-menu-catalog__all {
    display: none;
  }
}
@media (any-hover: hover) {
  .sub-menu-catalog__all:hover {
    text-decoration: underline;
  }
}

.main-block {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
  background: url(../src/img/main-block/bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 20em) {
  .main-block {
    padding-top: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .main-block {
    padding-top: calc(
                1.875rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .main-block {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .main-block {
    padding-bottom: calc(
                1.875rem + 30 * ((100vw - 20rem) / 1300)
            );
  }
}
.main-block__body {
  display: grid;
  align-items: start;
  row-gap: 2.5rem;
}
.main-block__body:not(:last-child) {
  margin-bottom: 2.6875rem;
}
@media (max-width: 20em) {
  .main-block__body:not(:last-child) {
    margin-bottom: 1.625rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .main-block__body:not(:last-child) {
    margin-bottom: calc(
                1.625rem + 17 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (min-width: 61.99875em) {
  .main-block__body {
    grid-template-columns: 1fr 39%;
  }
}
.main-block__slider {
  margin: 0px -1.875rem !important;
  padding: 0px 1.875rem !important;
}
.main-block__wrapper:not(:last-child) {
  margin-bottom: 1.875rem;
}
.slide-main-block__content {
  color: #fff;
}
@media (min-width: 61.99875em) {
  .slide-main-block__content {
    padding: 0px 2.5rem 0px 0px;
  }
}
.slide-main-block__content:not(:last-child) {
  margin-bottom: 3.75rem;
}
@media (max-width: 20em) {
  .slide-main-block__content:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .slide-main-block__content:not(:last-child) {
    margin-bottom: calc(
                1.875rem + 30 * ((100vw - 20rem) / 1300)
            );
  }
}
.slide-main-block__title {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.2777777778;
}
@media (max-width: 20em) {
  .slide-main-block__title {
    font-size: 1.375rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  .slide-main-block__title {
    font-size: calc(
                1.375rem + 14 * ((100vw - 20rem) / 672)
            );
  }
}
.slide-main-block__title:not(:last-child) {
  margin-bottom: 0.4166666667em;
}
.slide-main-block__sub-title {
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.2777777778;
}
@media (max-width: 20em) {
  .slide-main-block__sub-title {
    font-size: 1.375rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  .slide-main-block__sub-title {
    font-size: calc(
                1.375rem + 14 * ((100vw - 20rem) / 672)
            );
  }
}
.slide-main-block__sub-title:not(:last-child) {
  margin-bottom: 0.8333333333em;
}
.slide-main-block__text {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media (max-width: 20em) {
  .slide-main-block__text {
    font-size: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  .slide-main-block__text {
    font-size: calc(
                1rem + 4 * ((100vw - 20rem) / 672)
            );
  }
}
.media-main-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9375rem;
}
.media-main-block__body {
  position: relative;
}
.media-main-block__image {
  max-width: 100%;
  position: relative;
}
.media-main-block__image::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  bottom: 3%;
  right: 0;
  transform: translate(30%, 0);
  width: 94%;
  padding-bottom: 94%;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.media-main-block__image img {
  position: relative;
  z-index: 2;
}
.media-main-block__tips {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
.media-main-block__tip {
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  transition: transform 0.3s ease;
  cursor: pointer;
}
@media (any-hover: hover) {
  .media-main-block__tip:hover {
    transform: rotate(-180deg) scale(1.2);
  }
}
.media-main-block__tip::after, .media-main-block__tip::before {
  content: "";
  border-radius: 50%;
  background-color: #e8aa31;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.media-main-block__tip::after {
  opacity: 0.5;
  transform: scale(1.6);
}
.media-main-block__tip span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-main-block__tip_1 {
  top: 37%;
  left: 16%;
}
.media-main-block__tip_2 {
  top: 12%;
  right: 2%;
}
.media-main-block__tip_3 {
  bottom: 23%;
  right: 5%;
}

.controll-main-block {
  display: inline-grid;
  gap: 2rem;
  grid-auto-flow: column;
  align-items: center;
  gap: 1.25rem;
}
.controll-main-block__dotts {
  transform: translate(0, 18%);
  display: inline-grid;
  grid-auto-flow: column;
  gap: 0.9375rem;
}
.controll-main-block__dotts .swiper-pagination-bullet {
  position: relative;
  cursor: pointer;
  height: 1.875rem;
  width: 1.125rem;
  transition: all 0.3s ease;
  opacity: 1;
  background: transparent;
}
.controll-main-block__dotts .swiper-pagination-bullet::after {
  position: absolute;
  content: "";
  height: 0.125rem;
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #fff;
}
.controll-main-block__dotts .swiper-pagination-bullet::before {
  opacity: 0;
  position: absolute;
  content: "";
  background-color: #e8aa31;
  width: 0.625rem;
  height: 0.625rem;
  top: 50%;
  left: 0;
  border-radius: 50%;
  transition: left 3s linear;
  transform: translate(0px, -50%);
}
.controll-main-block__dotts .swiper-pagination-bullet-active {
  width: 1.875rem;
}
.controll-main-block__dotts .swiper-pagination-bullet-active::after {
  background-color: #e8aa31;
}
.controll-main-block__dotts .swiper-pagination-bullet-active::before {
  opacity: 1;
  transition: left 3.3s linear;
  left: 1.25rem;
}
.fraction-controll {
  color: #fff;
  display: flex;
  align-items: flex-end;
  letter-spacing: 0.1em;
}
.fraction-controll__current {
  color: #e8aa31;
  font-weight: 600;
  font-size: 1.5rem;
}
.fraction-controll__all {
  font-size: 1.125rem;
}

.advantages-main {
  display: grid;
  color: #fff;
  grid-template-columns: repeat(4, auto);
  gap: 1.25rem;
  justify-content: space-between;
}
@media (max-width: 61.99875em) {
  .advantages-main {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    row-gap: 1.875rem;
  }
}
@media (max-width: 29.99875em) {
  .advantages-main {
    grid-template-columns: repeat(1, 1fr);
  }
}
.advantages-main__item {
  display: grid;
  gap: 1.0625rem;
  text-align: center;
  max-width: 18.125rem;
  grid-template-rows: 77px auto;
}
.advantages-main__icon {
  align-self: center;
}
.advantages-main__text {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
}
@media (max-width: 20em) {
  .advantages-main__text {
    font-size: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  .advantages-main__text {
    font-size: calc(
                1rem + 4 * ((100vw - 20rem) / 672)
            );
  }
}

.catalog-cards {
  padding-top: 6.25rem;
  padding-bottom: 4.375rem;
}
@media (max-width: 20em) {
  .catalog-cards {
    padding-top: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .catalog-cards {
    padding-top: calc(
                2.5rem + 60 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .catalog-cards {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .catalog-cards {
    padding-bottom: calc(
                2.5rem + 30 * ((100vw - 20rem) / 1300)
            );
  }
}
.catalog-cards__container {
  display: grid;
  gap: 1.875rem;
}
@media (min-width: 29.99875em) {
  .catalog-cards__container {
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  }
}
.item-catalog-cards {
  overflow: hidden;
  position: relative;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
  min-height: 18.125rem;
  transition: box-shadow 0.3s ease;
}
@media (any-hover: hover) {
  .item-catalog-cards:hover {
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.25);
  }
}
.item-catalog-cards__body {
  position: relative;
  z-index: 2;
  padding: 1.875rem;
}
.item-catalog-cards__text {
  max-width: 25rem;
  line-height: 1.4;
}
.item-catalog-cards__text:not(:last-child) {
  margin-bottom: 1.875rem;
}
.item-catalog-cards__title {
  margin-bottom: 1.25em;
}
.item-catalog-cards__link-title {
  display: inline-block;
  font-weight: 600;
  font-size: 1.5rem;
}
@media (max-width: 20em) {
  .item-catalog-cards__link-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 62em) {
  .item-catalog-cards__link-title {
    font-size: calc(
                1.125rem + 6 * ((100vw - 20rem) / 672)
            );
  }
}
.item-catalog-cards__link-title::after {
  content: "";
  width: 4.375rem;
  height: 0.125rem;
  display: block;
  background-color: #e8aa31;
  transition: width 0.3s ease;
  margin: 0.9375rem 0 0 0;
}
@media (any-hover: hover) {
  .item-catalog-cards__link-title:hover::after {
    width: 100%;
  }
}
.item-catalog-cards__item {
  position: relative;
  padding: 0px 0px 0px 1.25rem;
}
.item-catalog-cards__item::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background-color: #e8aa31;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.item-catalog-cards__item:not(:last-child) {
  margin-bottom: 0.625rem;
}
.item-catalog-cards__link {
  font-size: 1.125rem;
  line-height: 1.3333333333;
}
@media (max-width: 20em) {
  .item-catalog-cards__link {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .item-catalog-cards__link {
    font-size: calc(
                0.875rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (any-hover: hover) {
  .item-catalog-cards__link:hover {
    text-decoration: underline;
  }
}
.item-catalog-cards__image {
  text-align: right;
  z-index: -1;
  display: flex;
  justify-content: flex-end;
  align-self: flex-end;
  transform: translate(0, 8%);
}
@media (min-width: 29.99875em) {
  .item-catalog-cards__image {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
  }
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  margin: 0 auto;
  transform: translateX(0%) !important;
  white-space: nowrap;
}

.products-slider {
  margin-top: 3.125rem;
}
.products-slider:not(:last-child) {
  margin-bottom: 3.125rem;
}
@media (max-width: 20em) {
  .products-slider:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .products-slider:not(:last-child) {
    margin-bottom: calc(
                1.25rem + 30 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .products-slider {
    margin-top: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .products-slider {
    margin-top: calc(
                1.25rem + 30 * ((100vw - 20rem) / 1300)
            );
  }
}
.products-slider__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products-slider__header:not(:last-child) {
  margin-bottom: 3.125rem;
}
@media (max-width: 20em) {
  .products-slider__header:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .products-slider__header:not(:last-child) {
    margin-bottom: calc(
                1.875rem + 20 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 28.75em) {
  .products-slider__header {
    flex-direction: column;
    align-items: start;
    row-gap: 0.625rem;
  }
}
.products-slider__title {
  letter-spacing: 0.05em;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5333333333;
}
@media (max-width: 20em) {
  .products-slider__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .products-slider__title {
    font-size: calc(
                1.25rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
.products-slider__more {
  font-weight: 600;
  color: rgba(20, 20, 20, 0.58);
  transition: color 0.3s ease;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8333333333em;
}
@media (max-width: 20em) {
  .products-slider__more {
    font-size: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .products-slider__more {
    font-size: calc(
                1rem + 2 * ((100vw - 20rem) / 1300)
            );
  }
}
.products-slider__more::after {
  content: "\e900";
  color: #e8aa31;
  transform: rotate(-90deg);
  font-size: 0.5625rem;
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (any-hover: hover) {
  .products-slider__more:hover {
    color: rgba(20, 20, 20, 0.9);
  }
}
.products-slider__swiper {
  padding: 0.9375rem !important;
  margin: 0 -0.9375rem !important;
}
.products-slider__wrapper:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media (max-width: 20em) {
  .products-slider__wrapper:not(:last-child) {
    margin-bottom: 0.9375rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .products-slider__wrapper:not(:last-child) {
    margin-bottom: calc(
                0.9375rem + 25 * ((100vw - 20rem) / 1300)
            );
  }
}
.products-slider__dotts {
  transform: translate(0, 18%);
  display: grid;
  grid-auto-flow: column;
}
.products-slider__dotts .swiper-pagination-bullet {
  margin: 0px 0.46875rem;
  position: relative;
  cursor: pointer;
  height: 1.875rem;
  width: 1.125rem;
  transition: all 0.3s ease;
  opacity: 1;
  background: transparent;
}
.products-slider__dotts .swiper-pagination-bullet::after {
  position: absolute;
  content: "";
  height: 0.125rem;
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #898989;
}
.products-slider__dotts .swiper-pagination-bullet::before {
  opacity: 0;
  position: absolute;
  content: "";
  background-color: #e8aa31;
  width: 0.625rem;
  height: 0.625rem;
  top: 50%;
  left: 0;
  border-radius: 50%;
  transition: left 3s linear;
  transform: translate(0px, -50%);
}
.products-slider__dotts .swiper-pagination-bullet-active {
  width: 1.875rem;
}
.products-slider__dotts .swiper-pagination-bullet-active::after {
  background-color: #e8aa31;
}
.products-slider__dotts .swiper-pagination-bullet-active::before {
  opacity: 1;
  transition: left 3.3s linear;
  left: 1.25rem;
}

.swiper-slide {
  height: auto !important;
}

.product-card {
  position: relative;
  background: #fff;
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
@media (any-hover: hover) {
  .product-card:hover {
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
  }
}
.product-card__sale {
  position: absolute;
  top: 1.875rem;
  left: 0;
  width: 5.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 0.9375rem;
  background-color: #e8aa31;
  color: #fff;
  z-index: 2;
  pointer-events: none;
}
.product-card__image {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  margin-left: 3.125rem;
  margin-right: 3.125rem;
  padding-bottom: 79%;
  background-size: contain;
}
@media (max-width: 20em) {
  .product-card__image {
    margin-top: 0.3125rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .product-card__image {
    margin-top: calc(
                0.3125rem + 5 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .product-card__image {
    margin-bottom: 0.3125rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .product-card__image {
    margin-bottom: calc(
                0.3125rem + 5 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .product-card__image {
    margin-left: 0.9375rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .product-card__image {
    margin-left: calc(
                0.9375rem + 35 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .product-card__image {
    margin-right: 0.9375rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .product-card__image {
    margin-right: calc(
                0.9375rem + 35 * ((100vw - 20rem) / 1300)
            );
  }
}
.product-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}
.product-card__title {
  flex: 1 1 auto;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.7;
}
@media (max-width: 20em) {
  .product-card__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .product-card__title {
    font-size: calc(
                1.125rem + 2 * ((100vw - 20rem) / 1300)
            );
  }
}
.product-card__title:not(:last-child) {
  margin-bottom: 0.6875em;
}
@media (any-hover: hover) {
  .product-card__title:hover {
    text-decoration: underline;
  }
}
.product-card__info:not(:last-child) {
  margin-bottom: 0.6875em;
}
.product-card__rating:not(:last-child) {
  margin-bottom: 1.625rem;
}
.product-card__footer {
  border-top: 1px solid rgba(20, 20, 20, 0.5);
  padding: 1.25rem 0px 0px 0px;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  margin-bottom: 1.625rem;
}
.product-card__price {
  flex: 1 1 auto;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.7;
}
@media (max-width: 20em) {
  .product-card__price {
    font-size: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .product-card__price {
    font-size: calc(
                1.125rem + 2 * ((100vw - 20rem) / 1300)
            );
  }
}
.product-card__compare {
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
@media (max-width: 20em) {
  .product-card__compare {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .product-card__compare {
    font-size: calc(
                1.25rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (any-hover: hover) {
  .product-card__compare:hover {
    color: #e8aa31;
  }
}
.product-card__favorite {
  color: rgb(232, 170, 49);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
@media (max-width: 20em) {
  .product-card__favorite {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .product-card__favorite {
    font-size: calc(
                1.25rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (any-hover: hover) {
  .product-card__favorite:hover {
    color: #000;
  }
}
.product-card__cart {
  width: 100%;
  font-size: 1.25rem;
}
@media (max-width: 20em) {
  .product-card__cart {
    font-size: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .product-card__cart {
    font-size: calc(
                1rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}
.product-card__cart span {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}
.product-card__cart span::before {
  margin: 0px 0px 0px 1rem;
}

.info-product-card {
  color: #ababab;
  display: flex;
  justify-content: space-between;
  gap: 0.625rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 2.125;
}
@media (max-width: 20em) {
  .info-product-card {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .info-product-card {
    font-size: calc(
                0.875rem + 2 * ((100vw - 20rem) / 1300)
            );
  }
}
.rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rating__star {
  width: 9.375rem;
}
@media (max-width: 20em) {
  .rating__star {
    width: 8.75rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .rating__star {
    width: calc(
                8.75rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
.rating__info {
  color: #ababab;
  font-size: 1rem;
}
@media (max-width: 20em) {
  .rating__info {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .rating__info {
    font-size: calc(
                0.875rem + 2 * ((100vw - 20rem) / 1300)
            );
  }
}

.new-products {
  padding: 2.8125rem 0px 0px 0px;
  position: relative;
  background: url(../src/img/product-new/bg.jpg) bottom/cover no-repeat;
}
.new-products::before {
  content: "";
  background: #fff;
  height: 2.8125rem;
  position: absolute;
  top: 0;
  right: 0;
  width: 53%;
}
.new-products__container {
  display: grid;
  row-gap: 1.875rem;
}
@media (min-width: 63.75em) {
  .new-products__container {
    grid-template-columns: 25rem 1fr;
    align-items: start;
  }
}
.new-products__inner {
  padding-top: 3.4375rem;
  padding-bottom: 3.4375rem;
}
@media (max-width: 20em) {
  .new-products__inner {
    padding-top: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .new-products__inner {
    padding-top: calc(
                1.25rem + 35 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .new-products__inner {
    padding-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .new-products__inner {
    padding-bottom: calc(
                1.25rem + 35 * ((100vw - 20rem) / 1300)
            );
  }
}
.new-products__body {
  padding-right: 4.375rem;
}
@media (max-width: 62em) {
  .new-products__body {
    padding-right: 1.25rem;
  }
}
@media (min-width: 62em) and (max-width: 101.25em) {
  .new-products__body {
    padding-right: calc(
                1.25rem + 50 * ((100vw - 62rem) / 628)
            );
  }
}
.new-products__dotts {
  transform: translate(0, 18%);
  display: grid;
  grid-auto-flow: column;
}
.new-products__dotts .swiper-pagination-bullet {
  margin: 0px 0.46875rem;
  cursor: pointer;
  height: 1.875rem;
  width: 1.125rem;
  transition: all 0.3s ease;
  opacity: 1;
  background: transparent;
}
.new-products__dotts .swiper-pagination-bullet::after {
  position: absolute;
  content: "";
  height: 0.125rem;
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #fff;
}
.new-products__dotts .swiper-pagination-bullet::before {
  opacity: 0;
  position: absolute;
  content: "";
  background-color: #e8aa31;
  width: 0.625rem;
  height: 0.625rem;
  top: 50%;
  left: 0;
  border-radius: 50%;
  transition: left 3s linear;
  transform: translate(0px, -50%);
}
.new-products__dotts .swiper-pagination-bullet-active {
  width: 1.875rem;
}
.new-products__dotts .swiper-pagination-bullet-active::after {
  background-color: #e8aa31;
}
.new-products__dotts .swiper-pagination-bullet-active::before {
  opacity: 1;
  transition: left 4.3s linear;
  left: 1.25rem;
}
.new-products__section {
  position: relative;
  z-index: 3;
}
.new-products__title {
  color: #fff;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.5333333333;
  margin-bottom: 1.875rem;
}
@media (max-width: 20em) {
  .new-products__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .new-products__title {
    font-size: calc(
                1.25rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .new-products__title {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .new-products__title {
    margin-bottom: calc(
                0.5rem + 22 * ((100vw - 20rem) / 1300)
            );
  }
}
.new-products__text {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: 3.75rem;
}
@media (max-width: 20em) {
  .new-products__text {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .new-products__text {
    font-size: calc(
                0.875rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .new-products__text {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .new-products__text {
    margin-bottom: calc(
                1.25rem + 40 * ((100vw - 20rem) / 1300)
            );
  }
}
.new-products__link {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 1.25rem;
  align-items: center;
  justify-content: start;
  color: #e8aa31;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2.3;
  letter-spacing: 1px;
}
@media (max-width: 20em) {
  .new-products__link {
    font-size: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .new-products__link {
    font-size: calc(
                1rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (any-hover: hover) {
  .new-products__link:hover::before {
    animation: arrow 0.9s ease-in infinite;
  }
}
.new-products__link::before {
  font-size: 0.5rem;
  transform: rotate(-90deg);
}
.new-products__content {
  min-width: 0;
}
@media (min-width: 63.75em) {
  .new-products__content {
    padding: 2.3125rem 0px 0px 0px;
  }
}
.new-products__wrapper {
  margin-bottom: 3.125rem;
}
@media (max-width: 20em) {
  .new-products__wrapper {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .new-products__wrapper {
    margin-bottom: calc(
                1.25rem + 30 * ((100vw - 20rem) / 1300)
            );
  }
}
@keyframes arrow {
  0% {
    transform: translate(0%, 0) rotate(-90deg);
  }
  50% {
    transform: translate(-60%, 0) rotate(-90deg);
  }
  100% {
    transform: translate(0%, 0) rotate(-90deg);
  }
}
.articles {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (max-width: 20em) {
  .articles {
    padding-top: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .articles {
    padding-top: calc(
                2.5rem + 20 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .articles {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .articles {
    padding-bottom: calc(
                2.5rem + 20 * ((100vw - 20rem) / 1300)
            );
  }
}
.articles__title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5333333333;
  letter-spacing: 1.5px;
  margin-bottom: 1.875rem;
}
@media (max-width: 20em) {
  .articles__title {
    font-size: 1.375rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .articles__title {
    font-size: calc(
                1.375rem + 8 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .articles__title {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .articles__title {
    margin-bottom: calc(
                1.25rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 100.125em) {
  .articles__title {
    text-align: center;
  }
}
.articles__body {
  gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-evenly;
}
@media (max-width: 20em) {
  .articles__body {
    gap: 0.5rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .articles__body {
    gap: calc(
                0.5rem + 16 * ((100vw - 20rem) / 1300)
            );
  }
}
.card-article {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  width: 23.4375rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
@media (any-hover: hover) {
  .card-article:hover {
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.2);
  }
}
.card-article__img {
  padding: 0px 0px 53% 0px;
}
.card-article__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1.875rem;
}
.card-article__title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.7;
}
@media (max-width: 20em) {
  .card-article__title {
    font-size: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .card-article__title {
    font-size: calc(
                1rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}
.card-article__date {
  font-size: 1rem;
  color: #ababab;
  font-weight: 500;
  line-height: 2.125;
}
@media (max-width: 20em) {
  .card-article__date {
    font-size: 0.75rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .card-article__date {
    font-size: calc(
                0.75rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}

.filter-catalog {
  background: #fefefe;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
.filter-catalog__title {
  width: 100%;
  padding: 1.4375rem 1.875rem;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: #141414;
  color: #fff;
}
.price-filter__title {
  padding: 0.8125rem 1.875rem;
  background: #141414;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
.price-filter__title::before {
  color: #e8aa31;
  font-size: 0.625rem;
  transition: transform 0.3s ease;
}
.price-filter__title._active::before {
  transform: rotate(180deg);
}
.price-filter__body {
  padding: 0rem 1.875rem;
  margin-bottom: 1.875rem;
  margin-top: 1.875rem;
}
@media (max-width: 20em) {
  .price-filter__body {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .price-filter__body {
    margin-bottom: calc(
                1.25rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .price-filter__body {
    margin-top: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .price-filter__body {
    margin-top: calc(
                1.25rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
.price-filter__inputs {
  border-radius: 2px;
  border: 1px solid #cbcbcb;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.price-filter__input {
  padding: 0.75rem;
  font-weight: 500;
  font-size: 1rem;
  width: 50%;
}
.price-filter__input:not(:last-child) {
  border-right: 1px solid #cbcbcb;
}
.price-filter__range {
  margin-top: 3.125rem;
}

.checkbox:not(:last-child) {
  margin-bottom: 1.25rem;
}
.checkbox__input {
  display: none;
}
.checkbox__input:checked + .checkbox__label::after {
  transform: scale(1);
}
.checkbox__label {
  font-size: 16px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.checkbox__label::before {
  content: "";
  align-self: flex-start;
  flex: 0 0 20px;
  height: 20px;
  background-color: #fff;
  margin: 0px 10px 0px 0px;
  border-radius: 2px;
  border: 1px solid silver;
}
.checkbox__label::after {
  content: "";
  transition: transform 0.3s ease;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background-color: #e8aa31;
  border-radius: 2px;
  transform: scale(0);
  box-shadow: 0 0 15px #e8aa31;
}
.checkbox__label span {
  color: #e8aa31;
}
.checkbox._error .checkbox__label::before {
  box-shadow: 0 0 15px red;
}

.footer {
  background-color: #141414;
  margin-top: 3.75rem;
}
@media (max-width: 20em) {
  .footer {
    margin-top: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .footer {
    margin-top: calc(
                2.5rem + 20 * ((100vw - 20rem) / 1300)
            );
  }
}
.text-footer {
  background: url(../../src/img/footer/bg.jpg) center/cover no-repeat;
}
.text-footer__title {
  padding-top: 3.75rem;
  padding-bottom: 1.875rem;
  text-align: center;
  color: #e8aa31;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5333333333;
  letter-spacing: 1.5px;
}
@media (max-width: 20em) {
  .text-footer__title {
    padding-top: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .text-footer__title {
    padding-top: calc(
                1.875rem + 30 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .text-footer__title {
    padding-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .text-footer__title {
    padding-bottom: calc(
                1.25rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .text-footer__title {
    font-size: 1.375rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .text-footer__title {
    font-size: calc(
                1.375rem + 8 * ((100vw - 20rem) / 1300)
            );
  }
}
.text-footer__text {
  padding-bottom: 3.75rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.54px;
}
@media (max-width: 20em) {
  .text-footer__text {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .text-footer__text {
    padding-bottom: calc(
                1.875rem + 30 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .text-footer__text {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .text-footer__text {
    font-size: calc(
                0.875rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}

.body-footer {
  margin-top: 6.25rem;
  padding-bottom: 3.125rem;
}
@media (max-width: 20em) {
  .body-footer {
    margin-top: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .body-footer {
    margin-top: calc(
                1.25rem + 80 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .body-footer {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .body-footer {
    padding-bottom: calc(
                1.875rem + 20 * ((100vw - 20rem) / 1300)
            );
  }
}
.body-footer__row {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.125rem, 1fr));
  gap: 1.875rem;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 20em) {
  .body-footer__row {
    margin-top: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .body-footer__row {
    margin-top: calc(
                1.25rem + 30 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .body-footer__row {
    padding-bottom: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .body-footer__row {
    padding-bottom: calc(
                1rem + 14 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 62em) {
  .body-footer__row {
    display: block;
  }
}
.spoller-item-footer__items {
  margin-bottom: 1.875rem;
}
@media (max-width: 20em) {
  .spoller-item-footer__items {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .spoller-item-footer__items {
    margin-bottom: calc(
                1.25rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
.spoller-item-footer__title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}
@media (max-width: 20em) {
  .spoller-item-footer__title {
    font-size: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .spoller-item-footer__title {
    font-size: calc(
                1rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}
.spoller-item-footer__title._active::before {
  transform: rotate(180deg);
}
@media (max-width: 62em) {
  .spoller-item-footer__title {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .spoller-item-footer__title::before {
    color: #e8aa31;
    transition: transform 0.2s ease;
    font-size: 0.5rem;
    transform: rotate(0deg);
    content: "\e900";
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "icons" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
.menu-footer__list {
  margin-top: 1.875rem;
}
@media (max-width: 20em) {
  .menu-footer__list {
    margin-top: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .menu-footer__list {
    margin-top: calc(
                1rem + 14 * ((100vw - 20rem) / 1300)
            );
  }
}
.menu-footer__item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}
.menu-footer__item:not(:last-child) {
  margin-bottom: 1.25rem;
}
@media (max-width: 20em) {
  .menu-footer__item:not(:last-child) {
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .menu-footer__item:not(:last-child) {
    margin-bottom: calc(
                0.625rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .menu-footer__item {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .menu-footer__item {
    font-size: calc(
                0.875rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}
.menu-footer__link {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 20em) {
  .menu-footer__link {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .menu-footer__link {
    font-size: calc(
                0.875rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (any-hover: hover) {
  .menu-footer__link:hover {
    text-decoration: underline;
  }
}
.menu-footer__link::before {
  flex: 0 1 1.875rem;
  text-align: center;
}
.menu-footer__link_1 {
  color: #e8aa31;
}
.menu-footer__link_2 {
  cursor: none;
  pointer-events: none;
}

.form-menu__body {
  display: flex;
  border-radius: 3px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 1.25rem;
}
@media (max-width: 20em) {
  .form-menu__body {
    margin-bottom: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .form-menu__body {
    margin-bottom: calc(
                1rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}
.form-menu__input {
  flex: 1;
  background: transparent;
  padding: 0.9375rem 1.25rem;
}
@media (max-width: 48em) {
  .form-menu__input {
    padding: 0.5rem 1.25rem;
  }
}
.form-menu__btn {
  background: #e8aa31;
  width: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
@media (max-width: 48em) {
  .form-menu__btn {
    width: 3.125rem;
  }
}
.form-menu__btn::before {
  display: block;
  transform: rotate(90deg);
}
.form-menu__checkbox {
  background: transparent;
}

.social-footer {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 20em) {
  .social-footer {
    margin-top: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .social-footer {
    margin-top: calc(
                1.5rem + 8 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .social-footer {
    gap: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .social-footer {
    gap: calc(
                1rem + 8 * ((100vw - 20rem) / 1300)
            );
  }
}
.social-footer__link img {
  width: 2.5rem;
  height: 2.5rem;
}

.footer-footer {
  padding-top: 1.875rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 65em) {
  .footer-footer {
    flex-direction: column;
    row-gap: 1.875rem;
  }
}
.footer-footer__text {
  max-width: 43.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.9285714286;
}
@media (max-width: 65em) {
  .footer-footer__text {
    max-width: 437.5rem;
  }
}
@media (max-width: 20em) {
  .footer-footer__text {
    font-size: 0.75rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .footer-footer__text {
    font-size: calc(
                0.75rem + 2 * ((100vw - 20rem) / 1300)
            );
  }
}

.page__title {
  margin-top: 1.875rem;
  color: #141414;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (max-width: 20em) {
  .page__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .page__title {
    font-size: calc(
                1.25rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}
.page__title:not(:last-child) {
  margin-bottom: 1.5625rem;
}
@media (max-width: 20em) {
  .page__title:not(:last-child) {
    margin-bottom: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .page__title:not(:last-child) {
    margin-bottom: calc(
                1rem + 9 * ((100vw - 20rem) / 1300)
            );
  }
}
.breadcrumbs {
  margin-bottom: 1.875em;
  white-space: nowrap;
  overflow: auto;
  height: 1.375rem;
  font-size: 1.125rem;
}
@media (max-width: 20em) {
  .breadcrumbs {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .breadcrumbs {
    font-size: calc(
                0.875rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}
.breadcrumbs__list {
  display: flex;
}
.breadcrumbs__link {
  opacity: 0.5;
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .breadcrumbs__link:hover {
    opacity: 0.8;
  }
}
.breadcrumbs__link::after {
  content: "\e900";
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: rotate(-90deg);
  font-size: 0.5rem;
  margin: 0 0.625em;
}
.breadcrumbs__current {
  color: #e8aa31;
}

.control {
  margin-bottom: 1.25rem;
  width: 15.625rem;
  border: 1px solid silver;
  border-radius: 6px;
  padding: 0.5rem 0.9375rem;
  outline: none;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  font-size: 1rem;
}
.control option {
  padding: 0.375rem;
}

.catalog {
  margin-bottom: 7.5rem;
}
@media (max-width: 20em) {
  .catalog {
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .catalog {
    margin-bottom: calc(
                3.75rem + 60 * ((100vw - 20rem) / 1300)
            );
  }
}
.catalog__body {
  display: grid;
  gap: 1.875rem;
}
@media (max-width: 20em) {
  .catalog__body {
    gap: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .catalog__body {
    gap: calc(
                1.25rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (min-width: 62em) {
  .catalog__body {
    grid-template-columns: 23.4375rem 1fr;
  }
}
.catalog__control {
  display: flex;
  justify-content: flex-end;
}
.catalog__products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18.125rem, 1fr));
  justify-content: space-evenly;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 20em) {
  .catalog__products {
    gap: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .catalog__products {
    gap: calc(
                1.125rem + 2 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .catalog__products {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .catalog__products {
    margin-bottom: calc(
                1.25rem + 20 * ((100vw - 20rem) / 1300)
            );
  }
}
.catalog__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 62em) {
  .catalog__footer {
    flex-direction: column;
    row-gap: 1.25rem;
  }
}
.pagging {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.75rem;
  font-size: 1rem;
}
@media (max-width: 20em) {
  .pagging {
    gap: 0.5rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .pagging {
    gap: calc(
                0.5rem + 36 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .pagging {
    font-size: 0.9375rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .pagging {
    font-size: calc(
                0.9375rem + 1 * ((100vw - 20rem) / 1300)
            );
  }
}
.pagging__arrow {
  color: #e8aa31;
}
.pagging__arrow_left {
  transform: rotate(90deg);
  color: silver;
}
.pagging__arrow_right {
  transform: rotate(-90deg);
}
.pagging__list {
  display: flex;
  align-items: center;
  gap: 0.8125rem;
}
.pagging__link {
  width: 2.125rem;
  height: 2.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.pagging__link._active {
  background-color: #e8aa31;
  color: #fff;
}
@media (any-hover: hover) {
  .pagging__link:hover {
    background-color: #e8aa31;
    color: #fff;
  }
}

.page__header {
  margin-top: 2.5rem;
}
@media (max-width: 20em) {
  .page__header {
    margin-top: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .page__header {
    margin-top: calc(
                1.25rem + 20 * ((100vw - 20rem) / 1300)
            );
  }
}
.main-product {
  display: grid;
  grid-template-columns: 49% 1fr;
}
@media (max-width: 62em) {
  .main-product {
    display: block;
  }
}
.main-product__images {
  padding: 0px 1.875rem 0 0px;
}
@media (max-width: 62em) {
  .main-product__images {
    padding: 0px 0 0 0px;
  }
}
.images-product__slide {
  cursor: pointer;
  padding-bottom: 77%;
}
.images-product__slide:not(:last-child) {
  margin-bottom: 1rem;
}
.thumbs-images__slide {
  cursor: pointer;
  padding-bottom: 23%;
  opacity: 0.5;
}
.thumbs-images__slide.swiper-slide-thumb-active {
  opacity: 1;
}

.body-product {
  background-color: #fefefe;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  padding: 1.875rem;
}
.body-product__header {
  border-bottom: 1px solid rgba(20, 20, 20, 0.3);
}
.header-product__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-product__actions {
  display: flex;
  align-items: center;
  column-gap: 1.25rem;
  font-size: 1.6875rem;
}
@media (max-width: 20em) {
  .header-product__actions {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .header-product__actions {
    font-size: calc(
                1.25rem + 7 * ((100vw - 20rem) / 1300)
            );
  }
}
.header-product__title {
  color: #141414;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (max-width: 20em) {
  .header-product__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .header-product__title {
    font-size: calc(
                1.25rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}
.header-product__link::before {
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .header-product__link:hover::before {
    color: #e8aa31;
  }
}
.header-product__rating {
  margin-top: 0.9375rem;
  margin-bottom: 1.875rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
.header-product__rating img {
  width: 9.375rem;
}
@media (max-width: 20em) {
  .header-product__rating img {
    width: 6.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .header-product__rating img {
    width: calc(
                6.25rem + 50 * ((100vw - 20rem) / 1300)
            );
  }
}
.header-product__availabil {
  font-size: 1rem;
  color: #24ad53;
  font-weight: 500;
}
@media (max-width: 20em) {
  .header-product__availabil {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .header-product__availabil {
    font-size: calc(
                0.875rem + 2 * ((100vw - 20rem) / 1300)
            );
  }
}

.table-product {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 2fr;
  gap: 1.625rem;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid rgba(20, 20, 20, 0.3);
}
@media (max-width: 20em) {
  .table-product {
    gap: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .table-product {
    gap: calc(
                1rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .table-product {
    padding-top: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .table-product {
    padding-top: calc(
                1.25rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .table-product {
    padding-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .table-product {
    padding-bottom: calc(
                1.25rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 30.75em) {
  .table-product {
    display: block;
  }
}
.table-product__label {
  color: #141414;
  font-size: 1.125rem;
  font-weight: 500;
}
@media (max-width: 20em) {
  .table-product__label {
    font-size: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .table-product__label {
    font-size: calc(
                1rem + 2 * ((100vw - 20rem) / 1300)
            );
  }
}
.table-product__value {
  color: rgba(20, 20, 20, 0.5);
  font-size: 1.125rem;
  font-weight: 500;
}
@media (max-width: 20em) {
  .table-product__value {
    font-size: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .table-product__value {
    font-size: calc(
                1rem + 2 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 30.75em) {
  .table-product__value {
    padding: 0.625rem 0 0.625rem 0rem;
  }
}

.options-product {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 2fr;
  gap: 1.625rem;
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
  border-bottom: 1px solid rgba(20, 20, 20, 0.3);
}
@media (max-width: 20em) {
  .options-product {
    gap: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .options-product {
    gap: calc(
                1rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .options-product {
    padding-top: 0.5rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .options-product {
    padding-top: calc(
                0.5rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .options-product {
    padding-bottom: 0.5rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .options-product {
    padding-bottom: calc(
                0.5rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 30.75em) {
  .options-product {
    display: block;
  }
}
.options-product__label {
  align-self: center;
  color: #141414;
  font-size: 1.125rem;
  font-weight: 500;
}
@media (max-width: 20em) {
  .options-product__label {
    font-size: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .options-product__label {
    font-size: calc(
                1rem + 2 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 30.75em) {
  .options-product__label {
    padding: 0.625rem 0rem;
  }
}
.options-product__value {
  width: 100%;
}
.options-product__value select {
  font-size: 1rem;
  width: 100%;
  border-radius: 3px;
  border: 1px solid rgba(4, 4, 4, 0.15);
  padding: 0.375rem;
}

.actions-product {
  margin-top: 1.875rem;
}
@media (max-width: 20em) {
  .actions-product {
    margin-top: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .actions-product {
    margin-top: calc(
                1.25rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
.actions-product__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 30.75em) {
  .actions-product__row {
    flex-direction: column;
  }
}
.actions-product__row:not(:last-child) {
  margin-bottom: 1.875rem;
}
@media (max-width: 20em) {
  .actions-product__row:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .actions-product__row:not(:last-child) {
    margin-bottom: calc(
                1.25rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 30.75em) {
  .actions-product__row_2 {
    flex-direction: column;
    row-gap: 1rem;
  }
}
.actions-product__price {
  color: #000;
  font-size: 1.875rem;
  font-weight: 700;
}
@media (max-width: 20em) {
  .actions-product__price {
    font-size: 1.375rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .actions-product__price {
    font-size: calc(
                1.375rem + 8 * ((100vw - 20rem) / 1300)
            );
  }
}
.actions-product__point {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  color: rgba(20, 20, 20, 0.5);
  font-size: 0.875rem;
  font-weight: 500;
}
.actions-product__point-link {
  display: block;
  background-color: rgba(20, 20, 20, 0.3);
  border-radius: 50%;
  width: 1.3125rem;
  height: 1.3125rem;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .actions-product__point-link:hover {
    transform: scale(1.2);
  }
}
.actions-product__buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media (max-width: 87.5em) {
  .actions-product__buttons {
    flex-direction: column;
  }
}
.actions-product__cart {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-evenly;
}
@media (max-width: 87.5em) {
  .actions-product__cart {
    width: 100%;
  }
}

.quantity-product {
  width: 9.375rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1.125rem;
}
@media (max-width: 20em) {
  .quantity-product {
    height: 2.1875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .quantity-product {
    height: calc(
                2.1875rem + 15 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 20em) {
  .quantity-product {
    font-size: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .quantity-product {
    font-size: calc(
                1rem + 2 * ((100vw - 20rem) / 1300)
            );
  }
}
.quantity-product__minus {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #313131;
  color: #fff;
}
.quantity-product__minus.disabled {
  pointer-events: none;
  color: rgba(255, 255, 255, 0.3);
}
.quantity-product__value {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  background-color: rgba(210, 210, 210, 0.2);
}
.quantity-product__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  background-color: #313131;
  color: #fff;
}

.tabs {
  margin-top: 7.5rem;
  background: #fefefe;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 1.875rem;
}
@media (max-width: 20em) {
  .tabs {
    margin-top: 5rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .tabs {
    margin-top: calc(
                5rem + 40 * ((100vw - 20rem) / 1300)
            );
  }
}
.tabs__navigation {
  display: flex;
  align-items: center;
  column-gap: 3.75rem;
  border-bottom: 1px solid rgba(20, 20, 20, 0.15);
  overflow: auto;
}
@media (max-width: 20em) {
  .tabs__navigation {
    column-gap: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .tabs__navigation {
    column-gap: calc(
                1.875rem + 30 * ((100vw - 20rem) / 1300)
            );
  }
}
.tabs__item {
  color: rgba(20, 20, 20, 0.5);
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid transparent;
}
@media (max-width: 20em) {
  .tabs__item {
    font-size: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .tabs__item {
    font-size: calc(
                1rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}
.tabs__item._tab-active {
  color: #141414;
  border-bottom: 1px solid #e8aa31;
}
.tabs__block {
  font-size: 1.125rem;
  margin-top: 1.875rem;
  display: none;
}
@media (max-width: 20em) {
  .tabs__block {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .tabs__block {
    font-size: calc(
                0.875rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}
.tabs__block._block-active {
  display: block;
}
.review-tabs {
  display: flex;
  border-bottom: 1px solid rgba(20, 20, 20, 0.15);
  margin-bottom: 1.875rem;
}
@media (max-width: 20em) {
  .review-tabs {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .review-tabs {
    margin-bottom: calc(
                1.25rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (max-width: 30.75em) {
  .review-tabs {
    flex-direction: column;
    align-items: start;
  }
}
.review-tabs__avatar {
  flex: 0 0 100px;
  text-align: center;
}
.body-review {
  max-width: 50rem;
}
.body-review__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 30.75em) {
  .body-review__header {
    flex-direction: column;
    align-items: start;
    margin-bottom: 0.625rem;
  }
}
.body-review__date {
  color: rgba(20, 20, 20, 0.3);
  font-size: 14px;
  font-weight: 500;
}
.body-review__title {
  color: #141414;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.body-review__rating {
  margin-bottom: 0.625rem;
}
.body-review__rating img {
  width: 9.375rem;
}
@media (max-width: 20em) {
  .body-review__rating img {
    width: 6.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .body-review__rating img {
    width: calc(
                6.25rem + 50 * ((100vw - 20rem) / 1300)
            );
  }
}
.body-review__review {
  color: #141414;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
@media (max-width: 20em) {
  .body-review__review {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .body-review__review {
    font-size: calc(
                0.875rem + 4 * ((100vw - 20rem) / 1300)
            );
  }
}
.actions-review {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.875rem;
}
@media (max-width: 20em) {
  .actions-review {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .actions-review {
    margin-bottom: calc(
                1.25rem + 10 * ((100vw - 20rem) / 1300)
            );
  }
}
.actions-review__link {
  color: #e8aa31;
}
.actions-review__favorite {
  font-size: 1.6875rem;
  transition: color 0.3s ease;
}
@media (max-width: 20em) {
  .actions-review__favorite {
    font-size: 1.375rem;
  }
}
@media (min-width: 20em) and (max-width: 101.25em) {
  .actions-review__favorite {
    font-size: calc(
                1.375rem + 5 * ((100vw - 20rem) / 1300)
            );
  }
}
@media (any-hover: hover) {
  .actions-review__favorite:hover {
    color: #e8aa31;
  }
}