:root {
  --primary-color: #C22D2E;
  --primary-color-100: rgba(194, 45, 46, 0.1);
  --primary-color-200: rgba(194, 45, 46, 0.2);
  --primary-color-300: rgba(194, 45, 46, 0.3);
  --primary-color-400: rgba(194, 45, 46, 0.4);
  --primary-color-500: rgba(194, 45, 46, 0.5);
  --black: #1e1e1e;
  --white: #fff;
  --black10: #1e1e1e10;
  --black50: #1e1e1e50;
  --black60: #1e1e1e60;
  --gray-light: #f8f8f8;
  --gray: #e6e6e6;
  --gray-mid: #757575;
  --color-border: var(--gray);
}

@keyframes loader {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.icon-add {
  width: 1.0416666667em;
}

.icon-arrow-right {
  width: 1em;
}

.icon-arrow-swap {
  width: 1em;
}

.icon-backpack {
  width: 1em;
}

.icon-blog {
  width: 1em;
}

.icon-burger4 {
  width: 1em;
}

.icon-calendar-2 {
  width: 1em;
}

.icon-car {
  width: 0.962962963em;
}

.icon-car2 {
  width: 1em;
}

.icon-car3 {
  width: 1em;
}

.icon-catalog {
  width: 1em;
}

.icon-category-2 {
  width: 1.0416666667em;
}

.icon-close {
  width: 1em;
}

.icon-cutlery {
  width: 1em;
}

.icon-discount-shape {
  width: 1em;
}

.icon-discount-shape--fill {
  width: 1em;
}

.icon-document-text {
  width: 1em;
}

.icon-edit {
  width: 1em;
}

.icon-empty-wallet {
  width: 1em;
}

.icon-excavator {
  width: 1em;
}

.icon-food {
  width: 1em;
}

.icon-global {
  width: 1em;
}

.icon-helmet {
  width: 1em;
}

.icon-info-circle {
  width: 1em;
}

.icon-job-seeker {
  width: 1em;
}

.icon-location {
  width: 1em;
}

.icon-man {
  width: 1em;
}

.icon-map {
  width: 1em;
}

.icon-medal-star {
  width: 1em;
}

.icon-medal-star--fill {
  width: 1em;
}

.icon-modern-house {
  width: 1em;
}

.icon-more {
  width: 0.6em;
}

.icon-note {
  width: 1em;
}

.icon-post {
  width: 1em;
}

.icon-premium {
  width: 0.9411764706em;
}

.icon-restaurant {
  width: 1em;
}

.icon-search-normal {
  width: 1em;
}

.icon-setting {
  width: 1em;
}

.icon-shoes {
  width: 1em;
}

.icon-shop {
  width: 1em;
}

.icon-shop-add {
  width: 1em;
}

.icon-show {
  width: 1em;
}

.icon-star {
  width: 1em;
}

.icon-store {
  width: 1em;
}

.icon-story {
  width: 1em;
}

.icon-supermarket {
  width: 1em;
}

.icon-support {
  width: 1em;
}

.icon-support2 {
  width: 1em;
}

.icon-tick-circle {
  width: 1em;
}

.icon-trash {
  width: 1em;
}

.icon-triange {
  width: 2em;
}

.icon-user {
  width: 1em;
}

.icon-user-profile {
  width: 1em;
}

.icon-woman {
  width: 1em;
}

.icon-woman-bag {
  width: 1em;
}

.icon-zavod {
  width: 1em;
}

img {
  max-width: 100%;
  height: auto;
}
img[src=""] {
  visibility: hidden;
}

@keyframes rotation {
  100% {
    transform: rotate(360deg);
  }
}
.icon-story {
  animation: rotation infinite 1s;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  color: var(--black);
  min-width: 320px;
  scroll-behavior: smooth;
}
body.ovh {
  overflow: hidden;
}

a,
figure a {
  color: currentColor;
  text-decoration: none;
}
a:hover,
figure a:hover {
  color: var(--primary-color);
}

[type=submit] {
  cursor: pointer;
  width: 100%;
}
[type=submit]:disabled {
  background-color: var(--gray-mid);
  cursor: not-allowed;
  border-color: var(--gray-mid);
  pointer-events: none;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1390px;
  }
}
@media screen and (max-width: 575.98px) {
  .container {
    padding: 0 10px;
  }
}
.container.main-container {
  padding-bottom: 60px;
}
.container.main-container > div:last-child {
  margin-bottom: 0;
}

.downloads {
  display: none;
}
@media screen and (max-width: 1399.98px) {
  .downloads {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    height: 100vh;
  }
}
.downloads__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.downloads__item {
  display: flex;
}
.downloads__item img {
  height: 60px;
}

.page-title, .product__price, .product__title, .store__title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.98px) {
  .page-title, .product__price, .product__title, .store__title {
    font-size: 1.25rem;
  }
}
.page-title .icon, .product__price .icon, .product__title .icon, .store__title .icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  fill: var(--primary-color);
}
.page-header .page-title, .page-header .product__price, .page-header .product__title, .page-header .store__title {
  margin-bottom: 0;
}

.page-subtitle, .product__subtitle, .store__subtitle {
  font-size: 1.75rem;
}
@media screen and (max-width: 767.98px) {
  .page-subtitle, .product__subtitle, .store__subtitle {
    font-size: 1rem;
  }
}

.page-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 20px;
}
@media screen and (max-width: 767.98px) {
  .page-header {
    flex-direction: column;
  }
}

.ml-auto {
  margin-left: auto;
}

label.with-checkbox {
  display: block;
  position: relative;
  padding-left: 46px;
  cursor: pointer;
}
label.with-checkbox .checkbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  border: 1px solid #E6E6E6;
  cursor: pointer;
}
label.with-checkbox [type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}
label.with-checkbox [type=checkbox]:checked ~ .checkbox::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: var(--primary-color);
  cursor: pointer;
}
label.with-checkbox a {
  color: var(--primary-color);
}

[type=text], .add-form__keyword,
[type=search],
[type=email],
[type=passwrod],
[type=number],
[type=tel] {
  width: 100%;
  height: 60px;
  padding: 0 30px;
  border-radius: 10px;
  border: 1px solid var(--gray);
  background-color: #fff;
  outline: none;
}
[type=text]::-webkit-inner-spin-button, .add-form__keyword::-webkit-inner-spin-button, [type=text]::-webkit-outer-spin-button, .add-form__keyword::-webkit-outer-spin-button,
[type=search]::-webkit-inner-spin-button,
[type=search]::-webkit-outer-spin-button,
[type=email]::-webkit-inner-spin-button,
[type=email]::-webkit-outer-spin-button,
[type=passwrod]::-webkit-inner-spin-button,
[type=passwrod]::-webkit-outer-spin-button,
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button,
[type=tel]::-webkit-inner-spin-button,
[type=tel]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
[type=text]:invalid, .add-form__keyword:invalid,
[type=search]:invalid,
[type=email]:invalid,
[type=passwrod]:invalid,
[type=number]:invalid,
[type=tel]:invalid {
  outline-color: red;
}

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

/* Titles
 * ========================================================================= */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6 .h6 {
  margin: 0 0 1em;
  line-height: 1.2;
  font-weight: 700;
}

/**
 * * Lists
 * */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.go-top {
  align-items: center;
  background-color: var(--accent-color);
  bottom: 30px;
  color: #fff;
  cursor: pointer;
  display: none;
  font-size: 1.5rem;
  position: fixed;
  right: 15px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  opacity: 0.5;
  justify-content: center;
  height: 50px;
  width: 40px;
  z-index: 20;
}
@media screen and (min-width: 992px) {
  .go-top {
    right: 30px;
  }
}
.go-top.is-show {
  display: flex;
}
.go-top .icon {
  fill: #fff;
}

/**
 * Swiper 8.1.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 24, 2022
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  transition-delay: 0s;
  transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.header {
  margin-bottom: 40px;
}
.header__container {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767.98px) {
  .header__container {
    gap: 10px;
  }
}
.header__main {
  flex: 1;
}
.header__top {
  display: flex;
  align-items: flex-end;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 20px;
}
@media screen and (max-width: 767.98px) {
  .header__top {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}
.header__content {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 20px;
  justify-content: flex-end;
}
@media screen and (max-width: 767.98px) {
  .header__content {
    justify-content: flex-start;
    gap: 10px;
    margin-left: 0;
    width: 100%;
  }
}
.header__side {
  display: flex;
  flex-direction: column;
  flex: 0 0 218px;
  gap: 20px;
}
@media screen and (max-width: 1199.98px) {
  .header__side {
    flex: 0 0 60px;
  }
}
@media screen and (max-width: 767.98px) {
  .header__bottom {
    margin-right: -80px;
  }
}

.footer {
  background-color: #F8F8F8;
}
.footer__top {
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
  gap: 28px;
}
@media screen and (max-width: 1399.98px) {
  .footer__top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1199.98px) {
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575.98px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0;
  font-size: 1.125rem;
}
@media screen and (max-width: 575.98px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
}
@media screen and (max-width: 1399.98px) {
  .footer__content {
    grid-row: span 2;
    gap: 10px;
  }
}
@media screen and (max-width: 1199.98px) {
  .footer__content {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media screen and (max-width: 575.98px) {
  .footer__content {
    grid-column: span 1;
    align-items: center;
    text-align: center;
  }
}
.footer__contact-label {
  font-size: 1rem;
  font-weight: normal;
  color: var(--black50);
  margin-bottom: 10px;
}
.footer__contact-value {
  font-size: 1.125rem;
  font-weight: 500;
}
.footer__menu {
  flex: 0 0 240px;
}
.footer__menu-header {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.35;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}
@media screen and (max-width: 575.98px) {
  .footer__menu-header {
    text-align: center;
    cursor: pointer;
  }
}
.footer__menu-list {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 575.98px) {
  .footer__menu-list {
    display: none;
    text-align: center;
  }
  .footer__menu--active .footer__menu-list {
    display: flex;
  }
}
.footer__menu-item {
  font-size: 1.125rem;
}

.logo {
  vertical-align: middle;
  height: 60px;
}
.logo__link {
  display: inline-flex;
}
.logo img {
  vertical-align: middle;
  height: 60px;
}

.sign-in {
  position: relative;
  z-index: 20;
}
.sign-in__settings {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 10px 10px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  width: 100%;
  height: 80px;
  gap: 7px;
  transition: all 0.4s;
}
@media screen and (max-width: 1199.98px) {
  .sign-in__settings span {
    display: none;
  }
}
.sign-in__settings:hover {
  color: var(--white);
}
.sign-in__settings .icon {
  width: 26px;
  height: 26px;
}
.sign-in__drop {
  position: absolute;
  min-width: 250px;
  top: calc(100% + 10px);
  right: 0;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
}
.sign-in__drop--active {
  opacity: 1;
  pointer-events: all;
  top: 100%;
}
.sign-in__link {
  display: flex;
  align-items: center;
  height: 62px;
  padding: 0 20px;
  gap: 10px;
  font-size: 1rem;
  white-space: nowrap;
}
.sign-in__link .icon {
  width: 20px;
  height: 20px;
}
.sign-in__link:hover {
  background: rgba(224, 68, 69, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  margin: -1px;
  height: 64px;
}

.swiper .swiper-relative {
  position: relative;
}
.swiper.swiper-main {
  margin-bottom: 60px;
}
.swiper.swiper-main .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper.swiper-main .swiper-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  aspect-ratio: 68/25;
  border-radius: 20px;
}
.swiper-pagination {
  --swiper-pagination-bullet-horizontal-gap: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  position: unset;
}
.swiper-pagination-bullet {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray);
  cursor: pointer;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}
.swiper-button-prev, .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  z-index: 5;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s;
}
@media screen and (max-width: 1199.98px) {
  .swiper-button-prev, .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 575.98px) {
  .swiper-button-prev, .swiper-button-next {
    display: none;
  }
}
.swiper-button-prev::after, .swiper-button-next::after {
  display: none;
}
.swiper-main .swiper-button-prev, .swiper-main .swiper-button-next {
  top: calc(50% - 30px);
}
@media screen and (max-width: 1199.98px) {
  .swiper-main .swiper-button-prev, .swiper-main .swiper-button-next {
    top: calc(50% - 15px);
  }
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  background: var(--primary-color-500);
}
.swiper-button-prev .icon, .swiper-button-next .icon {
  fill: #fff;
  width: 20px;
  height: 20px;
}
.swiper-button-prev {
  left: 30px;
}
@media screen and (max-width: 1199.98px) {
  .swiper-button-prev {
    left: 15px;
  }
}
.swiper-button-prev .icon {
  transform: rotate(180deg);
}
.swiper-button-next {
  right: 30px;
}
@media screen and (max-width: 1199.98px) {
  .swiper-button-next {
    right: 15px;
  }
}

.subpage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 60px;
}
@media screen and (max-width: 991.98px) {
  .subpage {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.subpage__item {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #F8F8F8;
  border: 1px solid #E6E6E6;
  border-radius: 20px;
  padding: 30px;
  text-decoration: none;
  gap: 20px;
  transition: all 0.4s;
  cursor: pointer;
}
@media screen and (max-width: 991.98px) {
  .subpage__item {
    padding: 20px;
  }
}
.subpage__item:hover {
  border-color: var(--primary-color);
}
.subpage__item:hover .subpage__arrow {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.subpage__icon {
  width: 50px;
  height: 50px;
  fill: var(--primary-color);
}
.subpage__arrow {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  right: 30px;
  top: 30px;
  border-radius: 50%;
  background: #F8F8F8;
  border: 1px solid #E6E6E6;
  transition: all 0.4s;
}
.subpage__arrow .icon {
  width: 20px;
  height: 20px;
}
.subpage__name {
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--black);
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social__item {
  transition: all 0.4s;
}
.social__item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.modal .social__item img {
  width: 40px;
  height: 40px;
}
.social__item:hover {
  opacity: 0.5;
}

.mainmenu {
  display: flex;
  align-items: center;
  background: #F8F8F8;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  height: 60px;
  position: relative;
}
.mainmenu__burger {
  display: none;
  cursor: pointer;
  padding: 20px;
}
@media screen and (max-width: 1199.98px) {
  .mainmenu__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}
.mainmenu__burger span {
  width: 30px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 10px;
}
.mainmenu__content {
  display: flex;
  justify-content: space-between;
  flex: 1;
  position: relative;
}
@media screen and (max-width: 1199.98px) {
  .mainmenu__content {
    position: unset;
  }
}
.mainmenu__list {
  display: flex;
  position: relative;
}
@media screen and (max-width: 1199.98px) {
  .mainmenu__list {
    display: none;
  }
  .mainmenu__list--active {
    display: flex;
    position: absolute;
    padding: 20px 0;
    left: 0;
    top: 100%;
    width: 100%;
    background: #F8F8F8;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
  }
}
.mainmenu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  padding: 5px 30px;
  height: 60px;
  text-decoration: none;
}
@media screen and (max-width: 1199.98px) {
  .mainmenu__link {
    height: auto;
  }
}
.mainmenu__primary-item {
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  color: #FFF;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .mainmenu__primary-item span {
    display: none;
  }
}
.mainmenu__primary-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  padding: 5px 30px;
  height: 60px;
  text-decoration: none;
  background-color: var(--primary-color);
  transition: all 0.4s;
}
.mainmenu__primary-item a:hover {
  background: var(--primary-color-100);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 18px 22px;
  gap: 6px;
  height: 60px;
  background: var(--primary-color-100);
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--primary-color);
  transition: all 0.4s;
  position: relative;
  white-space: nowrap;
}
.btn input[type=file] {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  width: 0;
}
.btn span {
  flex: 0 0 auto;
}
.btn .icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.btn:hover {
  background-color: var(--white);
  color: var(--primary-color);
}
.btn .icon-more {
  width: 6px;
  height: 10px;
  flex: 0 0 6px;
}
.btn.header__my-ads {
  font-weight: 400;
  color: currentColor;
}
@media screen and (max-width: 1199.98px) {
  .btn.header__my-ads span {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  .btn.header__my-ads {
    height: 54px;
  }
}
.btn.header__my-ads .icon {
  fill: var(--primary-color);
}
.btn.header__my-ads:hover {
  background-color: var(--primary-color-300);
}
.btn.add-to-fav {
  background-color: var(--white);
  color: var(--black);
  border-color: var(--gray);
  font-weight: 400;
}
.btn.add-to-fav .icon {
  fill: var(--primary-color);
}
.btn.add-to-fav:hover, .btn.add-to-fav.is-fav {
  background-color: var(--primary-color-100);
  border-color: var(--primary-color);
}
@media screen and (max-width: 767.98px) {
  .btn.add-to-fav span {
    display: none;
  }
}
.btn--red, [type=submit] {
  background-color: var(--primary-color);
  color: var(--white);
}
.add-ad .btn {
  width: 325px;
  height: 64px;
}
@media screen and (max-width: 767.98px) {
  .add-ad .btn {
    width: 100%;
    height: 54px;
  }
}
.btn.product__edit {
  color: var(--black);
  font-weight: 400;
}
.btn.product__edit .icon {
  fill: var(--primary-color);
}

.swiper-list {
  margin-bottom: 40px;
}
.swiper-list__header, .grid-list__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 10px;
}
.swiper-list__header .btn, .grid-list__header .btn {
  height: 54px;
  flex: 0 0 auto;
}
@media screen and (max-width: 575.98px) {
  .swiper-list__header .btn, .grid-list__header .btn {
    padding: 10px;
  }
}
.swiper-list__title, .grid-list__title, .store-catalog__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: clamp(1.25rem, 5vw, 1.75rem);
  font-weight: 500;
}
.swiper-list__title-result {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  border-radius: 5px;
  background-color: var(--primary-color-100);
  color: var(--primary-color);
  vertical-align: middle;
}
.swiper-list__title-result .icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.swiper-list__title-result span {
  font-size: 0.875rem;
}

.tm-banners {
  margin-bottom: 60px;
}
.tm-banners__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  flex-wrap: wrap;
}
@media screen and (max-width: 991.98px) {
  .tm-banners__list {
    gap: 10px;
  }
}
@media screen and (max-width: 991.98px) {
  .tm-banners__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tm-banners__item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--gray) 0%, var(--gray-light) 50%, var(--gray) 100%);
  background-size: 200%;
  transition: all 0.4s;
  animation: 1s ease-in infinite loader;
  flex: 0 0 313px;
  height: 300px;
}
.tm-banners__item img {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 575.98px) {
  .tm-banners__item {
    height: 150px;
  }
}
.tm-banners__item.size-2 {
  width: 100%;
  grid-column: span 2;
}
@media screen and (max-width: 991.98px) {
  .tm-banners__item.size-2 {
    order: -1;
  }
}
.tm-banners__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}
.tm-banners .swiper-pagination {
  position: absolute;
}

.search {
  margin-left: auto;
}
@media screen and (max-width: 1199.98px) {
  .search {
    flex: 1;
    position: relative;
  }
}
.search__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.4s;
}
@media screen and (max-width: 1199.98px) {
  .search__button {
    margin-left: auto;
  }
}
.search__button:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.search__field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  position: absolute;
  background: #F8F8F8;
  top: 1px;
  right: 1px;
  bottom: 1px;
  left: 1px;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
}
.search__field.is-active {
  opacity: 1;
  pointer-events: all;
}
.search__field [type=search] {
  border: none;
  height: 58px;
  outline: none;
  background-color: transparent;
  flex: 1;
  padding: 0 15px 0 0;
}
.search__field [type=submit] {
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 10px;
  transition: all 0.4s;
}
.search__field [type=submit] .icon {
  fill: var(--black);
}

.search-page {
  width: 400px;
  max-width: 100%;
}
@media screen and (max-width: 767.98px) {
  .search-page {
    width: 100%;
  }
}
.search-page__field {
  display: flex;
  background-color: var(--gray-light);
  border-radius: 10px;
  border: 1px solid var(--gray);
  overflow: hidden;
}
.search-page [type=search] {
  flex: 1;
  font-size: 1rem;
  color: var(--black);
  border: none;
  outline: none;
  height: 60px;
  padding: 0 0 0 30px;
  background-color: var(--gray-light);
}
.search-page__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  color: var(--black);
  flex: 0 0 54px;
  padding: 0 30px 0 15px;
  margin: 0;
}
.search-page__submit .icon {
  width: 24px;
  height: 24px;
}

.afisha {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  display: none;
  z-index: 100;
}
.afisha__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 101;
}
.afisha.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.afisha .swiper-afisha {
  max-width: 80vw;
  position: relative;
  z-index: 102;
}
.afisha .swiper-afisha .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  opacity: 0;
  pointer-events: none;
}
.afisha .swiper-afisha .swiper-slide img {
  transition: all 0.4s;
  border-radius: 20px;
}
.afisha .swiper-afisha .swiper-slide-next,
.afisha .swiper-afisha .swiper-slide-prev {
  opacity: 1;
  pointer-events: all;
  transform: scale(0.65);
}
.afisha .swiper-afisha .swiper-button-prev,
.afisha .swiper-afisha .swiper-button-next {
  top: calc(50% - 25px);
}
.afisha .swiper-afisha .swiper-button-next {
  right: 0;
}
.afisha .swiper-afisha .swiper-button-prev {
  left: 0;
}
.afisha .swiper-afisha .swiper-slide-active {
  opacity: 1;
  pointer-events: all;
}

.card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.card:nth-child(4n) .card__info-text {
  left: auto;
  right: 32px;
}
.card.card-food, .card.card-serv {
  text-align: center;
}
.service-page .card {
  text-align: center;
}
.card__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--gray) 0%, var(--gray-light) 50%, var(--gray) 100%);
  background-size: 200%;
  transition: all 0.4s;
  animation: 1s ease-in infinite loader;
  aspect-ratio: 313/232;
  margin-bottom: 20px;
}
.card__image-wrapper img {
  position: relative;
  z-index: 1;
    width: 100%; height: 100%; object-fit: cover;
}
.card__info {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
}
.card__info:hover .card__info-text {
  opacity: 1;
}
.card__info .icon {
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
  cursor: pointer;
  stroke: #fff;
}
.card__info-text {
  position: absolute;
  left: 32px;
  top: 3px;
  background-color: var(--white);
  border: 1px solid var(--gray);
  width: 310px;
  padding: 20px;
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.4;
  opacity: 0;
  transition: all 0.4s;
  pointer-events: none;
}
@media screen and (max-width: 1199.98px) {
  .card__info-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 400px;
  }
}
.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  vertical-align: middle;
  aspect-ratio: 313/232;
}
.card.vip .card__image {
  border-radius: 17px;
}
.card__image-link {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 313/232;
  border-radius: 20px;
}
.card.vip .card__image-link {
  background: linear-gradient(250.69deg, #F1C006 37.03%, #B66105 125.99%);
  padding: 3px;
}
.card__place {
  text-align: center;
}
.card__store {
  margin-bottom: 10px;
}
.card__name {
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 1.125rem;
}
.card__price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.card.card-food .card__price {
  justify-content: center;
  order: 2;
  margin-bottom: 0;
}
.card__oldprice {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--gray-mid);
  text-decoration: line-through;
}
.card__description {
  margin-bottom: 10px;
}
.card.card-food .card__description {
  margin-bottom: 10px;
}
.card__values {
  display: flex;
  justify-content: space-between;
  opacity: 0.6;
}
.card > div:last-child {
  margin-bottom: 0;
}
.card__discount {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
}
.card__discount .icon {
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
}
.card__tag {
  display: flex;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 0;
  height: 35px;
  background: linear-gradient(250.69deg, #F1C006 37.03%, #B66105 125.99%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 0 10px;
  border-radius: 6px 0 0 6px;
  line-height: 1.2;
  gap: 4px;
  pointer-events: none;
  z-index: 2;
}
.add-to-fav + .card__tag {
  top: 60px;
}
.card__tag .icon {
  width: 16px;
  height: 16px;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.1882352941);
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
}
.overlay.is-active {
  pointer-events: all;
  opacity: 1;
}

.input__field {
  width: 100%;
  height: 60px;
  padding: 0 30px;
  background-color: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  font-family: "Gotham", sans-serif;
  outline: none;
}
.setting .input__field {
  background-color: var(--gray-light);
}
.input__field:placeholder {
  color: var(--gray-mid);
}
.input__label {
  display: block;
  font-size: 1rem;
  color: var(--black);
  line-height: 1.38;
  margin-bottom: 10px;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 110;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 20px;
  width: 500px;
  max-width: 95vw;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
}
.modal.modal-contact, .modal.modal-params {
  width: 1000px;
}
.modal.is-active {
  opacity: 1;
  pointer-events: all;
}
.modal a {
  color: var(--primary-color);
}
.modal__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: var(--black);
}
.modal__title .icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  fill: var(--primary-color);
}
.modal__close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.modal__close:hover .icon {
  fill: var(--primary-color);
}
.modal__close .icon {
  fill: var(--gray-mid);
  transition: all 0.4s;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal__description {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  color: var(--gray-mid);
}

.enter__description {
  text-align: center;
}

.top-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767.98px) {
  .top-menu {
    gap: 10px;
  }
}
.top-menu__item {
  font-size: 1rem;
  line-height: 1.25;
}
.top-menu__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media screen and (max-width: 767.98px) {
  .top-menu__link {
    height: 54px;
    padding: 10px;
    border: 1px solid var(--gray);
    border-radius: 10px;
    width: 40px;
  }
}
.top-menu__link .icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: var(--primary-color);
}
@media screen and (max-width: 1199.98px) {
  .top-menu__link span {
    display: none;
  }
}

.selectbox, .filter__item {
  position: relative;
  z-index: 15;
}
@media screen and (max-width: 767.98px) {
  .selectbox, .filter__item {
    width: 100%;
  }
}
.selectbox--active {
  z-index: 16;
}
.selectbox__header, .filter__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 40px 0 20px;
  height: 60px;
  border: 1px solid var(--gray);
  background-color: var(--gray-light);
  cursor: pointer;
  gap: 10px;
  border-radius: 10px;
}
.filter .selectbox__header, .filter .filter__header, .add-form .selectbox__header, .add-form .filter__header {
  color: var(--gray-mid);
}
.header .selectbox__header, .header .filter__header {
  height: 54px;
  background-color: var(--white);
}
.selectbox__header::before, .filter__header::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: var(--black) transparent transparent transparent;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.filter .selectbox__header::before, .filter .filter__header::before, .add-form .selectbox__header::before, .add-form .filter__header::before {
  border-color: var(--gray-mid) transparent transparent transparent;
}
.selectbox__icon, .filter__icon {
  fill: var(--primary-color);
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.selectbox__title, .filter__title {
  position: relative;
  font-size: 1rem;
  white-space: nowrap;
}
.selectbox__dropdown, .filter__drop {
  position: absolute;
  width: 100%;
  min-width: 160px;
  top: calc(100% + 10px);
  left: 0;
  background-color: var(--white);
  outline: 1px solid var(--gray);
  font-size: 1rem;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
}
.selectbox__dropdown--active, .filter__drop--active {
  top: 100%;
  opacity: 1;
  pointer-events: all;
}
.selectbox__scroll {
  max-height: 435px;
  overflow-y: auto;
}
.modal .selectbox__scroll, .add-form .selectbox__scroll {
  max-height: 186px;
  padding: 20px;
}
.selectbox__item {
  padding: 20px;
  line-height: 1.25;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal .selectbox__item, .add-form .selectbox__item {
  padding: 0;
  border: none;
  border-radius: 0;
}
.selectbox__item:hover, .selectbox__item.selectbox__item--active {
  background: var(--primary-color-100);
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.modal .selectbox__item:hover, .add-form .selectbox__item:hover, .modal .selectbox__item.selectbox__item--active, .add-form .selectbox__item.selectbox__item--active {
  background-color: transparent;
}
.selectbox .simplebar-content, .filter__item .simplebar-content {
  display: flex;
  flex-direction: column;
}
.modal .selectbox .simplebar-content, .modal .filter__item .simplebar-content, .add-form .selectbox .simplebar-content, .add-form .filter__item .simplebar-content {
  gap: 20px;
}
.selectbox .simplebar-content::before, .filter__item .simplebar-content::before, .selectbox .simplebar-content::after, .filter__item .simplebar-content::after {
  display: none;
}
.selectbox .simplebar-track.simplebar-vertical, .filter__item .simplebar-track.simplebar-vertical {
  width: 5px;
  background-color: var(--gray-light);
  border-radius: 10px;
  top: 20px;
  right: 15px;
  bottom: 20px;
}
.selectbox .simplebar-scrollbar:before, .filter__item .simplebar-scrollbar:before {
  background: var(--gray);
  border-radius: 10px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 5px;
}

.location {
  min-width: 215px;
}
@media screen and (max-width: 1199.98px) {
  .location {
    min-width: 0;
    width: 80px;
  }
}
@media screen and (max-width: 767.98px) {
  .location {
    margin-left: auto;
  }
}
.location .selectbox__title, .location .filter__title {
  width: 76px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1199.98px) {
  .location .selectbox__title, .location .filter__title {
    display: none;
  }
}

.language {
  min-width: 166px;
}
@media screen and (max-width: 1199.98px) {
  .language {
    min-width: 0;
    width: 80px;
  }
}
.language .selectbox__title, .language .filter__title {
  width: 36px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1199.98px) {
  .language .selectbox__title, .language .filter__title {
    display: none;
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 30px;
  font-size: 1rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.98px) {
  .breadcrumbs {
    gap: 10px;
  }
}
.breadcrumbs__item:last-child {
  opacity: 0.4;
  cursor: default;
}
.breadcrumbs__separator {
  flex: 0 0 6px;
  fill: var(--primary-color);
}

.catalog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 991.98px) {
  .catalog {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.catalog.vacancy-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 991.98px) {
  .catalog.vacancy-grid {
    grid-template-columns: 1fr;
  }
}

.pagination {
  display: grid;
  place-items: center;
  gap: 20px;
}
.pagination__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 60px;
  gap: 10px;
}
.pagination__button {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: var(--primary-color);
  color: var(--white);
  transition: all 0.4s;
}
.pagination__button:hover {
  background-color: var(--black10);
  color: currentColor;
}
.pagination__prev {
  transform: rotate(180deg);
}
.pagination__num {
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
}
.pagination__num:hover {
  color: currentColor;
}
.pagination__num--is-active::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
}
.pagination__result {
  font-size: 1rem;
  color: var(--black50);
}

.tags {
  margin-bottom: 30px;
}
.tags__header {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.tags__list {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  overflow: hidden;
  padding-bottom: 10px;
}
.tags__item {
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  white-space: nowrap;
  cursor: pointer;
  flex: 0;
}
.tags__item--active {
  background-color: var(--primary-color);
  color: var(--white);
}
.tags .simplebar-content {
  display: flex;
  gap: 20px;
}
.tags .simplebar-content::before, .tags .simplebar-content::after {
  display: none;
}

.store__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}
.store__title {
  margin: 0;
}
.store__info {
  display: flex;
  gap: 36px;
  margin-bottom: 30px;
}
.store__image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--gray) 0%, var(--gray-light) 50%, var(--gray) 100%);
  background-size: 200%;
  transition: all 0.4s;
  animation: 1s ease-in infinite loader;
  flex: 0 0 662px;
}
.store__image img {
  position: relative;
  z-index: 1;
}
.store__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.store__content {
  flex: 1;
}
.store__content-box {
  padding: 20px;
  background-color: var(--gray-light);
  border: 1px solid var(--gray);
  border-radius: 10px;
  margin-bottom: 20px;
}
.store__label {
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0.6;
}
.store__phone {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
}
.store__text {
  margin-bottom: 10px;
}
.store__label {
  margin-bottom: 10px;
}
.store__value {
  font-size: 1.125rem;
}
.store__number .store__value {
  color: var(--primary-color);
}
.store__schedule {
  margin-bottom: 20px;
}
.store__description__title {
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}
.store__location .store__value {
  margin-bottom: 30px;
}

.category {
  overflow: hidden;
  display: flex;
  gap: 20px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.category__item {
  display: flex;
  flex-direction: column;
  width: 200px;
  flex: 0 0 200px;
  text-align: center;
}
.category__item:hover, .category__item.is-active {
  color: var(--primary-color);
}
.category__item:hover .category__icon, .category__item.is-active .category__icon {
  border-color: var(--primary-color);
  background-color: var(--primary-color-100);
}
.category__item:hover .category__icon .icon, .category__item.is-active .category__icon .icon {
  fill: var(--primary-color);
}
.category__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  border: 1px solid var(--gray);
  border-radius: 10px;
  background-color: var(--gray-light);
  margin-bottom: 10px;
}
.category__icon.menuCafe-icon {
  height: 100px;
  background-color: #c22627;
  border: none;
}
.category__icon.menuCafe-icon img {
  width: 200px;
  height: 100px;
  object-fit: scale-down;
}
.category__icon .icon {
  width: 50px;
  height: 50px;
  fill: var(--gray-mid);
}

.add-to-fav:not(.btn) {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.add-to-fav .icon {
  display: none;
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
}
.add-to-fav .icon.icon-medal-star, .add-to-fav .icon.icon-star {
  display: block;
}
.add-to-fav.is-fav .icon-medal-star {
  display: none;
}
.add-to-fav.is-fav .icon-star,
.add-to-fav.is-fav .icon-medal-star--fill {
  display: block;
}

.store-catalog__title {
  margin-bottom: 30px;
}

.product__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.98px) {
  .product__header {
    gap: 10px;
  }
  .product__header .btn {
    height: auto;
    padding: 5px;
  }
  .product__header .btn span {
    display: none;
  }
  .product__header.row {
    flex-direction: row;
  }
}
.product__header .counter-products {
  color: var(--gray-mid);
}
.product__header-name {
  margin-right: auto;
}
.product__header-image {
  flex: 0 0 96px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--gray) 0%, var(--gray-light) 50%, var(--gray) 100%);
  background-size: 200%;
  transition: all 0.4s;
  animation: 1s ease-in infinite loader;
}
.product__header-image img {
  position: relative;
  z-index: 1;
}
.product__header-image img {
  width: 96px;
  height: 96px;
  border-radius: 20px;
}
.product__title {
  font-weight: 400;
  margin: 0;
}
.product__price {
  margin-bottom: 0;
}
.product__stat {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 767.98px) {
  .product__stat {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
}
.product__review, .product__date {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product__review .icon, .product__date .icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  fill: var(--primary-color);
}
.product__tag {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 17px 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
.product__tag .icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}
.product__info {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 30px;
}
.product__slider {
  max-width: 662px;
}
.product__image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--gray) 0%, var(--gray-light) 50%, var(--gray) 100%);
  background-size: 200%;
  transition: all 0.4s;
  animation: 1s ease-in infinite loader;
  flex: 0 0 662px;
  max-width: 662px;
}
.product__image img {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767.98px) {
  .product__image {
    flex: 0 0 100%;
  }
}
.product__image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product__content {
  flex: 1;
}
.product__content-box {
  padding: 20px;
  background-color: var(--gray-light);
  border: 1px solid var(--gray);
  border-radius: 10px;
  margin-bottom: 20px;
}
.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.product__label {
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0.6;
}
.product__phone {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
}
.product__text {
  margin-bottom: 10px;
}
.product__label {
  margin-bottom: 10px;
}
.product__value {
  font-size: 1.125rem;
}
.product__number .product__value {
  color: var(--primary-color);
}
.product__schedule {
  margin-bottom: 20px;
}
.product__description {
  font-size: 1.125rem;
  margin-bottom: 30px;
}
.product__description ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 1em;
}
.product__description__title {
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}
.product__location .product__value {
  margin-bottom: 30px;
}

.product-slider {
  width: 662px;
  max-width: 100%;
}
.product-slider__main {
  margin-bottom: 20px;
}
.product-slider__thumbnails .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--gray) 0%, var(--gray-light) 50%, var(--gray) 100%);
  background-size: 200%;
  transition: all 0.4s;
  animation: 1s ease-in infinite loader;
  width: 140px;
  opacity: 0.5;
}
.product-slider__thumbnails .swiper-slide img {
  position: relative;
  z-index: 1;
}
.product-slider__thumbnails .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.product-slider__thumbnails .swiper-slide img {
  max-width: 100%;
  border-radius: 10px;
}

.grid-list {
  margin-bottom: 40px;
}
.grid-list .swiper-wrapper {
  height: 326px;
}
@media screen and (max-width: 991.98px) {
  .grid-list .swiper-wrapper {
    height: auto;
  }
}

.vacancy {
  background-color: var(--gray-light);
  border: 1px solid var(--gray);
  padding: 30px;
  border-radius: 20px;
}
.swiper .vacancy {
  height: calc((100% - 20px) / 2) !important;
}
.vacancy__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
.vacancy__description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
}
.vacancy__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}
.vacancy__company {
  color: var(--primary-color);
}
.vacancy__city {
  opacity: 0.6;
}

.tabs {
  display: flex;
  background-color: var(--gray-light);
  outline: 1px solid var(--gray);
  border-radius: 10px;
}
@media screen and (max-width: 767.98px) {
  .tabs {
    flex-direction: column;
  }
}
.tabs__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  min-height: 60px;
  padding: 0 26px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--gray-mid);
  border: 1px solid transparent;
}
@media screen and (max-width: 767.98px) {
  .tabs__item {
    justify-content: flex-start;
  }
}
.my-ads .tabs__item, .my-redactor .tabs__item {
  min-width: 260px;
}
.tabs__item--active {
  background-color: var(--primary-color-100);
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.tabs__item .icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.filter {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.98px) {
  .filter {
    flex-direction: column;
  }
}
.filter__item.filter-model {
  flex: 0 0 365px;
}
.filter__item.filter-sort {
  margin-left: auto;
}
.filter__header {
  color: var(--gray-mid);
}
.filter__header::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: var(--gray-mid) transparent transparent transparent;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.filter__drop {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.filter__drop.filter__year {
  width: 180px;
}
.filter__drop.filter__price {
  width: 260px;
}
.filter__drop-row {
  position: relative;
}
.filter__drop-row input {
  width: 100%;
  height: 50px;
  background-color: #fff;
  border: 1px solid var(--gray);
  border-radius: 10px;
  padding: 0 20px;
  text-align: right;
  color: var(--black);
  outline: none;
}
.modal .filter__drop-row input {
  height: 60px;
}
.filter__drop-label {
  position: absolute;
  color: var(--gray-mid);
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.filter__params {
  display: flex;
  gap: 20px;
  width: 100%;
}
.filter__params .col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.filter__params-name {
  color: var(--gray-mid);
}
.filter__params-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.filter__params-row > * {
  flex: 1 1 200px;
  max-width: 300px;
}
.filter__btn {
  width: auto;
}

.params {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.my-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.98px) {
  .my-tabs {
    flex-direction: column;
    gap: 10px;
  }
}
.my-tabs__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 64px;
  border-radius: 10px;
  border: 1px solid var(--gray);
  background-color: var(--gray-light);
  font-size: 1rem;
  flex: 1;
  color: var(--gray-mid);
}
@media screen and (max-width: 767.98px) {
  .my-tabs__item {
    height: 54px;
    flex: 0 0 54px;
    justify-content: flex-start;
    padding: 10px;
  }
}
.my-tabs__item--active, .my-tabs__item:hover {
  background-color: var(--primary-color-100);
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.my-tabs__item .icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.add-form__grid {
  display: grid;
  gap: 40px 20px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 40px;
}
@media screen and (max-width: 991.98px) {
  .add-form__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 575.98px) {
  .add-form__grid {
    display: flex;
    flex-direction: column;
  }
}
.add-form__grid.keywords {
  gap: 20px;
}
.add-form__grid.mb-30 {
  margin-bottom: 30px;
}
.add-form__grid.mb-20 {
  margin-bottom: 20px;
}
.add-form__label {
  font-size: 1rem;
  margin-bottom: 10px;
}
.add-form__label__detail {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.add-form__label__detail img {
  position: relative;
  top: 4px;
}
.add-form__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.add-form__item--col-2 {
  grid-column: span 2;
}
.add-form__item--col-4 {
  grid-column: span 4;
}
.add-form__item__result {
  grid-column: span 4;
  color: var(--gray-mid);
}
@media screen and (max-width: 991.98px) {
  .add-form__item__result {
    grid-column: auto;
  }
}
.add-form__item .btn {
  width: 100%;
}
.add-form__item p {
  margin: 20px 0;
}
.add-form__item img {
  display: inline-block;
  vertical-align: middle;
}
.add-form__item input[type=text], .add-form__item input.add-form__keyword {
  width: 100%;
}
.add-form__item .selectbox, .add-form__item .filter__item {
  max-width: 100%;
}
.add-form__item .row {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1199.98px) {
  .add-form__item .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .add-form__item .row > * {
    width: 100%;
  }
}
.add-form__date {
  width: 110px;
}
.add-form__date input {
  padding: 0;
  text-align: center;
}
.add-form__serial {
  width: 200px;
}
@media screen and (max-width: 991.98px) {
  .add-form__serial {
    grid-column: span 3;
  }
}
.add-form__number {
  width: 325px;
}
@media screen and (max-width: 991.98px) {
  .add-form__number {
    grid-column: span 3;
  }
}
.add-form__diler {
  flex: 1;
}
@media screen and (max-width: 991.98px) {
  .add-form__diler {
    grid-column: span 3;
  }
}
.add-form__keyword {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 8px;
  position: relative;
  padding-right: 50px;
  background-color: var(--gray-light);
}
.add-form__keyword__delete {
  position: absolute;
  right: 30px;
  top: 22px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.add-form__keyword__request {
  color: var(--gray-mid);
}
.add-form__main-photo {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--gray) 0%, var(--gray-light) 50%, var(--gray) 100%);
  background-size: 200%;
  transition: all 0.4s;
  animation: 1s ease-in infinite loader;
}
.add-form__main-photo img {
  position: relative;
  z-index: 1;
}
.add-form__main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.add-form__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}
.add-form__thumbs-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--gray) 0%, var(--gray-light) 50%, var(--gray) 100%);
  background-size: 200%;
  transition: all 0.4s;
  animation: 1s ease-in infinite loader;
  display: flex;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.add-form__thumbs-item img {
  position: relative;
  z-index: 1;
}
.add-form__thumbs-item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1882352941);
  z-index: 2;
}
.add-form__thumbs-item .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: #fff;
  z-index: 2;
}
.add-form__thumbs-item img {
  border-radius: 10px;
}
.add-form__textarea {
  background-color: #fff;
  border: 1px solid var(--gray);
  border-radius: 10px;
  padding: 20px 30px;
  font-size: 1rem;
  line-height: 1.38;
  font-family: "Gotham", sans-serif;
  font-weight: 400;
  height: 158px;
  outline: none;
  width: 100%;
  resize: vertical;
}
.add-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 991.98px) {
  .add-form__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
.add-form__footer [type=submit] {
  width: auto;
  padding: 0 60px;
}
@media screen and (max-width: 767.98px) {
  .add-form__footer [type=submit] {
    width: 100%;
  }
}
.add-form__tab {
  border: 1px solid var(--gray);
  background-color: var(--gray-light);
  border-radius: 10px;
}
.add-form__tab.is-active {
  background-color: var(--primary-color-100);
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.add-form__announce {
  padding-left: 30px;
  background: url("../images/info-circle.svg") no-repeat left top;
  margin-bottom: 40px;
}
.add-form__announce p {
  margin-bottom: 20px;
}
.add-form__announce ul {
  list-style: disc;
  margin-left: 20px;
}

.radiobox {
  position: relative;
}
.radiobox input {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.radiobox input:checked + .radiobox__text, .radiobox input:checked + .add-form__tab {
  background-color: var(--primary-color-100);
  outline: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.radiobox__text, .add-form__tab {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 62px;
  color: var(--gray-mid);
  cursor: pointer;
  border-radius: 10px;
}

.radiobox-row {
  display: flex;
  background-color: var(--gray-light);
  border-radius: 10px;
  outline: 1px solid var(--gray);
}
.radiobox-row > * {
  flex: 1;
}

.add-keyword .input {
  margin-bottom: 30px;
}
.add-keyword__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-height: 386px;
  overflow: auto;
}
.add-keyword__list .simplebar-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.add-keyword__list .simplebar-content::before, .add-keyword__list .simplebar-content::after {
  display: none;
}
.add-keyword__list .simplebar-scrollbar:before {
  background-color: var(--primary-color);
  opacity: 1;
}
.add-keyword__list .simplebar-track {
  background-color: var(--gray-light);
  border-radius: 10px;
}
.add-keyword__item {
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.38;
}
.add-keyword__item.is-active {
  color: var(--primary-color);
  pointer-events: none;
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contacts__wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contacts__label {
  opacity: 0.5;
}
.contacts__value {
  font-size: 1.125rem;
  font-weight: 500;
}
.modal .contacts__value a {
  color: currentColor;
}

.add-ad {
  margin-bottom: 40px;
}
/*# sourceMappingURL=main.css.map */
