@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

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

a {
  color: inherit;
}

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

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
}
/*функция для подсчета clamp*/
/*Миксин для скрытия поля*/
html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  --bg-color: #ffffff;
  --main-color: #201e1a;
  --white-color: #ffffff;
  --blue-100-color: #6395c6;
  --blue-200-color: #316394;
  --blue-300-color: #065696;
  --blue-400-color: #003878;
  --gray-100-color: #f4f6fb;
  --gray-200-color: #e0e2e7;
  --gray-300-color: #d3d8e3;
  --gray-400-color: #b7bdc9;
  --gray-500-color: #b1b1b1;
  --gray-600-color: #7c7e83;
  --gray-700-color: #a3a4a8;
  --gray-800-color: #afb3ba;
  --brown-color: #7a7a7a;
  --brown-100-color: #606165;
  --red-color: #b3261e;
  --red-color-100: #ff0e00;
  --red-color-200: #ff4f4f;
  --orange-color: #ff8000;
  --linear-gradient-main: linear-gradient(
    107.08deg,
    #636eb8 7.42%,
    #bae7e9 98.3%
  );
  --container-inline-padding: clamp(20px, 13.3101045296px + 1.393728223vw, 24px);
  --container-width: calc(1900px + (var(--container-inline-padding) * 2));
  --gap-blocks: clamp(60px, 7.0588235294px + 11.0294117647vw, 120px);
  --border-radius-big: 24px;
  --border-radius-middle: 20px;
  --border-radius-s: 16px;
  --border-radius-small: 8px;
}

body {
  font-size: 16px;
  line-height: 1;
  background-color: var(--bg-color);
  color: var(--main-color);
  font-weight: 400;
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  position: relative;
}
body:before {
  content: "";
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3215686275);
  opacity: 0;
  visibility: hidden;
}
body.static-header .header {
  position: static;
}
body.static-header .main {
  padding-top: clamp(12px, -2.1477272727px + 3.4090909091vw, 24px);
}

html.open-modal body {
  overflow: hidden;
}
html.open-decor body:before {
  opacity: 1;
  visibility: visible;
}

.wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header:has(.dropdown--tel.active) ~ .main {
  padding-top: calc(var(--header-height, 80px) + 8px);
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: var(--header-height, 80px);
}
.main section {
  margin-bottom: var(--gap-blocks);
}
.main section.section-margin-small {
  margin-bottom: 60px;
}
.main section.section-no-margin {
  margin-bottom: 0;
}
.main section.margin-80-20 {
  margin-bottom: clamp(20px, -50.7386363636px + 17.0454545455vw, 80px);
}
.main--big {
  padding-top: calc(var(--header-height, 80px) + 8px);
}
.main--details {
  padding-top: calc(var(--header-height, 80px) + clamp(12px, -2.1477272727px + 3.4090909091vw, 24px));
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-inline: var(--container-inline-padding);
}

.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.topBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(24px, -23.9375px + 6.25vw, 40px);
}
.topBox__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.topBox__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.topBox--small {
  gap: 24px;
}
@media (max-width: 767px) {
  .topBox--media-flex .topBox__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.gray-section {
  background-color: var(--gray-100-color);
}

.gray-text {
  color: var(--gray-500-color);
}

a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover {
  opacity: 0.6;
}
a.accent-link:hover {
  opacity: 1;
  color: var(--blue-100-color);
}

.icon-plus {
  width: 24px;
  height: 24px;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.icon-plus:before, .icon-plus:after {
  position: absolute;
  content: "";
  background-color: #fff;
  border-radius: 100px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.icon-plus:before {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 2px;
}
.icon-plus:after {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 100%;
}
.icon-plus--accent:before, .icon-plus--accent:after {
  background-color: var(--blue-300-color);
}

.list-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.list-box__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 20px;
  gap: 2px;
}
.list-box__content li {
  list-style: none;
  position: relative;
}
.list-box__content li::before {
  position: absolute;
  content: "";
  left: -15px;
  width: 6px;
  height: 6px;
  background-color: var(--gray-600-color);
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  top: 7px;
}

.block-gradient-main {
  background-image: var(--linear-gradient-main);
  background-color: transparent;
}

@media (max-width: 1023px) {
  body .media-laptop-none {
    display: none;
  }
}

@media (max-width: 767px) {
  body .media-modile-none {
    display: none;
  }
}

.fixed-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: fixed;
  z-index: 100;
  left: 20px;
  right: 20px;
  bottom: 20px;
}
.fixed-block > * {
  position: static !important;
}

.details-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.details-btns > * {
  background-color: transparent;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.favorite-icon:hover path {
  fill: var(--blue-300-color);
  stroke: var(--blue-300-color);
}
.favorite-icon.active path {
  fill: var(--blue-300-color);
  stroke: var(--blue-300-color);
}

.fancybox__content {
  width: 90vw !important;
  height: 90vh !important;
}

.type-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

body main.main .box-type {
  display: none;
}
body main.main .box-type.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body main.main .box-type.active.box-type--grid {
  display: grid;
}
@media (max-width: 767px) {
  body main.main .box-type.active.box-type--grid.goods-items--noSwiper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

button[data-type].button svg path {
  fill: var(--main-color);
}

button[data-type].button:not(.button--gray) svg path {
  fill: var(--white-color);
}

.tippy-box {
  background-color: transparent;
  color: var(--main-color);
}

@media (max-width: 767px) {
  [data-tippy-root] .tippy-content {
    padding: 0;
  }
  [data-tippy-root] .good {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.open--menu {
  overflow: hidden;
}

.header {
  position: fixed;
  z-index: 999;
  width: 100%;
  left: 0;
  right: 0;
  padding: 20px 0;
  background-color: #fff;
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.header__logo {
  width: 100px;
  height: 40px;
}
.header__logo img,
.header__logo svg {
  width: 100%;
  height: 100%;
}
.header__detials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.header__content-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__detials--box {
    -webkit-box-ordinal-group: 1001;
        -ms-flex-order: 1000;
            order: 1000;
  }
  .header__content {
    margin-left: auto;
  }
}
@media (max-width: 359px) {
  .header__logo {
    width: 60px;
  }
}

.menu__burger-box {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu__burger-box span {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 10px;
}
.menu__burger-box span:before, .menu__burger-box span:after {
  position: absolute;
  content: "";
  background-color: var(--white-color);
  left: 0;
  height: 2px;
  right: 0;
  width: 100%;
  border-radius: 100px;
}
.menu__burger-box span:before {
  top: 0;
  -webkit-transition: top 0.5s, rotate 0.5s;
  transition: top 0.5s, rotate 0.5s;
}
.menu__burger-box span:after {
  bottom: 0;
  -webkit-transition: bottom 0.5s, rotate 0.5s;
  transition: bottom 0.5s, rotate 0.5s;
}
.menu__burger.open .menu__burger-box span:before {
  top: 50%;
  rotate: 45deg;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.menu__burger.open .menu__burger-box span:after {
  bottom: 50%;
  rotate: -45deg;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.menu__content {
  position: fixed;
  z-index: 999;
  left: 0;
  right: 0;
  bottom: 0;
  top: var(--header-height, 100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 30px;
  overflow: hidden;
  padding: 24px 0;
  max-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.menu.active .menu__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.menu .container {
  width: 100%;
}
.menu__inner {
  width: 100%;
  height: 100%;
}
.menu__decor {
  font-size: 328px;
  position: absolute;
  z-index: 3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  rotate: -90deg;
  right: -50px;
  bottom: 0;
  white-space: nowrap;
}
.menu__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  height: 100%;
  padding-left: 116px;
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.menu__list a {
  color: #fff;
}
.menu__items {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  max-width: 690px;
  width: 100%;
}
@media (max-width: 1439px) {
  .menu__items {
    max-width: clamp(352px, 102.7855421687px + 24.3373493976vw, 453px);
  }
}
@media (max-width: 1279px) {
  .menu__info {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .menu {
    -webkit-box-ordinal-group: 1001;
        -ms-flex-order: 1000;
            order: 1000;
  }
  .menu__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .menu__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
    padding-bottom: 24px;
  }
  .menu__burger {
    padding: 0 !important;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .menu__burger.button {
    border-radius: 12px;
  }
  .menu__burger-text {
    display: none;
  }
}

.breadcrumbs {
  margin-bottom: 24px;
}
.breadcrumbs .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.breadcrumbs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  color: var(--gray-400-color);
}
.breadcrumbs__item:not(:last-child) {
  padding-right: 13px;
}
.breadcrumbs__item:not(:last-child):before {
  position: absolute;
  content: "/";
  font-size: 14px;
  color: var(--gray-400-color);
  right: 0;
  top: 15%;
}

.scroll-box {
  position: fixed;
  top: 0;
  left: 0;
  top: 0;
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 4px 16px 0px rgba(53, 67, 81, 0.1490196078);
          box-shadow: 0px 4px 16px 0px rgba(53, 67, 81, 0.1490196078);
  width: 100%;
  z-index: 999;
  padding-block: 24px;
  border-bottom-left-radius: var(--border-radius-big);
  border-bottom-right-radius: var(--border-radius-big);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.scroll-box.scroll {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .scroll-box {
    padding-bottom: 16px;
  }
  .scroll-box .good-mini__footer, .scroll-box .good-mini__img {
    display: none;
  }
  .scroll-box .good-mini__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.top {
  height: calc(100vh - var(--header-height, 100));
  overflow: hidden;
  position: relative;
}
.top--full-photo {
  position: relative;
  border-radius: 0 0 var(--border-radius-big) var(--border-radius-big);
  padding: 7vh 0 24px;
}
.top--full-photo .top__inner {
  border-radius: 0;
  padding: 0;
  position: static;
}
@media (max-width: 1023px) {
  .top--full-photo {
    border-radius: 0;
  }
}
.top .container {
  height: 100%;
}
.top__inner {
  overflow: hidden;
  border-radius: var(--border-radius-big);
  padding: 18px 20px 24px;
  position: relative;
  height: 100%;
}
.top__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
  height: 100%;
}
.top__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  max-width: 614px;
  padding-top: 45px;
}
.top__info--noMax {
  max-width: 100%;
}
.top__info--padding-top {
  padding-top: 45px;
}
.top__info-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.top__img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.top__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top__items {
  max-width: clamp(336px, -483.7214137214px + 56.9646569647vw, 610px);
}
.top__items .swiper-wrapper {
  display: grid;
  gap: 16px;
}
@media (max-width: 1500px) {
  .top--full-photo {
    padding-block: 18px;
  }
  .top .swiper {
    height: 100%;
  }
}
@media (max-width: 1023px) {
  .top__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top .container {
    padding: 0;
  }
  .top__info {
    max-width: 100%;
    padding-inline: var(--container-inline-padding);
  }
  .top__items {
    max-width: 100%;
  }
  .top__items .swiper {
    width: 100%;
    padding-inline: var(--container-inline-padding);
  }
  .top__items .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
  .top__items .swiper-slide {
    height: auto;
  }
  .top__info--padding-top {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .top--full-photo {
    padding-block: 0;
    padding-bottom: 12px;
  }
  .top .card-details {
    min-height: 188px;
  }
}
@media (max-height: 800px) and (min-width: 1023px) {
  .top__items .swiper {
    height: 100% !important;
  }
  .top__items .swiper-wrapper {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
  }
  .top .card-details {
    min-height: 100%;
  }
}

.top-about .top__content {
  width: 100%;
}
.top-about .top__inner {
  padding-inline: 35px;
}
.top-about .top__info {
  width: 100%;
  padding: 0;
}
.top-about__content {
  margin: 0 auto;
}
.top-about__content img {
  max-width: 810px;
  width: 100%;
}

.h1 {
  font-size: 72px;
}
@media (max-width: 1439px) {
  .h1 {
    font-size: clamp(56px, 16.5204819277px + 3.8554216867vw, 72px);
  }
}
@media (max-width: 767px) {
  .h1 {
    font-size: clamp(36px, 18.3095823096px + 4.914004914vw, 56px);
  }
}

.h1-big {
  font-size: clamp(153px, -8.4289813486px + 13.1994261119vw, 245px);
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .h1-big {
    font-size: 110px;
  }
}
@media (max-width: 767px) {
  .h1-big {
    font-size: clamp(56px, -7.6647727273px + 15.3409090909vw, 110px);
  }
  .h1-big span {
    text-transform: none;
  }
}
@media (max-width: 359px) {
  .h1-big {
    font-size: 40px;
  }
}

.h2 {
  font-size: clamp(32px, 19.043902439px + 3.1219512195vw, 64px);
}

.h2-small {
  font-size: 56px;
}

.h3 {
  font-size: clamp(32px, 13.1363636364px + 4.5454545455vw, 48px);
}
@media (max-width: 360px) {
  .h3 {
    font-size: 24px;
  }
}

.h3-small {
  font-size: 42px;
}
@media (max-width: 1439px) {
  .h3-small {
    font-size: clamp(36px, 21.1951807229px + 1.4457831325vw, 42px);
  }
}

.h4 {
  font-size: clamp(32px, 22.1301204819px + 0.9638554217vw, 36px);
}
@media (max-width: 767px) {
  .h4 {
    font-size: clamp(24px, 14.5681818182px + 2.2727272727vw, 32px);
  }
}

.h5 {
  font-size: 32px;
}

.p1 {
  font-size: clamp(20px, 10.1301204819px + 0.9638554217vw, 24px);
}

.p2 {
  font-size: 18px;
}

.p5 {
  font-size: 14px;
}

.p6 {
  font-size: 12px;
}

.p24-16-767px-415px {
  font-size: clamp(16px, 6.5681818182px + 2.2727272727vw, 24px);
}

.p64-48-24 {
  font-size: clamp(48px, 29.765230312px + 2.3774145617vw, 64px);
}
@media (max-width: 767px) {
  .p64-48-24 {
    font-size: clamp(24px, -4.2954545455px + 6.8181818182vw, 48px);
  }
}

.p16-14 {
  font-size: clamp(14px, 11.6420454545px + 0.5681818182vw, 16px);
}

.medium-font {
  font-weight: 500;
}

.semiBold-font {
  font-weight: 600;
}

.bold-font {
  font-weight: 700;
}

.lh110P {
  line-height: 1.1;
}

.lh120P {
  line-height: 1.2;
}

.accent-color {
  color: var(--blue-300-color);
}

.gray-color {
  color: var(--gray-600-color);
}

.gray-color-400 {
  color: var(--gray-400-color);
}

.circle-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--blue-300-color);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: transparent;
}
.circle-btn .icon {
  width: 24px;
  height: 24px;
}
.circle-btn .icon img,
.circle-btn .icon svg {
  width: 100%;
  height: 100%;
}
.circle-btn .icon img path,
.circle-btn .icon svg path {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.circle-btn--blue {
  background-color: var(--blue-300-color);
}
.circle-btn:hover {
  background-color: var(--blue-300-color);
  color: #fff;
  opacity: 1;
}
.circle-btn:hover path {
  fill: #fff;
}
.circle-btn:active {
  background-color: var(--blue-400-color);
}
.circle-btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.circle-btn--mini {
  width: 32px;
  height: 32px;
}
.circle-btn--mini .icon {
  width: 16px;
  height: 16px;
}
.circle-btn--white {
  border-color: var(--white-color);
}
.circle-btn--white path {
  fill: var(--white-color);
}
.circle-btn--white:hover {
  background-color: var(--white-color);
}
.circle-btn--white:hover path {
  fill: var(--main-color);
}
.circle-btn--big {
  width: 48px;
  height: 48px;
}
.circle-btn--big .icon {
  width: 20px;
  height: 30px;
}
.circle-btn--noMassa {
  border: none;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  border-radius: var(--border-radius-big);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background-color: var(--blue-300-color);
  padding: 6px 24px;
  min-height: 40px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
.button .icon {
  width: 24px;
  height: 24px;
}
.button .icon img,
.button .icon svg {
  width: 100%;
  height: 100%;
}
.button:hover {
  background-color: var(--blue-400-color);
  opacity: 1;
}
.button.disabled {
  pointer-events: none;
  background-color: var(--gray-300-color);
  color: var(--gray-400-color);
}
.button--noBg {
  background-color: transparent;
  color: var(--blue-300-color);
  border: 1px solid var(--blue-300-color);
}
.button--noBg:hover {
  background-color: var(--blue-300-color);
  color: #fff;
}
.button--noBg:hover path {
  fill: initial;
}
.button--noBg:active {
  background-color: var(--blue-400-color);
}
.button--noBg.disabled {
  background-color: transparent;
  border-color: var(--gray-300-color);
}
.button--noBg.disabled path {
  fill: var(--gray-300-color);
}
.button--mini {
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  border-radius: var(--border-radius-small);
  padding: 0;
  min-height: 0;
}
.button--mini .icon {
  width: 15px;
  height: 13px;
}
.button--mini .icon img,
.button--mini .icon svg {
  width: 100%;
  height: 100%;
}
.button--white {
  background-color: #fff;
  color: var(--blue-300-color);
}
.button--white:hover, .button--white:active {
  background-color: var(--gray-300-color);
}
.button--white.disabled {
  background-color: var(--blue-200-color);
}
.button--gray {
  color: var(--main-color);
  background-color: var(--gray-100-color);
}
.button--gray:hover, .button--gray:active {
  background-color: var(--gray-300-color);
}
.button--gray.disabled {
  background-color: var(--blue-200-color);
}
.button--noMassa {
  padding: 0;
  min-height: auto;
  border: none;
  border-radius: 0;
  background-color: transparent;
}
.button--noMassa:hover, .button--noMassa:active {
  background-color: transparent;
  color: var(--blue-200-color);
}
.button--middle {
  min-height: 44px;
}
.button--big {
  min-height: 68px;
}
.button .icon path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-cub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: var(--border-radius-small);
  background-color: var(--blue-300-color);
  color: var(--white-color);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-cub:hover {
  opacity: 1;
}
.btn-cub .icon {
  width: 16px;
  height: 16px;
}
.btn-cub .icon svg,
.btn-cub .icon img {
  width: 100%;
  height: 100%;
}
.btn-cub--big {
  width: 48px;
  height: 48px;
  font-size: 20px;
  line-height: 1.2;
  border-radius: 12px;
}
.btn-cub--big .icon {
  width: 24px;
  height: 24px;
}
.btn-cub--big:hover {
  opacity: 1;
  border-color: var(--blue-100-color);
}
.btn-cub--noBg {
  background-color: transparent;
  border: 1px solid var(--gray-300-color);
  color: var(--blue-300-color);
}
.btn-cub--noMassa {
  background-color: transparent;
  border: 1px solid transparent;
}
.btn-cub--noMassa:hover {
  opacity: 1;
  border-color: var(--blue-100-color);
}
.btn-cub--middle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}
.btn-cub--middle .icon {
  width: 24px;
  height: 24px;
}
.btn-cub--border-accent {
  border-color: var(--blue-300-color);
}
.btn-cub--border-accent:hover {
  background-color: var(--blue-300-color);
}
.btn-cub--border-accent:hover .icon svg path {
  fill: #fff;
}
.btn-cub--white {
  background-color: var(--white-color);
}
.btn-cub--white path {
  fill: var(--blue-300-color);
}
.btn-cub--white:hover {
  background-color: var(--gray-300-color);
}

.dropdown {
  position: relative;
  z-index: 10;
}
.dropdown.active .dropdown__content {
  opacity: 1;
  visibility: visible;
}
.dropdown.active .arrow {
  rotate: -180deg;
}
.dropdown--tel .dropdown {
  background-color: transparent;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.dropdown--tel .dropdown__toggle {
  padding: 0;
  border: none;
  gap: 24px;
}
.dropdown--tel .dropdown__toggle .icon {
  width: 24px;
  height: 24px;
}
.dropdown--tel .dropdown__toggle .icon path {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.dropdown--tel .dropdown__active {
  display: none;
  color: var(--main-color);
}
.dropdown--tel .dropdown__content {
  top: 100%;
  background-color: var(--gray-100-color);
  padding: 7px 4px 4px 4px;
  border-radius: 0 0 var(--border-radius-big) var(--border-radius-big);
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid var(--gray-400-color);
  border-left: 1px solid var(--gray-400-color);
  border-right: 1px solid var(--gray-400-color);
  left: -0.2px;
  right: -0.2px;
}
.dropdown--tel.active {
  background-color: var(--gray-100-color);
  border-radius: var(--border-radius-big) var(--border-radius-big) 0 0;
  border: 1px solid var(--gray-400-color);
  border-bottom: none;
}
.dropdown--tel.active .dropdown__active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.dropdown--tel.active .dropdown__toggle {
  border-radius: 0;
  border: none;
  padding: 4px 4px 0 16px;
}
.dropdown--tel.active .dropdown__toggle:hover {
  background-color: transparent;
  color: inherit;
}
.dropdown .arrow {
  width: clamp(24px, -53.8984375px + 10.15625vw, 50px);
  height: clamp(15px, -89.86328125px + 13.671875vw, 50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.dropdown .arrow.icon {
  width: clamp(24px, -53.8984375px + 10.15625vw, 50px);
  height: clamp(15px, -89.86328125px + 13.671875vw, 50px);
}
.dropdown .arrow--mini.icon {
  width: 24px;
  height: 24px;
}
.dropdown--gray .dropdown__toggle {
  background-color: var(--gray-100-color);
  color: var(--main-color);
  font-weight: 400;
}
.dropdown--max .dropdown__toggle {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.dropdown .icon img,
.dropdown .icon svg {
  width: 100%;
  height: 100%;
}
.dropdown__toggle {
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
}
.dropdown__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-shadow: 2px 2px 20px 0px rgba(107, 107, 107, 0.1607843137);
          box-shadow: 2px 2px 20px 0px rgba(107, 107, 107, 0.1607843137);
  border-radius: var(--border-radius-middle);
  overflow: hidden;
  position: absolute;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(14, 3, 43, 0.0784313725);
          box-shadow: 0px 0px 15px 0px rgba(14, 3, 43, 0.0784313725);
  left: 0;
  min-width: 100%;
  z-index: 3;
  top: calc(100% + 10px);
  background-color: #fff;
  max-height: 257px;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
}
.dropdown__content::-webkit-scrollbar {
  width: 4px;
  border-radius: 10px;
}
.dropdown__content::-webkit-scrollbar-track {
  background-color: transparent;
}
.dropdown__content::-webkit-scrollbar-thumb {
  background-color: var(--gray-100-color);
  border-radius: 10px;
}
.dropdown__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.dropdown__item {
  padding: 8px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.3;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: var(--border-radius-small);
  font-weight: 400;
}
.dropdown__item:hover, .dropdown__item.active {
  opacity: 1;
  color: var(--main-color);
  background-color: var(--gray-100-color);
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.social__link--big a {
  width: 48px;
  height: 50px;
}
.social__link--big a .icon {
  width: 32px;
  height: 32px;
}

.list-default {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.list-default--white * {
  color: #fff;
}
.list-default__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.list-default__link--big {
  grid-column: span 2;
}
.list-default__top, .list-default__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.fag__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  overflow: hidden;
}
.fag__content .swiper {
  margin-left: 0;
  width: 100%;
}
.fag__content .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.fag__content .button {
  cursor: pointer;
}

.tab-item {
  display: none;
}
.tab-item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.tabs-btns {
  width: 100%;
}
.tabs-btns .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.tabs-btns .button {
  color: var(--white-color);
}
.tabs-btns .button:not(.active) {
  color: var(--main-color);
  background-color: var(--gray-100-color);
}
.tabs-btns .button:not(.active):hover, .tabs-btns .button:not(.active):active {
  background-color: var(--gray-300-color);
}
.tabs-btns .button:not(.active).disabled {
  background-color: var(--blue-200-color);
}

.card-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: var(--border-radius-big);
  overflow: hidden;
  background-color: #fff;
}
.card-info:hover {
  opacity: 1;
}
.card-info:hover .card-info__details * {
  color: var(--blue-300-color);
}
.card-info__details {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.card-info__details * {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.card-info__text {
  color: var(--brown-color);
}
.card-info__img {
  width: 100%;
  height: clamp(316px, -151.2355769231px + 45.6730769231vw, 506px);
  overflow: hidden;
  border-radius: var(--border-radius-middle);
}
.card-info__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1023px) {
  .card-info__img {
    height: 382px;
  }
}

.accordeon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px 16px;
  --padding-inline: 24px;
}
.accordeon__item {
  border-radius: var(--border-radius-big);
  overflow: hidden;
  border: 1px solid #e0e2e7;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
}
.accordeon__item.active {
  padding-bottom: 24px;
  background-color: var(--gray-100-color);
}
.accordeon__item.active .accordeon__question {
  padding-bottom: 12px;
}
.accordeon__item.active .icon-plus {
  rotate: 135deg;
}
.accordeon__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px var(--padding-inline);
  background-color: transparent;
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.accordeon__question * {
  font-size: 16px;
  text-align: left;
  color: var(--main-color);
}
.accordeon__answer {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  padding-inline: var(--padding-inline);
}
.accordeon__answer * {
  color: var(--gray-600-color);
}
@media (max-width: 1023px) {
  .accordeon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.card-details {
  min-height: clamp(276px, 187.1710843373px + 8.6746987952vw, 312px);
  border-radius: var(--border-radius-big);
  overflow: hidden;
  background-color: var(--gray-100-color);
  padding: 24px;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card-details__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100%;
  height: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.card-details__top, .card-details__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.card-details__img {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .card-details__img {
    max-width: 200px;
  }
}
.card-details__img img,
.card-details__img .icon {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-details__img--bottom-position {
  right: -35px;
  bottom: -44px;
}
@media (max-width: 767px) {
  .card-details__img--bottom-position {
    right: 0;
    bottom: 0;
  }
}
.card-details--img-big .card-details__img,
.card-details--img-big .card-details .icon {
  top: 0;
  right: 30px;
}
@media (max-width: 767px) {
  .card-details--img-big .card-details__img,
  .card-details--img-big .card-details .icon {
    max-width: auto;
    right: auto;
    left: 100px;
    width: 700px;
  }
  .card-details--img-big .card-details__img img,
  .card-details--img-big .card-details .icon img {
    width: 700px;
  }
}

.remainder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
}
.remainder * {
  color: #fff;
}
.remainder--blue * {
  color: var(--blue-100-color);
}

.about-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.about-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.swiper-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.swiper-details.delete {
  display: none;
}

.arrows-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.arrows-slider:has(.arrow-slider.prev.swiper-button-disabled):has(.arrow-slider.next.swiper-button-disabled) {
  display: none;
}
.arrows-slider--disabled .arrow-slider.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.arrows-slider--none .arrow-slider.swiper-button-disabled {
  display: none;
}
.arrows-slider--absolute {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  left: 12px;
  right: 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.arrows-slider--absolute .arrow-slider {
  position: absolute;
  top: 0;
}
.arrows-slider--absolute .arrow-slider.prev {
  left: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.arrows-slider--absolute .arrow-slider.next {
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.swiper-pagination {
  width: 100%;
  height: 2px;
  background-color: var(--gray-500-color);
  position: relative;
  z-index: 4;
  overflow: hidden;
}
.swiper-pagination--margin-top {
  margin-top: 24px;
}
.swiper-pagination--position {
  position: absolute;
  bottom: 12px;
  z-index: 10;
  left: 0;
  right: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.swiper-pagination .swiper-pagination-progressbar-fill {
  display: block;
  background-color: var(--main-color);
  height: 100%;
  -webkit-transform-origin: left;
          transform-origin: left;
}
.swiper-pagination.swiper-pagination-lock {
  display: none;
  margin-top: 0;
}
.swiper-pagination.big {
  height: 15px;
}
.swiper-pagination.gray {
  background-color: var(--gray-100-color);
}
.swiper-pagination.gray .swiper-pagination-progressbar-fill {
  background-color: var(--gray-300-color);
}
.swiper-pagination.radius {
  border-radius: 40px;
}
.swiper-pagination.radius .swiper-pagination-progressbar-fill {
  border-radius: inherit;
}
.swiper-pagination--dots {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 6px 8px;
  height: 22px;
  background-color: rgba(255, 255, 255, 0.5019607843);
  backdrop-filter: blur(22px);
  border-radius: 100px;
  margin: 0 auto;
  margin-top: 24px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: var(--gray-400-color);
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--brown-100-color);
}
.swiper-pagination--line {
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.swiper-pagination--line .swiper-pagination-bullet {
  min-width: 20px;
  width: auto;
  height: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #959595;
  border-radius: 4px;
}
.swiper-pagination--line .swiper-pagination-bullet-active {
  background-color: var(--main-color);
}

.swiper-details-bottom .swiper {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 1023px) {
  .swiper-details-bottom--media .swiper .swiper-wrapper {
    padding: 0;
  }
  .swiper-details-bottom--media .swiper .swiper-pagination {
    display: none;
  }
}

.card-content {
  min-height: 135px;
  padding: 20px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.card-content__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  text-align: center;
  min-width: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.card-content__top--end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (max-width: 767px) {
  .card-content__top--end {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.card-content__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.card-content__info * {
  -ms-hyphens: auto;
      hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}
@media (max-width: 767px) {
  .card-content__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.feedback {
  --gap-block: 16px;
}
.feedback__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--gap-block);
}
.feedback__content {
  padding: 19px 24px;
  border-radius: var(--border-radius-s);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.feedback__content-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.feedback__content-img {
  position: absolute;
  width: 413px;
  height: 250px;
  right: 0;
  bottom: 0;
}
.feedback__content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.feedback__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-block);
}
.feedback__img {
  width: 100%;
  height: 286px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-radius: var(--border-radius-middle);
  overflow: hidden;
}
.feedback__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1439px) {
  .feedback__content-img {
    display: none;
  }
}
@media (max-width: 1023px) {
  .feedback__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form {
  --gap-blocks: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--gap-blocks);
  padding: 24px;
  border-radius: var(--border-radius-big);
}
.form__inputs, .form__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--gap-blocks);
}
.form__inputs--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.form__inputs--grid .form__item--big {
  grid-column: span 2;
}
.form__inputs--grid .form__item--big .check {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1023px) {
  .form__inputs--grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form__item .form__errors {
  padding-top: 2px;
}
.form__errors {
  color: var(--red-color);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.form__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.form-big {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.input-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.input-box__text-error {
  color: var(--red-color);
  display: none;
}
.input-box__content {
  cursor: pointer;
}
.input-box__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
  min-height: 58px;
  padding: 10px 20px;
  border-radius: 12px;
  width: 100%;
  background-color: var(--white-color);
  -ms-flex-line-pack: center;
      align-content: center;
  border: 1px solid transparent;
}
.input-box__info input {
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: transparent;
  font-size: 16px;
}
.input-box__info input::-webkit-input-placeholder {
  color: var(--gray-400-color);
  font-size: 16px;
}
.input-box__info input::-moz-placeholder {
  color: var(--gray-400-color);
  font-size: 16px;
}
.input-box__info input:-ms-input-placeholder {
  color: var(--gray-400-color);
  font-size: 16px;
}
.input-box__info input::-ms-input-placeholder {
  color: var(--gray-400-color);
  font-size: 16px;
}
.input-box__info input::placeholder {
  color: var(--gray-400-color);
  font-size: 16px;
}
.input-box.error .input-box__text-error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input-box.error .input-box__info {
  border-color: var(--red-color);
}
.input-box.error .check {
  color: var(--red-color);
}
.input-box.error .check__content span {
  border-color: var(--red-color);
}

.check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}
.check:hover span {
  border-color: var(--blue-300-color);
}
.check:has(input:checked):hover span {
  background-color: var(--blue-400-color);
}
.check__content input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.check__content input:checked + span {
  background-color: var(--blue-300-color);
}
.check__content input:checked + span:before {
  opacity: 1;
  visibility: visible;
}
.check__content span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gray-800-color);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: var(--border-radius-small);
  display: flex;
  position: relative;
  background-color: var(--white-color);
}
.check__content span:before {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.5129 4.54719L7.17373 11.4277C6.51741 12.043 5.50149 12.0604 4.82445 11.468L1.5061 8.56447L2.49386 7.4356L5.8122 10.3392C5.90892 10.4238 6.05405 10.4213 6.14781 10.3334L13.487 3.45288L14.5129 4.54719Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.check-big__box {
  cursor: pointer;
}
.check-big__box input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.check-big__box input:checked + span {
  background-color: var(--blue-300-color);
  color: var(--white-color);
}
.check-big__box span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: var(--border-radius-big);
  background-color: var(--gray-100-color);
  min-height: 43px;
  padding: 10px 24px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.cookies {
  padding: 24px 32px;
  border-radius: var(--border-radius-middle);
  overflow: hidden;
  position: fixed;
  max-width: 886px;
  margin: 0 auto;
  bottom: 20px;
  z-index: 100;
  background-color: #fff;
  left: 20px;
  right: 20px;
  display: none;
}
.cookies.active {
  display: block;
}
.cookies__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 25px;
}
@media (max-width: 767px) {
  .cookies__box {
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-animation {
  height: calc(100vh - var(--header-height, 100));
  overflow: hidden;
}
@media (min-width: 2000px) {
  .top-animation {
    height: auto;
  }
  .top-animation__inner {
    aspect-ratio: 1920/1024;
  }
}
.top-animation .container {
  height: 100%;
}
.top-animation h1 {
  text-align: center;
}
@media (max-width: 1223px) {
  .top-animation h1 {
    text-align: left;
  }
}
.top-animation__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  gap: 10px;
  height: 100%;
  border-radius: var(--border-radius-big);
  overflow: hidden;
  padding: 30px 0;
}
.top-animation__content {
  position: relative;
  z-index: 2;
}
.top-animation__content * {
  color: var(--white-color);
}
.top-animation__img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.top-animation__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-animation__img-decor {
  z-index: 4;
}
@media (max-width: 1223px) {
  .top-animation__inner {
    padding-inline: 20px;
  }
}

.goods {
  position: relative;
  z-index: 10;
}
.goods__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 100%;
  min-width: 0;
}
.goods__content .swiper {
  width: 100%;
}
.goods__content .swiper-slide {
  height: auto;
}
.goods__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (max-width: 1439px) {
  .goods__content {
    gap: clamp(24px, 4.3741007194px + 1.9184652278vw, 32px);
  }
}
@media (max-width: 767px) {
  .goods .topBox .arrows-slider {
    display: none;
  }
}

.goods-items--noSwiper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1700px) {
  .goods-items--noSwiper {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1439px) {
  .goods-items--noSwiper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1223px) {
  .goods-items--noSwiper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .goods-items--noSwiper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.good {
  border-radius: var(--border-radius-big);
  overflow: hidden;
  padding: 24px;
  background-color: var(--gray-100-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  height: 100%;
  width: 100%;
  position: relative;
}
.good:before {
  position: absolute;
  z-index: 9;
  inset: 0;
  content: "";
  background-color: color-mix(in srgb, var(--gray-100-color) 60%, transparent);
  opacity: 0;
  visibility: hidden;
}
.good--brone:before {
  opacity: 1;
  visibility: visible;
}
.good__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.good__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(12px, -2.1477272727px + 3.4090909091vw, 24px);
}
.good__info-content {
  position: relative;
}
.good__info-content .btn-cub {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
}
.good__img {
  width: 100%;
  height: 240px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.good__img img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .good__img {
    height: 190px;
  }
  .good__img img {
    height: 190px;
  }
}
.good__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.good__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.good .swiper--good-img, .good__info-content {
  width: 100%;
  min-width: 0;
}
.good__info-position {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.good__info-position * {
  position: static !important;
}

.good-mini {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: var(--border-radius-s);
  overflow: hidden;
  height: 100%;
  background-color: var(--gray-100-color);
}
.good-mini__top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.good-mini__img {
  width: 100%;
  height: 120px;
}
.good-mini__img img,
.good-mini__img svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.good-mini__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.good-mini__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
@media (max-width: 767px) {
  .good-mini {
    padding: 12px;
    border-radius: 12px;
  }
}

.empty__inner {
  max-width: 526px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 32px;
  padding-top: clamp(44px, 25.1363636364px + 4.5454545455vw, 60px);
}
.empty__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.empty__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.stocks__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stocks__items .card-details:nth-child(4n+1) {
  grid-column: 1/-1;
}
.stocks__items .card-details:nth-child(4n+2) {
  grid-column: span 2;
}
@media (max-width: 1023px) {
  .stocks__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .stocks__items .card-details:nth-child(4n+1), .stocks__items .card-details:nth-child(4n+2) {
    grid-column: span 2;
  }
  .stocks__items .card-details:nth-child(4n+3), .stocks__items .card-details:nth-child(4n+4) {
    grid-column: span 1;
  }
}
@media (max-width: 767px) {
  .stocks__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.calculate-count__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.calculate-count__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.calculate-count__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (max-width: 1023px) {
  .calculate-count__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.calculate-count-banner {
  padding: 24px;
  border-radius: var(--border-radius-big);
}
.calculate-count-banner__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.calculate-count-banner__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.list-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.list-dots__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.list-dots__link:not(:last-child) {
  position: relative;
  padding-right: 8px;
}
.list-dots__link:not(:last-child):before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--main-color);
  right: 0;
}

.list-block {
  padding: 32px;
  border-radius: var(--border-radius-big);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.list-block__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}

.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 14px;
  border-radius: var(--border-radius-s);
  min-height: 38px;
  border: 1px solid var(--blue-100-color);
}

.tag-big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4px;
  min-height: 26px;
  border-radius: var(--border-radius-middle);
  padding: 4px 8px;
  background-color: var(--red-color-200);
  color: var(--white-color);
}
.tag-big .icon {
  width: 16px;
  height: 16px;
}
.tag-big .icon svg,
.tag-big .icon img {
  width: 100%;
  height: 100%;
}

.calculate__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.calculate .container {
  width: 100%;
}

.partners {
  --gap-items: 15px;
  overflow: hidden;
  width: 100%;
}
.partners__container {
  display: inline-block;
  white-space: nowrap;
}
.partners__track {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--gap-items);
  -webkit-animation: scroll-line 80s linear 0s infinite normal none running;
          animation: scroll-line 80s linear 0s infinite normal none running;
  will-change: transform;
  padding-right: var(--gap-items);
}
.partners__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 236px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 90px;
  border-radius: var(--border-radius-middle);
  overflow: hidden;
  background-color: var(--gray-100-color);
  border: 2px solid transparent;
}
.partners__item img,
.partners__item svg {
  width: 200px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.partners__item:hover {
  border-color: var(--blue-300-color);
}
.partners__item:hover img,
.partners__item:hover svg {
  -webkit-filter: brightness(0) saturate(100%) invert(16%) sepia(99%) saturate(1814%) hue-rotate(183deg) brightness(95%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(16%) sepia(99%) saturate(1814%) hue-rotate(183deg) brightness(95%) contrast(101%);
}

@-webkit-keyframes scroll-line {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-50% - var(--gap-items) / 2));
            transform: translateX(calc(-50% - var(--gap-items) / 2));
  }
}

@keyframes scroll-line {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-50% - var(--gap-items) / 2));
            transform: translateX(calc(-50% - var(--gap-items) / 2));
  }
}
.indicator {
  position: relative;
}
.indicator__box {
  background-color: var(--red-color-100);
  border-radius: var(--border-radius-big);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white-color);
  font-size: 12px;
  min-width: 16px;
  min-height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 2px;
  position: absolute;
  z-index: 3;
  top: -7px;
  right: -2px;
}

.modalBlock {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}
.modalBlock.dark {
  background-color: rgba(0, 0, 0, 0.3019607843);
}
.modalBlock.header-visible {
  z-index: 99;
}
.modalBlock__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
.modalBlock.open {
  opacity: 1;
  visibility: visible;
}
.modalBlock.open .modalBlock__inner {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.modalBlock .icon-plus {
  rotate: 45deg;
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: transparent;
}
.modalBlock .icon-plus:before, .modalBlock .icon-plus:after {
  background-color: #000000;
}
.modalBlock .icon-plus--accent:before, .modalBlock .icon-plus--accent:after {
  background-color: var(--blue-300-color);
}
.modalBlock__inner {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto 0;
  -webkit-transform: translateY(-400%);
          transform: translateY(-400%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #fff;
  padding: clamp(16px, 1.8476658477px + 3.9312039312vw, 32px);
  border-radius: var(--border-radius-big);
}

.successModal.modalBlock .modalBlock__inner {
  max-width: 660px;
}
.successModal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.successModal__info, .successModal__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.filterModal {
  --gap-items: 24px;
  padding-bottom: 0;
  padding-inline: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.filterModal__inner {
  margin-bottom: 0;
  max-width: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding-bottom: 40px;
}
.filterModal__inner, .filterModal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
}
.filterModal__items-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-items);
}
.filterModal__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.filterModal__items:not(:last-child) {
  padding-right: var(--gap-items);
  border-right: 1px solid var(--gray-300-color);
}
@media (max-width: 1023px) {
  .filterModal__items-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .filterModal__items:nth-child(odd):not(:last-child) {
    padding-right: var(--gap-items);
    border-right: 1px solid var(--gray-300-color);
  }
  .filterModal__items:nth-child(even) {
    padding-right: 0;
    border-right: none;
  }
  .filterModal__inner {
    padding-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .filterModal__items-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .filterModal__items:nth-child(odd):not(:last-child) {
    padding-right: 0;
    border-right: none;
  }
}

.menuModal {
  --gap-items: 16px;
  --gap-links: 16px;
  --bg-card: var(--white-color);
  --padding-card: 24px;
  padding-top: calc(var(--header-height, 80) + 24px);
}
.menuModal .modalBlock__inner {
  margin-top: 0;
  max-width: 886px;
  background-color: var(--gray-300-color);
  border-radius: 44px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-items);
  -webkit-transform: translate(-500%, 0);
          transform: translate(-500%, 0);
}
.menuModal.open .modalBlock__inner {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.menuModal .swiper {
  height: 100%;
}
.menuModal .swiper-slide {
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.menuModal__items {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--gap-items);
}
.menuModal__item {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-big);
  padding: var(--padding-card);
}
.menuModal__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--gap-links);
}
.menuModal__linl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--gap-links);
}
.menuModal .card-details {
  min-height: 0;
  background-color: var(--bg-card);
  border-radius: var(--border-radius-big);
  padding: var(--padding-card);
}
@media (max-width: 767px) {
  .menuModal {
    padding-top: calc(var(--header-height, 80));
    padding-inline: 0;
    padding-bottom: 0;
    --gap-items: 12px;
    --padding-card: 20px;
  }
  .menuModal .modalBlock__inner {
    padding-block: 15px;
    padding-inline: 16px;
    border-radius: 0;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
  .menuModal__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .menuModal .swiper .menuModal__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
  .menuModal .swiper .swiper-slide {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}

.contacts__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contacts__content {
  background-color: var(--gray-100-color);
  padding: 20px;
  border-radius: var(--border-radius-middle);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.contacts__content--media {
  display: none;
}
.contacts__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.contacts__info {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-middle);
  overflow: hidden;
}
.contacts__info #map {
  height: max(100%, 610px);
  width: 100%;
}
.contacts__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.contacts__footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  max-width: 350px;
  width: 100%;
}
.contacts__footer-img {
  max-width: 410px;
  width: 100%;
  height: 330px;
}
.contacts__footer-img svg,
.contacts__footer-img img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1439px) {
  .contacts__footer-img {
    display: none;
  }
}
@media (max-width: 1023px) {
  .contacts__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .contacts__info #map {
    height: 310px;
  }
  .contacts__content {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
  }
  .contacts__content .contacts__footer {
    display: none;
  }
  .contacts__content--media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow: hidden;
  }
  .contacts__content--media .contacts__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--gray-100-color);
    padding: 16px;
    border-radius: var(--border-radius-middle);
  }
  .contacts__content--media .contacts__footer-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 270px;
    height: 200px;
    position: absolute;
    right: 0;
    bottom: -60px;
  }
  .contacts__top {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .contacts__content--media .contacts__footer-img {
    display: none;
  }
  .contacts__content--media .contacts__footer-info {
    max-width: 100%;
  }
}
@media (max-width: 360px) {
  .contacts .list-default {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact-banner {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  border-radius: var(--border-radius-middle);
}
.contact-banner__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.contact-banner__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 66px;
  padding: 20px;
  background-color: var(--white-color);
  border-radius: var(--border-radius-s);
}
.contact-banner__link span {
  background-image: var(--linear-gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 1439px) {
  .contact-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    gap: 32px;
  }
}
@media (max-width: 1023px) {
  .contact-banner {
    gap: 12px;
  }
}

.filter-box {
  --gap-items: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(32px, 8.1245136187px + 3.1128404669vw, 40px);
}
.filter-box__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.filter-box__top-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-items);
}
.filter-box__block, .filter-box__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.filter-box__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
@media (max-width: 767px) {
  .filter-box__details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-box__details > *:nth-child(2) {
    grid-column: span 2;
    text-align: center;
  }
  .filter-box__details .dropdown {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .filter-box__details .type-box {
    margin-left: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 1439px) {
  .filter-box__top-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .filter-box__top-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.filter-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.filter-item__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.filter-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
@media (max-width: 767px) {
  .filter-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
}

.menu-fixed {
  position: fixed;
  z-index: 998;
  bottom: 20px;
  left: 16px;
  right: 16px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.menu-fixed.scroll-footer {
  opacity: 0;
  visibility: hidden;
}
.menu-fixed__inner {
  padding: 9px 12px;
  border-radius: 30px;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
  background-color: var(--brown-100-color);
}
.menu-fixed__swiper-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
}
.menu-fixed .swiper {
  width: 100%;
  margin-left: 0;
}
.menu-fixed .swiper .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-hyphens: auto;
      hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}
.menu-fixed__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 17px 24px;
  border-radius: var(--border-radius-big);
  color: var(--white-color);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  min-height: 50px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}
.menu-fixed__link:hover {
  background-color: var(--brown-color);
  opacity: 1;
}
.menu-fixed__link.active {
  background-color: var(--white-color);
  color: var(--main-color);
}
.menu-fixed .arrows-slider {
  display: none;
}
@media (max-width: 1439px) {
  .menu-fixed .arrows-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767px) {
  .menu-fixed {
    display: none;
  }
}

.about__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.about__img {
  border-radius: var(--border-radius-big);
  overflow: hidden;
  height: 423px;
}
.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-width: 0;
}
.about__info .swiper {
  width: 100%;
}
.about__swiper-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.about__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1023px) {
  .about__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__img {
    height: 211px;
  }
  .about__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .about .card-content:nth-child(3n+3) {
    grid-column: span 2;
  }
}

.range-slider {
  --padding-block: 8px;
  position: relative;
  border-radius: var(--border-radius-big);
  min-height: 43px;
  padding: var(--padding-block) 24px;
  background-color: var(--gray-100-color);
}
.range-slider__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.range-slider input {
  width: 100%;
  background-color: transparent;
  color: var(--gray-400-color);
  font-size: 16px;
}
.range-slider input::-webkit-input-placeholder {
  color: var(--gray-400-color);
  font-size: 16px;
}
.range-slider input::-moz-placeholder {
  color: var(--gray-400-color);
  font-size: 16px;
}
.range-slider input:-ms-input-placeholder {
  color: var(--gray-400-color);
  font-size: 16px;
}
.range-slider input::-ms-input-placeholder {
  color: var(--gray-400-color);
  font-size: 16px;
}
.range-slider input::placeholder {
  color: var(--gray-400-color);
  font-size: 16px;
}
.range-slider__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.range-slider .noUi-target {
  border-radius: 0;
  border: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  top: calc(var(--padding-block) + 4px);
  z-index: 3;
}
.range-slider .noUi-connect {
  background-color: var(--blue-300-color);
}
.range-slider .noUi-horizontal {
  height: 2px;
}
.range-slider .noUi-connects {
  background-color: var(--gray-200-color);
}
.range-slider .noUi-horizontal .noUi-handle {
  width: 6px;
  height: 6px;
  background: var(--blue-300-color);
  border-radius: 50%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  right: -2px;
  top: -2px;
}
.range-slider .noUi-horizontal .noUi-handle:before, .range-slider .noUi-horizontal .noUi-handle:after {
  display: none;
}

.range-default {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.range-default .noUi-horizontal {
  height: 3px;
  top: -1px;
}
.range-default .noUi-horizontal .noUi-handle {
  width: 16px;
  height: 16px;
  top: -6px;
  right: -14px;
  cursor: pointer;
}
.range-default__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.range-default__item input {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  color: var(--main-color);
  font-size: clamp(32px, 13.1363636364px + 4.5454545455vw, 48px);
}

.good-banner {
  padding: 20px;
  border-radius: var(--border-radius-big);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.good-banner__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.good-banner__top-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.good-banner__top-info-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
}
.good-banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.good-banner__footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.pagination__link:not(:nth-child(-n+6)) {
  display: none;
}
@media (max-width: 767px) {
  .pagination__link:not(:nth-child(-n+4)) {
    display: none;
  }
}
@media (max-width: 360px) {
  .pagination__link:not(:nth-child(-n+3)) {
    display: none;
  }
}

.checkerboard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 100%;
}
.checkerboard__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  gap: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.checkerboard__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.checkerboard__swiper-box {
  width: 100%;
  min-width: 0;
}
.checkerboard__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.checkerboard__item-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  counter-reset: list;
}
.checkerboard__items-box {
  display: grid;
  gap: 25px;
  grid-template-columns: 24px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  counter-increment: list 1;
}
.checkerboard__items-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.checkerboard__items-number:before {
  content: counter(list);
}
.checkerboard .swiper--checkerboard {
  position: relative;
}
.checkerboard .swiper--checkerboard:before, .checkerboard .swiper--checkerboard:after {
  position: absolute;
  content: "";
  right: 0;
  width: 187px;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: 3;
}
.checkerboard .swiper--checkerboard:before {
  right: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#ffffff));
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}
.checkerboard .swiper--checkerboard:after {
  left: 0;
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), to(#ffffff));
  background-image: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}
.checkerboard .swiper--checkerboard .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.checkerboard .swiper--checkerboard .swiper-wrapper {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.checkerboard .swiper--checkerboard:has(.arrow-slider.prev.swiper-button-disabled):after {
  display: none;
}
.checkerboard .swiper--checkerboard:has(.arrow-slider.next.swiper-button-disabled):before {
  display: none;
}
@media (max-width: 1023px) {
  .checkerboard .swiper--checkerboard .arrows-slider .arrow-slider {
    display: none;
  }
}
@media (max-width: 767px) {
  .checkerboard .swiper--checkerboard:before, .checkerboard .swiper--checkerboard:after {
    display: none;
  }
}
@media (max-width: 767px) {
  .checkerboard__details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    gap: 12px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.detail-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: var(--gray-100-color);
  border-radius: var(--border-radius-small);
  border: 1px solid var(--gray-300-color);
  flex-shrink: 0;
}
.detail-icon--accent {
  background-color: var(--blue-100-color);
  border-color: var(--blue-100-color);
}
.detail-icon--orange {
  background-color: var(--orange-color);
  border-color: var(--orange-color);
}
.detail-icon--big {
  width: 63px;
  height: 63px;
  border-radius: var(--border-radius-s);
}
.detail-icon--big .icon {
  width: 20px;
  height: 26px;
}
@media (max-width: 359px) {
  .detail-icon--big {
    width: 40px;
    height: 40px;
  }
}

.footer {
  padding: 38px 0;
  border-radius: var(--border-radius-big) var(--border-radius-big) 0 0;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.footer__content, .footer__content-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 42px;
}
.footer__content {
  max-width: 327px;
  width: 100%;
}
.footer__lists {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 915px;
  gap: 48px;
  margin-right: auto;
  margin: 0 auto;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  max-width: 213px;
}
.footer__list-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (max-width: 1023px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 64px;
  }
  .footer__content-info {
    gap: 32px;
  }
  .footer__content {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .footer__content-info {
    gap: 24px;
  }
  .footer__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}/*# sourceMappingURL=page.css.map */