html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

body {
  line-height: 1;
  color: black;
  background: white;
}

ol, ul {
  list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

button {
  display: block;
  cursor: pointer;
  transition: 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  padding: 0;
}
button:hover {
  transition: 0.3s;
}

a {
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  transition: 0.3s;
}

button:focus, a:focus, img:focus, li:focus, input:focus {
  outline: none;
}

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

input::-webkit-input-placeholder {
  opacity: 1;
}

input::-moz-placeholder {
  opacity: 1;
}

input:-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder {
  opacity: 1;
}

textarea::-webkit-input-placeholder {
  opacity: 1;
}

textarea::-moz-placeholder {
  opacity: 1;
}

textarea:-moz-placeholder {
  opacity: 1;
}

textarea:-ms-input-placeholder {
  opacity: 1;
}

input,
select,
option,
input[type=color],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select:focus,
textarea {
  font-size: 16px;
  box-shadow: none;
}

.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999;
}

.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select.open:after {
  transform: rotate(-135deg);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

/**
 * Swiper 11.2.8
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 23, 2025
 */
@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;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

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

.swiper-horizontal {
  touch-action: pan-y;
}

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

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

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

.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);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

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

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

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

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

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

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

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

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

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

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

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

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  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));
}

.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-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .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);
  }
}
.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-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 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-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

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

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

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

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

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

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

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

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

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

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.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: var(--swiper-pagination-bullet-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;
  -moz-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-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

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

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

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s 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: 0.2s transform, 0.2s left;
}

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

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, 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-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

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

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

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-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 > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.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 {
  pointer-events: auto;
}

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

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  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 {
  pointer-events: auto;
  visibility: visible;
}

.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-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

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

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  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-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

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

.swiper.swiper-cards {
  overflow: visible;
}

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

.section {
  padding: 45px 0;
}
@media screen and (max-width: 560px) {
  .section {
    padding: 30px 0;
  }
}

.button {
  padding: 12px 19px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--seryy);
  border-radius: 2px;
  color: var(--text);
  background: var(--fon-knopok);
  transition: 0.3s;
}
.button:hover {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}
.button:hover svg path {
  fill: var(--white);
}
.button svg path {
  transition: 0.3s;
}
.button--type2 {
  padding: 15px 19px;
  font-weight: 400;
}
.button--type2:hover {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}
.button--type3 {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}
.button--size2 {
  padding: 11px 20px;
  font-weight: 400;
  font-size: 12px;
}
.button--full-width {
  width: 100%;
}

.title {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 36px;
  line-height: 140%;
  color: var(--text);
  text-align: left;
}
@media screen and (max-width: 720px) {
  .title {
    font-size: clamp(24px, 6vw, 36px);
  }
}

.title-text {
  font-weight: 700;
  font-size: 18px;
  line-height: 160%;
  text-align: left;
}

.slider-arrow {
  min-width: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px 0 0 3px;
  border: 1px solid var(--seryy);
  background: var(--fon-knopok);
  transition: 0.3s;
  cursor: pointer;
}
.slider-arrow:hover {
  border-color: var(--red);
  background: var(--red);
}
.slider-arrow:hover svg path {
  fill: var(--white);
}
.slider-arrow--next {
  border-radius: 0 3px 3px 0;
}
.slider-arrow svg path {
  transition: 0.3;
}

.slider-pagination {
  margin-top: 20px;
  min-height: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.swiper-pagination-bullet {
  margin: 0;
  width: 20px;
  height: 3px;
  border-radius: 1px;
  background: var(--seryy);
  opacity: 1;
  transition: 0.3s;
}
.swiper-pagination-bullet-active {
  width: 30px;
  height: 5px;
  background: var(--red);
}

.close-bg {
  position: fixed;
  width: 100dvw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: -100;
  transition: 0.3s;
}
.close-bg.active {
  visibility: visible;
  opacity: 1;
  z-index: 1000;
}

.mobile-menu {
  position: fixed;
  right: -330px;
  top: 0;
  width: 330px;
  height: 100dvh;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
  background: #f0f0f0;
  z-index: 2000;
  transition: 0.3s;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu__header {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu__nav-item {
  padding: 10px 20px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid #d8d8d8;
}
.mobile-menu__lang {
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mobile-menu__lang span {
  width: 1px;
  height: 14px;
  background: var(--text);
}
.mobile-menu__lang-item {
  font-size: 20px;
  color: var(--text);
}
.mobile-menu__lang-item.active {
  font-weight: 700;
  color: var(--red);
}

.breadcrumbs {
  margin: 18px 0;
  font-size: 14px;
}
@media screen and (max-width: 720px) {
  .breadcrumbs {
    margin-bottom: 20px;
  }
}
.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumbs ol li {
  color: var(--red);
}
@media screen and (max-width: 720px) {
  .breadcrumbs ol li {
    display: none;
  }
}
.breadcrumbs ol li a {
  color: var(--text);
}
@media screen and (max-width: 720px) {
  .breadcrumbs ol li:nth-last-child(-n+4) {
    display: block;
  }
}

.sorting {
  display: flex;
  justify-content: flex-end;
}
.sorting__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 720px) {
  .sorting__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
.sorting__item-title {
  font-weight: 600;
  font-size: 14px;
}
.sorting--type2 {
  width: 100%;
}
.sorting--type2 .sorting__item {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}
.sorting--type2 .sorting__item-select {
  width: 100%;
}

.nice-select {
  float: none;
  padding: 11px 0;
  padding-left: 10px;
  padding-right: 30px;
  min-width: 152px;
  height: auto;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  color: var(--text);
  line-height: 1;
  text-align: left;
  border: 1px solid var(--seryy);
  border-radius: 2px;
  background: var(--fon-knopok);
}
.nice-select::after {
  margin-top: 0;
  width: 14px;
  height: 9px;
  top: 50%;
  transform-origin: center;
  transform: translateY(-50%);
  transition: all 0.15s ease-in-out;
  border: none !important;
  background: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.99336 8.02687L13.7263 2.29363C14.0912 1.92893 14.0912 1.33764 13.7263 0.97312C13.3618 0.60857 12.7705 0.60857 12.406 0.97312L7.33314 6.04595L2.2606 0.973119C1.8959 0.60857 1.3047 0.60857 0.940149 0.973119C0.575452 1.33767 0.575452 1.92893 0.940149 2.29363L6.67309 8.02687C6.85545 8.20914 7.09421 8.30017 7.33308 8.30018C7.57207 8.30018 7.811 8.20896 7.99327 8.02672' fill='%23333333' /%3E%3C/svg%3E") no-repeat center 0;
}

.nice-select.open:after {
  transform: translateY(-50%) rotate(180deg);
}

.nice-select .list {
  z-index: 1000;
}

.checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.checkbox:hover .checkbox__box {
  border-color: var(--red);
}
.checkbox__box {
  position: relative;
  min-width: 24px;
  width: 24px;
  height: 24px;
  border: 1px solid var(--seryy);
  border-radius: 3px;
  transition: 0.3s;
}
.checkbox__box-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s;
}
.checkbox__box-icon svg,
.checkbox__box-icon img {
  display: block;
}
.checkbox input:checked ~ .checkbox__box {
  border-color: var(--red);
  background: var(--red);
}
.checkbox input:checked ~ .checkbox__box .checkbox__box-icon {
  opacity: 1;
}
.checkbox__title {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 12px;
  text-align: left;
}
.checkbox__quantity {
  color: var(--seryy);
}
.checkbox--radio .checkbox__box {
  border-radius: 100%;
}
.checkbox--radio .checkbox__box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: var(--red);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s;
}
.checkbox--radio input:checked ~ .checkbox__box {
  background: none;
}
.checkbox--radio input:checked ~ .checkbox__box::before {
  opacity: 1;
}

.price-input {
  margin-bottom: 27px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.price-input .field {
  display: flex;
  width: 100%;
  height: 35px;
  align-items: center;
  font-size: 12px;
}
.price-input .field input {
  width: 100%;
  height: 100%;
  font-size: 12px;
  text-align: center;
  border: 1px solid transparent;
  -moz-appearance: textfield;
  outline: none;
  background: #f0f0f0;
}
.price-input .field input[type=number]::-webkit-outer-spin-button,
.price-input .field input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.slider-wrap {
  position: relative;
}

.slider {
  height: 4px;
  position: relative;
  background: #f0f0f0;
}
.slider .progress {
  height: 100%;
  left: 0%;
  right: 0%;
  position: absolute;
  background: var(--red);
}

.range-input {
  position: relative;
}
.range-input input {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 1px;
  top: -1px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.range-input input:hover {
  cursor: grab;
}
.range-input input:active {
  cursor: grabbing;
}
.range-input input[type=range]::-webkit-slider-thumb {
  margin-top: -6px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: var(--red);
  pointer-events: auto;
  -webkit-appearance: none;
}
.range-input input[type=range]::-moz-range-thumb {
  margin-top: -6px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: var(--red);
  pointer-events: auto;
  -moz-appearance: none;
}

.range-min::-webkit-slider-thumb {
  margin-left: -2px !important;
}
.range-min::-moz-range-thumb {
  margin-left: -2px !important;
}

.pagination {
  margin-top: 30px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 720px) {
  .pagination {
    gap: 6px;
  }
}

.pagination-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: var(--text);
  border: 1px solid var(--seryy);
  border-radius: 2px;
  background: var(--fon-knopok);
}
.pagination-item:hover, .pagination-item.active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}
.pagination-item.active {
  font-weight: 700;
}
.pagination-item--nostyle {
  border-color: transparent;
  background: none;
}
.pagination-item--nostyle:hover {
  color: var(--text);
  border-color: var(--red);
  background: none;
}

.text-block {
  padding: 24px 20px;
  color: var(--text);
  line-height: 120%;
  text-align: left;
  background: var(--white);
}
@media screen and (max-width: 720px) {
  .text-block {
    padding: 20px 14px;
  }
}
.text-block > *:last-child {
  margin-bottom: 0 !important;
}
.text-block img {
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
  max-width: 100%;
}
.text-block h1 {
  position: relative;
  margin-bottom: 26px;
  font-weight: 700;
  font-size: clamp(24px, 5vw, 36px);
}
.text-block * + h1 {
  margin-top: 50px;
}
.text-block h2 {
  position: relative;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: clamp(22px, 4.5vw, 30px);
}
.text-block * + h2 {
  margin-top: 50px;
}
.text-block h3 {
  position: relative;
  margin-bottom: 26px;
  font-weight: 700;
  font-size: clamp(20px, 4vw, 24px);
}
.text-block * + h3 {
  margin-top: 30px;
}
.text-block h4 {
  position: relative;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 18px;
}
.text-block * + h4 {
  margin-top: 30px;
}
.text-block h5 {
  position: relative;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 18px;
}
.text-block * + h5 {
  margin-top: 30px;
}
.text-block h6 {
  position: relative;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 18px;
}
.text-block * + h6 {
  margin-top: 30px;
}
.text-block p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 125%;
}
@media screen and (max-width: 720px) {
  .text-block p {
    font-size: 14px;
    line-height: 120%;
  }
}
.text-block a {
  display: inline;
  color: var(--red);
  text-decoration: underline;
  font-weight: 600;
  word-break: break-all;
}
.text-block a:hover {
  text-decoration: none;
}
.text-block ul {
  margin-bottom: 20px;
}
@media screen and (max-width: 720px) {
  .text-block ul {
    font-size: 14px;
  }
}
.text-block ul li {
  position: relative;
  padding-left: 34px;
}
.text-block ul li + li {
  margin-top: 10px;
}
@media screen and (max-width: 720px) {
  .text-block ul li + li {
    margin-top: 0;
  }
}
.text-block ul li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--red);
}
.text-block ol {
  margin-bottom: 20px;
  list-style-type: decimal;
  list-style-position: inside;
}
.text-block ol li {
  padding-left: 8px;
  position: relative;
}
.text-block ol li + li {
  margin-top: 12px;
}
.text-block ol li::marker {
  font-weight: 700;
  color: var(--red);
}
.text-block em,
.text-block i {
  font-style: italic;
}
.text-block b,
.text-block strong {
  font-weight: bolder;
}
.text-block blockquote {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 22px;
  padding-right: 16px;
  font-style: italic;
  font-size: 16px;
  border: 1px solid var(--seryy);
  border-left: 2px solid var(--red);
  border-radius: 3px;
  background: var(--white);
}
.text-block hr {
  margin-bottom: 60px;
  display: block;
  width: 100%;
  height: 1px;
  border: none;
  background: var(--seryy);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1080px) {
  .form__footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.form__footer .button {
  min-width: -moz-max-content;
  min-width: max-content;
}
@media screen and (max-width: 1080px) {
  .form__footer .button {
    margin: 0 auto;
    min-width: auto;
  }
}
.form__footer-text {
  padding-top: 10px;
  font-size: 14px;
  line-height: 120%;
}
@media screen and (max-width: 720px) {
  .form__footer-text {
    padding-top: 5px;
  }
}
@media screen and (max-width: 720px) {
  .form__footer-text p + p {
    margin-top: 10px;
  }
}
.form__footer-text span {
  font-weight: 700;
  font-size: 16px;
  color: var(--red);
}

.input-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
}
.input-list--type2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 1080px) {
  .input-list--type2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.input-list--type3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 1080px) {
  .input-list--type3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.input-title {
  margin-bottom: 10px;
  font-size: var(--uikit-input-title-font-fize);
  text-align: left;
}

.input-wrap {
  display: block;
}
.input-wrap span {
  display: block;
}
.input-wrap--full-width {
  grid-column: span 2;
}
.input-wrap--notification-active .input-notification {
  max-height: 100px;
  opacity: 1;
  margin-top: 4px;
}
.input-wrap--error .input__item {
  border-color: var(--red);
}
.input-wrap--error .input-notification {
  color: var(--red);
}
.input-wrap--successfully .input__item {
  border-color: green;
}
.input-wrap--successfully .input-notification {
  color: green;
}

.input {
  position: relative;
  width: 100%;
}
.input__item {
  padding: 8px 12px;
  width: 100%;
  height: 38px;
  color: var(--text);
  font-size: 16px;
  border: 1px solid var(--seryy);
  border-radius: 3px;
  background: none;
  transition: 0.3s;
}
.input__item::-moz-placeholder {
  color: var(--seryy);
}
.input__item::placeholder {
  color: var(--seryy);
}
.input__item--textarea {
  resize: vertical;
  height: auto;
  min-height: 100px;
}

.input-notification {
  display: none;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 14p;
  transition: 0.4s linear;
}

.file-download {
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--seryy);
  border-radius: 3px;
}
@media screen and (max-width: 1080px) {
  .file-download {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
.file-download__info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.file-download__info-photo {
  min-width: 35px;
}
.file-download__info-title {
  margin-bottom: 8px;
  font-size: 12px;
}
.file-download__info-text {
  font-size: 12px;
  line-height: 120%;
  color: var(--seryy);
}
.file-download .button {
  padding: 16px 19px;
  min-width: -moz-max-content;
  min-width: max-content;
  font-weight: 400;
}
@media screen and (max-width: 1080px) {
  .file-download .button {
    margin: 0 auto;
    min-width: auto;
  }
}

.search-title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  text-align: left;
}

.search-input {
  width: 100%;
}
.search-input__item {
  padding: 7px 15px;
  width: 100%;
  height: 35px;
  font-size: 14px !important;
  border: 1px solid var(--white);
  border-radius: 2px;
  background: var(--white);
}

.modal-open {
  position: relative;
  overflow: hidden;
}

.modal-wrap {
  padding: 20px;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  z-index: -10;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
}
.modal-wrap.active {
  visibility: visible;
  opacity: 1;
  z-index: 10000;
}

.modal-scroll {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal {
  padding: 20px;
  max-height: 100%;
  position: relative;
  width: 880px;
  border-radius: 3px;
  background: var(--white);
}
.modal--type2 {
  padding: 20px 0px;
  position: static;
  width: 100%;
  height: 100%;
  background: none;
}
@media screen and (max-width: 720px) {
  .modal--type2 {
    padding: 0;
    padding-bottom: 10px;
  }
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 25px;
  cursor: pointer;
}
@media screen and (max-width: 720px) {
  .modal-close {
    top: 25px;
    right: 25px;
  }
}

.modal-title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 30px;
  line-height: 140%;
  color: var(--red);
}
@media screen and (max-width: 720px) {
  .modal-title {
    font-size: 22px;
  }
}

.modal-text {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
}

:root {
  --text: #333;
  --white: #fff;
  --red: #cb3141;
  --purple: #6d133e;
  --svetlyy-krasnyy-1: #f8e7ec;
  --menee-svetlyy-krasnyy-2: #f2b0bf;
  --seryy: #a7a7a7;
  --fon-knopok: #e2e2e2;
  --background: #f0f0f0;
}

body {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: var(--text);
  background: var(--background);
}
body * {
  box-sizing: border-box;
}
body *::before {
  box-sizing: border-box;
}
body *::after {
  box-sizing: border-box;
}
body.no-scroll {
  overflow-y: hidden;
}
body button {
  font-family: "Montserrat", sans-serif;
}
body input {
  font-family: "Montserrat", sans-serif;
}
body input::-moz-placeholder {
  font-family: "Montserrat", sans-serif;
}
body input::placeholder {
  font-family: "Montserrat", sans-serif;
}
body textarea {
  font-family: "Montserrat", sans-serif;
}
body textarea::-moz-placeholder {
  font-family: "Montserrat", sans-serif;
}
body textarea::placeholder {
  font-family: "Montserrat", sans-serif;
}

.wrapper {
  width: 1920px;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.wrapper.sticky {
  overflow: visible;
}

.inside {
  margin: 0 auto;
  padding: 0 20px;
  width: 1220px;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 560px) {
  .inside {
    padding: 0 15px;
  }
}

.hidden-element {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

section {
  box-sizing: border-box;
  padding: 1px 0;
}

.close-all {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  z-index: -100;
  opacity: 0;
  cursor: pointer;
  transition: 0.3s;
  visibility: hidden;
}
.close-all.active {
  z-index: 900;
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}

.mob {
  display: none !important;
}

/*base*/
.header {
  margin-bottom: 8px;
  padding: 26px 42px;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 1080px) {
  .header {
    padding: 26px 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .header .fake {
    display: none;
  }
}
@media screen and (max-width: 720px) {
  .header {
    padding: 10px 15px;
  }
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 50px;
}
.header-right .button {
  padding: 8px 20px;
}
@media screen and (max-width: 720px) {
  .header-right .button {
    display: none;
  }
}

.lang {
  position: relative;
}
@media screen and (max-width: 720px) {
  .lang {
    display: none;
  }
}
.lang.active .lang__select svg {
  transform: rotate(180deg);
}
.lang.active .lang__drop {
  display: flex;
}
.lang__select {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 20px;
  color: var(--red);
  cursor: pointer;
}
.lang__select svg {
  transition: 0.3s;
}
.lang__drop {
  padding: 10px 5px;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e1e1e1;
  border-radius: 2px;
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  background-color: #fff;
  z-index: 1000;
}
.lang__drop-item {
  cursor: pointer;
  color: var(--text);
  transition: 0.3s;
}
.lang__drop-item.active, .lang__drop-item:hover {
  color: var(--red);
}

.logo {
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .logo {
    text-align: left;
  }
}
@media screen and (max-width: 720px) {
  .logo {
    width: 188px;
  }
}
.logo svg,
.logo img {
  max-width: 100%;
}

.toggler {
  display: none;
}
@media screen and (max-width: 720px) {
  .toggler {
    display: block;
  }
}

@media screen and (max-width: 720px) {
  .nav {
    display: none;
  }
}
.nav__list {
  display: flex;
  justify-content: center;
  gap: 100px;
}
@media screen and (max-width: 1080px) {
  .nav__list {
    padding: 0 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.nav__item {
  position: relative;
  font-weight: 600;
  color: var(--text);
  transition: 0.3s;
}
.nav__item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
  opacity: 0;
}
.nav__item:hover::before {
  opacity: 1;
}
.nav__item.active {
  color: var(--red);
}
.nav__item.active::before {
  background: var(--red);
  opacity: 1;
}

.authorization {
  margin: 20px;
  padding: 8px 20px;
  width: calc(100% - 40px);
}

.hero-section {
  padding-top: 126px;
  padding-bottom: 116px;
}
@media screen and (max-width: 1080px) {
  .hero-section {
    padding: 42px 0;
  }
}
@media screen and (max-width: 720px) {
  .hero-section {
    padding: 4px 0;
    padding-bottom: 28px;
  }
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 45px;
}
@media screen and (max-width: 720px) {
  .hero {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 8px;
  }
}

@media screen and (max-width: 1080px) {
  .hero-text {
    padding-top: 18px;
  }
}
@media screen and (max-width: 1080px) {
  .hero-text .title {
    font-size: 20px;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 720px) {
  .hero-text .title {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
@media screen and (max-width: 1080px) {
  .hero-text .title-text {
    font-size: 16px;
    line-height: 140%;
  }
}
@media screen and (max-width: 720px) {
  .hero-text .title-text {
    font-size: 14px;
  }
}

.hero-blocks {
  margin-left: -3px;
  padding-top: 10px;
}

.hero-block {
  margin-left: 14px;
  margin-right: auto;
  padding: 15px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 271px;
  height: 124px;
  font-weight: 700;
  text-align: right;
  line-height: 120%;
  color: var(--white);
  background: #202128;
  transition: 0.3s;
}
@media screen and (max-width: 1080px) {
  .hero-block {
    margin-left: 38px;
  }
}
@media screen and (max-width: 720px) {
  .hero-block {
    margin-left: 16px;
  }
}
.hero-block::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -14px;
  width: 14px;
  height: 14px;
  background: #202128;
  transition: 0.3s;
}
.hero-block:hover {
  background: var(--red);
}
.hero-block:hover::before {
  background: var(--red);
}
.hero-block--type2 {
  margin-left: auto;
  margin-right: 14px;
  color: var(--text);
  background: #d3d5d9;
}
.hero-block--type2 svg rect {
  transition: 0.3s;
}
.hero-block--type2:hover {
  color: var(--white);
  background: var(--red);
}
.hero-block--type2:hover svg rect {
  fill: var(--white);
}
.hero-block--type2:hover::before {
  background: var(--red);
}
@media screen and (max-width: 1080px) {
  .hero-block--type2 {
    margin-top: 18px;
    margin-right: 38px;
  }
}
@media screen and (max-width: 720px) {
  .hero-block--type2 {
    margin-top: 12px;
    margin-right: 16px;
  }
}
.hero-block--type2::before {
  top: 30px;
  right: -14px;
  left: auto;
  background: #d3d5d9;
}
.hero-block__inside {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.logo-line-wrap {
  overflow: hidden;
  background: var(--red);
}

.logo-line {
  padding: 15px;
  display: flex;
  gap: 160px;
  animation: scroll 36s linear 0s infinite normal none running;
  will-change: transform;
  transition: 0.3s;
}
@media screen and (max-width: 1080px) {
  .logo-line {
    gap: 120px;
    animation-duration: 15s;
  }
}
@media screen and (max-width: 720px) {
  .logo-line {
    padding: 14px;
    gap: 60px;
    animation-duration: 10s;
  }
}
.logo-line__item {
  font-weight: 700;
  font-size: 30px;
  color: var(--white);
}
@media screen and (max-width: 720px) {
  .logo-line__item {
    font-size: 20px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.slider-header {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 1080px) {
  .slider-header {
    flex-wrap: wrap;
    gap: 20px 4px;
  }
}
@media screen and (max-width: 720px) {
  .slider-header--desktop {
    display: none;
  }
}

.slider-header-tabs {
  padding-bottom: 10px;
  display: inline-flex;
  align-items: stretch;
  gap: 24px;
  border-bottom: 3px solid var(--seryy);
}
@media screen and (max-width: 720px) {
  .slider-header-tabs {
    gap: 12px;
    text-align: left;
  }
}
.slider-header-tabs__item {
  position: relative;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 720px) {
  .slider-header-tabs__item {
    font-size: 14px;
  }
}
.slider-header-tabs__item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 100%;
  height: 3px;
  background: var(--red);
  opacity: 0;
  z-index: 10;
  transition: 0.3s;
}
.slider-header-tabs__item:hover {
  color: var(--red);
}
.slider-header-tabs__item.active {
  font-weight: 700;
}
.slider-header-tabs__item.active::before {
  opacity: 1;
}

.slider-header-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1080px) {
  .slider-header-buttons {
    margin-left: auto;
  }
}
@media screen and (max-width: 720px) {
  .slider-header-buttons {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }
}

.slider-header-nav {
  display: flex;
}

.partner-programs-slider,
.services-slider {
  padding: 10px 0;
  height: 280px;
}
@media screen and (max-width: 720px) {
  .partner-programs-slider,
  .services-slider {
    height: 265px;
  }
}

.grid-slide {
  padding: 10px;
  height: 120px;
  display: flex;
  gap: 10px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  background: #f9f9f9;
  transition: 0.3s;
}
.grid-slide:hover {
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.25);
  transform: scale(1.01);
}
.grid-slide__photo {
  min-width: 100px;
  width: 100px;
  height: 100px;
  border-radius: 2px;
}
.grid-slide__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.grid-slide__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}
.grid-slide__title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  text-align: left;
}
.tags__item {
  font-size: 12px;
  color: var(--red);
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
}
.rating__score {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.rating__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.rating__quantity {
  font-size: 12px;
  color: var(--seryy);
}
.rating__text {
  font-weight: 700;
  font-size: 14px;
}

@media screen and (max-width: 720px) {
  .big-logo-section .slider-header {
    display: none;
  }
}

.big-logo-slider img,
.big-logo-slider2 img {
  max-width: 100%;
}

.blog-slider {
  padding: 10px 0;
}

.blog-slide {
  background: var(--white);
  transition: 0.3s;
}
.blog-slide:hover {
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.25);
  transform: scale(1.01);
}
.blog-slide__photo {
  width: 100%;
  height: 190px;
  border-radius: 3px 3px 0 0;
}
@media screen and (max-width: 1080px) {
  .blog-slide__photo {
    height: 174px;
  }
}
.blog-slide__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px 3px 0 0;
}
.blog-slide__info {
  padding: 20px;
  text-align: left;
  border: 1px solid #e1e1e1;
  border-top: none;
  border-radius: 0 0 3px 3px;
}
.blog-slide__title {
  margin-bottom: 8px;
  min-height: 60px;
  color: var(--text);
  font-weight: 700;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.blog-slide__title:hover {
  color: var(--red);
}
.blog-slide__text {
  margin-bottom: 10px;
  min-height: 68px;
  font-size: 14px;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}
.blog-slide__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-slide__footer .tags__item {
  font-size: 14px;
}
.blog-slide__date {
  font-size: 14px;
}

.reviews-slider {
  padding: 10px 0;
}
.reviews-slider .swiper-wrapper {
  align-items: stretch;
}
.reviews-slider .swiper-slide {
  height: auto;
}

.reviews-slide {
  padding: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 3px;
  background: var(--white);
  transition: 0.3s;
}
.reviews-slide:hover {
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.25);
  transform: scale(1.01);
}
.reviews-slide:hover .reviews-slide__title {
  color: var(--red);
}
.reviews-slide__header {
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 20px;
}
@media screen and (max-width: 720px) {
  .reviews-slide__header {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
}
.reviews-slide__header-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
}
.reviews-slide__photo {
  width: 100%;
  height: 100px;
  border-radius: 3px;
}
.reviews-slide__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}
.reviews-slide__info {
  text-align: left;
}
.reviews-slide__title {
  margin-bottom: 8px;
  padding-top: 2px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
  text-align: left;
}
.reviews-slide__text {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 13;
}
@media screen and (max-width: 720px) {
  .reviews-slide__text {
    -webkit-line-clamp: 9;
  }
}
.reviews-slide__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 720px) {
  .reviews-slide__footer {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
  }
}
.reviews-slide__footer .tags__item {
  font-size: 14px;
}
.reviews-slide__date {
  font-size: 14px;
}
.reviews-slide__user {
  display: flex;
  align-items: center;
  gap: 5px;
}
.reviews-slide__user-photo {
  min-width: 30px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.reviews-slide__user-photo img,
.reviews-slide__user-photo svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews-slide__user-name {
  font-weight: 700;
  font-size: 14px;
}

footer {
  padding: 50px 42px;
  display: grid;
  grid-template-columns: 7.75fr 2.92fr 3.14fr 4.39fr;
  color: var(--white);
  text-align: left;
  background: var(--red);
}
@media screen and (max-width: 1560px) {
  footer {
    grid-template-columns: 5.75fr 2.92fr 3.14fr 4.39fr;
  }
}
@media screen and (max-width: 1180px) {
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 720px) {
  footer {
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
footer > * {
  padding: 0 48px;
  border-right: 1px solid var(--white);
}
@media screen and (max-width: 1560px) {
  footer > * {
    padding: 0 24px;
  }
}
@media screen and (max-width: 1180px) {
  footer > * {
    padding: 0;
    border: none;
  }
}
footer > *:first-child {
  padding-left: 0;
}

.footer-logo {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 40px;
  color: var(--white);
}
@media screen and (max-width: 1180px) {
  .footer-logo {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 720px) {
  .footer-logo {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1180px) {
  .footer-info {
    grid-column: span 2;
  }
}
@media screen and (max-width: 1180px) {
  .footer-info.desktop .footer-info__text {
    display: none;
  }
}
@media screen and (max-width: 1180px) {
  .footer-info.desktop .footer-info__privacy-policy {
    display: none;
  }
}
.footer-info.mob {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  .footer-info.mob {
    display: block !important;
  }
}
@media screen and (max-width: 720px) {
  .footer-info.mob {
    margin-top: 0;
    text-align: left;
  }
}
.footer-info__text {
  margin-bottom: 42px;
  font-size: 14px;
  line-height: 120%;
  color: var(--white);
}
.footer-info__text a {
  color: var(--white);
  text-decoration: underline;
}
.footer-info__text a:hover {
  text-decoration: none;
}
.footer-info__privacy-policy {
  color: var(--white);
}

.footer-title {
  margin-bottom: 28px;
  width: 100%;
  font-weight: 700;
  font-size: 18px;
}

@media screen and (max-width: 1180px) {
  .footer-nav {
    padding-left: 10px;
    border-right: 1px solid var(--white);
  }
}
@media screen and (max-width: 720px) {
  .footer-nav {
    margin-bottom: 20px;
    padding-bottom: 30px;
    padding-left: 0;
    border: none;
    border-bottom: 1px solid var(--white);
  }
}
.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-nav__item {
  color: var(--white);
}
.footer-nav__item:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1180px) {
  .footer-soc {
    margin-left: auto;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media screen and (max-width: 720px) {
  .footer-soc {
    margin-left: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
    max-width: 100%;
    border-bottom: 1px solid var(--white);
  }
}
.footer-soc__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-soc__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.footer-soc__item:hover {
  text-decoration: underline;
}
.footer-soc__item svg {
  min-width: 30px;
  width: 30px;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-form {
  padding-right: 0;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  border-right: none;
}
@media screen and (max-width: 1180px) {
  .footer-form {
    margin-top: 42px;
    align-items: center;
    grid-column: span 2;
  }
}
@media screen and (max-width: 720px) {
  .footer-form {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--white);
  }
}
@media screen and (max-width: 1180px) {
  .footer-form .footer-title {
    text-align: center;
  }
}
@media screen and (max-width: 720px) {
  .footer-form .footer-title {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
.footer-form__input {
  margin-bottom: 10px;
  width: 100%;
}
@media screen and (max-width: 1180px) {
  .footer-form__input {
    margin-left: auto;
    margin-right: auto;
    max-width: 390px;
  }
}
@media screen and (max-width: 720px) {
  .footer-form__input {
    max-width: 100%;
  }
}
.footer-form__input input {
  padding: 0 15px;
  width: 100%;
  height: 50px;
  border: 1px solid var(--white);
  border-radius: 2px;
}
.footer-form__input input::-moz-placeholder {
  opacity: 0.5;
}
.footer-form__input input::placeholder {
  opacity: 0.5;
}
@media screen and (max-width: 720px) {
  .footer-form .button {
    margin-left: auto;
  }
}

.categories {
  padding: 8px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-radius: 3px;
  background: var(--white);
}
@media screen and (max-width: 720px) {
  .categories {
    padding: 10px;
    gap: 6px;
  }
}
.categories__item {
  padding: 9px 19px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  border: 1px solid var(--seryy);
  border-radius: 2px;
  background: var(--fon-knopok);
  transition: 0.3s;
}
@media screen and (max-width: 720px) {
  .categories__item {
    font-size: 12px;
  }
}
.categories__item.active, .categories__item:hover {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.services-header {
  margin: 30px 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media screen and (max-width: 720px) {
  .services-header {
    margin-bottom: 6px;
    justify-content: space-between;
  }
}

.filter-button-open {
  display: none;
}
@media screen and (max-width: 720px) {
  .filter-button-open {
    padding: 7px;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 12px;
    color: var(--white);
    background: var(--red);
  }
}

.services-wrap {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
}
@media screen and (max-width: 720px) {
  .services-wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
}
@media screen and (max-width: 1220px) {
  .services-wrap .tags__item:nth-child(n+5) {
    display: none;
  }
}
@media screen and (max-width: 720px) {
  .services-wrap .tags__item:nth-child(n+3) {
    display: none;
  }
}
.services-wrap .tags__item--more {
  display: block !important;
}

.services-filter {
  padding: 20px 18px;
  border: 1px solid #e1e1e1;
  background: #f9f9f9;
  transition: 0.3s;
}
@media screen and (max-width: 720px) {
  .services-filter {
    position: fixed;
    left: -100dvw;
    top: 0;
    width: 100dvw;
    height: 100dvh;
    overflow-y: auto;
    z-index: 10000;
  }
}
@media screen and (max-width: 720px) {
  .services-filter.active {
    left: 0;
  }
}

.filter-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 100;
}
@media screen and (max-width: 720px) {
  .filter-close {
    display: block !important;
  }
}

.filter-close-button {
  margin-top: 20px;
  margin-left: -20px;
  margin-right: -20px;
  padding: 20px;
  padding-bottom: 0;
  width: calc(100% + 20px + 20px);
  border-top: 1px solid #e1e1e1;
}
.filter-close-button .button {
  width: 100%;
}
@media screen and (max-width: 720px) {
  .filter-close-button {
    display: block !important;
  }
}

.filter-title {
  margin-bottom: 24px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--seryy);
}
@media screen and (max-width: 720px) {
  .filter-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.filter-title__text {
  font-weight: 700;
  font-size: 18px;
}
.filter-title__clear {
  font-size: 16px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: var(--text);
}
.filter-title__clear:hover {
  text-decoration: none;
}

.filter-selected {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--seryy);
}
.filter-selected__title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-selected__title {
  margin-bottom: 10px;
  font-weight: 600;
}
.filter-selected__quantity {
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--seryy);
}
.filter-selected__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}
.filter-selected__list-item {
  padding: 6px 4px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: var(--text);
  border-radius: 2px;
  background: #f0f0f0;
}
.filter-selected__list-item span {
  padding-right: 2px;
  font-weight: 600;
}
.filter-selected__list-item svg {
  display: block;
}
.filter-selected__list-item button {
  margin-left: 10px;
}

.filter-item + .filter-item {
  margin-top: 20px;
}
.filter-item__title {
  margin-bottom: 15px;
  font-weight: 600;
  text-align: left;
}
.filter-item__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-item__more {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--seryy);
}
.filter-item__more svg path {
  transition: 0.3s;
}
.filter-item__more:hover {
  color: var(--red);
}
.filter-item__more:hover svg path {
  fill: var(--red);
}

.services {
  text-align: left;
}
.services__title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 30px;
  line-height: 140%;
}
@media screen and (max-width: 720px) {
  .services__title {
    font-size: 22px;
  }
}
.services__text {
  margin-bottom: 20px;
  color: #000;
  line-height: 130%;
}
@media screen and (max-width: 720px) {
  .services__text {
    font-size: 14px;
  }
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-item {
  padding: 8px;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  background: var(--white);
  transition: 0.3s;
}
.services-item:hover {
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.25);
}
.services-item__header {
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 10px;
}
.services-item__logo {
  width: 100px;
  height: 100px;
  border-radius: 2px;
}
.services-item__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}
.services-item__info {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-item__title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
}
.services-item__description {
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 140%;
  color: var(--text);
}
@media screen and (max-width: 720px) {
  .services-item__description {
    line-height: 130%;
  }
}
.services-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.services-item__footer-link {
  font-size: 12px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: var(--text);
}
.services-item__footer-link:hover {
  text-decoration: none;
}

.services-one-wrap {
  position: sticky;
  top: 0;
  display: grid;
  align-items: flex-start;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
}
@media screen and (max-width: 720px) {
  .services-one-wrap {
    grid-template-columns: minmax(0, 1fr);
    position: static;
  }
}

.services-one-bar {
  position: sticky;
  top: 0;
  padding: 20px 19px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  background: #f9f9f9;
}
@media screen and (max-width: 720px) {
  .services-one-bar {
    padding: 14px 12px;
    position: static;
  }
}
.services-one-bar__logo {
  margin-bottom: 10px;
  width: 100%;
  height: 100px;
}
@media screen and (max-width: 720px) {
  .services-one-bar__logo {
    height: 125px;
  }
}
.services-one-bar__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-one-bar__info-item {
  font-size: 12px;
  text-align: left;
}
.services-one-bar__info-item + .services-one-bar__info-item {
  margin-top: 24px;
}
.services-one-bar__info-item-title {
  margin-bottom: 8px;
  font-weight: 700;
}
.services-one-bar__info-item-text {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.services-one-bar__info-item-text a {
  text-decoration: underline;
  color: var(--text);
}
.services-one-bar__info-item-text a:hover {
  text-decoration: none;
}
.services-one-bar__soc-wrap {
  margin: 10px auto;
  padding: 10px;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  text-align: left;
}
.services-one-bar__soc-title {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 14px;
}
.services-one-bar__soc-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.services-one-bar__soc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  text-decoration: underline;
  color: var(--text);
}
.services-one-bar__soc:hover {
  text-decoration: none;
}

.services-one-reviews {
  margin-top: 30px;
  padding: 20px;
  text-align: left;
  border-radius: 3px;
  background: var(--white);
}
@media screen and (max-width: 720px) {
  .services-one-reviews {
    padding: 14px;
  }
}
.services-one-reviews__title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 30px;
  line-height: 140%;
}
@media screen and (max-width: 720px) {
  .services-one-reviews__title {
    font-size: 22px;
  }
}
.services-one-reviews__header {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.services-one-reviews__header .rating {
  gap: 10px;
}
.services-one-reviews__header .rating__score {
  font-size: 18px;
}
.services-one-reviews__header .rating__stars {
  gap: 3px;
}
.services-one-reviews__header .rating__stars svg {
  width: 20px;
  height: 20px;
}
.services-one-reviews__header .rating__quantity {
  font-size: 16px;
}
.services-one-reviews .pagination {
  margin-top: 30px;
  margin-bottom: 0;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reviews {
  padding: 18px;
  border: 1px solid var(--fon-knopok);
  border-radius: 3px;
}
@media screen and (max-width: 720px) {
  .reviews {
    padding: 14px;
  }
}
.reviews__header {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviews__user {
  display: flex;
  align-items: center;
  gap: 5px;
}
.reviews__user-photo {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.reviews__user-photo svg,
.reviews__user-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
.reviews__user-name {
  font-weight: 700;
  font-size: 14px;
}
.reviews__date {
  font-size: 14px;
}
.reviews__description {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 125%;
}
@media screen and (max-width: 720px) {
  .reviews__description {
    line-height: 120%;
  }
}
.reviews__photo-list {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.reviews__photo {
  cursor: pointer;
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 720px) {
  .reviews__photo {
    width: 44px;
    height: 44px;
  }
}
.reviews__photo svg,
.reviews__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}
.reviews__rating-wrap {
  margin-bottom: 22px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.reviews__rating-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  border-top: 1px dashed #d9d9d9;
  z-index: 1;
}
.reviews__rating-wrap .rating {
  position: relative;
  z-index: 10;
  gap: 10px;
  background: var(--white);
}
.reviews__rating-wrap .rating__score {
  font-weight: 700;
  font-size: 16px;
}
.reviews__rating-wrap .rating__stars {
  gap: 3px;
}
.reviews__rating-wrap .rating__stars svg {
  width: 15px;
  height: 15px;
}
.reviews__rating {
  position: relative;
  z-index: 10;
  font-weight: 700;
  font-size: 14px;
  background: var(--white);
}
.reviews__answer {
  padding: 18px 10px;
  padding-bottom: 10px;
  font-size: 14px;
  border-radius: 3px;
  background: #f0f0f0;
}
@media screen and (max-width: 720px) {
  .reviews__answer {
    padding-top: 16px;
  }
}
.reviews__answer-header {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 720px) {
  .reviews__answer-header {
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.reviews__answer-title {
  font-weight: 700;
  font-size: 12px;
}
.reviews__answer-title span {
  font-size: 14px;
}
.reviews__answer-text {
  line-height: 120%;
}

.services-one-form-wrap {
  margin-top: 30px;
  padding: 20px;
  text-align: left;
  border-radius: 3px;
  background: var(--white);
}

.services-one-form-title {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 30px;
  line-height: 140%;
}
@media screen and (max-width: 720px) {
  .services-one-form-title {
    font-size: 22px;
  }
}

.rating-form {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 720px) {
  .rating-form {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
.rating-form::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 100%;
  height: 1px;
  border-top: 1px dashed #d9d9d9;
  z-index: 1;
}
.rating-form__title {
  position: relative;
  z-index: 10;
  font-weight: 700;
  font-size: 18px;
  background: var(--white);
}
.rating-form .rating {
  position: relative;
  z-index: 10;
  gap: 10px;
  background: var(--white);
}
.rating-form .rating__score {
  font-weight: 700;
  font-size: 16px;
}
.rating-form .rating__stars {
  gap: 5px;
}
.rating-form .rating__stars svg {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
@media screen and (max-width: 720px) {
  .rating-form .rating__stars svg {
    width: 45px;
    height: 45px;
  }
}

.blog-header {
  margin-top: 32px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px 150px;
  gap: 20px;
}
@media screen and (max-width: 720px) {
  .blog-header {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media screen and (max-width: 720px) {
  .blog-header .search-input-wrap {
    grid-column: span 2;
  }
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media screen and (max-width: 1080px) {
  .blog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 720px) {
  .blog-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.blog-plug {
  text-align: left;
}
.blog-plug__title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 30px;
  line-height: 140%;
}
@media screen and (max-width: 720px) {
  .blog-plug__title {
    font-size: 22px;
  }
}
.blog-plug__popular {
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-plug__popular span {
  font-weight: 700;
}
.blog-plug__popular a {
  font-size: 16px;
  text-decoration: underline;
  color: var(--text);
}
.blog-plug__popular a:hover {
  color: var(--red);
}
.blog-plug__title-list {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 18px;
}
.blog-plug__list {
  margin-bottom: 32px;
}
@media screen and (max-width: 720px) {
  .blog-plug__list {
    font-size: 14px;
  }
}
.blog-plug__list li {
  position: relative;
  padding-left: 15px;
  font-size: 14px;
}
.blog-plug__list li + li {
  margin-top: 13px;
}
@media screen and (max-width: 720px) {
  .blog-plug__list li + li {
    margin-top: 6px;
  }
}
.blog-plug__list li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 4px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--red);
}

.blog-one-wrap {
  display: grid;
  align-items: flex-start;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 20px;
}
@media screen and (max-width: 720px) {
  .blog-one-wrap {
    grid-template-columns: minmax(0, 1fr);
  }
}

.blog-one-bar {
  padding: 24px 22px;
  text-align: left;
  border-radius: 3px;
  background: var(--white);
}
.blog-one-bar__title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
}
.blog-one-bar__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-one-bar__list .blog-slide__photo {
  height: 120px;
}
@media screen and (max-width: 720px) {
  .blog-one-bar__list .blog-slide__photo {
    height: 145px;
  }
}
.blog-one-bar__list .blog-slide__info {
  padding: 0;
  padding-top: 8px;
  border: none;
}
.blog-one-bar__list .blog-slide__title {
  min-height: 40px;
  font-size: 12px;
}
.blog-one-bar__list .blog-slide__date {
  font-size: 12px;
}
.blog-one-bar__list .blog-slide__footer .tags__item {
  font-size: 12px;
}

.text-page-wrap {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
}
@media screen and (max-width: 720px) {
  .text-page-wrap {
    grid-template-columns: minmax(0, 1fr);
  }
}

.text-page-nav {
  position: sticky;
  top: 0;
  padding: 20px 30px;
  text-align: left;
  border-radius: 3px;
  background: var(--white);
}
@media screen and (max-width: 720px) {
  .text-page-nav {
    padding: 20px;
    position: static;
  }
}
.text-page-nav__title {
  position: relative;
  font-weight: 700;
  font-size: 18px;
}
.text-page-nav__title.active::before {
  transform: translateY(-50%) rotate(0);
}
.text-page-nav__title::before {
  display: none;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 9px;
  transform: translateY(-50%) rotate(180deg);
  background: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.67326 0.793936L0.940323 6.52717C0.575448 6.89187 0.575448 7.48316 0.940323 7.84768C1.30487 8.21223 1.89614 8.21223 2.26066 7.84768L7.33349 2.77485L12.406 7.84768C12.7707 8.21223 13.3619 8.21223 13.7265 7.84768C14.0912 7.48313 14.0912 6.89187 13.7265 6.52717L7.99354 0.793936C7.81117 0.61166 7.57242 0.520626 7.33355 0.520626C7.09456 0.520626 6.85563 0.611838 6.67335 0.794083' fill='%23CB3141' /%3E%3C/svg%3E") no-repeat center 0;
  transition: 0.3s;
}
@media screen and (max-width: 720px) {
  .text-page-nav__title::before {
    display: block;
  }
}
.text-page-nav__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 14px;
}
@media screen and (max-width: 720px) {
  .text-page-nav__list {
    gap: 12px;
    display: none;
  }
}
@media screen and (max-width: 720px) {
  .text-page-nav__list.active {
    display: flex;
  }
}
.text-page-nav__list a {
  color: var(--text);
}
@media screen and (max-width: 720px) {
  .text-page-nav__list a {
    text-decoration: underline;
  }
}
.text-page-nav__list a:hover {
  color: var(--red);
}

.text-page .text-block {
  padding: 0;
  background: none;
}
.text-page .text-block hr {
  margin: 50px auto;
}
@media screen and (max-width: 720px) {
  .text-page .text-block hr {
    margin: 30px auto;
  }
}

.error-page__code {
  margin-top: -40px;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: clamp(160px, 33vw, 356px);
  color: var(--red);
}
@media screen and (max-width: 1080px) {
  .error-page__code {
    margin-top: -24px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 720px) {
  .error-page__code {
    margin-bottom: 32px;
  }
}
.error-page__title {
  margin-bottom: 26px;
  font-weight: 700;
  font-size: 36px;
}
@media screen and (max-width: 720px) {
  .error-page__title {
    font-size: 22px;
  }
}
.error-page__text {
  margin: 0 auto;
  margin-bottom: 20px;
  width: 800px;
  max-width: 100%;
  line-height: 120%;
}

.reviews-photo-modal-slider {
  width: 100%;
  height: 100%;
}
.reviews-photo-modal-slider .swiper-slide {
  height: 100%;
}
.reviews-photo-modal-slider .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
.reviews-photo-modal-slider .slider-arrow--prev {
  left: 0px;
}
.reviews-photo-modal-slider .slider-arrow--next {
  right: 0px;
}

.reviews-photo-modal-slide {
  position: relative;
  padding-top: 0;
  padding-bottom: 64px;
  padding-left: 20px;
  padding-right: 20px;
  height: 100%;
}
.reviews-photo-modal-slide__photo {
  height: 100%;
  text-align: center;
}
.reviews-photo-modal-slide__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.reviews-photo-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviews-photo-modal-header .modal-close {
  position: static;
}
.reviews-photo-modal-header .slider-pagination {
  margin: 0;
  width: auto;
  color: var(--white);
  font-size: 0;
}

.reviews-photo-modal-slide-footer {
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  color: var(--white);
}
@media screen and (max-width: 720px) {
  .reviews-photo-modal-slide-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.reviews-photo-modal-slide-footer__user {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 720px) {
  .reviews-photo-modal-slide-footer__user {
    order: 2;
  }
}
.reviews-photo-modal-slide-footer .rating {
  justify-content: center;
}
@media screen and (max-width: 720px) {
  .reviews-photo-modal-slide-footer .rating {
    order: 1;
    width: 100%;
  }
}
.reviews-photo-modal-slide-footer .rating__stars svg {
  width: 15px;
  height: 15px;
}
.reviews-photo-modal-slide-footer__date {
  font-size: 14px;
  text-align: right;
}
@media screen and (max-width: 720px) {
  .reviews-photo-modal-slide-footer__date {
    order: 3;
  }
}

.modal .reviews__rating-wrap {
  margin-bottom: 0;
}

.modal-close-button-wrap {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}/*# sourceMappingURL=style.css.map */