@font-face {
  font-family: "Optima Cyr";
  src: url("../fonts/ofontru_Optima-Cyr.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Optima Cyr";
  src: url("../fonts/Optima_Cyr_Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Optima Cyr";
  src: url("../fonts/ofontru_Optima-Cyr.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
body {
  --scale: 1;
  --text: rgb(39, 42, 45);
  --white: #ffffff;
  --gray: #efefef;
  --gray3: #e5e5e5;
  --gray4: #6b6d6e;
  --gray5: #bdbdbd;
  --gray6: #eaeae8;
  --gray7: #e1e1e1;
  --gray8: #ececec;
  --gray9: #777;
  --gray2: rgb(117, 122, 129);
  --green: rgb(91, 185, 114);
  --red: #f95d51;
  --size-10-16: 10px;
  --size-12-20: 12px;
  --size-10: calc(10px * var(--scale));
  --size-12: calc(12px * var(--scale));
  --size-14: calc(14px * var(--scale));
  --size-20: calc(20px * var(--scale));
  --size-24: calc(24px * var(--scale));
  --size-28: calc(28px * var(--scale));
  --size-30: calc(30px * var(--scale));
  --size-40: calc(40px * var(--scale));
  --size-44-70: calc(44px * var(--scale));
  --size-22-36: 22px;
  --size-26-44: 26px;
  --size-28-20: 28px;
  --size-30-60: 30px;
  --size-60-120: 60px;
  --size-14-16: 14px;
  --size-14-20: 14px;
  --size-14-24: 14px;
  --size-20-40: 20px;
  --size-20-60: 20px;
  --size-90-150: 90px;
  --padding: var(--size-12-20);
}

@media (max-width: 767px) {
  body {
    --scale: 1;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --scale: 1.2;
  }
}
@media (min-width: 768px) {
  body {
    --size-28-20: 20px;
    --size-22-36: 28px;
    --size-30-60: 34px;
    --size-44-70: calc(50px * var(--scale));
    --size-10-16: 12px;
    --size-12-20: 16px;
    --size-14-20: 16px;
    --size-14-24: 18px;
    --size-20-40: 30px;
    --size-26-44: 44px;
    --size-20-60: 40px;
    --size-60-120: 90px;
    --size-90-150: 110px;
  }
}
@media (min-width: 1024px) {
  body {
    --size-26-44: calc(44px * var(--scale));
    --size-28-20: calc(20px * var(--scale));
    --size-44-70: calc(60px * var(--scale));
    --size-14-16: calc(16px * var(--scale));
    --size-22-36: calc(36px * var(--scale));
    --size-26-44: calc(44px * var(--scale));
    --size-30-60: 50px;
    --size-20-40: calc(40px * var(--scale));
    --size-10-16: 14px;
    --size-12-20: 20px;
    --size-14-20: 20px;
    --size-14-24: calc(24px * var(--scale));
    --size-20-60: 60px;
    --size-60-120: calc(120px * var(--scale));
    --size-90-150: 150px;
  }
}
@media (min-width: 1200px) {
  body {
    --size-44-70: calc(70px * var(--scale));
    --size-30-60: calc(50px * var(--scale));
  }
}
@media (min-width: 1500px) {
  body {
    --size-46-120: calc(120px * 1.6);
  }
}
html {
  min-height: 100vh;
  box-sizing: border-box;
  font-family: sans-serif;
  scroll-behavior: smooth;
  font-size: 16px;
}

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

body {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background-color: var(--gray);
  font-size: var(--size-14);
  line-height: 1.4;
  font-weight: 500;
  font-family: "Optima Cyr", "Roboto", sans-serif;
  font-variant-ligatures: none;
}

main {
  flex-grow: 1;
}

.main {
  position: relative;
  display: flex;
  flex-direction: column;
}

img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

main {
  position: relative;
}

input,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.visually-hidden:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.container {
  min-width: 0;
  width: 100%;
  padding-inline: calc(var(--padding) * var(--scale));
  margin: 0 auto;
}

.container iframe {
  position: relative;
  z-index: 1;
}
.container iframe .searcher-tabs__item {
  background-color: var(--white);
}

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

input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

.text p {
  font-size: var(--size-14);
  margin-block: var(--size-20);
}
.text p:first-child {
  margin-top: 0;
}
.text p:last-child {
  margin-bottom: 0;
}
.text h2 {
  margin-top: var(--size-20-40);
  margin-bottom: var(--size-20);
  font-weight: 500;
  font-size: var(--size-24);
}
.text h2:first-child {
  margin-top: 0;
}
.text h2:last-child {
  margin-bottom: 0;
}
.text h3 {
  margin-top: var(--size-20-30);
  margin-bottom: var(--size-20);
  font-weight: 500;
  font-size: var(--size-20);
}
.text h3:first-child {
  margin-top: 0;
}
.text h3:last-child {
  margin-bottom: 0;
}
.text ol {
  margin-block: var(--size-20);
  padding: 0;
  list-style: none;
  counter-reset: slideCounter;
}
.text ol:first-child {
  margin-top: 0;
}
.text ol:last-child {
  margin-bottom: 0;
}
.text ol li {
  position: relative;
  margin-block: calc(8px * var(--scale));
  padding-left: calc(20px * var(--scale));
}
.text ol li:first-child {
  margin-top: 0;
}
.text ol li:last-child {
  margin-bottom: 0;
}
.text ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  content: counter(slideCounter) ".";
  counter-increment: slideCounter;
  border-radius: 50%;
  color: var(--green);
}
.text ul {
  margin-block: var(--size-20);
  padding: 0;
  list-style: none;
}
.text ul:first-child {
  margin-top: 0;
}
.text ul:last-child {
  margin-bottom: 0;
}
.text ul li {
  position: relative;
  margin-block: calc(8px * var(--scale));
  padding-left: calc(20px * var(--scale));
}
.text ul li:first-child {
  margin-top: 0;
}
.text ul li:last-child {
  margin-bottom: 0;
}
.text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(6px * var(--scale));
  width: calc(6px * var(--scale));
  height: calc(6px * var(--scale));
  border-radius: 50%;
  background-color: var(--green);
  opacity: 0.5;
}
.text blockquote {
  position: relative;
  margin-inline: 0;
  margin-block: var(--size-20);
  padding: 0;
  padding-left: 80px;
  color: var(--green);
  font-weight: 400;
  font-size: var(--size-24);
}
.text blockquote:first-child {
  margin-top: 0;
}
.text blockquote:last-child {
  margin-bottom: 0;
}
.text blockquote::after, .text blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  width: 40px;
  height: 40px;
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}
.text blockquote::after {
  left: 20px;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='71' height='46' fill='none' viewBox='0 0 71 46'%3E%3Cpath fill='%23272a2d' d='M29.65 25.984H14.474l7.628-17.97L19.22 1.16 0 44.992h5.937l6.34-13.937h19.5l-2.132-5.078zm40.986 6.212c0 3.36-.538 5.962-2.607 8.604-2.632 3.353-8.55 4.962-13.23 4.962-4.682 0-8.236-1.173-10.682-2.712-2.543-1.603-4.464-4.032-5.668-6.796L22.72 1.071l-.134-.302h5.994s9.792 23.817 13.968 31.299c1.965 3.526 5.206 10.18 17.086 7.764 4.233-.86 5.257-4.853 5.257-6.77 0-2.2-.262-6.463-5.66-7.758-2.735-.654-8.544-1.352-12.36-2.359-2.6-.692-4.945-2.237-6.386-4.513-.947-1.488-1.671-3.443-1.658-5.956C38.84 9.392 40.473 0 54.273 0S69.81 8.963 70.117 12.418v.545H64.27s.884-8.283-10.528-7.885c-8.422.288-9.427 5.423-9.427 7.462s.647 3.584 2.037 4.61c2.043 1.5 7.025 2.083 11.053 2.68 5.078.756 6.743 1.602 8.831 3.18 3.81 2.871 4.413 6.833 4.413 9.193z'/%3E%3C/svg%3E");
}
.text blockquote::before {
  left: 0;
  background-color: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' width='800' height='800' viewBox='0 0 512 512'%3E%3Cpath d='M119.472 66.59C53.489 66.59 0 120.094 0 186.1c0 65.983 53.489 119.487 119.472 119.487 0 0-.578 44.392-36.642 108.284-4.006 12.802 3.135 26.435 15.945 30.418 9.089 2.859 18.653.08 24.829-6.389 82.925-90.7 115.385-197.448 115.385-251.8 0-66.006-53.488-119.51-119.517-119.51m273.01 0c-65.983 0-119.472 53.505-119.472 119.51 0 65.983 53.489 119.487 119.472 119.487 0 0-.578 44.392-36.642 108.284-4.006 12.802 3.136 26.435 15.945 30.418 9.089 2.859 18.653.08 24.828-6.389C479.539 347.2 512 240.452 512 186.1c0-66.006-53.489-119.51-119.518-119.51' fill='%23fff'/%3E%3C/svg%3E");
}
.text table {
  width: 100%;
  min-width: 400px;
  border-collapse: collapse;
}
.text table th, .text table td {
  padding: calc(6px * var(--scale)) calc(20px * var(--scale));
  border: 1px solid var(--text);
  text-align: left;
}
.text table th {
  background-color: var(--green);
  color: var(--white);
}

.text-gallery__img {
  display: flex;
}
.text-gallery__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(8px * var(--scale));
}

.text-video {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-video__video {
  max-width: 80%;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

@media (min-width: 500px) {
  .text-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .text-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: var(--size-44-70);
  }
  .text-gallery__img:nth-child(3n+2) {
    transform: translateY(var(--size-44-70));
  }
}
.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  backface-visibility: hidden;
  outline: none;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
.glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
.gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-top .gslide-image img,
.desc-bottom .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
.desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: grabbing !important;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  /* max-width: 160vmin; */
  margin: auto;
}

.gslide-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: grabbing !important;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  box-shadow: none !important;
}

.desc-top .gslide-media,
.desc-bottom .gslide-media {
  margin: 0 auto;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  flex: 1 0 100%;
}

.gslide-description.description-left,
.gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
.gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}

/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/
.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: rgba(255, 255, 255, 0.7);
}

.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
.glightbox-closing .gprev,
.glightbox-closing .gclose {
  opacity: 0 !important;
}

/*Skin */
.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

/*CSS Animations*/
.gfadeIn {
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  animation: gzoomOut 0.5s ease;
}
@keyframes lightboxLoader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
  .glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left,
  .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(255, 255, 255, 0.7);
  }
  .glightbox-clean .gslide-media {
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner,
  .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gprev,
  .glightbox-clean .gnext,
  .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gprev:hover,
  .glightbox-clean .gnext:hover,
  .glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: rgba(255, 255, 255, 0.7);
  }
}
.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: 0;
  color: inherit;
  font-family: inherit;
  font-size: var(--size-14);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, outline 0.3s;
}

.btn--more {
  position: relative;
  white-space: nowrap;
  color: var(--text);
  padding-bottom: 3px;
  font-size: var(--size-12);
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
}
.btn--more:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateX(calc(-100% - 200px));
  background-color: var(--text);
  transition: transform 0.5s;
}
.btn--more:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 100%;
  width: 100%;
  height: 1px;
  transform: translateX(-100%);
  background-color: var(--text);
  transition: transform 0.3s;
}

.btn--lg {
  padding: calc(12px * var(--scale)) calc(20px * var(--scale));
  font-size: var(--size-12);
  letter-spacing: -0.2px;
}

.btn--black {
  color: var(--white);
  background-color: var(--text, transparent);
  border: 1px solid var(--text, transparent);
  justify-content: center;
}

.btn__close {
  display: none;
}

.btn--like {
  position: relative;
  width: calc(30px * var(--scale));
  height: calc(28px * var(--scale));
}
.btn--like svg {
  width: 100%;
  height: auto;
}
.btn--like.is-active {
  color: var(--red);
}
.btn--like.is-active:before {
  animation: 0.5s ease-in-out scale;
}
.btn--like:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  transform-origin: center;
  transform: translate(-50%, -50%) scale(0);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='20' fill='none' viewBox='0 0 22 20'%3E%3Cpath fill='%23f95d51' d='M11.72 3.572c-.122.132-.244.265-.394.424l-.414.44-.43-.426-.38-.381c-1.33-1.333-2.33-2.337-4.39-2.364q-.122-.002-.257.004c-1.153.042-2.216.474-2.993 1.213-.767.73-1.255 1.765-1.271 3.025q-.002.116.003.25c.124 3.517 3.425 6.586 6.163 9.128.528.491 1.034.962 1.52 1.439l2.016 1.98 2.533-2.562c.408-.413.87-.864 1.364-1.346.84-.821 1.774-1.732 2.645-2.65a29 29 0 0 0 1.72-1.959c.494-.624.899-1.217 1.159-1.747.426-.868.56-1.737.469-2.55-.09-.8-.4-1.55-.863-2.188a5.15 5.15 0 0 0-1.816-1.552 4.8 4.8 0 0 0-2.743-.505c-1.67.197-2.56 1.159-3.641 2.327m-.84-.861C12.115 1.376 13.141.283 15.225.04a5.95 5.95 0 0 1 3.407.629 6.35 6.35 0 0 1 2.24 1.91 5.84 5.84 0 0 1 1.092 2.774c.117 1.033-.052 2.133-.59 3.229-.305.618-.756 1.283-1.295 1.964a31 31 0 0 1-1.79 2.038 97 97 0 0 1-2.677 2.685c-.496.484-.96.937-1.35 1.331l-2.947 2.98-.413.419-.42-.41-2.434-2.392a86 86 0 0 0-1.497-1.415C3.649 13.084.145 9.83.004 5.8Q-.001 5.651 0 5.492C.021 3.875.655 2.54 1.649 1.593 2.634.657 3.97.11 5.41.057q.15-.007.312-.004C8.236.088 9.385 1.21 10.88 2.71'/%3E%3C/svg%3E");
}

@keyframes scale {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    transform: translate(-50%, -50%) scale(2);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
.btn--delete {
  width: calc(15px * var(--scale));
  height: calc(15px * var(--scale));
  justify-content: center;
  transition: transform 0.3s;
}
.btn--delete svg {
  width: 100%;
  height: auto;
}

.btn.opened .btn__close {
  display: flex;
}
.btn.opened .btn__open {
  display: none;
}

.arr {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: var(--size-40);
  height: var(--size-40);
  border-radius: 50%;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  transition: color 0.3s;
}
.arr svg {
  height: var(--size-14);
  width: var(--size-14);
}

@media (hover: hover) {
  .arr:hover {
    color: var(--green);
  }
}
.arr--left {
  left: var(--padding);
  transform: translateY(-50%) rotate(90deg);
}

.arr--right {
  right: var(--padding);
  transform: translateY(-50%) rotate(-90deg);
}

@media (hover: hover) {
  .btn--more:hover::before {
    transform: translateX(0);
  }
  .btn--more:hover::after {
    transform: translateX(200px);
  }
  .btn--black:hover {
    opacity: 0.6;
  }
  .btn--delete:hover {
    transform: rotate(180deg);
  }
}
.pin {
  width: 50px;
  height: 50px;
}

.baloon-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -100%);
}

.baloon {
  top: 0;
  left: 50%;
  transform: translate(-100%, -50%);
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 254px;
  gap: 4px;
  background-color: var(--white);
}

.hide .balloon__description {
  opacity: 0;
}

.h1-large {
  margin: 0;
  font-size: var(--size-44-70);
  text-transform: uppercase;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -3px;
}

.block-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: var(--size-14);
}

.h2 {
  margin: 0;
  white-space: normal;
  font-size: var(--size-26-44);
  line-height: 1.16;
  font-weight: 400;
  text-transform: uppercase;
}
.h2 span {
  color: var(--green);
}

@media (min-width: 1024px) {
  .block-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .block-top__more {
    margin-bottom: 14px;
  }
}
.sm-item {
  left: 50%;
  display: flex;
  flex-direction: column;
  padding: calc(16px * var(--scale));
  width: calc(245px * var(--scale));
  background-color: var(--gray);
  box-shadow: 0px 4px 25px 0px rgba(40, 42, 45, 0.3);
}

.sm-item__price {
  font-size: var(--size-14);
}

.sm-item__close {
  position: absolute;
  top: calc(16px * var(--scale));
  right: calc(16px * var(--scale));
  width: calc(12px * var(--scale));
  height: calc(12px * var(--scale));
  transition: transform 0.3s;
}
.sm-item__close svg {
  width: 100%;
  height: auto;
}

.sm-item__btn {
  font-size: var(--size-10);
}

@media (hover: hover) {
  .sm-item__close:hover {
    transform: rotate(180deg);
  }
}
.sm-item__img {
  aspect-ratio: 47/63;
  width: calc(47px * var(--scale));
  margin-bottom: 16px;
  background-color: var(--gray3);
}

.sm-item__btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sm-item__name {
  margin-bottom: 20px;
  font-size: var(--size-12);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.2px;
}
.sm-item__name span {
  color: var(--gray2);
}

@media (min-width: 1600px) {
  .sm-item {
    padding: calc(16px * var(--scale));
  }
}
.point {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(14px * var(--scale));
  height: calc(14px * var(--scale));
  backdrop-filter: none;
  border-radius: 50%;
  background-color: var(--gray);
  transition: background-color var(--t396-speedhover, 0s) ease-in-out, color var(--t396-speedhover, 0s) ease-in-out, border-color var(--t396-speedhover, 0s) ease-in-out, box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}

.point-wrapper {
  position: absolute;
}
.point-wrapper .sm-item {
  z-index: -2;
  opacity: 0;
  position: absolute;
  transform: translateX(-300svw);
}

.point__inside {
  position: relative;
  width: 100%;
  height: 100%;
}
.point__inside::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  backdrop-filter: none;
  border-radius: 50%;
  background-color: var(--gray);
  transform: translate(-50%, -50%);
  animation: scale 1.5s infinite linear;
}

@keyframes scale {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.8, 2.8);
  }
}
.single-item__img {
  position: relative;
  display: grid;
  background-color: #EAEAE8;
  aspect-ratio: 378/503;
}

.single-item__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.single-item__img2,
.single-item__img1 {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.single-item__img2 {
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s, z-index 0.3s;
}

.single-item__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(20px * var(--scale)) calc(10px * var(--scale)) calc(10px * var(--scale)) calc(10px * var(--scale));
}

.single-item__name {
  margin-top: 0;
  margin-bottom: 8px;
  text-align: center;
  font-size: var(--size-14-16);
  word-break: break-word;
  line-height: 1.4;
  font-weight: 500;
}

.single-item__price-old {
  color: var(--gray5);
  text-decoration: line-through;
}

.single-item__collection {
  margin-top: 0;
  margin-bottom: var(--size-12);
  color: var(--gray4);
  font-weight: 500;
  font-size: var(--size-12);
  text-transform: uppercase;
}

.single-item__price {
  font-weight: 700;
  letter-spacing: -0.3px;
  font-size: var(--size-14-16);
}

.single-item__tags {
  position: absolute;
  top: calc(20px * var(--scale));
  right: calc(20px * var(--scale));
  z-index: 1;
  display: flex;
  gap: calc(8px * var(--scale));
  justify-content: flex-end;
}

.tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: var(--white);
  color: var(--green);
  text-transform: uppercase;
  aspect-ratio: 1;
  border-radius: 50%;
}

.single-item__ex {
  padding-top: calc(4px * var(--scale));
  color: var(--red);
  text-align: center;
}

@media (hover: hover) {
  .single-item__img:hover .single-item__img2 {
    z-index: 1;
    opacity: 1;
  }
}
.more-block {
  display: flex;
  justify-content: center;
}

.label {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(8px * var(--scale));
}

.select-wrapper {
  position: relative;
}
.select-wrapper:before {
  content: "";
  position: absolute;
  right: calc(4px * var(--scale));
  z-index: 2;
  top: 50%;
  width: calc(12px * var(--scale));
  height: calc(12px * var(--scale));
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='10' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='currentColor'%3E%3C/path%3E%3C/svg%3E");
}
.select-wrapper:focus-within:before {
  transform: scale(1, -1) translateY(50%);
}

.input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
}

.label__place {
  font-size: 0.7em;
  opacity: 0.65;
}

.label__input {
  padding: calc(10px * var(--scale)) calc(16px * var(--scale));
  width: 100%;
  font-size: var(--size-14-16);
  color: var(--text);
  border: 1px solid #d3d3d3;
  background-color: #efefef;
}
.label__input:focus, .label__input.focus-widthin {
  border-color: var(--gray4);
  outline: 0;
}

.label__span {
  order: -1;
}

.radio-label__input {
  width: calc(20px * var(--scale));
  height: calc(20px * var(--scale));
  border-radius: 50%;
  background-size: calc(12px * var(--scale));
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--gray4);
}
.radio-label__input:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236b6d6e' viewBox='0 0 120 120'%3E%3Ccircle cx='60' cy='60' r='50'/%3E%3C/svg%3E");
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox {
  flex-shrink: 0;
  width: var(--size-24);
  height: var(--size-24);
  border: 1px solid #d3d3d3;
  background-color: #efefef;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
}
.checkbox:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 24 24'%3E%3Ctitle/%3E%3Cpath fill='none' stroke='%236b6d6e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3.7 14.3 9.6 19 20.3 5'/%3E%3C/svg%3E");
}

.agree {
  display: flex;
  align-items: flex-start;
  gap: var(--size-10);
  font-size: var(--size-10);
}
.agree a {
  color: var(--green);
}

.radios {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-select {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}

.custom-select__select {
  width: 100%;
  border: 0;
  outline: 0;
  padding: calc(8px * var(--scale)) calc(10px * var(--scale));
  min-width: calc(80px * var(--scale));
  background-color: transparent;
  border-radius: 8px;
  border: 1px solid var(--gray4);
  background-color: #fff;
  border: 1px solid var(--gray4);
}

.custom-select__options {
  position: absolute;
  top: calc(100% + 10px * var(--scale));
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: calc(8px * var(--scale));
  overflow: hidden;
  box-shadow: 0 0 4px rgba(117, 122, 129, 0.4);
}

.custom-select.opened .custom-select__options {
  max-height: calc(150px * var(--scale));
  overflow-y: auto;
}

.custom-select__opt {
  position: relative;
  display: flex;
  text-transform: uppercase;
}
.custom-select__opt:first-child span {
  padding-top: 12px;
}
.custom-select__opt:last-child span {
  padding-bottom: 12px;
}
.custom-select__opt span {
  display: flex;
  flex-grow: 1;
  padding: 8px 20px;
  background-color: #fff;
}
.custom-select__opt [type=radio] {
  position: absolute;
  opacity: 0;
}
.custom-select__opt [type=radio]:checked + span {
  background-color: rgba(117, 122, 129, 0.4);
}
.custom-select__opt [type=radio]:focus + span {
  background-color: rgba(117, 122, 129, 0.2);
}

.visually-hide {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.items-slider {
  position: relative;
}

.items-slider__wrapper {
  display: flex;
  gap: 8px;
}

.swiper-initialized .items-slider__wrapper {
  gap: 0;
}

.items-slider__slide {
  width: 100%;
  flex-shrink: 0;
}

.items-slider__slider {
  overflow: hidden;
}

@media (min-width: 500px) {
  .items-slider__slide {
    width: calc(50% - 4px);
  }
}
@media (min-width: 768px) {
  .items-slider__slide {
    width: calc(33.3333333333% - 5.3333333333px);
  }
}
@media (min-width: 1024px) {
  .items-slider__slide {
    width: calc(25% - 6px);
  }
}
.qty {
  display: flex;
  gap: calc(8px * var(--scale));
}

.qty__label {
  max-width: calc(60px * var(--scale));
  overflow: hidden;
  height: calc(38px * var(--scale));
}

.qty__add {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: calc(38px * var(--scale));
  height: calc(38px * var(--scale));
  border-radius: 50%;
  color: var(--white);
  font-size: var(--size-14);
  line-height: 1;
  background-color: var(--text);
}
.qty__add:hover {
  opacity: 0.65;
}

.qty__input {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-align: center;
  font-size: var(--size-14);
  font-weight: 700;
  cursor: auto;
}

.search-block__form {
  position: relative;
}

.search-block__btn {
  position: absolute;
  right: calc(10px * var(--scale));
  top: 50%;
  transform: translateY(-50%);
}
.search-block__btn svg {
  width: calc(15px * var(--scale));
  height: auto;
}

.search-block__label input {
  border-radius: 4px;
}

.header__search-block {
  max-width: 800px;
  margin-inline: auto;
}

.bread {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 6px;
  z-index: 1;
}

.bread__list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
}

.bread__link {
  display: flex;
  gap: calc(10px * var(--scale));
  align-items: center;
  color: var(--dirty-grey, #8B8F8F);
  font-size: var(--size-14);
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s;
}
.bread__link:hover {
  color: var(--text);
}
.bread__link svg {
  width: calc(10px * var(--scale));
  height: calc(10px * var(--scale));
}

.bread__it {
  position: relative;
  display: flex;
  align-items: center;
  gap: calc(10px * var(--scale));
}
.bread__it::after {
  content: "/";
  background-repeat: no-repeat;
  background-position: center;
  color: var(--dirty-grey, #8B8F8F);
}
.bread__it:last-child::after {
  display: none;
}
.bread__it:last-child {
  color: var(--dark-grey-blue, #65758D);
}

@media (min-width: 1024px) {
  .bread {
    top: calc(80px * var(--scale));
  }
}
.item-present__props {
  display: flex;
  flex-direction: column;
  gap: calc(10px * var(--scale));
}

.item-right--present .item-right__h1 {
  font-size: var(--size-24);
}
.item-right--present .item-right__label,
.item-right--present .item-right__art,
.item-right--present .item-right__props {
  margin-bottom: var(--size-10);
}
.item-right--present .item-right__props {
  gap: calc(10px * var(--scale));
}
.item-right--present .item-right__prop {
  gap: calc(4px * var(--scale));
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: calc(100% - var(--padding) * 2);
  max-width: 800px;
  transform: translate(calc(-200svw - 50%), -50%);
  max-height: calc(100svh - 20px);
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.popup.opened {
  transform: translate(-50%, -50%);
}

.popup__inside {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(20px * var(--scale));
  padding: calc(30px * var(--scale)) calc(10px * var(--scale));
  background-color: var(--gray);
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  max-height: calc(100svh - 20px);
}

.popup__close {
  position: absolute;
  width: calc(16px * var(--scale));
  height: calc(16px * var(--scale));
  top: calc(16px * var(--scale));
  right: calc(16px * var(--scale));
}
.popup__close svg {
  width: 100%;
  height: 100%;
}

.popup__top {
  display: flex;
  flex-direction: column;
  gap: calc(15px * var(--scale));
}

.popup__name {
  margin: 0;
  font-size: var(--size-24);
  font-weight: 500;
  letter-spacing: 1;
}

.popup__text {
  font-size: 14px;
  line-height: 1.78;
  letter-spacing: 0.56px;
  max-width: 400px;
}

@media (max-width: 767px) {
  .popup__img {
    display: none;
  }
  .popup__img--present {
    display: flex;
    height: 200px;
    justify-content: center;
    background-color: var(--white);
  }
}
@media (min-width: 768px) {
  .popup__inside {
    padding: 40px;
  }
  .popup__img {
    height: 100%;
    overflow: hidden;
  }
  .popup__img img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    height: 100%;
    width: 100%;
  }
  .popup {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  }
}
.overlay {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(28, 31, 44, 0.63);
  transition: height 0.6s;
  top: 0;
  height: 100%;
  z-index: 3;
}

.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8;
  padding-top: calc(12px * var(--scale));
  padding-bottom: calc(16px * var(--scale));
  color: var(--text);
  transition: transform 0.6s;
  width: 100%;
  background: var(--gray5);
}
.cookie .container {
  position: relative;
}

.cookie__content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.cookie__text {
  margin: 0;
  max-width: calc(1322px * var(--scale));
  font-size: var(--size-14);
}

.cookie__text a {
  position: relative;
  display: inline-flex;
  color: var(--text);
}

.cookie__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 15px;
  height: 15px;
  display: none;
}
.cookie__close svg {
  width: 100%;
  height: 100%;
}

.cookie.move-left {
  transform: translate3d(-200%, 0, 0);
}

@media (min-width: 1024px) {
  .cookie__content {
    flex-direction: row;
    justify-content: space-between;
  }
  .cookie__text {
    text-align: left;
  }
}
.top-slider__wrapper {
  display: flex;
  gap: 8px;
}

.swiper-initialized .top-slider__wrapper {
  gap: 0;
}

.top-slide__name {
  margin-bottom: 30px;
  vertical-align: middle;
  color: var(--gray);
  white-space: normal;
  font-size: var(--size-30);
  line-height: 1;
  letter-spacing: -0.6px;
  background-size: cover;
  text-transform: uppercase;
}

.top-slide__text {
  margin-bottom: 20px;
  vertical-align: middle;
  white-space: normal;
  font-size: var(--size-12);
  line-height: 1.45;
  background-size: cover;
  opacity: 0.75;
}

.top-slide__content {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
}

.top-slider__slide {
  width: 100%;
  flex-shrink: 0;
}

.top-slide {
  position: relative;
}

@media (hover: hover) {
  .top-slide:hover .btn--more::before {
    transform: translateX(0);
  }
}
.top-slide__img {
  position: relative;
  aspect-ratio: 455/720;
  background-color: var(--gray3);
  overflow: hidden;
}
.top-slide__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.top-slider__slider {
  width: 100%;
  overflow: hidden;
}

.top-slide__link {
  position: absolute;
  inset: 0;
}

@media (min-width: 768px) {
  .top-slider__slide {
    width: calc(50% - 4px);
  }
}
@media (max-width: 1023px) {
  .top-slide__content {
    position: absolute;
    inset: 0;
  }
  .top-slide__more {
    display: none;
  }
}
@media (min-width: 1024px) {
  .top-slide__more {
    margin-top: auto;
  }
  .top-slide__text {
    color: var(--text);
  }
  .top-slider__slide {
    width: calc(33.3333333333% - 5.3333333333px);
  }
  .top-slide {
    display: flex;
    flex-direction: column;
  }
  .top-slide__content {
    position: relative;
    flex-grow: 1;
    justify-content: flex-start;
    padding: calc(var(--size-30) / 2);
    margin-top: calc(-2 * var(--size-30));
  }
  .top-slide__content::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    right: -5px;
    bottom: 0;
    top: calc(2 * var(--size-30));
    opacity: 0.1;
    border-bottom: 1px solid var(--text);
    border-left: 1px solid var(--text);
    border-right: 1px solid var(--text);
  }
  .top-slide__name {
    margin-bottom: var(--size-30);
  }
}
.collection-it {
  position: relative;
}

.collection-block {
  position: relative;
}

@media (min-width: 768px) {
  .collection-block__its {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 4fr) minmax(0, 4fr);
    gap: 8px;
  }
  .collection-block__it--span2 {
    grid-column: span 2;
  }
  .collection-it__img img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .collection-it__img {
    display: flex;
    height: 100%;
  }
}
@media (max-width: 1023px) {
  .collection-block__text {
    display: none;
  }
}
@media (min-width: 1024px) {
  .collection-block__text {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    bottom: 0;
    left: 0;
    padding: calc(28px * var(--scale));
    max-width: min(50%, 415px * var(--scale));
    width: 100%;
    color: var(--white);
    font-size: var(--size-14);
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -0.2px;
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
  }
}
.items-row__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

@media (min-width: 1024px) {
  .items-row__row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.items-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

.items-top__top {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  opacity: 0.7;
  font-size: var(--size-12);
  background-size: cover;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .items-top {
    max-width: calc(758px * var(--scale));
  }
}
.right-deco {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.right-deco__text {
  grid-column: 1/7;
  grid-row: 1;
  padding-bottom: 20px;
  padding-right: 20px;
  padding-left: var(--padding);
  white-space: normal;
  font-size: var(--size-28-20);
  background-size: cover;
  line-height: 1.14;
  text-transform: uppercase;
}

.right-deco__img1 {
  grid-row: 2/4;
  grid-column: 1/11;
}

.right-deco__img2 {
  grid-column: 7/-1;
  grid-row: 1/3;
  z-index: 1;
}

.right-deco__img3 {
  display: flex;
  grid-column: 11/-1;
  grid-row: 3;
  max-height: 100%;
  width: auto;
  height: calc(223px * var(--scale));
}

@media (min-width: 1024px) {
  .right-deco__text {
    padding-left: 0;
  }
}
.about-block {
  display: grid;
  gap: 30px 8px;
}

.about-block__left {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px 8px;
}

@media (max-width: 1023px) {
  .about-block__left {
    order: 1;
  }
}
.about-block__txt {
  white-space: normal;
  font-size: var(--size-12);
  line-height: 1.4;
  background-size: cover;
  opacity: 0.7;
}
.about-block__txt p {
  margin-block: var(--size-20);
}
.about-block__txt p:first-child {
  margin-top: 0;
}
.about-block__txt p:last-child {
  margin-bottom: 0;
}

.about-block__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--size-30);
  padding-inline: calc(var(--padding) * var(--scale));
}

.about-block__h2 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
  font-size: var(--size-12);
}

.about-block__more {
  font-size: var(--size-12);
}

.about-block__logo {
  position: absolute;
  bottom: 0;
  right: var(--padding);
  width: 71px;
}

@media (min-width: 768px) {
  .about-block__left {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }
  .about-block__content {
    justify-content: space-between;
    padding-block: var(--size-40);
    background-color: #eaeae8;
  }
  .about-block__logo {
    top: 30px;
    right: 30px;
    width: calc(71px * var(--scale));
    height: calc(46px * var(--scale));
  }
}
@media (min-width: 1024px) {
  .about-block {
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
  }
  .about-block__txt {
    font-size: var(--size-14);
  }
}
@media (max-width: 1023px) {
  .leadership__h2--sec {
    display: none;
  }
  .leadership__container {
    order: -1;
    grid-column: 1/-1;
  }
  .leadership__it--first {
    order: -1;
    grid-column: 1/-1;
  }
  .leadership__content {
    grid-column: 1/-1;
  }
  .leadership__it:last-child {
    grid-column: 1/6;
    order: 0;
  }
  .leadership__it:nth-last-child(2) {
    grid-column: 2/-1;
    margin-top: -50px;
    order: 1;
  }
}
.leadership {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px 8px;
}

.leadership__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.leadership__content p {
  margin: 0;
}

.leadership__h2 {
  padding-inline: var(--padding);
}

@media (min-width: 1024px) {
  .leadership__content {
    display: none;
  }
  .leadership__container {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) minmax(0, 3fr);
    -moz-column-gap: 8px;
         column-gap: 8px;
    grid-row: 1;
    grid-column: 1/-1;
  }
  .leadership__h2 {
    grid-column: 3;
    grid-row: 1;
    align-self: flex-end;
  }
  .leadership__it:nth-last-child(2) {
    grid-row: 1/3;
    grid-column: 2;
  }
  .leadership__h2--sec {
    grid-column: 1;
  }
  .leadership {
    grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) minmax(0, 3fr);
    grid-row: auto 1fr;
  }
}
.styles-row__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-inline: var(--padding);
}

.styles-row__its {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.styles-row__links {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .styles-row__its {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}
@media (min-width: 1024px) {
  .styles-row {
    width: 64%;
    margin-inline: auto;
  }
  .styles-row__top {
    padding-inline: 0;
  }
}
@media (min-width: 1024px) {
  .sale-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background-color: var(--gray6);
  }
  .sale-block .btn--more {
    margin-top: auto;
  }
  .sale-block__btns {
    display: flex;
    flex-wrap: wrap;
    gap: calc(4px * var(--scale)) calc(8px * var(--scale));
  }
  .sale-block__content {
    display: flex;
    flex-direction: column;
    padding: calc(40px * var(--scale));
  }
  .sale-block__h2 {
    margin-top: 0;
    margin-bottom: calc(24px * var(--scale));
    font-size: var(--size-28);
    line-height: 1;
  }
  .sale-block__txt {
    margin-bottom: 40px;
  }
  .sale-block__img {
    display: flex;
  }
  .sale-block__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: var(--gray);
  border-bottom: 1px solid rgba(39, 42, 45, 0.1);
}

.header__users {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header__container {
  display: flex;
  align-items: center;
  gap: var(--size-20);
  padding-block: 16px;
  border-bottom: 1px solid var(--gray6);
}

.menu,
.menu__sub {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu__link {
  display: flex;
  color: var(--text);
  text-decoration: none;
  font-size: var(--size-12);
  opacity: 0.8;
  transition: color 0.3s;
}
.menu__link span {
  opacity: 0.6;
  font-size: 0.8em;
  margin-left: 2px;
}

.menu__div-name {
  vertical-align: middle;
  color: var(--text);
  font-size: var(--size-10);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  opacity: 0.65;
}

.menu__sub {
  display: flex;
  flex-direction: column;
  gap: calc(8px * var(--scale));
}

.menu__div-inside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.header__logo {
  height: 17px;
  margin-right: auto;
}
.header__logo img {
  height: 100%;
  width: auto;
}

.menu__div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 1023px) {
  .header__logo--desk {
    display: none;
  }
  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    padding-block: 32px;
    padding-inline: var(--padding);
    width: 100%;
    background-color: var(--white);
    max-height: 100svh;
    overflow: hidden;
    overflow-y: auto;
    transform: translate(-200svw);
    transition: transform 0.3s;
  }
  .header.opened .header__nav {
    transform: translate(0);
  }
  .menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .menu__it--sub {
    grid-column: span 2;
    order: -1;
  }
  .menu__it--sub > a {
    display: none;
  }
  .menu__sale {
    display: none;
  }
}
.header__it {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(30px * var(--scale));
}
.header__it svg {
  width: 100%;
  height: auto;
}
.header__it .btn {
  width: 100%;
  aspect-ratio: 1;
}

@media (hover: hover) {
  .header__it {
    width: calc(15px * var(--scale));
  }
}
.header__it--cart {
  position: relative;
}

.header__it-num {
  position: absolute;
  right: 0;
  bottom: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(10px * var(--scale));
  height: calc(10px * var(--scale));
  border-radius: 50%;
  font-size: var(--size-10);
  background-color: var(--white);
}

.header__search {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  padding-block: calc(40px * var(--scale));
  transform: translate(0, -200%);
  background-color: var(--white);
  border: 1px solid var(--gray8);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s;
}
.header__search .container {
  position: relative;
}

.header__search.opened {
  transform: translate(0, 0);
}

.header__search-close {
  position: absolute;
  right: var(--padding);
  top: calc(-24px * var(--scale));
}

@media (hover: hover) {
  .menu__link:hover {
    color: var(--gray2);
  }
}
@media (min-width: 1024px) {
  .header {
    border-bottom: 0;
  }
  .header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: var(--gray);
    border-bottom: 1px solid rgba(39, 42, 45, 0.1);
  }
  .header__clmn.col {
    display: none;
  }
  .header__container {
    padding-block: 0;
  }
  .header__nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-grow: 1;
    margin-inline: -5px;
  }
  .header__users {
    order: 1;
    gap: calc(10px * var(--scale));
    z-index: 2;
  }
  .header__it--toggler {
    display: none;
  }
  .header__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    height: calc(22px * var(--scale));
    z-index: 2;
    transform: translate(-50%, -50%);
  }
  .header__logo--desk {
    display: flex;
  }
  .header__logo--mob {
    display: none;
  }
  .menu {
    display: flex;
    flex-direction: row;
    gap: 24px;
  }
  .menu__div {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1;
    grid-template-columns: 1fr 1fr 4fr;
    padding: calc(60px * var(--scale)) calc(var(--padding) * var(--scale));
    background-color: var(--white);
    opacity: 0;
    transform: translateY(-200%);
    transition: transform 0.5s, opacity 0.5s;
  }
  .menu__div-inside {
    gap: calc(20px * var(--scale));
  }
  .menu__it--sub:hover .menu__div {
    transform: translateY(0);
    opacity: 1;
  }
  .menu > .menu__it > .menu__link {
    position: relative;
    padding-block: calc(22px * var(--scale));
    background-color: var(--gray);
    z-index: 2;
    padding-inline: 5px;
  }
}
@media (min-width: 1200px) {
  .header__nav {
    margin-inline: calc(-10px * var(--scale));
  }
  .menu > .menu__it > .menu__link {
    padding-inline: calc(10px * var(--scale));
  }
}
.form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--size-20);
}

.footer {
  position: relative;
  background-color: var(--gray6);
}

.footer__btm {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-inline: var(--padding);
  gap: var(--size-20-40);
}

.footer__btm-svg {
  width: 100%;
  height: auto;
  display: block;
}

.footer__txt {
  margin: 0;
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer__row-wrap {
  position: relative;
  padding-inline: var(--padding);
  padding-bottom: var(--size-20-60);
}

.footer__btm-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
}

.footer__top {
  padding-inline: var(--padding);
  margin-bottom: calc(20px * var(--scale));
}

.col {
  display: flex;
  flex-direction: column;
  gap: calc(20px * var(--scale));
}

.col__name {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--text);
  font-size: var(--size-14-16);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  opacity: 0.65;
  text-decoration: none;
}

.col__link {
  display: flex;
  align-items: center;
  gap: calc(8px * var(--scale));
  white-space: nowrap;
  color: var(--text);
  font-size: var(--size-14-16);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.2px;
  text-decoration: none;
  transform: text-decoration 0.3s;
}
.col__link svg {
  width: calc(15px * var(--scale));
  height: calc(15px * var(--scale));
}

@media (hover: hover) {
  .col__link:hover {
    text-decoration: underline;
  }
}
.col__links {
  display: flex;
  flex-direction: column;
  gap: var(--size-12);
}

.col__text {
  margin: 0;
  font-size: var(--size-14);
}

.footer__btm-link {
  display: flex;
  color: var(--text);
  font-size: var(--size-14-16);
  text-decoration: none;
  text-transform: uppercase;
}

.footer__sub {
  font-size: var(--size-10);
  opacity: 0.65;
}

.footer__form {
  display: flex;
  flex-direction: column;
  padding: 20px 10px;
  background-color: var(--gray7);
}

.footer__form-name {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: var(--size-22-36);
  line-height: 1;
  text-transform: uppercase;
}

.footer__form-txt {
  margin-top: 0;
  margin-bottom: calc(20px * var(--scale));
  font-size: var(--size-12px);
}

.footer__btm-btm {
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .footer__clmn {
    width: calc(50% - 20px);
  }
  .footer__clmn--connect {
    order: -1;
    width: 100%;
  }
  .footer__logo {
    position: absolute;
    right: var(--padding);
    top: var(--size-30-60);
  }
  .footer__txt {
    padding-right: 80px;
  }
  .footer__btm-img {
    margin-inline: calc(-1 * var(--padding));
  }
  .footer__btm-btm {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    bottom: 20px;
  }
  .footer__btm-links {
    flex-direction: column;
    align-items: center;
  }
  .footer__btm-link {
    color: var(--white);
  }
  .footer__btm-svg {
    color: var(--white);
    max-width: calc(100% - var(--padding) * 2);
  }
}
@media (min-width: 768px) {
  .footer__btm {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer__btm-img {
    grid-row: 1/4;
    grid-column: 2;
  }
  .footer__row-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: var(--padding);
    width: calc(100% - 2 * var(--padding));
    border-bottom: 1px solid var(--gray5);
  }
  .footer__btm {
    padding-top: var(--size-30-60);
  }
}
@media (min-width: 1024px) {
  .footer__top {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: calc(40px * var(--scale));
    margin-bottom: calc(60px * var(--scale));
  }
  .footer__txt {
    grid-column: 1/9;
  }
  .footer__row-wrap {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 40px;
  }
  .footer__row {
    grid-column: 1/9;
  }
  .footer__btm {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .footer__btm-btm {
    grid-column: 6/-1;
    grid-row: 2;
    align-items: flex-end;
  }
  .footer__form {
    grid-row: 1/3;
    grid-column: 1/6;
  }
  .footer__btm-img {
    position: relative;
    grid-column: 9/-1;
    grid-row: 1;
    margin-right: calc(-1 * var(--padding));
  }
  .footer__btm-img img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
  }
  .footer__sub {
    grid-column: 6/9;
    max-width: calc(340px * var(--scale));
  }
  .footer__logo {
    width: calc(98px * var(--scale));
  }
}
@media (min-width: 1400px) {
  .footer__form {
    grid-column: 1/5;
    padding: calc(30px * var(--scale)) calc(40px * var(--scale));
  }
  .footer__sub {
    grid-column: 5/9;
  }
  .footer__btm-btm {
    grid-column: 5/-1;
  }
}
.tags-form {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8px * var(--scale)) calc(10px * var(--scale));
}

.tags-form__label {
  display: flex;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.tags-form__label span {
  padding: calc(6px * var(--scale)) calc(10px * var(--scale));
  border-radius: calc(8px * var(--scale));
  background-color: var(--gray7);
  transition: background-color 0.3s;
  color: var(--text);
}

@media (hover: hover) {
  .tags-form__label:hover span {
    background-color: var(--gray5);
  }
}
.tags-form__radio {
  position: absolute;
  opacity: 0;
}
.tags-form__radio:checked + span {
  background-color: var(--text);
  color: var(--gray7);
}

.catalog-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 768px) {
  .main.pt-60-120 {
    padding-top: 90px;
  }
  .catalog-top {
    flex-direction: column;
  }
}
.catalog-top__h1 {
  margin: 0;
  font-size: var(--size-30-60);
  line-height: 1.2;
  font-weight: 500;
}

.catalog-top__txt {
  max-width: calc(420px * var(--scale));
  font-size: var(--size-12);
}
.catalog-top__txt a {
  color: inherit;
}

.catalog-top__logo {
  width: 90px;
}

.catalog-top__name {
  display: flex;
  flex-direction: column;
  gap: var(--size-14-20);
}

.catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(16px * var(--scale)) calc(8px * var(--scale));
}

@media (max-width: 1023px) {
  .catalog-top__top {
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .catalog-top {
    align-items: flex-end;
  }
}
@media (min-width: 1024px) {
  .catalog {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.item-slider__slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  aspect-ratio: 426/568;
  overflow: hidden;
}
.item-slider__slide img {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.item-slider__slide video {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.item-slider__slide.has-video img {
  opacity: 0;
}

[data-video] {
  position: relative;
  display: flex;
  justify-content: center;
}
[data-video] img, [data-video] video {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
[data-video] video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 100%;
  max-width: 100%;
}
[data-video].has-video img {
  opacity: 0;
  z-index: -2;
}
[data-video]:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10m-1.306-6.154 4.72-2.787c.781-.462.781-1.656 0-2.118l-4.72-2.787C9.934 7.706 9 8.29 9 9.214v5.573c0 .923.934 1.507 1.694 1.059' clip-rule='evenodd'/%3E%3C/svg%3E");
}
[data-video].active::before {
  opacity: 0;
}

@media (max-width: 1023px) {
  .item-slider__wrapper {
    display: flex;
    gap: 8px;
  }
  .swiper-initialized .item-slider__wrapper {
    gap: 0;
  }
  .item-slider__slide {
    width: 100%;
    flex-shrink: 0;
  }
  .item-slider__slider {
    overflow: hidden;
  }
}
@media (min-width: 1024px) {
  .item-slider__wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: calc(8px * var(--scale));
  }
}
.item-right__h1 {
  margin: 0 0 calc(6px * var(--scale));
  font-size: var(--size-22-36);
  font-weight: 500;
  line-height: 1;
}

.item-right__art {
  margin-top: 0;
  margin-bottom: calc(22px * var(--scale));
  color: var(--gray9);
  font-size: var(--size-12);
}

.item-right__price {
  font-size: var(--size-20);
  margin-bottom: calc(22px * var(--scale));
}

.item-right__btns {
  display: flex;
  gap: calc(18px * var(--scale));
  margin-bottom: var(--size-24);
}

.item-right__label {
  display: flex;
  flex-direction: column;
  gap: calc(4px * var(--scale));
  margin-bottom: var(--size-24);
  width: -moz-fit-content;
  width: fit-content;
  color: var(--gray4);
}

.item-right__props {
  display: flex;
  flex-direction: column;
  gap: var(--size-20);
  margin-bottom: var(--size-24);
  overflow: hidden;
}

.item-right__prop {
  display: flex;
  flex-direction: column;
  gap: calc(8px * var(--scale));
  font-size: var(--size-12);
}

.item-right__prop-name {
  color: var(--gray4);
}

.item-right__prop-val a {
  color: var(--text);
}

.item-right__link {
  color: var(--text);
  text-transform: uppercase;
}

.item-right__label {
  display: flex;
}

.item-right__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: calc(8px * var(--scale)) calc(10px * var(--scale));
  min-width: calc(80px * var(--scale));
  background-color: transparent;
  border-radius: 8px;
  border: 1px solid var(--gray4);
}

.item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .item {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (min-width: 1024px) {
  .item {
    gap: calc(20px * var(--scale));
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
}
.sales-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

.sales-row__left {
  padding: var(--size-20-40);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--gray6);
}

.sales-row__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sales-row__ac {
  font-size: var(--size-14-16);
  text-transform: uppercase;
}
.sales-row__ac img {
  width: calc(58px * var(--scale));
  height: auto;
}

.sales-row__name {
  margin: 0;
  font-size: var(--size-22-36);
  max-width: calc(380px * var(--scale));
  line-height: 1.2;
}

.sales-row__content {
  max-width: calc(380px * var(--scale));
}

.sales-row__imgs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.sales-row__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.sales-row__img:first-child {
  grid-column: span 2;
}

.sales-row__img:last-child {
  grid-column: span 4;
}

.sales {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--size-30-60);
}

@media (min-width: 768px) {
  .sales-row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .sales-row__left,
  .sales-row__imgs {
    grid-column: span 6;
  }
}
@media (min-width: 1024px) {
  .sales-row {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
.event-it__img {
  display: flex;
  aspect-ratio: 1;
}
.event-it__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.event-it {
  position: relative;
  display: flex;
  flex-direction: column;
  line-height: 1;
  background-color: var(--gray6);
}

.event-it__content {
  padding: calc(16px * var(--scale));
  display: flex;
  flex-direction: column;
  gap: calc(16px * var(--scale));
}

.event-it__name {
  margin-top: 0;
  margin-bottom: calc(8px * var(--scale));
  font-size: var(--size-14);
}

.event-it__link {
  position: absolute;
  inset: 0;
}

@media (min-width: 1024px) {
  .event-it__content {
    padding: calc(20px * var(--scale)) calc(24px * var(--scale)) calc(30px * var(--scale)) calc(24px * var(--scale));
  }
  .event-top__img {
    aspect-ratio: 3/2;
  }
  .event-top__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.events__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(20px * var(--scale)) calc(8px * var(--scale));
}

@media (min-width: 500px) {
  .events__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .events__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .events__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.event-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--size-20-40);
  align-items: flex-start;
  align-content: flex-start;
}

.event-top__it {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 8px;
}
.event-top__it span:first-child {
  opacity: 0.65;
}

@media (min-width: 768px) {
  .event-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto 1fr;
  }
  .event-top__img {
    grid-column: 2;
    grid-row: 1/3;
  }
}
@media (min-width: 1024px) {
  .event-top {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
}
.tabs-block {
  display: grid;
}

.tabs-block__panel {
  grid-column: 1;
  grid-row: 1;
  background-color: inherit;
}
.tabs-block__panel[aria-selected=false] {
  z-index: -1;
  opacity: 0;
}

@media (min-width: 1024px) {
  .text-half {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--size-20-40);
  }
  .text-half__right {
    grid-column: 2;
  }
}
.contacts__left {
  display: flex;
  flex-direction: column;
  gap: var(--size-20-40);
}

.contacts {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--size-20-40);
}

.contacts__right {
  min-height: 400px;
  height: 100%;
}

.map-container {
  display: flex;
  min-height: 400px;
  height: 100%;
}

@media (min-width: 768px) {
  .contacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .contacts {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  }
}
.cart {
  position: fixed;
  right: 0;
  top: 0;
  height: 100svh;
  width: 100%;
  padding: var(--size-30) calc(var(--padding) * var(--scale));
  max-width: min(100svw, 600px * var(--scale));
  z-index: 11;
  background-color: #EAEAE8;
  overflow-y: auto;
  transform: translateX(-200svw);
  transition: transform 0.3s;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
}

.cart__close {
  position: absolute;
  top: 30px;
  right: var(--padding);
}

.cart.opened {
  transform: translateX(0);
}

.cart-row {
  display: grid;
  grid-template-columns: 70px repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  padding-block: 10px;
}
.cart-row:last-child {
  margin-bottom: var(--size-20-40);
}

.cart-row__price {
  position: relative;
}

.cart-row__price-old {
  position: absolute;
  font-size: 0.7em;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  color: var(--gray4);
  text-decoration: line-through;
}

.cart-row__del {
  justify-self: center;
}

@media (max-width: 767px) {
  .cart-row__img {
    grid-row: 1/3;
  }
}
@media (min-width: 768px) {
  .cart-row {
    display: grid;
    grid-template-columns: calc(70px * var(--scale)) auto calc(160px * var(--scale)) calc(80px * var(--scale)) calc(15px * var(--scale));
  }
}
.cart-row__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}
.cart-row__img img {
  -o-object-fit: contain;
     object-fit: contain;
}

.cart-row__el {
  opacity: 0.65;
  font-size: var(--size-12);
}

.cart-row__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-row__name {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.cart__sum {
  display: flex;
  justify-content: flex-end;
  font-size: 1.2em;
}

.cart__btn {
  width: 100%;
  text-transform: uppercase;
  padding-block: var(--size-20);
}

@media (hover: hover) {
  .cart-row__name:hover {
    opacity: 0.8;
  }
}
@media (min-width: 768px) {
  .cart {
    padding-inline: var(--size-40);
  }
  .cart__close {
    top: var(--size-30);
    right: var(--size-40);
  }
}
@media (min-width: 1024px) {
  .cart-row__img {
    width: calc(70px * var(--scale));
    height: calc(70px * var(--scale));
  }
}
.order__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--size-20-40);
}

.order__items {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--size-10);
}

.order__total {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: calc(8px * var(--scale));
  padding-top: calc(20px * var(--scale));
}

.order {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--size-30-60) 100px;
}

.order__fieldset {
  display: flex;
  flex-direction: column;
  gap: var(--size-24);
}

@media (min-width: 1024px) {
  .order {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .order__block:first-child {
    position: relative;
    order: 1;
  }
  .order__block-inside {
    position: sticky;
    top: 90px;
  }
}
@media (min-width: 1230px) {
  .order {
    grid-template-columns: repeat(2, minmax(0, calc(560px * var(--scale))));
    justify-content: center;
  }
}
.search-item {
  gap: calc(8px * var(--scale)) var(--size-10);
  padding-block: var(--size-10);
  border-bottom: 1px solid var(--light-grey-blue, #E7EEF9);
}
.search-item:first-child {
  border-top: 1px solid var(--light-grey-blue, #E7EEF9);
}

.search-item__image-wrapper {
  flex-shrink: 0;
  width: calc(50px * var(--scale));
  height: calc(50px * var(--scale));
  border-radius: calc(4px * var(--scale));
  overflow: hidden;
}
.search-item__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.search-item__title {
  color: var(--text);
  text-decoration: none;
  font-size: var(--size-20);
}

.search-item__path-part {
  color: var(--blue-hover);
  text-decoration: none;
}

.search-item__path {
  display: flex;
  flex-wrap: wrap;
  gap: calc(6px * var(--scale));
}

@media (max-width: 767px) {
  .search-item {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
  }
  .search-item__image-wrapper {
    grid-row: 1/3;
  }
}
@media (min-width: 768px) {
  .search-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .search-item__image-wrapper {
    width: calc(100px * var(--scale));
    height: calc(100px * var(--scale));
  }
  .search-item__path {
    margin-left: auto;
  }
}
@media (min-width: 1024px) {
  .search-item {
    flex-wrap: nowrap;
    gap: var(--size-20);
    padding-block: var(--size-20);
  }
  .search-item__path {
    width: calc(460px * var(--scale));
    flex-shrink: 0;
  }
  .search-item__info {
    margin-right: calc(120px * var(--scale));
  }
}
.search-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.mb-60-120 {
  margin-bottom: var(--size-60-120);
}

.pb-60-120 {
  padding-bottom: var(--size-60-120);
}

.pt-60-120 {
  padding-top: var(--size-60-120);
}

.pt-90-150 {
  padding-top: var(--size-90-150);
}

.mb-20 {
  margin-bottom: var(--size-20);
}

.mb-20-60 {
  margin-bottom: var(--size-20-60);
}

.mb-20-40 {
  margin-bottom: var(--size-20-40);
}

.pt-20-40 {
  padding-top: var(--size-20-40);
}

.pt-30-60 {
  padding-top: var(--size-30-60);
}

.pb-30-60 {
  padding-bottom: var(--size-30-60);
}

.hr {
  opacity: 0.1;
  background-color: var(--text);
  width: 100%;
  height: 1px;
}
/*# sourceMappingURL=style.css.map */
