html {
  --swiper-scrollbar-bg-color: #e1e1e1;
  --swiper-scrollbar-drag-bg-color: var(--color-accent);
  box-sizing: border-box;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
ul,
ol {
  padding: 0;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
ul {
  list-style: none;
}
h1,.h1, h2, .h2, h3,.h3,h4,.h4,h5,.h5,h6, h6 {
  font-weight: normal;
}
h2, .h2 {
  font-size: 35px;
}
picture,
source{
  display: contents;
}
img {
  max-width: 100%;
  display: inline-block;
  object-fit: contain;
}
input,
button,
textarea,
select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
input,
textarea {
  border: none;
  background-color: rgba(0, 0, 0, 0);
}
textarea {
  resize: none;
}
address,
cite {
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}
button {
  padding: 0;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
input[type='number'] {
  appearance: textfield;
}
input[type='text']::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
input[type='text']::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  display: none;
}
html,
body {
  height: 100%;
}
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.main {
  flex: 1 1 auto;
}
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-dark: #373737;
  --color-bg: #fffbf6;
  --color-accent: #2f8556;
  --color-gray: #707070;
}
@font-face {
  font-family: 'Calibri';
  src: url('../fonts/calibri.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Calibri';
  src: url('../fonts/calibri-bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: 'Calibri', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-dark);
  background-color: var(--color-white);
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }
  h2, .h2 {
    font-size: 26px;
  }
}
body.no-scroll {
  overflow: hidden;
}
.container {
  max-width: 1300px;
  padding: 0 15px;
  margin: 0 auto;
}
.container-fluid {
  max-width: 1920px;
  padding: 0 15px;
  margin: 0 auto;
}
.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
  transition: 200ms ease-in;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 550ms;
}
.text-center {
  text-align: center;
}
.section-title {
  font-size: 40px;
}
@media (max-width: 1300px) {
  .section-title {
    font-size: calc(24px + 16 * ((100vw - 375px) / 925));
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-accent);
  color: var(--color-white);
  transition: background-color .35s ease, color .35s ease, border-color .35s ease;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  padding: 14px 20px;
  min-height: 50px;
  border-radius: 5px;
  border: 1px solid var(--color-accent);
}
.btn:hover {
  background-color: var(--color-white);
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.btn--transparent {
  background-color: rgba(255, 255, 255, 0.1);
}
.btn--light {
  background-color: #edf4f0;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 400;
  color: var(--color-accent);
  border-color: rgba(0, 0, 0, 0);
}
.btn--light:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}
.btn--arrow {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  padding: 14px 70px 14px 16px;
  position: relative;
}
.btn--arrow:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}
.btn--arrow:hover::after {
  background-color: var(--color-dark);
}
.btn--arrow::after {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  width: 20px;
  height: 20px;
  mask: url('../images/icons/arrow-long.svg') no-repeat center/contain;
  background-color: var(--color-white);
  transition: 200ms ease;
}
.btn--sm {
  padding-block: 5px;
  min-height: 34px;
}
.btn:active {
  transform: scale(0.98);
}

/* Header */
.header {
  padding-block: 22px 14px;
}
.header__container{
  display: flex;
  gap: 0 4%;
}
.header__bottom {
  padding-block: 12px 0;
  margin-top: 7px;
  border-top: 1px solid #edf2f4;
}
.header__logo {
  display: block;
}
.header__search.form-search {
  max-width: 450px;
}
.header__contacts-phone {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 20px;
  font-weight: bold;
}
.header__contacts-phone::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  mask: url('../images/icons/phone.svg') no-repeat center/contain;
  background-color: #e8e4de;
}
.header__toggle {
  flex-shrink: 0;
  width: 26px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 350ms ease-in;
}
.header__toggle-line {
  border-radius: 3px;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
  position: relative;
  transition: 150ms ease-in;
}
.header__toggle-line::after,
.header__toggle-line::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: inherit;
  transition: 450ms ease-in;
  border-radius: 3px;
}
.header__toggle-line::after {
  top: -7px;
}
.header__toggle-line::before {
  bottom: -7px;
}
@media (min-width: 992px) {
  .header__toggle {
    display: none;
  }
  .header__logo {
    min-width: 174px;
  }
}
@media (min-width: 1200px) {
  .header__search.form-search {
    min-width: 450px;
  }
}
@media (max-width: 991px) {
  .header__col,
  .header__contacts,
  .header__bottom,
  .tools__item:has(.tools__link--cart),
  .tools__link-text{
    display: none;
  }
  .header__tools {
    margin-left: auto;
  }
  .header__container {
    align-items: center;
  }
}
@media (max-width: 575px) {
  .header {
    padding-block: 10px;
  }
  .header__logo {
    width: 120px;
  }
}

/* Menu */
.menu__list {
  display: flex;
  gap: 41px;
}
.menu__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu__item {
  position: relative;
}
.menu__link {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  padding-block: 5px;
  border-bottom: 2px solid transparent;
  transition: all .35s ease;
}
.menu__link--active {
  border-color: var(--color-accent);
}
.menu__link:hover {
  color: var(--color-accent);
}
.menu__link--dropdown {
  padding-right: 15px;
  position: relative;
  border-radius: 5px;
}
.menu__link--dropdown::after {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  right: 0;
  top: 35%;
  transform: translateY(-50%);
  mask: url('../images/icons/chevron.svg') no-repeat center/100%;
  background-color: var(--color-dark);
}
.menu__link--dropdown:hover::before {
  transform: scale(0);
}
.menu__link--dropdown:hover::after {
  background-color: var(--color-accent);
}
.menu__link--dropdown:hover + .dropmenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu__link--catalog {
  padding: 12px 35px 12px 59px;
  background-color: var(--color-accent);
  color: var(--color-white);
  position: relative;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 10px;
}
.menu__link--catalog::after {
  position: absolute;
  content: '';
  width: 20px;
  height: 15px;
  mask: url('../images/icons/menu-icon.svg') no-repeat center/contain;
  background-color: var(--color-white);
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.menu__link--catalog::before {
  display: none;
}
.menu__link--catalog:hover {
  color: var(--color-accent);
  background-color: var(--color-accent-light);
  border: 1px solid var(--color-accent);
}
.menu__link--dots {
  padding-right: 0;
}
.menu__link--dots::after {
  display: none;
}
.menu__link--dots svg {
  width: 20px;
  height: 5px;
}
.menu .dropmenu {
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  width: 200px;
  position: absolute;
  left: 0;
  top: 45px;
  background-color: var(--color-white);
  box-shadow: 0 19px 51px 0 rgba(53, 56, 62, 0.23);
  border-radius: 5px;
  padding: 0 21px;
  transition: 450ms ease;
  transition-delay: 150ms;
}
.menu .dropmenu--price-list {
  width: 240px;
}
.menu .dropmenu--price-list .dropmenu__link {
  text-align: left;
}
.menu .dropmenu--price-list .dropmenu__link::after {
  display: none;
}
.menu .dropmenu--left {
  width: 300px;
}
.menu .dropmenu--right {
  right: 0;
  left: initial;
  width: 250px;
}
.menu .dropmenu--brands {
  width: 1240px;
  height: 410px;
  left: -430px;
  padding: 30px;
  overflow-y: auto;
}
.menu .dropmenu--brands .dropmenu__list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
}
.menu .dropmenu--brands .dropmenu__item {
  width: 155px;
  height: 125px;
  background-color: var(--color-white);
  border: 1px solid #eaeaea;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 15px 25px;
}
.menu .dropmenu--brands .dropmenu__item img {
  height: 55px;
  width: 105px;
  object-fit: contain;
  margin-bottom: 20px;
}
.menu .dropmenu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu .dropmenu__item {
  border-bottom: 1px solid #ebebeb;
}
.menu .dropmenu__item:last-child {
  border-bottom: none;
}
.menu .dropmenu__link {
  display: block;
  width: 100%;
  color: var(--color-dark);
  padding: 12px 0;
  transition: 150ms ease;
  position: relative;
  padding-right: 20px;
}
.menu .dropmenu__link:hover + .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu .dropmenu__link::after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  mask: url('../images/sprite.svg#chevron') no-repeat center/100%;
  background-color: #d0d0d0;
  transition: 150ms ease;
}
.menu .dropmenu__link:hover {
  color: var(--color-accent);
}
.menu .dropmenu__link:hover::after {
  background-color: var(--color-accent);
  transform: translateY(-50%) translateX(3px) rotate(-90deg);
}
@media (max-width: 1300px) {
  .menu .dropmenu--brands {
    width: 900px;
    height: 470px;
    left: -300px;
  }
  .menu .dropmenu--brands .dropmenu__list {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Menu Top */
.menu-top__list {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 5px;
}
.menu-top__link {
  display: block;
  font-size: 13px;
  color: #909195;
}
.menu-top__link:hover {
  color: var(--color-dark);
}

/* Tools */
.tools__list {
  display: flex;
  align-items: center;
  gap: 41px;
}
@media (max-width: 1300px) {
  .tools__list {
    gap: 15px;
  }
}
.tools__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: 200ms ease;
  position: relative;
}
.tools__link:hover .tools__link-icon {
  background-color: var(--color-accent);
}
.tools__link:hover .tools__link-icon::after {
  background-color: var(--color-white);
}
.tools__link-icon {
  display: block;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  position: relative;
  background-color: #f8f8f8;
}
.tools__link-icon::after {
  position: absolute;
  content: '';
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-dark);
  transition: 200ms ease;
}
.tools__link-text {
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  color: #6e7074;
}
.tools__link-count {
  position: absolute;
  top: 0;
  right: 0;
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  border-radius: 50%;
}
.tools__link--wp .tools__link-icon::after {
  background-color: #2fd24e;
  mask: url('../images/icons/whatsapp.svg') no-repeat center/contain;
}
.tools__link--tg .tools__link-icon::after {
  background-color: #31a7da;
  mask: url('../images/icons/telegram-plane.svg') no-repeat center/contain;
}
.tools__link--pin .tools__link-icon::after {
  mask: url('../images/icons/pin-map-full.svg') no-repeat center/contain;
}
.tools__link--cart .tools__link-icon::after {
  mask: url('../images/icons/cart.svg') no-repeat center/contain;
}
.tools__link--cart .tools__link-count {
  background-color: var(--color-accent);
  color: var(--color-white);
}
@media (max-width: 575px) {
  .tools__link-icon {
    width: 35px;
    height: 35px;
  }
}
/* Tools Menu*/
.tools-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f3f3f3;
  padding: 5px;
}
.tools-menu__container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 60px
}
@media (min-width: 992px) {
  .tools-menu {
    display: none;
  }
}


/* Footer */
.footer {
  padding-top: 51px;
  padding-bottom: 60px;
}
.footer__wrapper {
  display: flex;
  gap: 30px;
}
.footer__menu-name {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}
.footer__menu-item{
  margin-top: 20px;
}
.footer__menu-link {
  color: #736d6d;
}
.footer__coords {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.footer__coords-text {
  position: relative;
  font-size: 18px;
  padding-left: 35px;
}
.footer__coords-text::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  display: block;
  width: 25px;
  height: 32px;
  background-color: #242424;
  mask: url("../images/icons/pin-map.svg") center no-repeat;
}
.footer__coords-text a{
  font-size: 15px;
  color: var(--color-accent);
}
.footer__coords-map {
  position: relative;
  max-height: 195px;
  border-radius: 10px;
  overflow: hidden;
}
.footer__coords-pictures {
  display: grid;
  grid-gap: 10px 20px;
  grid-template-columns: 1fr 200px;
  margin-top: auto;
  padding-top: 20px;
}
.footer__coords-pictures img {
  min-height: 195px;
  border-radius: 10px;
  object-fit: cover;
}
.footer__contacts {
  display: flex;
  flex-wrap: wrap;
}
.footer__contacts-links {
  display: flex;
  flex-direction: column;
}
.footer__contacts-link {
  font-size: 25px;
  font-weight: bold;
  display: inline-block;
}
.footer__contacts-text {
  margin-top: 9px;
  font-size: 15px;
}
.footer__btns {
  display: flex;
  gap: 5px;
  margin-top: 25px;
}
.footer__btn {
  min-width: 50px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.footer__btn--email {
  flex-grow: 1;
}
.footer__btn::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
}
.footer__btn--email::before {
  mask: url('../images/icons/email.svg') no-repeat center/contain;
}
.footer__btn--tg::before {
  mask: url('../images/icons/telegram-plane.svg') no-repeat center/contain;
}
.footer__btn--wp::before {
  mask: url('../images/icons/whatsapp.svg') no-repeat center/contain;
}
@media (min-width: 768px) {
  .footer__contacts-text--email {
    order: 1;
  }
  .footer__copy{

    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .footer__menu {
    grid-area: 1/2/3/2;
  }
  .footer__logo--mob {
    display: none;
  }
  .footer__col {
    display: grid;
    grid-template-columns: 1fr 67px;
    grid-template-rows: auto auto;
    grid-gap: 0 20px;
    max-width: 25%;
  }

  .footer__contacts {
    flex-direction: column;
    max-width: 295px;
    min-width: 295px;
  }
}

@media (min-width: 1300px) {
  .footer__coords {
    padding-left: 41px;
  }
}
@media (min-width: 767px) and (max-width: 991px){
  .footer__wrapper {
    display: grid;
    grid-template-columns: 1fr 295px;
  }
}
@media (max-width: 991px) {
  .footer__menu,
  .footer__logo--desktop{
    display: none;
  }
  .footer__wrapper{
    gap: 15px;
    flex-wrap: wrap;
  }
  .footer__contacts-link {
    font-size: 20px;
  }
  .footer__col {
    order: 1;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-top: 45px;
  }
  .footer__wrapper {
    flex-direction: column;
  }
  .footer__coords {
    display: grid;
    grid-template-columns: 30% 1fr;
    grid-column-gap: 15px;
  }
  .footer__coords-map iframe {
    width: 100%;
  }
  .footer__coords-pictures {
    grid-template-columns: 1fr;
    grid-column-start: span 2;
  }
  .footer__coords-pictures img {
    width: 100%;
  }
  .footer__contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__contacts-links {
    margin-top: 12px;
  }
  .footer__contacts-link {
    font-size: 18px;
  }
  .footer__contacts-time {
    grid-row-start: span 3;
  }
  .footer__contacts-text--email {
    grid-area: 2 / 1 / 2 / 1;
  }
  .footer__btns {
    grid-column-start: span 3;
    width: 100%;
    max-width: 480px;
  }
}
@media (max-width: 575px) {
  .footer__coords-map {
    max-height: 452px;
  }

  .footer__btns {
    margin-top: 15px;
  }

  .footer__coords-text {
    font-size: 13px;
    padding-left: 19px;
  }

  .footer__coords-text a {
    font-size: 15px;
  }

  .footer__coords-text::before {
    width: 12px;
    top: -2px;
  }
}
@media (max-width: 480px) {
  .footer__contacts-text {
    font-size: 14px;
    margin-top: 6px;
  }
  .footer__contacts-links {
    margin-top: 6px;
  }
  .footer__contacts-text:first-child {
    font-size: 13px;
  }
  .footer__copy {
    text-align: center;
  }
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.about-text {
  padding-top: 80px;
  padding-bottom: 75px;
  text-align: center;
  font-size: 20px;
  color: #3b3b3b;
  border-bottom: 1px solid #dedede;
}
@media (max-width: 1300px) {
  .about-text {
    padding-top: calc(40px + 40 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .about-text {
    padding-bottom: calc(30px + 45 * ((100vw - 375px) / 925));
  }
}
.about-text p {
  max-width: 1100px;
  width: calc(100% - 30px);
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .about-text {
    font-size: 17px;
  }
}
.pagination__list {
  display: flex;
  align-items: center;
}
.pagination__link {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #a8aeb9;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 150ms ease;
}
.pagination__link:hover,
.pagination__link--active {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: 5px;
  font-size: 20px;
  font-weight: 700;
}
.pagination__link--active {
  font-size: 22px;
}
.pagination__link--dots:hover {
  background-color: rgba(0, 0, 0, 0);
  color: var(--color-dark);
  font-weight: 400;
  font-size: 15px;
}
input[type='file'] {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}
.custom-file-upload {
  width: 100%;
  padding: 6px 12px;
  cursor: pointer;
  background-color: var(--color-white);
  border: 2px dashed #cfcfde;
  border-radius: 10px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  color: #a1a1aa;
  transition: 150ms ease;
}
.custom-file-upload:hover {
  color: var(--color-dark);
  background-color: #f4f4fb;
}
.range-slider {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #25282f;
  font-size: 0.875em;
  margin-bottom: 5px;
  padding: 20px;
}
.range-slider__name {
  margin-bottom: 15px;
  display: block;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  color: #9d9d9d;
}
.range-slider__range {
  border-radius: 4px;
  width: calc(100% - 20px);
  height: 5px;
  border: none;
  background-color: #e2e9f8;
  margin-bottom: 30px;
}
.range-slider__min {
  margin-right: 15px;
  flex-shrink: 0;
  width: 70px;
}
.range-slider__max {
  margin-left: 25px;
  flex-shrink: 0;
}
.range-slider__values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.range-slider__min,
.range-slider__max {
  width: 110px;
  height: 30px;
  background-color: #f3f3f3;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #70747f;
}
.range-slider .noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-accent);
  cursor: pointer;
  box-shadow: none;
  top: -8px;
  border-color: rgba(0, 0, 0, 0);
}
.range-slider .noUi-horizontal .noUi-handle:hover {
  border-color: var(--color-accent);
  transform: scale(1.2);
}
.range-slider .noUi-horizontal .noUi-handle::before,
.range-slider .noUi-horizontal .noUi-handle::after {
  display: none;
}
.range-slider .noUi-connect {
  background-color: #aad9c0;
}
.dropdown-menu {
  border-radius: 20px;
  position: absolute;
  overflow: hidden;
  width: 305px;
  z-index: 10;
  position: absolute;
  left: 0;
  top: -20%;
  background-color: var(--color-white);
  color: var(--color-dark);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 250ms ease-in-out;
}
.dropdown-menu .simplebar-scrollbar::before {
  background-color: var(--color-accent);
}
.dropdown-menu__list {
  overflow-y: auto;
  height: 350px;
}
.dropdown-menu__item {
  width: 100%;
  position: relative;
}
.dropdown-menu__item:not(:last-child)::after {
  position: absolute;
  content: '';
  width: 80%;
  height: 1px;
  border-bottom: 1px dashed #d7d7d7;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.dropdown-menu__link {
  display: block;
  width: 100%;
  transition: 150ms ease;
  padding: 14px 25px;
  color: var(--color-black);
}
.dropdown-menu__link:hover {
  background-color: #e5f3ff;
}
.dropdown-menu.active {
  pointer-events: all;
  opacity: 1;
  visibility: hidden;
}
.dropdown.active .header__location-btn + .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown.active .menu__link--dropdown::after {
  transform: translateY(-50%) rotate(180deg);
}
.counter {
  width: 130px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px;
  background-color: #fff;
  border-radius: 5px;
}
.counter__btn {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.counter__btn:hover {
  background-color: rgba(0, 105, 48, 0.1);
}
.counter__input {
  width: 50px;
  height: 35px;
  background-color: #f6f6f6;
  border-radius: 5px;
  text-align: center;
  outline: rgba(0, 0, 0, 0);
  font-size: 15px;
}
.rating__stars {
  display: flex;
  align-items: center;
}
.rating__star {
  position: relative;
  mask: url('../images/icons/star.svg') no-repeat center/contain;
  width: 15px;
  height: 15px;
  background-color: #fac630;
}
.rating__star--disabled {
  background-color: #c1c1c1;
}
@keyframes opacity-visibility {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.breadcrumbs {
  margin-top: 25px;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs__item {
  position: relative;
}
.breadcrumbs__item:not(:last-child) {
  margin-right: 7px;
  padding-right: 14px;
  transition: 150ms;
}
.breadcrumbs__item:not(:last-child)::after {
  position: absolute;
  content: '';
  width: 8px;
  height: 7px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  right: 0;
  mask: url('../images/icons/chevron.svg') no-repeat center/contain;
  background-color: #c2c2c2;
}
.breadcrumbs__link {
  display: block;
  font-size: 14px;
  position: relative;
  transition: 150ms;
  color: #c2c2c2;
}
.breadcrumbs__link:hover {
  color: var(--color-dark);
}
.swiper-button-prev,
.swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border-radius: 50%;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  box-shadow: 0 11px 13px rgba(0, 0, 0, 0.06);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: '';
  display: block;
  background-color: #777777;
  width: 13px;
  height: 13px;
  max-width: 50%;
}
.swiper-button-prev::after {
  mask: url('../images/icons/arrow-prev.svg') no-repeat center/contain;
}
.swiper-button-next::after {
  mask: url('../images/icons/arrow-next.svg') no-repeat center/contain;
}
.swiper-pagination {
  top: initial;
  bottom: 0 !important;
  max-width: 1270px;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: var(--color-accent);
}
.checkbox {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}
.checkbox__box {
  display: inline-block;
  width: 25px;
  height: 25px;
  position: relative;
  margin-right: 13px;
  background-color: var(--color-white);
  border: 1px solid #d7d7d7;
  border-radius: 5px;
}
.checkbox__input {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}
.checkbox__input:checked + .checkbox__box::after {
  position: absolute;
  content: '';
  width: 13px;
  height: 13px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  mask: url('../images/icons/check.svg') no-repeat center/contain;
  background-color: var(--color-dark);
}
.checkbox__input:checked + .checkbox__box--green {
  background-color: var(--color-accent);
}
.checkbox__input:checked + .checkbox__box--green::after {
  position: absolute;
  content: '';
  width: 13px;
  height: 13px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  mask: url('../images/icons/check.svg') no-repeat center/contain;
  background-color: var(--color-white);
}
.checkbox__text {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  color: var(--color-dark);
  font-size: 15px;
  line-height: 1.3;
}
@media (max-width: 767.98px) {
  .checkbox__text {
    font-size: 13px;
  }
}
.checkbox__text a {
  color: var(--color-accent);
}
.choices {
  font-size: 16px;
  line-height: 1;
  height: auto;
  font-weight: 400;
  width: 100%;
  background-color: var(--color-white);
  color: #686868;
  margin-bottom: 0 !important;
  box-sizing: border-box;
  padding-bottom: 0;
  border: 1px solid #d9d8d8;
  border-radius: 5px;
}
.choices__placeholder {
  opacity: 1;
}
.choices__inner {
  box-sizing: border-box;
  padding-left: 18px;
  width: 100%;
  height: 100%;
  background-color: inherit !important;
  display: flex;
  align-items: center;
  position: relative;
  border: none;
  min-height: auto;
  font-size: 16px;
}
.choices::after {
  border: none !important;
  width: 12px !important;
  height: 6px !important;
  margin-top: 0 !important;
  mask-image: url('../images/icons/chevron.svg');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100%;
  background-color: #b2b2b2;
  right: 15px !important;
  top: 25px !important;
  transition: 150ms ease-in;
}
.choices.is-open::after {
  margin-top: 0 !important;
  transform: rotate(180deg);
}
.choices__list {
  padding: 0;
  background-color: inherit;
  max-height: 130px;
  overflow-y: auto;
}
.choices__list .choices__item {
  background-color: inherit;
}
.choices__list--dropdown {
  z-index: 100;
}
.choices__list--dropdown .choices__list {
  max-height: 130px !important;
}
.choices__list--dropdown .choices__item {
  position: relative;
  padding: 12px !important;
  padding-right: 0 !important;
}
.choices__list--dropdown .choices__item:hover {
  background-color: var(--color-bg);
  color: var(--color-dark);
}
.choices__list--dropdown .choices__item .choices__item--selectable {
  background-color: #ededed;
}
.choices__list--dropdown .choices__item.is-selected:focus,
.choices__list--dropdown .choices__item.is-highlighted:focus {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.choices__list--dropdown .choices__item.is-selected:hover,
.choices__list--dropdown .choices__item.is-highlighted:hover {
  background-color: var(--color-bg);
}
.socials__list {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
.socials__link {
  display: block;
  width: 42px;
  height: 42px;
  background-color: #242424;
  border-radius: 10px;
  transition: 200ms ease;
  position: relative;
}
.socials__link::after {
  position: absolute;
  content: '';
  width: 19px;
  height: 19px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-white);
  transition: 200ms ease;
}
.socials__link:hover {
  background-color: var(--color-white);
}
.socials__link:hover::after {
  background-color: var(--color-dark);
}
.socials__link--pinterest::after {
  mask: url('../images/icons/pinterest.svg') no-repeat center/contain;
}
.socials__link--vk::after {
  mask: url('../images/icons/vk.svg') no-repeat center/contain;
}
.socials__link--telegram::after {
  mask: url('../images/icons/telegram-plane.svg') no-repeat center/contain;
}
.socials__link--whatsapp::after {
  mask: url('../images/icons/whatsapp.svg') no-repeat center/contain;
}

/* Form Submit*/
.form-submit {
  display: grid;
  gap: 15px;
}
.form-submit__input {
  width: 100%;
  padding: 5px 23px;
  background-color: transparent;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  font-size: 18px;
  line-height: 1;
  min-height: 54px;
}
.form-submit__input::placeholder {
  color: #828282;
}
.form-submit__btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 10px;
}
.form-submit__btn::after {
  content: '';
  display: block;
  width: 10px;
  height: 8px;
  background-color: currentColor;
  mask: url('../images/icons/arrow.svg') no-repeat center/contain;
}
.form-submit .checkbox {
  margin: 15px 0;
}
@media (max-width: 767.98px) {
  .form-submit__input {
    height: 48px;
    font-size: 16px;
    padding-inline:15px;
  }
  .form-submit__btn {
    font-size: 16px;
    padding: 20px 10px;
  }
}

/**/
.side {
  border-radius: 10px;
  width: 100%;
  margin-bottom: 40px;
}
.side__top {
  margin-bottom: 30px;
}
.side__news {
  margin-bottom: 30px;
}
.side__title {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-white);
}
.side .accordion.active .accordion__control::after {
  background-color: var(--color-white);
}
.side__control {
  display: block;
  width: 100%;
  border-radius: 5px 5px 0 0;
  padding: 17px 23px;
  text-align-last: left;
  font-size: 16px;
  font-weight: 600;
  color: #53595c;
  border: 1px solid #eaeaea;
}
@media (max-width: 1300px) {
  .side__control {
    padding: 15px 15px;
  }
}
.side__control.accordion__control::after {
  right: 23px;
}
.side__list {
  border: 1px solid #eaeaea;
  max-height: 250px;
  overflow-y: auto;
}
.side__item {
  position: relative;
  padding: 10px 20px;
}
.side__item .checkbox {
  align-items: center;
}
.side__color {
  padding-left: 30px;
  position: relative;
}
.side__color::after {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.side__color--white::after {
  border: 1px solid #dedede;
  background-color: var(--color-white);
}
.side__color--beige::after {
  background-color: #ffe6b3;
}
.side__color--black::after {
  background-color: #373737;
}
.side__color--green::after {
  background-color: #85b975;
}
.side__color--blue::after {
  background-color: #95afda;
}
.side__color--red::after {
  background-color: #c75959;
}
.side__link {
  display: block;
  font-size: 16px;
  color: #80898d;
  position: relative;
  padding-right: 20px;
  transition: 150ms ease;
}
.side__link:hover {
  color: var(--color-accent);
}
.side__link--dropdown {
  padding-right: 15px;
  position: relative;
  border-radius: 5px;
}
.side__link--dropdown::after {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  right: 20px;
  top: 50%;
  mask: url('../images/icons/triangle.svg') no-repeat center/100%;
  background-color: #e4e4e4;
}
.side__link--dropdown:hover::after {
  background-color: var(--color-accent);
}
.side__link--dropdown:hover + .dropmenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.accordion {
  padding-left: 1px;
}
.accordion.active .accordion__control::after {
  transform: translateY(-50%) rotate(180deg);
}
.accordion__control {
  transition: 150ms ease;
  position: relative;
}
.accordion__control::after {
  position: absolute;
  content: '';
  width: 20px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  mask: url('../images/icons/chevron.svg') no-repeat center/contain;
  background-color: var(--color-dark);
  transition: 250ms ease;
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  z-index: 9;
  transition: 450ms ease;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 12;
  width: 400px;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: 350ms ease-in-out;
  overflow-x: auto;
  padding: 40px;
}
@media (max-width: 991px) {
  .mobile-menu {
    width: 80%;
  }
}
@media (max-width: 1300px) {
  .mobile-menu {
    padding: calc(20px + 20 * ((100vw - 375px) / 925));
  }
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  box-shadow: 0 36px 51px 0;
}
.mobile-menu__logo {
  margin-bottom: 40px;
}
.mobile-menu__close {
  position: absolute;
  display: block;
  top: 22px;
  right: 20px;
  width: 28px;
  height: 28px;
  fill: #030303;
  z-index: 999;
}
.mobile-menu__bottom {
  margin-top: auto;
}
.mobile-menu__item:not(:last-child) {
  margin-bottom: 15px;
}
.mobile-menu__link {
  font-size: 16px;
  width: 100%;
  display: block;
}
.mobile-menu .mobile-menu-box__content {
  padding-left: 20px;
}
.mobile-menu .mobile-menu-box__list {
  padding-top: 10px;
  overflow-y: auto;
  max-height: 150px;
}
.mobile-menu .mobile-menu-box__name {
  padding-right: 10px;
  font-size: 16px;
  display: block;
  width: 100%;
  text-align: left;
}
.mobile-menu .mobile-menu-box__link {
  display: block;
  font-size: 16px;
  padding: 5px 0;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: 350ms ease;
}
.popup__container {
  width: calc(100% - 40px);
  max-width: 470px;
  background-color: #fafafa;
  transition: 250ms ease-in;
  position: relative;
  overflow-y: auto;
  max-height: calc(100% - 40px);
  transition: 750ms ease;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1300px) {
  .popup__container {
    padding: calc(15px + 25 * ((100vw - 375px) / 925));
  }
}
.popup.active {
  opacity: 1;
  visibility: visible;
  display: flex;
  animation: opacity-visibility 500ms ease forwards;
}
.popup__wrapper {
  width: 100%;
}
.popup__title {
  font-size: 25px;
  line-height: 1;
  font-weight: 500;
  color: #282828;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 1300px) {
  .popup__title {
    margin-bottom: calc(20px + 20 * ((100vw - 375px) / 925));
  }
}
.popup__text {
  font-size: 16px;
  font-weight: 300;
  color: #282828;
  text-align: center;
}
@media (max-width: 767.98px) {
  .popup__text {
    font-size: 15px;
  }
}
.popup__text p {
  margin-bottom: 20px;
}
.popup__close {
  position: absolute;
  width: 15px;
  height: 15px;
  right: 16px;
  top: 16px;
  fill: #bcc4cf;
  transition: 150ms ease;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup__close svg {
  width: 10px;
  height: 10px;
}
.popup__close:hover {
  fill: var(--color-white);
  border-color: var(--color-dark);
  background-color: var(--color-dark);
}
.categories-card {
  max-width: 310px;
  width: 100%;
  height: 280px;
  transition: 200ms ease;
}
.categories-card:hover {
  box-shadow: 0 0 10px 5px rgba(200, 200, 200, 0.7);
}
@media (max-width: 767.98px) {
  .categories-card {
    height: 200px;
  }
}
.categories-card__top {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 35px;
  background-color: #f9f9f9;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .categories-card__top {
    padding: 20px;
  }
}
.categories-card__top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.categories-card__btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 135px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  box-shadow: 7px 13px 21px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-size: 17px;
  line-height: 1;
  font-weight: 400;
  color: #494949;
  transition: 200ms ease;
}
@media (max-width: 767.98px) {
  .categories-card__btn {
    bottom: 10px;
  }
}
.categories-card__btn--module {
  width: 175px;
}
.categories-card__btn--children {
  width: 165px;
}
.categories-card__btn:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

/* Product card*/
.product-card {
  width: 100%;
  height: 100%;
}
.product-card__top {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  padding: 20px 10px;
  position: relative;
  margin-bottom: 20px;
  aspect-ratio:  0.9/1.0;
  width: 100%;
}
.product-card__picture {
  display: block;
  max-width: 100%;
  width: 100%;
}
.product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card__badge {
  background-color: #f3d601;
  font-size: 14px;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  text-transform: uppercase;
  z-index: 6;
}
.product-card__title {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 400;
  color: #4f545e;
  margin-bottom: 15px;
}
.product-card__price {
  font-size: 19px;
  font-weight: bold;
  color: #151a24;
}
.product-card__link {
  color: var(--color-accent);
  font-weight: bold;
}
.product-card__btns {
  display: flex;
  align-items: center;
  justify-content:center;
  width: 185px;
  gap: 5px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, -10px);
  z-index: 10;
}
.product-card__btn {
  background-color: var(--color-white);
  box-shadow: 6px 13px 21px 0 rgba(0, 0, 0, 0.07);
  width: 37px;
  height: 37px;
  position: relative;
  transition: 200ms ease;
}
.product-card__btn::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-color: var(--color-dark);
  transition: 200ms ease;
}
.product-card__btn:hover {
  background-color: var(--color-accent);
}
.product-card__btn:hover::after {
  background-color: var(--color-white);
}

.product-card__btn--cart {
  width: 100px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 13px;
  line-height: 1;
  padding-left: 30px;
}
.product-card__btn--cart::after {
  mask: url('../images/icons/cart.svg') no-repeat center/contain;
  background-color: var(--color-white);
  left: 12px;
  transform: translate(0, -50%);
}
.product-card__btn--cart:hover {
  background-color: #003619;
}
.product-card__slider-arrows .swiper-button-prev,
.product-card__slider-arrows .swiper-button-next {
  --swiper-navigation-sides-offset: 0;
  background-color: transparent;
  box-shadow: none;
  width: 20px;
  height: 50px;
}
.product-card__slider-arrows .swiper-button-prev::after,
.product-card__slider-arrows .swiper-button-next::after {
  background-color: #000;
}
@media (min-width: 991px) {
  .product-card__btns {
    transition: 400ms ease;
    opacity: 0;
    visibility: hidden;
  }
  .product-card:hover .product-card__btns {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
  }
}

/*Products*/
.products{
  display: flex;
  flex-wrap: wrap;
}

.form-search {
  max-width: 570px;
  width: 100%;
}
.form-search div.asl_w .probox .promagnifier {
  background-color: var(--color-accent);
  min-width: 56px;
  box-shadow: none;
}
.form-search div.asl_w .probox .promagnifier .innericon svg {
  fill: #fff !important;
}
@media (max-width: 991px) {
  .form-search {
    display: none;
  }
}
.form-search__group {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
  border: 2px solid var(--color-accent);
  overflow: hidden;
  border-radius: 10px;
  height: 45px;
}
.form-search__group::before {
  position: absolute;
  content: '';
  width: 1px;
  height: 21px;
  background-color: #dadada;
  right: 265px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1300px) {
  .form-search__group::before {
    right: 245px;
  }
}
.form-search__btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 55px;
  height: 100%;
  background-color: var(--color-accent);
  position: relative;
  height: 52px;
  border-radius: 0 8px 8px 0;
}
.form-search__btn::after {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  mask: url('../images/icons/search.svg') no-repeat center/contain;
  background-color: var(--color-white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form-search__input {
  padding: 17px 48px 17px 17px;
  outline: rgba(0, 0, 0, 0);
  height: 100%;
  width: calc(100% - 175px);
  font-size: 16px;
}
@media (max-width: 1300px) {
  .form-search__input {
    padding: 17px 0 17px 35px;
    width: calc(100% - 155px);
  }
}
.form-search__input::-webkit-input-placeholder {
  color: #8c9599;
}
.form-search__input::-moz-placeholder {
  color: #8c9599;
}
.form-search__input:-ms-input-placeholder {
  color: #8c9599;
}
.form-search__input::-ms-input-placeholder {
  color: #8c9599;
}
.form-search__input::placeholder {
  color: #8c9599;
}
.form-search__select {
  margin-left: auto;
}
.form-search .choices {
  border: none;
  width: 215px;
  position: relative;
}
.form-search .choices::after {
  top: 10px !important;
}

/* Hero */
.hero {
  color: var(--color-white);
  background-color: #383a3f;
  position: relative;
}
.hero__content {
  max-width: 731px;
  margin-left: auto;
  margin-top: auto;
}
.hero__content-title {
  font-size: 22px;
  font-weight: bold;
}
.hero__form {
  margin-top: 20px;
}
.hero__form .form-submit__input {
  background-color: #fff;
  border: 0;
}
.hero__form .checkbox{
  order: 1;
  grid-column-start: 3 span;
  margin: 0;
}
.hero__form .checkbox__text{
  display: block;
}
.hero__form .form-submit__btn {
  font-weight: normal;
  text-transform: none;
}
.hero__slide {
  display: flex;
  padding-bottom: 30px;
  min-height: 309px;
}
.hero__slide .container {
  position: relative;
  z-index: 2;
  margin-top: auto;
  width: 100%;
}
.hero__picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__picture img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero .swiper-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px !important;
  z-index: 5;
}
.hero .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  opacity: 1;
  border-radius: 0;
  background-color: rgba(210, 211, 211, 0.4);
}
.hero .swiper-pagination-bullet-active {
  background-color: var(--color-accent);
}
.hero__arrows {
  position: absolute;
  bottom: 30px;
  left: max(15px, (100% - 1270px)/2);
  width: 75px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
.hero__arrows .swiper-button-next,
.hero__arrows .swiper-button-prev {
  height: 30px;
  width: 30px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  background-color: transparent;
  position: relative;
  z-index: 2;
  transition: 200ms ease;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.hero__arrows .swiper-button-next::after,
.hero__arrows .swiper-button-prev::after {
  background-color: var(--color-white);
  mask: url('../images/icons/arrow.svg') no-repeat center/contain;
}
.hero__arrows .swiper-button-prev::after {
  transform: rotate(180deg);
}

@media (min-width: 576px) {
  .hero__form {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .hero__arrows {
    display: none;
  }
}
@media (max-width: 575px) {
  .hero__slide .container {
    margin-top: 30px;
  }
  .hero__content-title {
    text-align: center;
  }
  .hero__slide {
    aspect-ratio: 0.7/1.0;
  }
  .hero .swiper-pagination {
    bottom: 16px !important;
  }
}
/* Contacts */
.contacts {
  padding-top: 40px;
  padding-bottom: 70px;
}
@media (max-width: 1300px) {
  .contacts {
    padding-top: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .contacts {
    padding-bottom: calc(40px + 30 * ((100vw - 375px) / 925));
  }
}
.contacts__title {
  font-size: 35px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 40px;
}
@media (max-width: 1300px) {
  .contacts__title {
    font-size: calc(23px + 12 * ((100vw - 375px) / 925));
  }
}
.contacts__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 45px;
}
@media (max-width: 1300px) {
  .contacts__inner {
    margin-bottom: calc(30px + 15 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .contacts__inner {
    gap: 30px;
    align-items: center;
  }
}
@media (max-width: 767.98px) {
  .contacts__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contacts__list {
  display: grid;
  grid-template-columns: minmax(auto, 340px) minmax(auto, 215px) minmax(auto, 155px)
    minmax(auto, 180px);
  gap: 30px;
}
@media (max-width: 1300px) {
  .contacts__list {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .contacts__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .contacts__list {
    grid-template-columns: 1fr;
  }
}
.contacts .contacts-item {
  color: #3e3e3e;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding-left: 35px;
  position: relative;
}
.contacts .contacts-item::after {
  position: absolute;
  content: '';
  width: 23px;
  height: 23px;
  top: 0;
  left: 0;
  background-color: var(--color-accent);
}
.contacts .contacts-item--location::after {
  mask: url('../images/icons/location.svg') no-repeat center/contain;
}
.contacts .contacts-item--schedule::after {
  mask: url('../images/icons/clock.svg') no-repeat center/contain;
}
.contacts .contacts-item--phone::after {
  mask: url('../images/icons/phone-2.svg') no-repeat center/contain;
}
.contacts .contacts-item--mail::after {
  mask: url('../images/icons/email.svg') no-repeat center/contain;
}
.contacts .contacts-item__name {
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  color: #3e3e3e;
}
.contacts .contacts-item__text {
  font-weight: 400;
}
.contacts .subscription__socials .socials__list {
  gap: 5px;
}
.contacts .subscription__socials .socials__link {
  width: 33px;
  height: 33px;
  border-radius: 5px;
}
.contacts .subscription__socials .socials__link::after {
  width: 16px;
  height: 16px;
}
.contacts__map {
  width: 100%;
  height: 370px;
}
@media (max-width: 1300px) {
  .contacts__map {
    height: calc(280px + 90 * ((100vw - 375px) / 925));
  }
}
.advantages {
  padding-top: 90px;
  padding-bottom: 75px;
}
@media (max-width: 1300px) {
  .advantages {
    padding-top: calc(60px + 30 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .advantages {
    padding-bottom: calc(40px + 35 * ((100vw - 375px) / 925));
  }
}
.advantages__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
}
@media (max-width: 1300px) {
  .advantages__list {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .advantages__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .advantages__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.advantages__heading {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #373737;
}
.advantages__text {
  font-size: 15px;
  line-height: 21px;
  color: #6b6b6b;
}
@media (max-width: 576px) {
  .advantages__text {
    font-size: 14px;
  }
}
.advantages__item {
  text-align: center;
  display: grid;
  gap: 17px;
  padding-top: 70px;
  position: relative;
}
.advantages__item::after {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.advantages__item--guarantee::after {
  background-image: url('../images/icons/guarantee.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.advantages__item--low::after {
  background-image: url('../images/icons/wallet-2.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.advantages__item--assortment::after {
  background-image: url('../images/icons/furniture.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.advantages__item--delivery::after {
  background-image: url('../images/icons/delivery.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.advantages__item--ip::after {
  background-image: url('../images/icons/contract.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
/*Categories section*/
.categories-section {
  padding-top: 62px;
  padding-bottom: 18px;
}
.categories-section__list {
  display: grid;grid-template-columns: repeat(6, 1fr);
  grid-gap: 18px;
}
.categories-section__item {
  position: relative;
}
.categories-section__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1.6/1.0;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  font-size: 16px;
}
.categories-section__card-image {
  height: 75px;
  width: 111px;
  max-width: 70%;
  object-fit: contain;
}
.categories-section__card-text {
  text-align: center;
  margin-top: 8px;
}
.categories-section__submenu {
  position: absolute;
  top: calc(100% - 26px);
  left: 0;
  width: 100%;
  border-radius: 5px;
  padding: 23px 20px;
  background-color: #fff;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  font-size: 15px;
  box-shadow: -3px 7px 13px 0 rgba(0, 0, 0, 0.1)
}
.categories-section__submenu-title {
  font-weight: bold;
}
.categories-section__submenu-item:not(:first-child) {
  margin-top: 16px;
}
@media (hover:hover) {
  .categories-section__card:hover {
    background-color: #f7f7f7;
    border-color: var(--color-accent);
  }
  .categories-section__item:hover .categories-section__submenu{
    opacity: 1;
    visibility: visible;
    z-index: 10;
  }
}
@media (max-width: 1300px) {
  .categories-section__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px){
  .categories-section {
    padding-top: 41px;
  }
  .categories-section__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .categories-section__card-image {
    height: 60px;
    width: 90px;
  }
  .categories-section__card-text {
    font-size: 15px;
  }
}
@media (max-width: 575px){
  .categories-section__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*end Categories section*/

.promocode {
  color: var(--color-white);
}
.promocode__wrapper {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px;
}
@media (max-width: 1300px) {
  .promocode__wrapper {
    padding: calc(20px + 10 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 991px) {
  .promocode__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.promocode__text {
  line-height: 1.2;
  font-weight: 500;
  font-size: 23px;
}
@media (max-width: 1300px) {
  .promocode__text {
    font-size: calc(20px + 3 * ((100vw - 375px) / 925));
  }
}
.promocode__text span {
  display: inline-block;
  margin-left: 10px;
}
.promocode__btn {
  font-size: 17px;
  line-height: 1;
  font-weight: 400;
  color: var(--color-white);
  padding: 20px 24px 20px 50px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: 200ms ease;
}
.promocode__btn:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}
.promocode__btn:hover::after {
  background-color: var(--color-dark);
}
.promocode__btn::after {
  position: absolute;
  content: '';
  width: 18px;
  height: 18px;
  mask: url('../images/icons/copy.svg') no-repeat center/contain;
  background-color: var(--color-white);
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  transition: 200ms ease;
}


/* Benefits */
.benefits {
  margin-top: 54px;
}
.benefits__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 72px;
  gap: 25px 0;
}
.benefits__item {
  min-width: 25%;
  max-width: 25%;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 18px;
}
.benefits__item--right {
  text-align: right;
  justify-content: flex-end;
}
.benefits__item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f7f7f7;
  min-width: 75px;
  max-width: 75px;
  aspect-ratio: 1/1;
}
.benefits__item-image img{
  max-width: 60%;
  max-height: 60%;
}
@media (min-width: 992px) {
  .benefits__item--right .benefits__item-image{
    order: 1;
  }
  .benefits__list {
    flex-direction: column;
    background: url("../images/content/benefits-bg.png") center / auto 100% no-repeat;
    aspect-ratio: 2.6/1.0;
    gap: 25px 50%;
  }

  .benefits__item {
    max-width: 274px;
  }

}
@media (min-width: 1200px) {
  .benefits__list {
    gap: 45px 46%;
  }
}
@media (max-width: 991px) {
  .benefits__item {
    flex-direction: column;
    text-align: center;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .benefits {
    margin-top: 0;
    padding-bottom: 15px;
  }
  .benefits__list {
    margin-top: 25px;
  }
  .benefits__item {
    min-width: 50%;
    max-width: 50%;
  }
}
/* Videos */
.videos-section {
  margin-block: 39px 85px;
}
.videos-section__card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1.4/1.0;
  width: 100%;
}
.videos-section__card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 68px;
  height: 76px;
  mask: url('../images/icons/play.svg') center / contain no-repeat;
}
.videos-section__card img {
  object-fit: cover;
  width: 100%;
}
.videos-section .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37%;
  height: auto;
  min-height: 317px;
  transform: scale(0.9);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.videos-section .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.videos-section .swiper-button-prev,
.videos-section .swiper-button-next{
  position: static;
  transform: none ;
}
.videos-section__slider {
  padding-bottom: 20px;
  margin-bottom: -20px;
  margin-top: 62px;
}
.videos-section__slider-arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 39px;
}
@media (max-width: 992px) {
  .videos-section {
    margin-block: 45px 55px;
  }
}
@media (max-width: 767px) {
  .videos-section__slider {
    margin-top: 20px;
  }
  .videos-section .swiper-slide {
    min-height: initial;
  }
}

/* Reviews Section */
.reviews-section {
  background-color: #fafafa;
  padding-block: 60px 90px;
  text-align: center;
}
.reviews-section__button {
  min-width: 212px;
  margin-top: 14px;
  text-align: center;
}
.reviews-section__slider {
  margin-top: 60px;
  position: relative;
}
.reviews-section__slider .swiper {
  padding-bottom: 20px;
  margin-bottom: -20px;
}
.reviews-section__card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: box-shadow .35s ease;
}
.reviews-section__card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1420px) {
  .reviews-section .swiper-button-prev {
    left: -70px;
  }
  .reviews-section .swiper-button-next {
    right: -70px;
  }
}
@media (max-width: 992px) {
  .reviews-section {
    padding-block: 54px;
  }
  .reviews-section .swiper-button-prev,
  .reviews-section .swiper-button-next{
    position: static;
    transform: none ;
  }
  .reviews-section__slider-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
  }
}

/* Subscription */
.subscription {
  color: #252525;
  text-align: center;
  margin-top: 75px;
}
.subscription__inner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #f2f2f2;
  padding: 75px 15px;
  min-height: 333px;
}
.subscription__title {
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 10px;
}
.subscription__text {
  font-size: 16px;
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .subscription {
    margin-top: 47px;
  }
}

/**/
.banner {
  color: var(--color-white);
  position: relative;
}
.banner__title {
  font-size: 45px;
  line-height: 1.3;
  font-weight: 900;
  text-transform: uppercase;
  width: 240px;
  margin-bottom: 30px;
}
@media (max-width: 1300px) {
  .banner__title {
    font-size: calc(25px + 20 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .banner__title {
    margin-bottom: calc(20px + 10 * ((100vw - 375px) / 925));
  }
}
.banner__text {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 40px;
  font-size: 20px;
}
@media (max-width: 1300px) {
  .banner__text {
    margin-bottom: calc(25px + 15 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .banner__text {
    font-size: calc(16px + 4 * ((100vw - 375px) / 925));
  }
}
.banner__offer {
  background-color: #2c2d2d;
  padding-left: max(15px, (100% - 1270px)/2);
  height: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1300px) {
  .banner__offer {
    padding-top: calc(40px + 40 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .banner__offer {
    padding-bottom: calc(40px + 40 * ((100vw - 375px) / 925));
  }
}
.banner__preview {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-position: left center;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 70%;
}
@media (min-width: 1300px) {
  .banner__preview {
    width: 65%;
  }
}
@media (max-width: 767.98px) {
  .banner__preview {
    width: 55%;
  }
}
@media (max-width: 576px) {
  .banner__preview {
    width: 47%;
  }
}
@media (max-width: 360.98px) {
  .banner__preview {
    width: 45%;
  }
}
.banner__btn {
  border: none;
}
.guarantee {
  padding-top: 40px;
}
@media (max-width: 1300px) {
  .guarantee {
    padding-top: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
.guarantee__title {
  font-size: 35px;
  margin-bottom: 25px;
}
@media (max-width: 1300px) {
  .guarantee__title {
    font-size: calc(23px + 12 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .guarantee__title {
    margin-bottom: calc(15px + 10 * ((100vw - 375px) / 925));
  }
}
.guarantee__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media (max-width: 1300px) {
  .guarantee__wrapper {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .guarantee__wrapper {
    grid-template-columns: 1fr;
  }
}
.guarantee__preview {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .guarantee__preview {
    height: calc(280px + 220 * (100vw - 320px) / 671);
  }
}
.guarantee__text {
  color: #3f3f3f;
  font-size: 18px;
}
@media (max-width: 767.98px) {
  .guarantee__text {
    font-size: 16px;
  }
}
.guarantee__text p:not(:last-child) {
  margin-bottom: 20px;
}
.guarantee__text p span {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .guarantee__text p span {
    font-size: 18px;
  }
}
.guarantee__list {
  margin-bottom: 20px;
}
.furniture {
  padding-top: 40px;
}
@media (max-width: 1300px) {
  .furniture {
    padding-top: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
.furniture__title {
  font-size: 35px;
  margin-bottom: 25px;
}
@media (max-width: 1300px) {
  .furniture__title {
    font-size: calc(23px + 12 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .furniture__title {
    margin-bottom: calc(15px + 10 * ((100vw - 375px) / 925));
  }
}
.furniture__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}
@media (max-width: 1300px) {
  .furniture__wrapper {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .furniture__wrapper {
    grid-template-columns: 1fr;
  }
}
.furniture__preview {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .furniture__preview {
    height: calc(280px + 220 * (100vw - 320px) / 671);
  }
}
.furniture__text {
  font-size: 18px;
  color: #6f6f6f;
}
@media (max-width: 767.98px) {
  .furniture__text {
    font-size: 16px;
  }
}
.return {
  padding-top: 40px;
}
@media (max-width: 1300px) {
  .return {
    padding-top: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
.return__title {
  font-size: 35px;
  margin-bottom: 25px;
}
@media (max-width: 1300px) {
  .return__title {
    font-size: calc(23px + 12 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .return__title {
    margin-bottom: calc(15px + 10 * ((100vw - 375px) / 925));
  }
}
.return__wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 50px;
}
.return__wrapper:not(:last-child) {
  margin-bottom: 80px;
}
@media (max-width: 1300px) {
  .return__wrapper:not(:last-child) {
    margin-bottom: calc(40px + 40 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .return__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .return__wrapper {
    grid-template-columns: 1fr;
  }
}
.return__wrapper--reverse {
  grid-template-columns: 1.05fr 1fr;
}
@media (max-width: 991px) {
  .return__wrapper--reverse {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .return__wrapper--reverse .return__preview {
    order: 1;
  }
}
.return__wrapper--reverse span {
  font-size: 21px;
}
@media (max-width: 767.98px) {
  .return__wrapper--reverse span {
    font-size: 18px;
  }
}
.return__preview {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .return__preview {
    height: calc(280px + 220 * (100vw - 320px) / 671);
  }
}
.return__text {
  font-size: 18px;
  color: #6f6f6f;
}
@media (max-width: 767.98px) {
  .return__text {
    font-size: 16px;
  }
}
.return__text span {
  font-weight: 700;
  color: #4f4f4f;
}
.return__text p:not(:last-child) {
  margin-bottom: 20px;
}
.experience {
  padding-top: 40px;
  padding-bottom: 70px;
}
@media (max-width: 1300px) {
  .experience {
    padding-top: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .experience {
    padding-bottom: calc(40px + 30 * ((100vw - 375px) / 925));
  }
}
.experience__title {
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: 800;
  line-height: 1.25;
}
@media (max-width: 1300px) {
  .experience__title {
    font-size: calc(25px + 15 * ((100vw - 375px) / 925));
  }
}
.experience__text {
  font-size: 18px;
}
@media (max-width: 767.98px) {
  .experience__text {
    font-size: 16px;
  }
}
.experience__text p:not(:last-child) {
  margin-bottom: 20px;
}
.experience__list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 60px;
}
@media (max-width: 1300px) {
  .experience__list {
    margin-bottom: calc(30px + 30 * ((100vw - 375px) / 925));
  }
}
.experience__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 1300px) {
  .experience__wrapper {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .experience__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .experience__left {
    grid-row: 2/3;
  }
}
.experience__left .experience__text {
  font-size: 24px;
  font-weight: 500;
  color: #4c4c4c;
  margin-bottom: 50px;
  font-size: 24px;
}
@media (max-width: 1300px) {
  .experience__left .experience__text {
    margin-bottom: calc(30px + 20 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .experience__left .experience__text {
    font-size: calc(20px + 4 * ((100vw - 375px) / 925));
  }
}
.experience__left .experience__preview {
  height: 690px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 690px;
  margin-bottom: 85px;
}
@media (max-width: 1300px) {
  .experience__left .experience__preview {
    height: calc(320px + 370 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .experience__left .experience__preview {
    margin-bottom: calc(40px + 45 * ((100vw - 375px) / 925));
  }
}
.experience__right .experience__preview {
  height: 505px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 505px;
}
@media (max-width: 1300px) {
  .experience__right .experience__preview {
    height: calc(280px + 225 * ((100vw - 375px) / 925));
  }
}
.experience__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 576px) {
  .experience__btns {
    flex-direction: column;
    align-items: center;
  }
}
.experience__btn {
  font-size: 17px;
  font-weight: 400;
  width: 200px;
  padding: 17px;
}
.promo {
  color: var(--color-white);
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 75px;
}
@media (max-width: 1300px) {
  .promo {
    padding-top: calc(50px + 25 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 991px) {
  .promo {
    height: auto;
    min-height: 500px;
  }
}
@media (max-width: 767.98px) {
  .promo {
    min-height: 400px;
  }
}
.promo__offer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.promo__text {
  font-size: 30px;
}
@media (max-width: 1300px) {
  .promo__text {
    font-size: calc(22px + 8 * ((100vw - 375px) / 925));
  }
}
.wholesalers {
  padding-top: 40px;
}
@media (max-width: 1300px) {
  .wholesalers {
    padding-top: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
.wholesalers__title {
  font-size: 35px;
  margin-bottom: 25px;
}
@media (max-width: 1300px) {
  .wholesalers__title {
    font-size: calc(23px + 12 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .wholesalers__title {
    margin-bottom: calc(15px + 10 * ((100vw - 375px) / 925));
  }
}
.wholesalers__text {
  font-size: 20px;
  color: #5b5a5a;
}
@media (max-width: 767.98px) {
  .wholesalers__text {
    font-size: 18px;
  }
}
.wholesalers__text p span {
  font-weight: 700;
}
.wholesalers__text p:not(:last-child) {
  margin-bottom: 20px;
}
.delivery-bulk {
  padding-top: 60px;
}
@media (max-width: 1300px) {
  .delivery-bulk {
    padding-top: calc(40px + 20 * ((100vw - 375px) / 925));
  }
}
.delivery-bulk__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 991px) {
  .delivery-bulk__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.delivery-bulk__title {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 35px;
}
@media (max-width: 1300px) {
  .delivery-bulk__title {
    font-size: calc(22px + 8 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .delivery-bulk__title {
    margin-bottom: calc(25px + 10 * ((100vw - 375px) / 925));
  }
}
.delivery-bulk__text {
  color: #5b5a5a;
}
.delivery-bulk__text p span {
  font-weight: 700;
  color: #464646;
  font-size: 22px;
  line-height: 1.2;
}
@media (max-width: 1300px) {
  .delivery-bulk__text p span {
    font-size: calc(18px + 4 * ((100vw - 375px) / 925));
  }
}
.delivery-bulk__text p:not(:last-child) {
  margin-bottom: 20px;
}
.delivery-bulk__preview {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 991px) {
  .delivery-bulk__preview {
    height: calc(250px + 210 * (100vw - 320px) / 671);
    order: 1;
  }
}
.bulk-order-pickup {
  padding-top: 70px;
}
@media (max-width: 1300px) {
  .bulk-order-pickup {
    padding-top: calc(40px + 30 * ((100vw - 375px) / 925));
  }
}
.bulk-order-pickup__top {
  margin-bottom: 40px;
}
@media (max-width: 1300px) {
  .bulk-order-pickup__top {
    margin-bottom: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
.bulk-order-pickup__title {
  font-size: 30px;
  margin-bottom: 25px;
}
@media (max-width: 1300px) {
  .bulk-order-pickup__title {
    font-size: calc(22px + 8 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .bulk-order-pickup__title {
    margin-bottom: calc(15px + 10 * ((100vw - 375px) / 925));
  }
}
.bulk-order-pickup__text {
  font-size: 20px;
  color: #5b5a5a;
}
@media (max-width: 767.98px) {
  .bulk-order-pickup__text {
    font-size: 18px;
  }
}
.bulk-order-pickup__map {
  width: 100%;
  height: 385px;
}
@media (max-width: 1300px) {
  .bulk-order-pickup__map {
    height: calc(250px + 135 * ((100vw - 375px) / 925));
  }
}
.price-list {
  padding-top: 75px;
  padding-bottom: 75px;
}
@media (max-width: 1300px) {
  .price-list {
    padding-top: calc(40px + 35 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .price-list {
    padding-bottom: calc(40px + 35 * ((100vw - 375px) / 925));
  }
}
.price-list__top {
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 1300px) {
  .price-list__title {
    font-size: calc(22px + 8 * ((100vw - 375px) / 925));
  }
}
.price-list__form {
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
}
.price-list--write .price-list__title {
  font-size: 35px;
}
@media (max-width: 1300px) {
  .price-list--write .price-list__title {
    font-size: calc(23px + 12 * ((100vw - 375px) / 925));
  }
}
.news {
  padding-top: 40px;
  padding-bottom: 75px;
}
@media (max-width: 1300px) {
  .news {
    padding-top: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .news {
    padding-bottom: calc(40px + 35 * ((100vw - 375px) / 925));
  }
}
.news__title {
  margin-bottom: 60px;
  font-size: 35px;
}
@media (max-width: 1300px) {
  .news__title {
    margin-bottom: calc(30px + 30 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .news__title {
    font-size: calc(23px + 12 * ((100vw - 375px) / 925));
  }
}
.news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 65px;
  margin-bottom: 80px;
}
@media (max-width: 1300px) {
  .news__list {
    margin-bottom: calc(50px + 30 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .news__list {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .news__list {
    grid-template-columns: repeat(2, minmax(auto, 385px));
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .news__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.news__item {
  width: 100%;
  height: 100%;
}
.news__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card {
  max-width: 385px;
  width: 100%;
  height: 100%;
}
.news-card__top {
  display: block;
  width: 100%;
  height: 280px;
  position: relative;
  margin-bottom: 20px;
  transition: 200ms ease;
  height: 280px;
}
.news-card__top:hover {
  opacity: 0.8;
}
@media (max-width: 1300px) {
  .news-card__top {
    height: calc(130px + 150 * ((100vw - 375px) / 925));
  }
}
.news-card__top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card__date {
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  color: #939fb8;
  margin-bottom: 15px;
}
.news-card__title {
  font-weight: 600;
  color: #323131;
  font-size: 19px;
  width: 85%;
}
@media (max-width: 1300px) {
  .news-card__title {
    font-size: calc(14px + 5 * ((100vw - 375px) / 925));
  }
}
.news-card__title a {
  transition: 200ms ease;
}
.news-card__title:hover a {
  color: var(--color-accent);
}
.delivery {
  padding-top: 40px;
}
@media (max-width: 1300px) {
  .delivery {
    padding-top: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
.delivery__title {
  font-size: 35px;
  margin-bottom: 30px;
}
@media (max-width: 1300px) {
  .delivery__title {
    font-size: calc(23px + 12 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .delivery__title {
    margin-bottom: calc(20px + 10 * ((100vw - 375px) / 925));
  }
}
.delivery__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
}
@media (max-width: 991px) {
  .delivery__list {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .delivery__list {
    grid-template-columns: 1fr;
  }
}
.delivery__item {
  width: 100%;
  height: 100%;
}
.delivery-card {
  background-color: #fbfbfb;
  border: 1px solid #e6e6e6;
  height: 100%;
  width: 100%;
  padding: 40px;
}
@media (max-width: 1300px) {
  .delivery-card {
    padding: calc(20px + 20 * ((100vw - 375px) / 925));
  }
}
.delivery-card__top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.delivery-card__icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.delivery-card__icon svg {
  fill: var(--color-white);
  width: 26px;
  height: 26px;
}
.payment-methods {
  padding-top: 70px;
  padding-bottom: 20px;
}
@media (max-width: 1300px) {
  .payment-methods {
    padding-top: calc(40px + 30 * ((100vw - 375px) / 925));
  }
}
.payment-methods__title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 1300px) {
  .payment-methods__title {
    font-size: calc(22px + 8 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .payment-methods__title {
    margin-bottom: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
.payment-methods__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .payment-methods__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .payment-methods__list {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .payment-methods__list {
    grid-template-columns: 1fr;
  }
}

/*Reviews*/
.reviews {
  padding-top: 40px;
  padding-bottom: 70px;
}
@media (max-width: 1300px) {
  .reviews {
    padding-top: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .reviews {
    padding-bottom: calc(40px + 30 * ((100vw - 375px) / 925));
  }
}
.reviews__title {
  font-size: 35px;
  margin-bottom: 30px;
}
@media (max-width: 1300px) {
  .reviews__title {
    font-size: calc(23px + 12 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .reviews__title {
    margin-bottom: calc(20px + 10 * ((100vw - 375px) / 925));
  }
}
.reviews__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 25px;
  margin-bottom: 80px;
}
@media (max-width: 1300px) {
  .reviews__list {
    margin-bottom: calc(40px + 40 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 767.98px) {
  .reviews__list {
    grid-template-columns: 1fr;
  }
}
.reviews__item {
  width: 100%;
  height: 100%;
}
.reviews__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews__btn {
  border: 1px dashed var(--color-accent);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10px;
  font-size: 17px;
  padding: 15px 50px;
  color: var(--color-accent);
  line-height: 1;
  transition: 200ms ease;
}
.reviews__btn:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}
.reviews-card {
  max-width: 620px;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0 16px 32px 0 #e7e7e7;
  border-radius: 10px;
  padding: 25px;
  transition: 200ms ease;
}
.reviews-card:hover {
  box-shadow: 0 16px 32px 0 #c1c1c1;
}
.reviews-card__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 20px;
  margin-bottom: 15px;
  gap: 15px;
}
.reviews-card__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .reviews-card__right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.reviews-card__rating {
  margin-left: auto;
}
@media (max-width: 991px) {
  .reviews-card__rating {
    margin-left: 0;
  }
}
.reviews-card__author {
  display: flex;
  align-items: center;
  gap: 17px;
}
.reviews-card__avatar {
  display: block;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.reviews-card__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #767676;
}
.reviews-card__date {
  font-size: 16px;
  line-height: 1;
  color: #a7a7a7;
}
.reviews-card__name {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #323131;
}
.reviews-card__body {
  margin-bottom: 10px;
}
.credit-promo {
  padding-top: 40px;
  padding-bottom: 70px;
}
@media (max-width: 1300px) {
  .credit-promo {
    padding-top: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .credit-promo {
    padding-bottom: calc(40px + 30 * ((100vw - 375px) / 925));
  }
}
.credit-promo__title {
  font-size: 35px;
  margin-bottom: 30px;
}
@media (max-width: 1300px) {
  .credit-promo__title {
    font-size: calc(23px + 12 * ((100vw - 375px) / 925));
  }
}
.credit-promo__preview {
  height: 270px;
  width: 100%;
  height: 270px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
}
@media (max-width: 1300px) {
  .credit-promo__preview {
    height: calc(150px + 120 * ((100vw - 375px) / 925));
  }
}
.credit-buy {
  padding-bottom: 30px;
}
.credit-buy__title {
  text-align: center;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 40px;
}
@media (max-width: 1300px) {
  .credit-buy__title {
    font-size: calc(23px + 12 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .credit-buy__title {
    margin-bottom: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
.credit-buy__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 265px));
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767.98px) {
  .credit-buy__list {
    grid-template-columns: repeat(2, minmax(auto, 265px));
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .credit-buy__list {
    grid-template-columns: minmax(auto, 265px);
  }
}
.credit-buy__item {
  height: 100%;
  text-align: center;
  color: #5b5b5b;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .credit-buy__item {
    font-size: 16px;
  }
}
.credit-buy__heading {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #3a3a3a;
}
.credit-buy__text {
  font-size: 18px;
}
@media (max-width: 1300px) {
  .credit-buy__text {
    font-size: calc(16px + 2 * ((100vw - 375px) / 925));
  }
}
.credit-buy__list {
  counter-reset: number;
}
.credit-buy__icon {
  width: 85px;
  height: 85px;
  border: 1px dashed rgba(0, 105, 48, 0.2);
  border-radius: 50%;
  position: relative;
}
.credit-buy__icon::after {
  position: absolute;
  content: '';
  width: 69px;
  height: 69px;
  border: 1px dashed var(--color-accent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.credit-buy__icon::before {
  position: absolute;
  content: '';
  counter-increment: number;
  content: counter(number);
  font-size: 35px;
  color: var(--color-accent);
  font-weight: 600;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1300px) {
  .credit-buy__icon::before {
    font-size: calc(23px + 12 * ((100vw - 375px) / 925));
  }
}
.conditions__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}
@media (max-width: 991px) {
  .conditions__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.conditions__title {
  font-size: 35px;
  line-height: 1.3;
  margin-bottom: 40px;
}
@media (max-width: 1300px) {
  .conditions__title {
    font-size: calc(23px + 12 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .conditions__title {
    margin-bottom: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
.conditions__heading {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #404040;
  margin-bottom: 20px;
}
.conditions__list {
  display: grid;
  gap: 10px;
}
.conditions__item {
  font-size: 18px;
  line-height: 1.5;
  color: #5b5b5b;
}
@media (max-width: 767.98px) {
  .conditions__item {
    font-size: 16px;
  }
}
.conditions__box:not(:last-child) {
  margin-bottom: 45px;
}
@media (max-width: 1300px) {
  .conditions__box:not(:last-child) {
    margin-bottom: calc(20px + 25 * ((100vw - 375px) / 925));
  }
}
.conditions__preview {
  border-radius: 150px 0 0 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 640px;
}
@media (max-width: 991px) {
  .conditions__preview {
    order: 1;
    border-radius: 100px 0 0 0;
    height: calc(280px + 420 * (100vw - 320px) / 671);
  }
}
@media (max-width: 767.98px) {
  .conditions__preview {
    border-radius: 50px 0 0 0;
  }
}
.catalog {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (max-width: 1300px) {
  .catalog {
    padding-top: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .catalog {
    padding-bottom: calc(50px + 30 * ((100vw - 375px) / 925));
  }
}
.catalog__title {
  font-size: 35px;
  margin-bottom: 30px;
}
@media (max-width: 1300px) {
  .catalog__title {
    font-size: calc(23px + 12 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .catalog__title {
    margin-bottom: calc(20px + 10 * ((100vw - 375px) / 925));
  }
}
.catalog__wrapper {
  display: grid;
  grid-template-columns: 0.265fr 1fr;
  gap: 15px;
}
@media (max-width: 991px) {
  .catalog__wrapper {
    grid-template-columns: 1fr;
  }
}
.catalog__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767.98px) {
  .catalog__list {
    grid-template-columns: repeat(2, minmax(auto, 310px));
    justify-content: center;
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .catalog__side {
    display: none;
  }
}
.catalog .side__control {
  border: none;
}
.categories {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (max-width: 1300px) {
  .categories {
    padding-top: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .categories {
    padding-bottom: calc(50px + 30 * ((100vw - 375px) / 925));
  }
}
.categories__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 1300px) {
  .categories__top {
    margin-bottom: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 767.98px) {
  .categories__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.categories__sort {
  display: flex;
  align-items: center;
  gap: 15px;
}
.categories__sort .choices {
  width: 168px;
  height: 38px;
  background-color: #f4f4f4;
  border-radius: 5px;
}
.categories__sort .choices::after {
  top: 15px !important;
}
@media (max-width: 991px) {
  .categories__side {
    position: absolute;
    display: block !important;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: var(--color-white);
    height: 100%;
    transform: translateX(-100%);
    transition: 400ms ease;
    width: 80%;
  }
  .categories__side.active {
    transform: translateX(0);
  }
}
.categories__filter {
  mask: url('../images/icons/filter.svg') no-repeat center/contain;
  background-color: var(--color-dark);
  width: 20px;
  height: 20px;
  display: none;
}
@media (max-width: 991px) {
  .categories__filter {
    display: block;
  }
}
.categories__title {
  font-size: 35px;
}
@media (max-width: 1300px) {
  .categories__title {
    font-size: calc(23px + 12 * ((100vw - 375px) / 925));
  }
}
.categories__wrapper {
  display: grid;
  justify-content: space-between;
  grid-template-columns: calc(20% - 15px) 80%;
  gap: 15px;
}
@media (max-width: 991px) {
  .categories__wrapper {
    grid-template-columns: 1fr;
  }
}
.categories__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
  margin-bottom: 80px;
}
@media (max-width: 1300px) {
  .categories__list {
    margin-bottom: calc(40px + 40 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 767.98px) {
  .categories__list {
    grid-template-columns: repeat(2, minmax(auto, 310px));
    justify-content: center;
    gap: 20px 10px;
  }
}

/* New-products */
.new-products {
  --swiper-scrollbar-size: 3px;
  --swiper-scrollbar-bottom: 12px;
  margin-top: 62px;
}
.new-products .swiper-pagination {
  top: initial;
  bottom: 0 !important;
  max-width: 1240px;
}
.new-products__slider {
  padding-bottom: 60px;
  position: relative;
  margin-top: 62px;
}
@media (max-width: 1300px) {
  .new-products {
    padding-top: calc(40px + 35 * ((100vw - 375px) / 925));
    padding-bottom: calc(40px + 35 * ((100vw - 375px) / 925));
  }
  .new-products__title {
    margin-bottom: calc(30px + 20 * ((100vw - 375px) / 925));
  }
  .new-products__slider {
    padding-bottom: calc(40px + 20 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 767px) {
  .new-products,
  .new-products__slider {
    margin-top: 0;
  }
}

/* Product */
.products__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background-color: #f3f3f3;
  list-style: none;
  gap: 5px 10px;
}
.products__breadcrumbs-item:not(:last-child)::after {
  content: '/';
  margin-left: 10px;
  display: inline-block;
}
.products__breadcrumbs-item:first-child{
  color: var(--color-accent);
}
.products__breadcrumbs-item:last-child{
  color: var(--color-gray);
}
.products__list {
  display: flex;
  flex-wrap: wrap;
  gap: 34px 8px;
  margin-top: 34px;
}
.products__list--cols-4 {
  .products__item {
    min-width: calc(100% / 4 - 8px);
    max-width: calc(100% / 4 - 8px);
  }
}
.products__list--cols-6 {
  .products__item {
    min-width: calc(100% / 6 - 8px);
    max-width: calc(100% / 6 - 8px);
  }
}

.products__bottom {
  text-align: center;
  margin-top: 34px;
}
@media (max-width: 1200px) {
  .products__list--cols-6 {
    .products__item {
      min-width: calc(100% / 4 - 8px);
      max-width: calc(100% / 4 - 8px);
    }
  }
}
@media (max-width: 767px) {
  .products__list {
    .products__item {
      min-width: calc(100% / 3 - 8px);
      max-width: calc(100% / 3 - 8px);
    }
  }
  .products__breadcrumbs {
    padding: 5px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .products__list {
    grid-template-columns: repeat(2, calc(100% / 2 - 4px));
  }
}


.advice {
  padding-top: 20px;
  padding-bottom: 70px;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .advice {
    padding-bottom: calc(40px + 30 * ((100vw - 375px) / 925));
  }
}
.advice__content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  position: relative;
  padding-bottom: 50px;
  min-width: 0;
  padding-left: max(15px, (100% - 1270px)/2);
}
@media (max-width: 1300px) {
  .advice__content {
    padding-bottom: calc(30px + 20 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 767.98px) {
  .advice__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.advice__content .swiper-button-next {
  right: max(15px, (100% - 1270px)/2);
}
.advice__content .swiper-pagination {
  left: max(15px, (100% - 1270px)/2);
  top: initial;
  bottom: 0 !important;
  max-width: 1270px;
  z-index: 5;
}
.advice__slide {
  max-width: 300px;
  box-sizing: border-box;
  max-width: 300px;
}
@media (max-width: 1300px) {
  .advice__slide {
    max-width: calc(230px + 70 * ((100vw - 375px) / 925));
  }
}
.advice__el {
  width: 300px;
  height: 100%;
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  gap: 30px;
  padding: 40px;
  width: 300px;
}
@media (max-width: 1300px) {
  .advice__el {
    padding: calc(20px + 20 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .advice__el {
    width: calc(200px + 100 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 767.98px) {
  .advice__el {
    order: 1;
    width: 100%;
    flex-direction: row;
    align-items: center;
  }
}
.advice__title {
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
  font-size: 23px;
}
@media (max-width: 1300px) {
  .advice__title {
    font-size: calc(16px + 7 * ((100vw - 375px) / 925));
  }
}
.advice__icon {
  display: block;
  background-image: url('../images/content/arrow-right.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 25px;
  height: 25px;
}
.advice__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.advice-card {
  position: relative;
  max-width: 300px;
  width: 100%;
  height: 345px;
  overflow: hidden;
  height: 345px;
}
@media (max-width: 1300px) {
  .advice-card {
    height: calc(245px + 100 * ((100vw - 375px) / 925));
  }
}
.advice-card:hover img {
  transform: scale(1.1);
}
.advice-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 400ms ease;
}
.advice-card__link {
  position: absolute;
  display: flex;
  width: 210px;
  height: 50px;
  justify-content: center;
  align-items: center;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background-color: var(--color-white);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: #333;
  background-color: #fff;
  border-radius: 25px;
  padding: 10px;
  bottom: 40px;
}
@media (max-width: 1300px) {
  .advice-card__link {
    bottom: calc(20px + 20 * ((100vw - 375px) / 925));
  }
}
.product {
  padding-top: 50px;
  padding-bottom: 30px;
}
@media (max-width: 1300px) {
  .product {
    padding-top: calc(30px + 20 * ((100vw - 375px) / 925));
  }
}
.product__title {
  margin-bottom: 40px;
  font-size: 35px;
}
@media (max-width: 1300px) {
  .product__title {
    margin-bottom: calc(20px + 20 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 1300px) {
  .product__title {
    font-size: calc(23px + 12 * ((100vw - 375px) / 925));
  }
}
.product__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 60px;
}
@media (max-width: 1300px) {
  .product__wrapper {
    margin-bottom: calc(40px + 20 * ((100vw - 375px) / 925));
  }
}
@media (max-width: 991px) {
  .product__wrapper {
    grid-template-columns: 1fr;
  }
}
.product__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (max-width: 767.98px) {
  .product__right {
    grid-template-columns: 1fr;
  }
}
.product__slider {
  min-width: 0;
  height: 100%;
  max-height: 515px;
  max-width: 620px;
  width: 100%;
}
@media (max-width: 991px) {
  .product__slider {
    margin: 0 auto;
  }
}
.product .slider-thumbs {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  height: 100%;
  min-width: 0;
  position: relative;
  background-color: var(--color-white);
  z-index: 1;
}
@media (max-width: 991px) {
  .product .slider-thumbs {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.product .slider-thumbs__nav {
  width: 100%;
  height: 530px;
  position: relative;
}
@media (max-width: 991px) {
  .product .slider-thumbs__nav {
    height: 80px;
    max-width: 100%;
  }
}
.product .slider-thumbs__nav-wrap {
  flex-shrink: 0;
  width: 100%;
  min-width: 0;
  position: relative;
  height: calc(100% - 100px);
}
@media (max-width: 991px) {
  .product .slider-thumbs__nav-wrap {
    max-width: 500px;
    height: 100%;
    width: calc(100% - 60px);
  }
}
@media (max-width: 576px) {
  .product .slider-thumbs__nav-wrap {
    max-width: calc(280px + 220 * (100vw - 360px) / 216);
  }
}
@media (max-width: 991px) {
  .product .slider-thumbs__nav-wrap {
    margin-left: 0 !important;
  }
}
.product .slider-thumbs__nav-wrap .swiper-slide {
  cursor: pointer;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 65px;
}
.product .slider-thumbs__nav-wrap .swiper-slide-thumb-active {
  border: 2px solid #e7ac52;
}
@media (max-width: 991px) {
  .product .slider-thumbs__nav-wrap .swiper-slide {
    height: 100%;
    width: 80px;
  }
}
.product .slider-thumbs__nav-wrap .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product .slider-thumbs__main {
  max-width: 100%;
  height: 100%;
  min-width: 0;
  position: relative;
}
@media (max-width: 991px) {
  .product .slider-thumbs__main {
    order: -1;
    height: 430px;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .product .slider-thumbs__main {
    height: calc(280px + 150 * (100vw - 360px) / 216);
  }
}
.product .slider-thumbs__main .swiper-slide {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product .slider-thumbs__main .swiper-slide .slider-thumbs__img {
  width: 99%;
  height: 99%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product .slider-thumbs__main .swiper-slide .slider-thumbs__img img {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product .slider-thumbs__nav-control {
  position: absolute;
  width: 30px;
  height: 30px;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 50px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .product .slider-thumbs__nav-control {
    left: initial;
    transform: translate(0);
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.product .slider-thumbs .swiper-button-prev,
.product .slider-thumbs .swiper-button-next {
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  width: 15px;
  height: 15px;
  right: 0;
  left: 0;
  margin-top: 0;
  top: 0;
  bottom: 0;
}
.product .slider-thumbs .swiper-button-prev::after,
.product .slider-thumbs .swiper-button-next::after {
  background-color: var(--color-dark);
  mask: url('../images/icons/chevron.svg') no-repeat center/contain;
}
.product .slider-thumbs .swiper-button-prev {
  transform: rotate(0deg);
}
.product .slider-thumbs .swiper-button-next {
  transform: rotate(0deg);
}
.product .slider-thumbs__scale {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 49px;
  height: 49px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  z-index: 5;
  transition: 200ms ease;
  pointer-events: none;
}
.product .slider-thumbs__scale::after {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mask: url('../images/content/search.png') no-repeat center/contain;
  background-color: var(--color-white);
}
.product .slider-thumbs__scale:hover {
  background-color: var(--color-white);
}
.product .slider-thumbs__scale:hover::after {
  background-color: var(--color-dark);
}

/* .product .slider-thumbs {
  width: 100%;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  height: 100%;
  min-width: 0;
  position: relative;
  background-color: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
}
@media (max-width: 991px) {
  .product .slider-thumbs {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.product .slider-thumbs__main {
  max-width: 100%;
  height: 100%;
  min-width: 0;
}
@media (max-width: 991px) {
  .product .slider-thumbs__main {
    order: -1;
    max-width: 100%;
  }
}
.product .slider-thumbs__main .swiper-slide {
  border-radius: 10px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product .slider-thumbs__main .swiper-slide .slider-thumbs__img {
  width: 99%;
  height: 99%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product .slider-thumbs__main .swiper-slide .slider-thumbs__img img {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.product .slider-thumbs__nav {
  flex-shrink: 0;
  width: 100%;
  height: 315px;
  min-width: 0;
  position: relative;
}
@media (max-width: 991px) {
  .product .slider-thumbs__nav {
    max-width: 360px;
    width: 90%;
    height: 72px;
  }
}
.product .slider-thumbs__nav .swiper-slide {
  cursor: pointer;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 65px;
  border-radius: 10px;
  border-radius: 5px;
}
.product .slider-thumbs__nav .swiper-slide-thumb-active {
  border: 2px solid var(--color-accent);
}
@media (max-width: 991px) {
  .product .slider-thumbs__nav .swiper-slide {
    height: 100%;
    width: calc(60px + 27 * (100vw - 375px) / 393);
  }
}
.product .slider-thumbs__nav .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
} */
.product .product-spec {
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 35px 20px;
}
@media (max-width: 1300px) {
  .product .product-spec {
    padding: 25px 10px;
    min-width: 230px;
  }
}
@media (max-width: 991px) {
  .product .product-spec {
    padding: 35px 20px;
  }
}
.product .product-spec__title {
  display: block;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  color: #282828;
  margin-bottom: 30px;
}
.product .product-spec__list {
  display: grid;
}
.product .product-spec__item {
  font-size: 14px;
  font-weight: 400;
  color: #8c8c8c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid #f6f6f6;
  border-top: 1px solid #f6f6f6;
  padding: 10px 0;
}
.product .product-spec__item .color-accent {
  color: var(--color-accent);
}
.product .product-spec__right {
  color: #282828;
  text-align: right;
}
.product .product-details {
  background-color: #f6f6f6;
  border-radius: 10px;
  padding: 30px 20px 15px 20px;
}
@media (max-width: 1300px) {
  .product .product-details {
    padding: 25px 10px 15px 10px;
  }
}
@media (max-width: 991px) {
  .product .product-details {
    padding: 30px 20px 15px 20px;
  }
}
.product .product-details__name {
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  color: #282828;
  margin-bottom: 10px;
  display: block;
}
.product .product-details__actions {
  margin-bottom: 20px;
}
.product .product-details__actions-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.product .product-details__price {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}
.product .product-details__price span {
  font-size: 33px;
  line-height: 1;
  font-weight: 700;
  color: #282828;
}
.product .product-details__list {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}
.product .product-details__item {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
  color: #9b9b9b;
  padding-left: 27px;
  position: relative;
}
.product .product-details__item::after {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  left: 0;
  top: 3px;
  background-color: #9b9b9b;
}
.product .product-details__item--pickup::after {
  mask: url('../images/icons/box.svg') no-repeat center/contain;
}
.product .product-details__item--delivery::after {
  width: 17px;
  height: 17px;
  mask: url('../images/icons/delivery-truck.svg') no-repeat
    center/contain;
}
.product .product-details__details {
  padding: 10px 15px;
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 1300px) {
  .product .product-details__details {
    gap: 10px;
    padding: 10px;
  }
}
@media (max-width: 991px) {
  .product .product-details__details {
    padding: 10px 15px;
  }
}
.product .product-details__stock {
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  color: #5fa800;
  position: relative;
  padding-left: 22px;
}
.product .product-details__stock::after {
  position: absolute;
  content: '';
  width: 13px;
  height: 13px;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  background-image: url('../images/content/check.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.product .product-details__cheaper {
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  color: #9b9b9b;
  position: relative;
  padding-left: 22px;
}
.product .product-details__cheaper::after {
  position: absolute;
  content: '';
  width: 13px;
  height: 13px;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  background-image: url('../images/content/wallet.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.product .product-details__notify {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #9b9b9b;
  background-color: var(--color-white);
  padding: 13px 15px;
  border-radius: 10px;
}
.product .product-details__cart {
  padding: 15px 15px 15px 40px;
  position: relative;
}
@media (max-width: 1300px) {
  .product .product-details__cart {
    width: 100px;
    font-size: 13px;
    padding: 15px 10px 15px 25px;
  }
}
@media (max-width: 991px) {
  .product .product-details__cart {
    width: 100%;
  }
}
.product .product-details__cart::after {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  mask: url('../images/icons/cart.svg') no-repeat center/contain;
  background-color: var(--color-white);
}
@media (max-width: 1300px) {
  .product .product-details__cart::after {
    left: 8px;
  }
}
@media (max-width: 991px) {
  .product .product-details__cart::after {
    left: 20px;
  }
}
@media (max-width: 360.98px) {
  .product .product-details__cart::after {
    left: 12px;
  }
}
.product .product-details__btn-click {
  grid-column: 1/-1;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--color-accent);
}
.product-info__top {
  border-bottom: 1px solid #e8e8e8;
}
@media (max-width: 767.98px) {
  .product-info__top {
    overflow-x: auto;
    min-width: 100%;
  }
}
.product-info__top-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
.product-info__top-btn {
  display: block;
  font-size: 21px;
  color: #c8c8c8;
  padding-bottom: 20px;
  position: relative;
  line-height: 1;
  font-size: 21px;
}
.product-info__top-btn:last-child {
  display: flex;
}
@media (max-width: 1300px) {
  .product-info__top-btn {
    font-size: calc(16px + 5 * ((100vw - 375px) / 925));
  }
}
.product-info__top-btn::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  bottom: -1px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  background-color: var(--color-accent);
  transition: 300ms ease;
}
.product-info__top-btn:hover {
  color: var(--color-accent);
}
.product-info__top-btn.tabs-btn--active {
  font-size: 33px;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 33px;
}
@media (max-width: 1300px) {
  .product-info__top-btn.tabs-btn--active {
    font-size: calc(22px + 11 * ((100vw - 375px) / 925));
  }
}
.product-info__top-btn.tabs-btn--active::after {
  transform: scaleX(1);
}
.product-info__content {
  padding-top: 40px;
}
.product-info__content.tabs-content {
  display: none;
}
.product-info__content.tabs-content.active {
  display: block;
  animation: opacity-visibility 700ms ease forwards;
}
.product-info__name {
  margin-bottom: 30px;
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  color: #393939;
}
@media (max-width: 1300px) {
  .product-info__name {
    font-size: calc(20px + 8 * ((100vw - 375px) / 925));
  }
}
.product-info__text {
  font-size: 16px;
  color: #777;
}
.product-info__list {
  max-width: 300px;
  width: 100%;
}
.product-info__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-weight: 400;
}
.product-info__right {
  font-size: 16px;
  font-weight: 700;
  color: #777;
}
.peculiarities {
  padding-top: 40px;
}
@media (max-width: 1300px) {
  .peculiarities {
    padding-top: calc(30px + 10 * ((100vw - 375px) / 925));
  }
}
.peculiarities__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
@media (max-width: 991px) {
  .peculiarities__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 360.98px) {
  .peculiarities__list {
    grid-template-columns: 1fr;
  }
}
.peculiarities__item {
  text-align: center;
  width: 100%;
  height: 100%;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .peculiarities__item {
    padding: 20px 10px;
  }
}
.peculiarities__icon {
  width: 84px;
  height: 84px;
  background-color: #f5f8f6;
  border-radius: 5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.peculiarities__icon img {
  width: 50px;
  height: 50px;
}
@media (max-width: 767.98px) {
  .peculiarities__icon {
    width: 60px;
    height: 60px;
  }
  .peculiarities__icon img {
    width: 30px;
    height: 30px;
  }
}
.peculiarities__text {
  margin-bottom: 35px;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 700;
  color: #383838;
}
@media (max-width: 1300px) {
  .peculiarities__text {
    font-size: calc(15px + 6 * ((100vw - 375px) / 925));
  }
}
.peculiarities__link {
  line-height: 1;
  font-weight: 700;
  text-decoration: underline;
  color: var(--color-accent);
  margin-top: auto;
  font-size: 17px;
}
@media (max-width: 1300px) {
  .peculiarities__link {
    font-size: calc(13px + 4 * ((100vw - 375px) / 925));
  }
}
