@import url(https://fonts.googleapis.com/css?family=Tektur:regular,500,600&display=swap);

@import url(https://fonts.googleapis.com/css?family=Ubuntu:regular,500,700&display=swap);

@font-face {
  font-family: "icons";
  src: url("/static/fonts/icons.eot?p25a3n");
  src: url("/static/fonts/icons.eot?p25a3n#iefix") format("embedded-opentype"), url("/static/fonts/icons.ttf?p25a3n") format("truetype"), url("/static/fonts/icons.woff?p25a3n") format("woff"), url("/static/fonts/icons.svg?p25a3n#icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class*=_icon-]:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class*=_icon-]:before {
  display: block;
}

:root {
  --accent-color: #000;
  --bg-light: #F4F7F9;
  --radius: 24px;
}

._icon-edit-2:before {
  content: "";
}

._icon-trash:before {
  content: "";
}

._icon-arrow-right:before {
  content: "";
  color: #595b5f;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #202020;
  line-height: 1;
  font-family: "Tektur";
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
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-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.wrapper {
  min-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;
  overflow: hidden;
}

.wrapper>main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper>* {
  min-width: 0;
}

[class*=__container] {
  max-width: 80rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.checkbox {
  position: relative;
}

.guarantee__form {
  display: flex;
  flex-wrap: wrap;    /* Позволяет элементам переноситься на новую строку */
  justify-content: center;
  align-items: center;
  gap: 12px;          /* Расстояние между инпутом и кнопкой */
}

/* Блок с галочкой */
.guarantee__policy {
  flex: 1 0 100%;     /* Заставляет блок занимать 100% ширины и прыгать вниз */
  display: flex;
  justify-content: center;
  margin-top: 8px;    /* Отступ от кнопок до галочки */
}

/* Стилизация самой галочки и текста */
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #444;
}

.checkbox__text a {
  text-decoration: underline;
  color: inherit;
}

.checkbox__text a:hover {
  text-decoration: none;
}

.checkbox__input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #000; /* Цвет галочки будет черным под стиль кнопки */
}

.checkbox__input:checked+.checkbox__label:before {
  background: #418f31;
}

.checkbox__label {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  gap: .75rem;
}

.checkbox__label:before {
  content: "";
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.25rem;
  flex: 0 0 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.5rem;
  background-color: #fff;
}

.checkbox__text {
  font-family: "Ubuntu";
  color: #666;
  line-height: 100%;
}


#scrollToTop {
  display: none;
  /* Кнопка скрыта по умолчанию */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #333;
  /* Цвет фона */
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  /* Делаем кнопку круглой */
  width: 50px;
  height: 50px;
  transition: background-color 0.3s, opacity 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#scrollToTop:hover {
  background-color: #555;
  /* Цвет при наведении */
}

#scrollToTop svg {
  width: 24px;
  height: 24px;
}

.select {
  position: relative;
}

.select__body {
  position: relative;
}

.select__title {
  color: inherit;
  text-align: left;
  border: .0625rem solid #595b5f;
  background-color: #fff;
  cursor: pointer;
  width: 100%;
  border-radius: 1rem;
  height: 3.25rem;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.125rem;
  font-weight: 700;
  padding: 1rem 1.125rem;
  font-family: "Ubuntu";
}

.select__value>* {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.select__value:after {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 12px;
  flex: 0 0 12px;
  height: 0.409375rem;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: url("/static/img/icons/arrow.svg") 0 0/contain no-repeat;
}

._select-open .select__value:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: .5;
}

.select__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  position: absolute;
  top: 40px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: .0625rem solid #595b5f;
  border-top: 0;
  padding: 10px 0px 5px 0px;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}

.select__option {
  font-family: "Ubuntu";
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 5px 15px;
  color: inherit;
}

.select__option._select-selected {
  background-color: #eee;
}

.select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.select._select-open {
  z-index: 5;
}

._select-tag {
  cursor: pointer;
}

.select__asset {
  width: 0.75rem;
  height: 0.875rem;
}

.select__row {
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, .5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .8s ease 0s;
  transition: opacity .8s ease 0s;
  pointer-events: none;
  z-index: 169;
}

.popup_show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility .8s ease 0s;
  transition: visibility .8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.popup__wrapper {
  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;
  min-height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform .3s ease 0s;
  transition: -webkit-transform .3s ease 0s;
  transition: transform .3s ease 0s;
  transition: transform .3s ease 0s, -webkit-transform .3s ease 0s;
  background-color: #eee;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  position: relative;
}

.popup__content--2 {
  padding: 0;
  border-radius: 40px;
}

.lock .popup__content {
  visibility: visible;
}

.popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

.popup__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  margin-bottom: 1rem;
}

.popup__title-top {
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}

.popup__close {
  background: url("/static/img/icons/close-gray.svg") 0 0/contain no-repeat;
  width: 0.75rem;
  height: 0.75rem;
  outline: none;
  position: absolute;
  top: 1.125rem;
  right: 1.125rem;
}

.popup__input {
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Ubuntu";
  padding: 0.75rem;
  border: 1px solid #595b5f;
  border-radius: .75rem;
  padding: .75rem;
  background-color: #fff;
  width: 100%;
}

.popup__input::-webkit-input-placeholder {
  font-size: 0.75rem;
  color: #595b5f;
}

.popup__input::-moz-placeholder {
  font-size: 0.75rem;
  color: #595b5f;
}

.popup__input:-ms-input-placeholder {
  font-size: 0.75rem;
  color: #595b5f;
}

.popup__input::-ms-input-placeholder {
  font-size: 0.75rem;
  color: #595b5f;
}

.popup__input::placeholder {
  font-size: 0.75rem;
  color: #595b5f;
}

.popup__content .select {
  width: 100%;
}

.popup__content .select__value {
  font-size: 0.75rem;
  padding: 0.3125rem 0.75rem;
}

.popup__content .select__title {
  border-radius: 12px;
  height: 2.5rem;
}

.popup__content .select__options {
  top: 1.625rem;
}

.popup__content .select__option {
  font-size: 0.75rem;
}

.spollers {
  display: -ms-grid;
  display: grid;
}

.spollers__item {
  font-size: 1.25rem;
  background: #f6f6f6;
  border-radius: 2.5rem;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.spollers__item._spoller-active {
  background-color: #d4def7;
}

.spollers__title {
  width: 100%;
  cursor: default;
  text-align: left;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  padding: 2.4375rem 6rem 2rem 2rem;
  border-radius: 2.5rem;
  position: relative;
}

._spoller-init .spollers__title {
  cursor: pointer;
}

._spoller-init .spollers__title::before {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("/static/img/icons/plus.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #202020;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  -webkit-transition: all .1s;
  transition: all .1s;
}

._spoller-init .spollers__title._spoller-active::before {
  background-color: #4a7af4;
  background-image: url("/static/img/icons/close.svg");
}

.spollers__body {
  padding: 0 2rem 2rem;
  font-size: 1.25rem;
  font-family: "Ubuntu";
  line-height: 140%;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
  object-fit: contain;
}

.title {
  font-size: 5rem;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
}

.title span {
  color: #595b5f;
}

.btn {
  background-color: #202020;
  color: #fff;
  font-weight: 700;
  font-family: "Ubuntu";
  font-size: 1.25rem;
  height: 3.75rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-radius: 1rem;
  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;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn:disabled {
  background-color: #4b4b4b;
  pointer-events: none;

}

.btn--small {
  font-size: 1rem;
  height: 3rem;
  padding: 1rem 1.25rem;
}

.btn--white {
  background-color: #fff;
  color: #202020;
}

.btn--gray {
  background-color: #fff;
  border: .0625rem solid #595b5f;
  color: #595b5f;
}

.btn-slider {
  background-color: #202020;
  border-radius: 1.25rem;
  padding: 1.25rem;
  width: 3.75rem;
  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;
  height: 3.75rem;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: .0625rem solid #202020;
}

.btn-slider::before {
  -webkit-transition: color .3s;
  transition: color .3s;
  color: #fff;
}

.btn-slider--left::before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.btn-slider.swiper-button-disabled {
  border: .0625rem solid #595b5f;
  background-color: #fff;
}

.btn-slider.swiper-button-disabled::before {
  color: #595b5f;
}

.top-header {
  text-align: center;
}

.top-header__title {
  margin-bottom: 1.75rem;
}

.top-header__text {
  font-size: 1.25rem;
  line-height: 140%;
  color: #666;
  font-family: "Ubuntu";
}

.breadcrumbs {
  padding-top: 5.5rem;
}

.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 0.625rem;
}

.breadcrumbs__item a {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.breadcrumbs__link-home {
  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: #4a7af4;
  width: 2rem;
  height: 2rem;
  border-radius: .75rem;
  padding: .5rem;
}

.breadcrumbs__link-home img {
  max-width: 100%;
}

.breadcrumbs__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;
  height: 2rem;
  font-weight: 500;
  color: #595b5f;
  border: .0625rem solid #595b5f;
  border-radius: .75rem;
  padding: .5rem .75rem;
  font-family: "Ubuntu";
}

.first-block {
  margin-top: 8rem;
  padding-bottom: 8rem;
}

.popup__content {
  max-width: 32.5rem;
}

.popup__content--2 {
  max-width: 20rem;
}

.popup__content--2 .popup__close {
  display: none;
}

.popup__btn {
  height: 2.25rem;
  font-size: 0.75rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
}

.footer__items.plinks {
  font-size: 12px;
}

.header__container {
  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;
  min-height: 5.5rem;
}

.header__logo {
  border: .0625rem solid #595b5f;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  outline: none;
  font-weight: 700;
  display: block;
  font-family: "Ubuntu";
  height: 3rem;
  background-color: #fff;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 10.6875rem;
  flex: 0 1 10.6875rem;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.header__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
}

.header__cart-btn {
  border-radius: 1rem;
  padding: 1rem;
  background: #f6f6f6;
  height: 3rem;
  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;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.header__cart-btn img {
  max-width: 100%;
}

.menu__close {
  position: absolute;
  bottom: -8.5rem;
  left: 0;
  background-color: #202020;
  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: 3rem;
  height: 3rem;
  border-radius: 1rem;
  -webkit-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
}

.menu__close::before {
  color: #fff;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  font-size: 0.75rem;
}

.menu-open .menu__close {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 1.25rem;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}

.menu__link {
  font-weight: 500;
  font-family: "Ubuntu";
  -webkit-transition: color .3s;
  transition: color .3s;
  color: #595b5f;
  display: inline-block;
  position: relative;
}

.menu__link::after {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  background: url("/static/img/icons/star.svg") 0 0 no-repeat;
  opacity: 0;
  visibility: hidden;
}

.menu__link.active {
  color: #4a7af4;
}

.menu__link.active::after {
  opacity: 1;
  visibility: visible;
}

.icon-menu {
  display: none;
}

.cart-header {
  position: fixed;
  width: 37.5rem;
  height: 100%;
  padding: 1.25rem 2.5rem;
  background: #fff;
  /* overflow-y: scroll; */
  z-index: 200;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.cart-header__wrap {
  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;
}

.cart-header__close {
  position: absolute;
  top: 0.125rem;
  right: -1.5625rem;
  width: 3.25rem;
  height: 3.25rem;
  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: 1rem;
  background-color: #202020;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.cart-header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.cart-header__body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.cart-header__body:not(:last-child) {
  margin-bottom: 3.75rem;
}

.cart-header__top-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.cart-header__block:not(:last-child) {
  margin-bottom: 2.5rem;
}

.cart-header__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}

.cart-header__title span {
  color: #595b5f;
}

.cart-header__price-top {
  text-align: right;
  font-weight: 700;
  font-family: "Ubuntu";
  color: #595b5f;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 6.5625rem;
  flex: 0 1 6.5625rem;
}

.cart-header__price-top span {
  color: #4a7af4;
}

.cart-header__items {
  display: -ms-grid;
  display: grid;
}

.cart-header__items:not(:last-child) {
  margin-bottom: 0.5rem;
}

.cart-header__price-info {
  border: .0625rem solid #f6f6f6;
  border-radius: 1.25rem;
  padding: 1rem;
}

.cart-header__price-info p {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Ubuntu";
  color: #595b5f;
}

.cart-header__price-title {
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cart-header__price-list:not(:last-child) {
  margin-bottom: 0.75rem;
}

.cart-header__price-item {
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Ubuntu";
  line-height: 100%;
  color: #595b5f;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

.cart-header__price-item::before {
  content: "";
  display: block;
  background: url("/static/img/icons/star-gray.svg") 0 0/contain no-repeat;
  width: 0.5rem;
  height: 0.5rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0.5rem;
  flex: 0 0 0.5rem;
  margin-top: 0.125rem;
}

.cart-header__price-item:not(:last-child) {
  margin-bottom: 0.5rem;
}

.cart-header__result-block:not(:last-child) {
  margin-bottom: 1.75rem;
}

.cart-header__result-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cart-header__result-item:not(:last-child) {
  margin-bottom: 0.75rem;
}

.cart-header__result-item p {
  white-space: nowrap;
  font-weight: 700;
  font-family: "Ubuntu";
}

.cart-header__result-item p:first-child {
  color: #595b5f;
}

.cart-header__result-item p:last-child {
  color: #4a7af4;
}

.cart-header__oferta {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Ubuntu";
  color: #595b5f;
}

.cart-header__result-btn {
  width: 100%;
}

.cart-header__result-btn:not(:last-child) {
  margin-bottom: 0.5rem;
}

.cart-header__line {
  width: 100%;
  border-bottom: 2px dashed #595b5f;
}

.cart-header__item {
  background-color: #f6f6f6;
  border-radius: 1.25rem;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.cart-header__item:not(:last-child) {
  margin-bottom: 0.5rem;
}

.cart-header__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 19rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cart-header__empty-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  padding-top: 1.25rem;
  margin-bottom: 5.625rem;
}

.cart-header__empty-title span {
  color: #595b5f;
}

.cart-header__empty-image {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
  margin-bottom: 3.75rem;
}

.cart-header__empty-image img {
  max-width: 100%;
}

.cart-header__empty-image::before {
  content: "";
  background: url("/static/img/icons/order-decor.svg") 0 0/100% 100% no-repeat;
  top: 0;
  left: -1.875rem;
  width: 32.5rem;
  position: absolute;
  height: 32.125rem;
  z-index: -1;
}

.cart-header__empty-link {
  z-index: 5;
  padding: 1.25rem 2.5rem;
}

.item-cart-header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  margin-bottom: 1rem;
}

.item-cart-header__icon img:last-child {
  display: none;
}

.item-cart-header__content {
  width: 100%;
}

.item-cart-header__title {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.item-cart-header__text,
.item-cart-header__price {
  font-weight: 500;
  font-family: "Ubuntu";
  color: #595b5f;
  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;
  width: 100%;
}

.item-cart-header__text {
  font-size: 0.75rem;
}

.item-cart-header__price {
  font-weight: 700;
}

.item-cart-header__price::before {
  font-size: 0.75rem;
}

.item-cart-header__button {
  border-radius: .5rem;
  padding: .5rem;
  width: 1.75rem;
  height: 1.75rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.75rem;
  flex: 0 0 1.75rem;
  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: .0625rem solid #595b5f;
}

.item-cart-header__button::before {
  color: #595b5f;
}

.item-cart-header__link {
  height: 1.75rem;
  width: 1.75rem;
  border: .0625rem solid #595b5f;
  border-radius: .5rem;
  padding: .5rem;
  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;
}

.item-cart-header__link::before {
  font-size: 0.625rem;
}

.item-cart-header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

.top-cart-header__btn {
  height: 3.25rem;
  font-size: 1rem;
}

.top-cart-header__btn span:last-child {
  display: none;
}

.footer {
  margin-bottom: 2.5rem;
}

.footer__block {
  border-radius: 2.5rem;
  padding: 1.5rem;
  background-color: #202020;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer__text {
  max-width: 31.25rem;
  color: #fff;
  font-family: "Ubuntu";
  line-height: 120%;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 1.5rem;
}

.footer__items:not(:last-child) {
  margin-bottom: 1.5rem;
}

.footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5625rem;
  -moz-column-gap: 0.5625rem;
  column-gap: 0.5625rem;
}

.footer__info {
  font-family: "Ubuntu";
  color: #fff;
}

.footer__info--link {
  -webkit-transition: color .3s;
  transition: color .3s;
}

.footer__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}

.footer__social-list:not(:last-child) {
  margin-bottom: 2.5rem;
}

.footer__social-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2.5rem;
  flex: 0 0 2.5rem;
  height: 2.5rem;
}

.footer__social-link {
  border-radius: .75rem;
  padding: .75rem;
  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: #fff;
  height: 2.5rem;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.footer__copy {
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Ubuntu";
  color: #666;
  text-align: center;
}

.top-footer__logo {
  font-weight: 700;
  display: block;
  text-align: center;
  font-family: "Ubuntu";
  color: #fff;
  padding: 1rem 2.40625rem;
  border: .0625rem solid #595b5f;
  border-radius: 1rem;
}

.menu-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  row-gap: 1.25rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.menu-footer__link {
  font-weight: 500;
  font-family: "Ubuntu";
  color: #fff;
  -webkit-transition: color .3s;
  transition: color .3s;
  position: relative;
}

.menu-footer__link::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -1rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0.75rem;
  height: 0.75rem;
  background: url("/static/img/icons/star.svg") 0 0 no-repeat;
  opacity: 0;
  visibility: hidden;
}

.menu-footer__link.active {
  color: #4a7af4;
}

.menu-footer__link.active::after {
  opacity: 1;
  visibility: visible;
}

body::before {
  content: "";
  background-color: rgba(32, 32, 32, .2);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .8s ease 0s;
  transition: opacity .8s ease 0s;
  pointer-events: none;
  z-index: 50;
}

.menu-open body::before {
  opacity: 1;
  z-index: 30;
}

body.cart-active {
  /* pointer-events: none; */
  overflow: hidden;
}

body.cart-active .wrapper .page,
body.cart-active .wrapper .header,
body.cart-active .wrapper .footer {
  pointer-events: none;
  /* overflow: hidden; */
}

body.cart-active::before {
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

body.cart-active .cart-header {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.hero {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.hero__title {
  margin-bottom: 3.75rem;
}

.hero__body {
  min-height: 20rem;
  border-radius: 3.75rem;
  background-color: #d2f28e;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero__body:not(:last-child) {
  margin-bottom: 3.75rem;
}

.hero__sliders {
  position: relative;
}

.hero__slider:not(:last-child) {
  margin-bottom: 1.25rem;
}

.hero__slide {
  border-radius: 1.75rem;
  padding: 1.25rem;
  background: #f6f6f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  outline: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.875rem;
  -moz-column-gap: 0.875rem;
  column-gap: 0.875rem;
}

.hero__swiper-button-prev,
.hero__swiper-button-next {
  -webkit-box-shadow: 0 .25rem 1.25rem 0 rgba(0, 0, 0, .4);
  box-shadow: 0 .25rem 1.25rem 0 rgba(0, 0, 0, .4);
  position: absolute;
  z-index: 5;
  width: 3.75rem;
  height: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hero__swiper-button-next {
  right: 0;
}

.body-hero__lines img {
  position: absolute;
  width: 22.5rem;
  height: 100%;
  z-index: -2;
  left: 6.71875%;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.body-hero__stars img {
  position: absolute;
  width: 3rem;
  height: 5rem;
  z-index: -2;
}

.body-hero__stars img:first-child {
  top: -3.75rem;
  left: 6.25%;
}

.body-hero__stars img:nth-child(2) {
  left: 17.1875%;
  bottom: -1.25rem;
}

.body-hero__stars img:nth-child(3) {
  right: 6.25%;
  top: -0.9375rem;
}

.body-hero__decor img {
  position: absolute;
  z-index: -2;
}

.body-hero__decor img:first-child {
  width: 8.17375rem;
  height: 9.43875rem;
  left: 28.125%;
  top: -3.125rem;
}

.body-hero__decor img:nth-child(2) {
  bottom: -3.75rem;
  right: -3.75rem;
  width: 15rem;
  height: 16.115625rem;
}

.body-hero__image {
  position: absolute;
  bottom: 0;
  right: 15.6%;
  z-index: -1;
}

.body-hero__image img {
  height: 25rem;
  width: 30rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.body-hero__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  padding-bottom: 1.25rem;
}

.body-hero__link {
  padding: 1.25rem 1.28125rem;
}

.slide-hero__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.slide-hero__title {
  margin-bottom: 1rem;
  line-height: 100%;
  font-weight: 600;
  text-transform: uppercase;
}

.slide-hero__price {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 100%;
  font-family: "Ubuntu";
  color: #595b5f;
}

.slide-hero__arrow {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.slide-hero__arrow::before {
  color: #595b5f;
  font-size: 0.75rem;
}

.why-we {
  padding-bottom: 8rem;
  position: relative;
  z-index: 1;
}

.why-we::before {
  content: "";
  position: absolute;
  background: url("/static/img/icons/star-decor.svg") 0 0 no-repeat;
  width: 35.875rem;
  height: 35.875rem;
  top: 0;
  left: -3.125rem;
  z-index: -1;
}

.why-we__title {
  margin-bottom: 3.75rem;
}

.why-we__slider {
  padding: 3.125rem !important;
  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;
}

.why-we__top .top-header__text {
  max-width: 67.5rem;
  margin: 0 auto;
}

.why-we__wrapper {
  max-width: 55rem;
  max-height: 26rem;
}

.why-we__slide {
  overflow: hidden;
  max-width: 55rem;
  border-radius: 3.75rem;
  padding: 6.25rem;
  background-color: #d2f28e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5rem;
  -moz-column-gap: 5rem;
  column-gap: 5rem;
  height: 25rem;
  position: relative;
  z-index: 1;
}

.why-we__slide::before {
  content: "";
  background: url("/static/img/icons/line-one.svg") 0 0 no-repeat;
  height: 100%;
  width: 7.5rem;
  left: 2.5rem;
  top: 0;
  position: absolute;
  z-index: -1;
}

.why-we__swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 0.75rem;
  padding: 1.25rem;
  border: .0625rem solid #595b5f;
  border-radius: 1.625rem;
}

.why-we__swiper-pagination .swiper-pagination-bullet {
  width: 0.75rem;
  cursor: pointer;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #595b5f;
}

.why-we__swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #202020;
}

.why-we__info {
  width: 3.25rem;
  height: 6.25rem;
  border: .0625rem solid #595b5f;
  border-radius: 1.625rem;
  position: relative;
}

.why-we__info span {
  background-color: #202020;
  border-radius: .375rem;
  width: .75rem;
  display: block;
  position: absolute;
  top: 1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 2rem;
}

.slide-why-we--center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.slide-why-we__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 6.25rem;
  flex: 0 0 6.25rem;
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  background-color: #202020;
  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: 1.25rem;
}

.slide-why-we__icon img {
  max-width: 100%;
}

.slide-why-we__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}

.slide-why-we__title:not(:last-child) {
  margin-bottom: 2.5rem;
}

.slide-why-we__text {
  font-size: 1.25rem;
  font-family: "Ubuntu";
  color: #666;
  line-height: 140%;
}

.quality {
  padding-bottom: 8rem;
}

.quality__top {
  margin-bottom: 3.75rem;
}

.quality__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}

.quality__body:not(:last-child) {
  margin-bottom: 3.75rem;
}

.quality__item {
  border-radius: 2.5rem;
  padding: 2rem;
  background: #f6f6f6;
}

.quality__links {
  -webkit-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.quality__link {
  padding: 1.25rem 1.1875rem;
}

.item-quality__icon img {
  max-width: 100%;
}

.item-quality__title {
  font-size: 5rem;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.item-quality__text {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Ubuntu";
  line-height: 120%;
  color: #595b5f;
}

.order {
  padding-bottom: 8rem;
  position: relative;
  z-index: 1;
}

.order::before {
  content: "";
  position: absolute;
  background: url("/static/img/icons/order-decor.svg") 0 0 no-repeat;
  right: 0rem;
  top: 0;
  width: 31.25rem;
  height: 24rem;
  z-index: -1;
}

.order__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.order__title {
  margin-bottom: 3.75rem;
}

.order__slider {
  padding: 2.5rem !important;
}

.order__slide {
  overflow: hidden;
  cursor: pointer;
}

.order__top {
  margin-bottom: 2.5rem;
  margin-top: 3.75rem;
  padding: 0rem 1.25rem;
}

.order__top-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.order__top-text {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Ubuntu";
  line-height: 120%;
  color: #595b5f;
}

.order__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2.5rem;
}

.order__slide {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 31.25rem;
  flex: 0 0 31.25rem;
  background-color: #d2f28e;
  border-radius: 3.75rem;
  padding: 3.75rem 3rem;
  min-height: 25rem;
  cursor: pointer;
  -webkit-transition: -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
  transition: -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
  transition: transform .3s ease, box-shadow .3s ease;
  transition: transform .3s ease, box-shadow .3s ease, -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
  z-index: var(--z, 1);
  -webkit-box-shadow: var(--shadow, 0 5px 25px rgba(0, 0, 0, 0.15));
  box-shadow: var(--shadow, 0 5px 25px rgba(0, 0, 0, 0.15));
}

.order__slide:not(:first-child) {
  margin-left: -350px;
}

.order__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: rgba(32, 32, 32, .2);
  opacity: 1;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  pointer-events: none;
}

.order__slide:first-child::before {
  opacity: 0;
}

.order__slide:hover::before {
  opacity: 0;
}

.order__slide:hover {
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
  z-index: 100;
  -webkit-box-shadow: 0 12px 35px rgba(0, 0, 0, .25);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .25);
}

.order__body.has-hover .order__slide:first-child::before {
  opacity: 1;
}

.order__slide:nth-child(1) {
  --z: 6;
  --shadow: none;
}

.order__slide:nth-child(2) {
  --z: 5;
}

.order__slide:nth-child(3) {
  --z: 4;
}

.order__slide:nth-child(4) {
  --z: 3;
}

.order__slide:nth-child(5) {
  --z: 2;
}

.order__slide:nth-child(6) {
  --z: 1;
}

.order__slide:first-child,
.order__slide:first-child:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  z-index: 11;
  cursor: default;
}

.slide-order {
  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;
}

.slide-order::after {
  content: "";
  position: absolute;
  background: url("/static/img/icons/star-card.svg") 0 0 no-repeat;
  width: 17.5rem;
  height: 17.5rem;
  z-index: -1;
  right: -3.125rem;
  top: 0;
}

.slide-order--2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.slide-order--2:not(:first-child) {
  margin-left: -110px;
}

.slide-order--2::after {
  top: 0;
}

.slide-order__text {
  font-size: 1.25rem;
  line-height: 140%;
  color: #666;
  font-family: "Ubuntu";
}

.slide-order__icon {
  width: 6.25rem;
  height: 100px;
  background-color: #202020;
  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%;
  padding: 1.25rem;
}

.slide-order__icon img {
  max-width: 100%;
}

.slide-order__title {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.slide-order__number {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  right: 3.125rem;
}

.our-projects {
  padding-bottom: 8rem;
  --scroll-progress: 0;
}

.our-projects__top {
  max-width: 56.25rem;
  margin: 0 auto 12.625rem;
}

.our-projects__body {
  background: #d4def7;
  border-radius: 3.75rem;
  height: 20rem;
  position: relative;
  z-index: 1;
}

.our-projects__body::before {
  content: "";
  position: absolute;
  -webkit-transition: -webkit-transform .2s linear;
  transition: -webkit-transform .2s linear;
  transition: transform .2s linear;
  transition: transform .2s linear, -webkit-transform .2s linear;
  -webkit-transform: translateY(calc(var(--scroll-progress, 0) * 50px));
  -ms-transform: translateY(calc(var(--scroll-progress, 0) * 50px));
  transform: translateY(calc(var(--scroll-progress, 0) * 50px));
  background: url("/static/img/icons/star-black.svg") 0 0/contain no-repeat;
  width: 3rem;
  height: 5rem;
  left: -3.125rem;
  top: 1.25rem;
}

.our-projects__lines img {
  position: absolute;
  width: 23.75rem;
  height: 100%;
  right: 15.625%;
  top: 0;
  z-index: -1;
  -o-object-fit: cover;
  object-fit: cover;
}

.our-projects__decor img {
  -webkit-transition: -webkit-transform .2s linear;
  transition: -webkit-transform .2s linear;
  transition: transform .2s linear;
  transition: transform .2s linear, -webkit-transform .2s linear;
  position: absolute;
}

.our-projects__decor img:first-child {
  width: 6.955625rem;
  height: 5.9375rem;
  left: 13.180469%;
  bottom: -3.125rem;
}

.our-projects__decor img:nth-child(2) {
  right: 18.75%;
  top: -3.125rem;
  width: 8.75rem;
  height: 6.875rem;
  z-index: 1;
}

.our-projects__decor img:nth-child(3) {
  right: -3.125rem;
  top: 50%;
  width: 9.125rem;
  height: 9.6875rem;
}

.our-projects__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  top: -8.875rem;
  left: 3.75rem;
  -webkit-column-gap: 1.75rem;
  -moz-column-gap: 1.75rem;
  column-gap: 1.75rem;
}

.our-projects__row--2 {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  left: -3.75rem;
}

.our-projects__row:not(:last-child) {
  margin-bottom: 1.75rem;
}

.our-projects__item {
  background: #f6f6f6;
  border-radius: 2.5rem;
  padding: 2rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 26.25rem;
  flex: 0 1 26.25rem;
}

.item-our-projects__logo {
  margin-bottom: 1.75rem;
}

.item-our-projects__title {
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.item-our-projects__link {
  font-weight: 700;
  font-family: "Ubuntu";
  display: inline-block;
  border: .0625rem solid #595b5f;
  border-radius: .75rem;
  padding: 0.75rem 1rem;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.bonuses {
  padding-bottom: 8rem;
  position: relative;
  z-index: 1;
}

.bonuses::before {
  content: "";
  position: absolute;
  background: url("/static/img/icons/star-green.svg") 0 0/cover no-repeat;
  width: 35.875rem;
  height: 35.875rem;
  z-index: -1;
  top: -5%;
  left: -10%;
}

.bonuses__title {
  margin-bottom: 3.75rem;
}

.bonuses__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.bonuses__body::before {
  content: "";
  position: absolute;
  background: url("/static/img/icons/star-black.svg") 0 0 no-repeat;
  width: 3rem;
  height: 5rem;
  top: -2.9375rem;
  right: 1.875rem;
  z-index: 2;
}

.bonuses__item {
  background-color: #d2f28e;
  border-radius: 3.75rem;
  padding: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.75rem;
  -moz-column-gap: 3.75rem;
  column-gap: 3.75rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.bonuses__item:first-child::before {
  content: "";
  position: absolute;
  background: url("/static/img/icons/line-two.svg") 0 0/cover no-repeat;
  width: 15rem;
  height: 100%;
  top: 0;
  left: 2.5rem;
  z-index: -1;
}

.bonuses__item--blue {
  background-color: #4a7af4;
}

.bonuses__item--blue .item-bonuses__number {
  background-color: #fff;
  color: #202020;
}

.bonuses__item--blue .item-bonuses__number-title,
.bonuses__item--blue .item-bonuses__title,
.bonuses__item--blue .item-bonuses__text {
  color: #fff;
}

.bonuses__item--blue::before {
  content: "";
  position: absolute;
  background: url("/static/img/icons/star-card-blue.svg") 0 0 no-repeat;
  bottom: -49%;
  left: -6%;
  width: 25rem;
  height: 25rem;
  z-index: -1;
}

.item-bonuses__left {
  text-align: center;
}

.item-bonuses__number {
  width: 6.25rem;
  height: 6.25rem;
  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: #202020;
  border-radius: 50%;
  color: #fff;
  font-size: 3.75rem;
  font-weight: 600;
}

.item-bonuses__number-title {
  font-size: 1.25rem;
  font-family: "Ubuntu";
}

.item-bonuses__title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.item-bonuses__text {
  line-height: 140%;
  font-family: "Ubuntu";
  color: #666;
}

.guarantee {
  padding-bottom: 8rem;
}

.guarantee__top {
  max-width: 56.25rem;
  margin: 0 auto 3.75rem;
}

.guarantee__block {
  background: #d4def7;
  border-radius: 3.75rem;
  padding: 3.75rem;
  max-width: 55rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.guarantee__block::before {
  content: "";
  position: absolute;
  background: url("/static/img/icons/star-questions.svg") 0 0 no-repeat;
  top: -3.125rem;
  right: -3.125rem;
  width: 20rem;
  height: 20rem;
  z-index: -1;
}

.guarantee__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
}

.guarantee__stars img {
  width: 3rem !important;
  height: 5rem;
  position: absolute;
}

.guarantee__stars img:first-child {
  left: 9.545455%;
  bottom: -3.125rem;
}

.guarantee__stars img:nth-child(2) {
  right: 5.909091%;
  top: -3.125rem;
}

.guarantee__input {
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  background-color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Ubuntu";
  width: 100%;
  outline: none;
}

.guarantee__input::-webkit-input-placeholder {
  color: #595b5f;
}

.guarantee__input::-moz-placeholder {
  color: #595b5f;
}

.guarantee__input:-ms-input-placeholder {
  color: #595b5f;
}

.guarantee__input::-ms-input-placeholder {
  color: #595b5f;
}

.guarantee__input::placeholder {
  color: #595b5f;
}

.guarantee__button {
  white-space: nowrap;
}

.love-us {
  padding-bottom: 8rem;
}

.love-us__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;
  margin-bottom: 3.75rem;
}

.love-us__title {
  text-align: start;
}

.love-us__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}

.love-us__slide {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}

.slide-love-us__right {
  background: #d4def7;
  border-radius: 2.5rem;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.left-slide-love__image {
  margin-bottom: 1.75rem;
}

.left-slide-love__image img {
  width: 100%;
  aspect-ratio: 2.06/1;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2.5rem;
}

.left-slide-love__blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.left-slide-love__block {
  border-radius: 2.5rem;
  padding: 2rem;
  background: #f6f6f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 12.5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.left-slide-love__title {
  font-family: "Ubuntu";
  color: #666;
  line-height: 140%;
}

.left-slide-love__number {
  font-weight: 600;
  font-size: 2rem;
  line-height: 100%;
  text-transform: uppercase;
}

.right-slide-love__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.right-slide-love__text {
  font-family: "Ubuntu";
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 120%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.right-slide-love__text:not(:last-child) {
  margin-bottom: 2.5rem;
}

.right-slide-love__text p:not(:last-child) {
  margin-bottom: 4.625rem;
}

.right-slide-love__text ul {
  border-radius: 1.25rem;
  padding: 2rem;
  background: rgba(255, 255, 255, .12);
}

.right-slide-love__text ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
}

.right-slide-love__text ul li::before {
  display: block;
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0.75rem;
  flex: 0 0 0.75rem;
  background: url("/static/img/icons/star-item.svg") 0 0/contain no-repeat;
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.3125rem;
}

.right-slide-love__text ul li:not(:last-child) {
  margin-bottom: 1.25rem;
}

.right-slide-love__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
}

.right-slide-love__link {
  width: 100%;
}

.questions {
  padding-bottom: 8rem;
  position: relative;
  z-index: 1;
}

.questions::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 0;
  background: url("/static/img/icons/decor-questions.svg") 0 0 no-repeat;
  width: 31.25rem;
  height: 31.25rem;
  z-index: -1;
}

.questions--2 {
  padding-bottom: 2.5rem;
}

.questions--2::before {
  display: none;
}

.questions__top {
  max-width: 56.25rem;
  margin: 0 auto 3.75rem;
}

.questions__title-form {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 1.25rem;
}

.questions__block {
  border-radius: 3.75rem;
  padding: 3.75rem 3.75rem 2.5rem;
  background-color: #d2f28e;
  position: relative;
  z-index: 1;
}

.questions__block::before {
  content: "";
  position: absolute;
  background: url("/static/img/icons/star-questions.svg") 0 0/contain no-repeat;
  height: 120%;
  z-index: -1;
  width: 30rem;
  right: 2.5rem;
  bottom: -2.5rem;
}

.questions__stars img {
  position: absolute;
  width: 3rem;
  height: 5rem;
}

.questions__stars img:first-child {
  top: 1.875rem;
  left: -2.5rem;
}

.questions__stars img:nth-child(2) {
  right: 8%;
  bottom: -1.25rem;
}

.questions__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form-questions__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-questions__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}

.form-questions__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  margin-bottom: 1rem;
}

.form-questions__input {
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  outline: none;
  font-weight: 500;
  width: 100%;
  font-family: "Ubuntu";
}

.form-questions__input::-webkit-input-placeholder {
  color: #595b5f;
}

.form-questions__input::-moz-placeholder {
  color: #595b5f;
}

.form-questions__input:-ms-input-placeholder {
  color: #595b5f;
}

.form-questions__input::-ms-input-placeholder {
  color: #595b5f;
}

.form-questions__input::placeholder {
  color: #595b5f;
}

.form-questions__input--txt {
  min-height: 8rem;
  resize: none;
}

.form-questions__checkbox:not(:last-child) {
  margin-bottom: 2.5rem;
}

.form-questions__button {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.services__title {
  margin-bottom: 3.75rem;
}

.services__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.services__item {
  background: #f6f6f6;
  border-radius: 2.5rem;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 25rem;
  cursor: pointer;
}

.services__item:hover {
  background-color: #4a7af4;
  min-height: 25rem;
}

.services__item:hover .item-services__logo {
  width: 4rem;
  height: 4rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 4rem;
  flex: 0 0 4rem;
  background-color: #fff;
  padding: 1.25rem;
  margin-bottom: 0rem;
}

.services__item:hover .item-services__body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-bottom: 2.875rem;
}

.services__item:hover .item-services__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: block;
}

.services__item:hover .item-services__price {
  font-size: 0.75rem;
  color: #fff;
}

.services__item:hover .item-services__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  color: #fff;
}

.services__item:hover .item-services__link-title {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.hero_slide_cartbtn {
  width: 50% !important;
  height: 100% !important;
  flex: none !important;
  border-radius: 0 !important;
}

.hero_slide_cartbtn.incart {
  background-color: #d2f28e !important;
  pointer-events: none;
}

.hero_slide_cartbtn::before {
  transition: all 1s;
}

.hero_slide_cartbtn.incart::before {
  filter: invert(1);
}

.hero_slide_cartbtn.incart::before,
.hero_slide_cartbtn:hover::before {
  scale: 2;
}

/* Контейнер оверлея */
.item-cart-header__hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
  border-radius: 12px;
  overflow: hidden;
  z-index: 10;
}

/* Показ при наведении на карточку */
.item-cart-header:hover .item-cart-header__hover-overlay {
  opacity: 1;
  visibility: visible;
}

/* Общие стили кнопок */
.cart-overlay-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.cart-overlay-btn:hover {
  filter: brightness(0.9); /* Слегка темнеет при наведении на половинку */
}

/* 1. СТИЛЬ УДАЛЕНИЯ (Красный пастельный) */
.cart-overlay-btn--delete {
  background-color: #fcaeae; /* Тот самый пастельный красный */
  color: #1a1a1a; /* Черная иконка мусорки */
  font-size: 22px;
}

/* 2. СТИЛЬ ПЕРЕХОДА (Синий) */
.cart-overlay-btn--go {
  background-color: #4a76f1; /* Синий как на макете */
  color: #fff; /* Белая стрелочка */
  font-size: 20px;
}

/* Фикс для иконок, если они съезжают */
.cart-overlay-btn span {
  display: block;
  line-height: 1;
}

.cart-header__item:hover .item-cart-header__hover-overlay {
  opacity: 1;
  visibility: visible;
}


.item-cart-header {
    position: relative;
    /* background: #ffffff; Возвращаем чистый белый */
    border: 1px solid #f0f0f0; /* Тонкая рамка для объема */
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 20px 16px; /* Увеличили padding сверху и снизу до 20px, чтобы не была тонкой */
    min-height: 80px; /* Гарантируем солидную высоту */
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.item-cart-header:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.item-cart-header__inner {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
}

/* Иконка */
.item-cart-header__main-icon {
    /* flex: 0 0 44px; */
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-cart-header__main-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Тексты */
.item-cart-header__info {
    flex: 1;
}

.item-cart-header__title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.item-cart-header__price {
    font-size: 14px;
    color: #4a76f1;
    margin: 0;
    font-weight: 600;
}

/* Оверлей — без изменений по логике, только цвета */
.item-cart-header__hover-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    z-index: 5;
}

.item-cart-header:hover .item-cart-header__hover-overlay {
    opacity: 1;
    visibility: visible;
}

.cart-overlay-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cart-overlay-btn--delete {
    background-color: #fcaeae; /* Пастельный красный */
    color: #000;
    font-size: 24px;
}

.cart-overlay-btn--go {
    background-color: #4a76f1; /* Синий */
    color: #fff;
    font-size: 22px;
}


/* .item-cart-header__cart {

} */

.services__item:hover .item-cart-header__cart {
  background-color: #fff;
}

.services__item:hover .item-cart-header__cart::before {
  content: "";
  display: block;
  background: url("/static/img/icons/cart-black.svg") 0 0 no-repeat;
  width: 0.75rem;
  height: 0.8125rem;
}

.hero_slide_gotopage {
  width: 50% !important;
  border: none !important;
  flex: none !important;
  height: 100% !important;
}

.hero_slide_gotopage::before {
  color: white !important;
  transition: all 1s;

}

.hero_slide_gotopage:hover::before {
  scale: 2;
}

.services__item:hover .item-services__cart {
  background-color: #fff;
}

.services__item:hover .item-services__cart::before {
  content: "";
  display: block;
  background: url("/static/img/icons/cart-black.svg") 0 0 no-repeat;
  width: 0.75rem;
  height: 0.8125rem;
}

.services__item:hover .item-services__link {
  border: .0625rem solid #fff;
}

.services__item:hover .item-services__link::before {
  color: #fff;
}

.item-services {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.item-services::before {
  content: "";
  position: absolute;
  bottom: -0.625rem;
  right: -1.875rem;
  background: url("/static/img/icons/Union.svg") 0 0 no-repeat;
  width: 12.5rem;
  height: 9.5rem;
  z-index: -1;
}

.item-services--blue {
  background-color: #4a7af4;
  min-height: 13.75rem;
  padding: 1.25rem;
  border-radius: 2.5rem;
}

.item-services--blue .item-services__logo {
  width: 4rem;
  height: 2.75rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 4rem;
  flex: 0 0 4rem;
  background-color: transparent;
  padding: 1.25rem;
  margin-bottom: 0rem;
}

.item-services--blue .item-services__body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-bottom: 1rem;
}

.item-services--blue .item-services__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: block;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.item-services--blue .item-services__price {
  font-size: 0.75rem;
  color: #fff;
}

.item-services--blue .item-services__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  color: #fff;
}

.item-services--blue .item-services__link-title {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.item-services--blue .item-services__cart {
  background-color: #fff;
}

.item-services--blue .item-services__cart::before {
  content: "";
  display: block;
  background: url("/static/img/icons/cart-black.svg") 0 0 no-repeat;
  width: 0.75rem;
  height: 0.8125rem;
}

.item-services--blue .item-services__link {
  border: .0625rem solid #fff;
}

.item-services--blue .item-services__link::before {
  color: #fff;
}

.item-services__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.item-services__text {
  display: none;
  font-size: 1.25rem;
  line-height: 140%;
  font-family: "Ubuntu";
  color: #fff;
}

.item-services__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.item-services__logo {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  background-color: #d4def7;
  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;
  margin-bottom: 3.125rem;
}

.item-services__logo img {
  max-width: 100%;
}

.item-services__price {
  font-weight: 700;
  font-family: "Ubuntu";
  color: #595b5f;
  margin-bottom: 0.75rem;
}

.item-services__link-title {
  display: block;
  font-size: 1.75rem;
  line-height: 120%;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.item-services__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
}

.item-services__cart {
  position: relative;
  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: #202020;
  border-radius: .75rem;
  padding: .75rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2.5rem;
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
}

.item-services__cart::before {
  content: "";
  display: block;
  background: url("/static/img/icons/cart-white.svg") 0 0 no-repeat;
  width: 0.75rem;
  height: 0.8125rem;
}

.item-services__link {
  width: 2.5rem;
  height: 2.5rem;
  border: .0625rem solid #595b5f;
  border-radius: .75rem;
  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;
}

.item-services__link::before {
  color: #595b5f;
  font-size: 0.875rem;
}

.posts__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.posts__item {
  background: #f6f6f6;
  border-radius: 2.5rem;
  padding: 2rem;
  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;
}

.item-posts__image {
  display: block;
  margin-bottom: 0.75rem;
  overflow: hidden;
  width: 100%;
  border-radius: .75rem;
}

.item-posts__image img {
  max-width: 100%;
  width: 100%;
  height: 8.75rem;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: .75rem;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.item-posts__date {
  color: #595b5f;
  display: block;
  font-weight: 700;
  font-family: "Ubuntu";
  margin-bottom: 0.75rem;
}

.item-posts__link-title {
  display: block;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 120%;
  text-transform: uppercase;
  -webkit-transition: color .3s;
  transition: color .3s;
  margin-bottom: 1.8125rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.item-posts__text {
  font-family: "Ubuntu";
  color: #666;
  line-height: 140%;
}

.item-posts__text:not(:last-child) {
  margin-bottom: 1.8125rem;
}

.item-posts__link {
  font-family: "Ubuntu";
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #595b5f;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  border: .0625rem solid #595b5f;
  border-radius: .75rem;
  padding: .75rem;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.item-posts__link::before {
  color: #595b5f;
  font-size: 0.75rem;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.contacts {
  padding-bottom: 2.5rem;
}

.contacts__title {
  margin-bottom: 2.5rem;
}

.contacts__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.contacts__item {
  border-radius: 3.75rem;
  padding: 2.5rem;
  min-height: 19.5rem;
}

.contacts__item:first-child {
  background: #f6f6f6;
}

.contacts__item:nth-child(2) {
  background: #d4def7;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 1;
}

.contacts__item:nth-child(2)::before {
  content: "";
  position: absolute;
  background: url("/static/img/icons/decor-contacts-3.svg") 0 0 no-repeat;
  width: 27.75rem;
  height: 12.5rem;
  bottom: 0rem;
  right: 0.625rem;
  z-index: -1;
}

.contacts__item:nth-child(2) .item-contacts__title {
  max-width: 26.25rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin: 0 auto 2.5rem;
}

.contacts__details {
  border-radius: 3.75rem;
  padding: 2.5rem 3.75rem;
  background: #f6f6f6;
}

.item-contacts__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
  height: 100%;
}

.item-contacts__icon {
  width: 4.25rem;
  height: 4.25rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 4.25rem;
  flex: 0 0 4.25rem;
  border-radius: 50%;
  background-color: #4a7af4;
  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;
}

.item-contacts__content {
  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%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.item-contacts__title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.item-contacts__title span {
  font-weight: 400;
}

.item-contacts__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}

.item-contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

.item-contacts__item:not(:last-child) {
  margin-bottom: 1.5rem;
}

.item-contacts__link,
.item-contacts__info-text {
  font-weight: 500;
  font-family: "Ubuntu";
}

.item-contacts__link {
  -webkit-transition: color .3s;
  transition: color .3s;
}

.item-contacts__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.item-contacts__social-link {
  width: 4.25rem;
  height: 4.25rem;
  background-color: #202020;
  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: 1.25rem;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.item-contacts__decor img {
  position: absolute;
}

.item-contacts__decor img:first-child {
  top: 1.25rem;
  left: -3.125rem;
}

.item-contacts__decor img:nth-child(2) {
  bottom: 2.5rem;
  right: -2.5rem;
}

.item-contacts__star img {
  position: absolute;
  bottom: -1.5625rem;
  left: 2.5rem;
}

.details-contacts__title {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 2.5rem;
}

.details-contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 3.125rem;
  -moz-column-gap: 3.125rem;
  column-gap: 3.125rem;
}

.details-contacts__item:not(:last-child) {
  margin-bottom: 1.5rem;
}

.details-contacts__small-title {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Ubuntu";
  line-height: 100%;
  color: #595b5f;
  white-space: nowrap;
}

.details-contacts__info {
  font-size: 1.25rem;
  font-family: "Ubuntu";
  line-height: 100%;
  color: #666;
}

.map {
  padding-bottom: 8rem;
}

.map iframe {
  border-radius: 3.75rem;
}

.service {
  padding-top: 3.75rem;
  padding-bottom: 8rem;
}

.service__title {
  margin-bottom: 2.5rem;
}

.service__body {
  background: #d4def7;
  min-height: 15rem;
  border-radius: 3.75rem;
  position: relative;
  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;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1.25rem;
  z-index: 1;
  margin-bottom: 2.5rem;
}

.service__body::before {
  content: "";
  position: absolute;
  background: url("/static/img/icons/service-decor.svg") 0 0/cover no-repeat;
  bottom: 0rem;
  left: 9%;
  z-index: -1;
  width: 31.25rem;
  height: 100%;
}

.service__stars img {
  position: absolute;
  width: 3rem;
  height: 5rem;
}

.service__stars img:first-child {
  left: 7.8125%;
  bottom: -3.75rem;
}

.service__stars img:nth-child(2) {
  right: 0;
  top: -0.9375rem;
}

.service__decor img {
  position: absolute;
}

.service__decor img:first-child {
  left: 6.26875%;
  width: 10.3125rem;
  height: 10.3125rem;
  top: -2.5rem;
}

.service__decor img:nth-child(2) {
  z-index: -1;
  right: 18.75%;
  top: -3.75rem;
}

.service__decor img:nth-child(3) {
  right: 3.828125%;
  bottom: -3.125rem;
}

.service__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  width: 12.9375rem;
}

.service__text {
  font-size: 1.25rem;
  font-family: "Ubuntu";
  line-height: 140%;
  color: #666;
  text-align: center;
  max-width: 56.25rem;
  margin: 0 auto;
}

.ordered {
  padding-bottom: 8rem;
}

.ordered__title {
  margin-bottom: 3.75rem;
}

.ordered__wrapper {
  margin-bottom: 3.75rem;
}

.ordered__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}

.slide-ordered__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.slide-ordered__image img {
  border-radius: 2.5rem;
  /* aspect-ratio: 1.93/1; */
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.slide-ordered__body {
  border-radius: 2.5rem;
  padding: 2.5rem;
  background: #f6f6f6;
  text-align: center;
}

.slide-ordered__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.slide-ordered__text {
  font-weight: 500;
  font-family: "Ubuntu";
  font-size: 1.25rem;
  line-height: 120%;
  color: #595b5f;
}

.faq {
  padding-bottom: 8rem;
}

.faq__title {
  margin-bottom: 3.75rem;
}

.spollers__item:not(:last-child) {
  margin-bottom: 1.25rem;
}

.price {
  padding-bottom: 8rem;
}

.price__title {
  margin-bottom: 3.75rem;
}

.table-block-price {
  border-collapse: separate;
  border-spacing: .75rem 0rem;
  width: 100%;
}

.table-block-price thead tr th {
  border-radius: 1.75rem 1.75rem 0rem 0rem;
}

.table-block-price tr th {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  border-radius: 1.75rem 1.75rem 0rem 0rem;
  padding: 1.875rem;
}

.table-block-price tr th:not(:last-child) {
  border-right: 1px solid #fff;
}

.table-block-price tr th:first-child {
  background-color: #202020;
}



@media (max-width: 1540px) {
  .pcc {
    display: none;
  }
}

/* :last-child */
.table-block-price tr th {
  background-color: #4a7af4;
}

.table-block-price tr td {
  font-weight: 600;
  font-size: 1.25rem;
  text-align: center;
  line-height: 120%;
  text-transform: uppercase;
  padding: 1.875rem;
}

.table-block-price tr td span {
  color: #595b5f;
}

.table-block-price tr td:first-child {
  background: #f6f6f6;
  width: 74.0625%;
}

.table-block-price tr td:last-child {
  background: #f0f4fb;
  width: 25%;
}

.table-block-price tr td:not(:last-child) {
  border-right: .0625rem solid #fff;
}

.table-block-price tr:not(:last-child) td {
  border-bottom: .0625rem dashed #595b5f;
}

.table-block-price tr:last-child td {
  border-radius: 0 0 28px 28px;
}

.what-get {
  padding-bottom: 8rem;
}

.what-get__top {
  margin-bottom: 3.75rem;
}

.what-get__body {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.75rem;
}

.what-get__item {
  border-radius: 1.75rem;
  padding: 1.5rem 1.75rem;
  background: #f6f6f6;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  position: relative;
}

.what-get__item::before {
  content: "";
  position: absolute;
  background: url("/static/img/icons/tick-circle.svg") 0 0/contain no-repeat;
  width: 1.25rem;
  height: 1.25rem;
  top: -0.1875rem;
  left: -0.1875rem;
}

.nuances {
  padding-bottom: 8rem;
}

.nuances__title {
  margin-bottom: 3.75rem;
}

.nuances__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.nuances__body::before {
  content: "";
  position: absolute;
  background: url("/static/img/icons/star-black.svg") 0 0/contain no-repeat;
  width: 3rem;
  height: 5rem;
  top: -3.125rem;
  right: 2rem;
  z-index: 2;
}

.nuances__item {
  display: -ms-grid;
  display: grid;
  border-radius: 3.75rem;
  padding: 3.75rem;
  background: #d4def7;
  -webkit-column-gap: 3.75rem;
  -moz-column-gap: 3.75rem;
  column-gap: 3.75rem;
  row-gap: 0rem;
  min-height: 21.25rem;
  -ms-grid-rows: auto 1.75rem 1fr;
  grid-template-rows: auto 1fr;
  row-gap: 1.75rem;
  grid-template-areas: "icon title" "icon text";
  position: relative;
  z-index: 1;
}

.nuances__item:first-child::before,
.nuances__item:last-child::before {
  content: "";
  position: absolute;
  background: url("/static/img/icons/line-two.svg") 0 0/100% 100% no-repeat;
  height: 100%;
  width: 15rem;
  z-index: -1;
  left: 2.5rem;
  top: 0;
}

.item-nuances__icon {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: icon;
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  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: #202020;
  padding: 0.9375rem;
}

.item-nuances__icon img {
  max-width: 100%;
}

.item-nuances__title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}

.item-nuances__text {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: text;
  color: #666;
  font-family: "Ubuntu";
  line-height: 140%;
}

.who-suit {
  padding-bottom: 8rem;
}

.who-suit__title {
  margin-bottom: 3.75rem;
}

.who-suit__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.75rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.who-suit__item {
  background: #f6f6f6;
  border-radius: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1.375rem;
  -moz-column-gap: 1.375rem;
  column-gap: 1.375rem;
  padding: 1.5rem 1.75rem;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  position: relative;
}

.who-suit__item::before {
  content: "";
  background: url("/static/img/icons/tick-circle.svg") 0 0/contain no-repeat;
  width: 1.25rem;
  height: 1.25rem;
}

.examples {
  padding-bottom: 8rem;
}

.examples__title {
  margin-bottom: 3.75rem;
}

.examples__wrapper {
  margin-bottom: 3.75rem;
}

.examples__slide {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}

.examples__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}

.slide-examples__image img {
  max-width: 100%;
  aspect-ratio: 1.29/1;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.slide-examples__content {
  background: #f6f6f6;
  border-radius: 2.5rem;
  padding: 2.5rem;
  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;
}

.slide-examples__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.slide-examples__text {
  font-weight: 500;
  line-height: 140%;
  color: #595b5f;
}

.what-need {
  padding-bottom: 8rem;
}

.what-need__top {
  margin-bottom: 3.75rem;
}

.what-need__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.what-need__item {
  background: #f6f6f6;
  border-radius: 2.5rem;
  padding: 2rem;
}

.item-what-need__icon {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  background-color: #202020;
  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;
  margin-bottom: 2.5rem;
}

.item-what-need__icon img {
  max-width: 100%;
}

.item-what-need__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.item-what-need__text {
  font-weight: 700;
  font-family: "Ubuntu";
  line-height: 120%;
  color: #595b5f;
}

.post {
  padding-top: 3.75rem;
  padding-bottom: 8rem;
}

.post__title {
  margin-bottom: 3.75rem;
}

.post__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30rem;
  grid-template-columns: 1fr 30rem;
  -webkit-column-gap: 3.75rem;
  -moz-column-gap: 3.75rem;
  column-gap: 3.75rem;
}

.post__content img {
  max-width: 100%;
}

.content-post__image {
  margin-bottom: 2.5rem;
}

.content-post__image img {
  /* aspect-ratio: 2.31/1; */
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2.5rem;
  max-width: 100%;
}

.content-post__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  margin-bottom: 2.5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.content-post__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 37.625rem;
  flex: 0 1 37.625rem;
}

.content-post__date {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 10.3125rem;
  flex: 0 1 10.3125rem;
  font-weight: 700;
  color: #4a7af4;
}

.content-post__text p:not(:last-child) {
  margin-bottom: 1.25rem;
}

.content-post__body p {
  font-family: "Ubuntu";
  line-height: 160%;
}

.content-post__body img {
  /* width: 100%; */
  -o-object-fit: cover;
  object-fit: cover;
}

.content-post__body img:not(:last-child) {
  margin-bottom: 1.25rem;
}

.content-post__body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 2rem;
  margin-top: 2.5rem;
}

.content-post__body h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  margin-top: 2rem;
}

.content-post__body h4 span {
  color: #595b5f;
}

.content-post__body ul {
  margin-top: 1.25rem;
}

.content-post__body ul:not(:last-child) {
  margin-bottom: 1.25rem;
}

.content-post__body a {
  text-decoration: underline;
  color: #4a7af4;
}

.content-post__body ul:not(.list-second, .content-post__social-list) li {
  font-family: "Ubuntu";
  line-height: 160%;
  display: -webkit-box;
  display: -ms-flexbox;
  /* display: flex; */
  -webkit-column-gap: 0.85rem;
  -moz-column-gap: 0.85rem;
  column-gap: 0.85rem;
  list-style: disc;
}

.content-post__body ul:not(.list-second, .content-post__social-list) li:not(:last-child) {
  margin-bottom: 1.25rem;
}

.content-post__body ul:not(.list-second, .content-post__social-list) li::before {
  content: "";
  background: url("/static/img/icons/tick-circle.svg") 0 0/contain no-repeat;
  width: 1.0375rem;
  height: 1.0375rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.0375rem;
  flex: 0 0 1.0375rem;
  display: block;
  margin-top: 0.25rem;
}

.content-post__client {
  border-radius: 1.75rem;
  padding: 1.5rem;
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  background: #d4def7;
}

.content-post__client:not(:last-child) {
  margin-bottom: 2.5rem;
}

.content-post__icon {
  width: 2rem;
  height: 2rem;
  background-color: #202020;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2rem;
  flex: 0 0 2rem;
  border-radius: .75rem;
  padding: 0.5rem;
  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;
}

.content-post__icon img {
  max-width: 100%;
}

.content-post__info h5 {
  font-weight: 700;
  font-family: "Ubuntu";
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

.content-post__text-info p:not(:last-child) {
  margin-bottom: 0rem;
}

.content-post__text-info blockquote {
  line-height: 140%;
  margin-bottom: 0.75rem;
  font-family: "Ubuntu";
}

.content-post__image-block {
  margin-top: 2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.content-post__image-block:not(:last-child) {
  margin-bottom: 2rem;
}

.content-post__image-block--reverse p {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.content-post__image-block--reverse .content-post__image-post {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.content-post__image-post img {
  /* aspect-ratio: 1.8/1; */
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1.75rem;
}

.content-post__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
}

.content-post__social-link {
  border-radius: 12px;
  padding: 12px;
  width: 2.5rem;
  height: 2.5rem;
  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: #f6f6f6;
  padding: 0.8125rem;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.content-post__social-link img {
  max-width: 100%;
}

.sidebar-post__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f6f6f6;
  border-radius: 1.75rem;
  padding: 1.25rem;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}

.sidebar-post__image {
  width: 6.5625rem;
  height: 6.5625rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 6.5625rem;
  flex: 0 0 6.5625rem;
}

.sidebar-post__image img {
  border-radius: 0.75rem;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sidebar-post__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sidebar-post__date {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #595b5f;
  margin-bottom: 0.5rem;
}

.sidebar-post__title {
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 0.6875rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.sidebar-post__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #595b5f;
  -webkit-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-transition: color .3s;
  transition: color .3s;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.sidebar-post__link::before {
  color: #595b5f;
  font-size: 0.5rem;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.list-second li {
  line-height: 160%;
  font-family: "Ubuntu";
  list-style: disc;
  margin-left: 1.25rem;
}

.list-second li:not(:last-child) {
  margin-bottom: 1.25rem;
}

.list-second li::marker {
  color: #595b5f;
  font-size: 1.5625rem;
}

.list-second li span {
  word-break: break-all;
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

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

.swiper-vertical>.swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

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

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

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

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

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

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-centered>.swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -ms-flex-order: 9999;
  order: 9999;
}

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

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

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

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

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

.decor-image img {
  transition: transform 0.1s linear;
}

@media (min-width: 29.375em) {
  .footer__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (min-width: 37.5em) {
  .menu__link::after {
    left: 50%;
    bottom: -1.375rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .cart-header {
    top: 0;
    left: 0;
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }

  .body-hero__link {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17rem;
    flex: 0 0 17rem;
  }

  .quality__link {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17rem;
    flex: 0 0 17rem;
  }

  .details-contacts__info {
    text-align: right;
  }
}

@media (min-width: 43.75em) {
  .guarantee__input {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 26.5rem;
    flex: 0 1 26.5rem;
  }

  .guarantee__button {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 20.25rem;
    flex: 0 1 20.25rem;
  }
}

@media (min-width: 47.99875em) {
  .item-quality__icon {
    margin-bottom: 1.75rem;
  }
}

@media (min-width: 61.99875em) {
  /* .breadcrumbs {
    display: none;
  } */

  .breadcrumbs--show-pc {
    display: block;
  }

  .header__menu {
    background: #f6f6f6;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
  }

  .menu__close {
    display: none;
  }

  .slide-order {
    top: 0;
  }

  .slide-order__number {
    top: 3.75rem;
  }
}

@media (min-width: 68.75em) {
  .sidebar-post__block:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 78.125em) {
  .item-contacts__info {
    padding-left: 6.75rem;
  }
}

@media (min-width: 25em) {
  .item-bonuses__number {
    margin-bottom: 1.25rem;
  }

  .ordered {
    padding-bottom: 10rem;
  }
}

@media (max-width: 87.5em) {
  .questions__stars img:first-child {
    left: -1.25rem;
  }
}

@media (max-width: 86.25em) {
  .our-projects__body::before {
    left: 0rem;
    top: -1.25rem;
  }

  .our-projects__decor img:first-child {
    left: 3.180469%;
    bottom: -3.125rem;
  }

  .our-projects__decor img:nth-child(2) {
    right: 3%;
  }
}

@media (max-width: 85em) {
  .body-hero__decor img:nth-child(2) {
    right: -2.5rem;
  }
}

@media (max-width: 83.75em) {
  .order__slide {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30rem;
    flex: 0 0 30rem;
  }
}

@media (max-width: 81.25em) {
  .item-contacts__info {
    -webkit-column-gap: 1.5625rem;
    -moz-column-gap: 1.5625rem;
    column-gap: 1.5625rem;
  }
}

@media (max-width: 77.5em) {
  .slide-order--2:not(:first-child) {
    margin-left: -230px;
  }
}

@media (max-width: 75em) {
  .love-us__slide {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }

  .left-slide-love__blocks {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .right-slide-love__text p:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 68.75em) {
  .title {
    font-size: 4.5rem;
  }

  .hero__body {
    min-height: 26.25rem;
  }

  .body-hero__decor img:first-child {
    left: 9.125%;
  }

  .body-hero__decor img:nth-child(2) {
    bottom: -1.25rem;
  }

  .body-hero__image {
    right: 12.047619%;
  }

  .body-hero__image img {
    width: 37.5rem;
    height: 31.25rem;
  }

  .quality__body {
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }

  .quality__item {
    padding: 1.5rem;
  }

  .item-quality__text {
    font-size: 1rem;
  }

  .order__slide:not(:first-child) {
    margin-left: -380px;
  }

  .our-projects__body {
    height: 25rem;
  }

  .our-projects__body::before {
    left: -0.9375rem;
    top: 1.25rem;
  }

  .our-projects__decor img:nth-child(3) {
    right: -1.875rem;
    top: 70%;
  }

  .our-projects__row {
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }

  .our-projects__row:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .our-projects__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 21.25rem;
    flex: 0 1 21.25rem;
  }

  .bonuses__body {
    gap: 2rem;
  }

  .bonuses__item {
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    padding: 2.5rem;
  }

  .item-bonuses__number {
    width: 5rem;
    height: 5rem;
  }

  .guarantee__block::before {
    right: 5%;
  }

  .questions::before {
    left: -5%;
  }

  .questions__title-form {
    display: none;
  }

  .questions__block::before {
    bottom: -6.25rem;
    height: 100%;
  }

  .form-questions__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }

  .services__body {
    gap: 1.25rem;
  }

  .item-services__text {
    font-size: 1rem;
  }

  .item-services__link-title {
    font-size: 1.5rem;
  }

  .posts__container {
    gap: 1.25rem;
  }

  .posts__item {
    padding: 1.5rem;
  }

  .item-posts__text {
    font-size: 0.75rem;
  }

  .item-contacts__top {
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }

  .map iframe {
    height: 37.5rem;
  }

  .service__body {
    min-height: 21.25rem;
  }

  .service__body::before {
    height: 17.5rem;
    background: url("/static/img/icons/decor-service2.svg") 0 0/cover no-repeat;
  }

  .service__decor img:nth-child(3) {
    right: -4%;
  }

  .service__decor img:nth-child(2) {
    height: 26.25rem;
    right: 12%;
  }

  .slide-ordered__top {
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }

  /* .slide-ordered__image img {
    aspect-ratio: 1.44/1;
  } */

  .table-block-price tr td:first-child {
    width: 64.830508%;
  }

  .table-block-price tr td:last-child {
    width: 33.898305%;
  }

  .what-get__body {
    gap: 1rem;
  }

  .what-get__item {
    font-size: 1rem;
  }

  .nuances__body {
    gap: 2rem;
  }

  .nuances__item {
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    padding: 2.5rem;
  }

  .item-nuances__icon {
    width: 5rem;
    height: 5rem;
  }

  .who-suit__body {
    gap: 1rem;
  }

  .who-suit__item {
    padding: 1.5rem;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }

  .examples__slide {
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }

  .what-need__body {
    gap: 1rem;
  }

  .what-need__item {
    padding: 1.5rem 1.25rem;
    min-height: 15rem;
  }

  .item-what-need__icon {
    width: 5rem;
    height: 5rem;
  }

  .item-what-need__title {
    font-size: 1.25rem;
  }

  .item-what-need__text {
    font-size: 0.75rem;
  }

  .post__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 3.75rem;
  }

  /* .content-post__image img {
    aspect-ratio: 2.95/1;
  } */

  .content-post__title {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50.375rem;
    flex: 0 1 50.375rem;
  }

  .content-post__body {
    max-width: 46.25rem;
  }

  .sidebar-post__blocks {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .sidebar-post__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .sidebar-post__image {
    height: 7.5rem;
    width: 100%;
    margin-bottom: 1.25rem;
  }

  .sidebar-post__image img {
    width: 100%;
  }

  .sidebar-post__title {
    margin-bottom: 1.9375rem;
  }
}

@media (max-width: 61.99875em) {
  .title {
    font-size: 3.25rem;
  }

  .top-header__text {
    font-size: 1rem;
  }

  .first-block {
    margin-top: 3.75rem;
  }

  .header__logo {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .menu-open .header__logo {
    color: #fff;
  }

  .header__center {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .header__icon {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .menu {
    position: fixed;
    top: 0;
    border-radius: 0 0 3.75rem 3.75rem;
    left: 0;
    padding: 2.5rem;
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 1.875rem;
    background-color: #fff;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 160;
  }

  .menu-open .menu {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .menu__wrap {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .menu__body {
    background: #f6f6f6;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
  }

  .icon-menu {
    display: block;
    width: 3rem;
    height: 3rem;
    padding: 0.75rem;
    border-radius: 1rem;
    padding: .75rem;
    cursor: pointer;
    z-index: 155;
    background-image: url("/static/img/icons/burger.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f6f6f6;
  }

  .footer__top {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 2.75rem auto;
    grid-template-areas: "logo btn" "menu menu";
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    row-gap: 2.75rem;
    margin-bottom: 1.875rem;
  }

  .footer__items {
    max-width: 37.5rem;
    margin: 0 auto;
  }

  .top-footer__logo {
    grid-area: logo;
    height: 3rem;
  }

  .top-footer__menu {
    grid-area: menu;
    -ms-grid-column-align: center;
    justify-self: center;
  }

  .top-footer__link {
    grid-area: btn;
    height: 3rem;
    font-size: 1rem;
  }



  .why-we__wrapper {
    max-height: 36.25rem;
  }

  .why-we__slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 3.75rem;
  }

  .why-we__info {
    display: none;
  }

  .slide-why-we__title:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .item-quality__title {
    font-size: 3.75rem;
  }

  .order__top-title {
    font-size: 1.5rem;
  }

  .order__top-text {
    font-size: 0.75rem;
  }

  .order__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }

  .order__body--2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .order__slide {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
    padding: 2rem 2.5rem;
    min-height: 22.5rem;
  }

  .order__slide:not(:first-child) {
    margin-left: 0px;
    margin-top: -16.25rem;
  }

  .slide-order {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .slide-order::after {
    top: auto;
    bottom: -0.75rem;
    right: -2rem;
    width: 13.75rem;
    height: 13.75rem;
    background-size: contain;
  }

  .slide-order.slide-order--2 {
    flex-direction: row;
  }

  .slide-order--2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.75rem;
    flex: 0 0 33.75rem;
    width: 100%;
    padding: 2rem 2.5rem;
    min-height: 22.5rem;
  }

  .slide-order--2:not(:first-child) {
    margin-left: -430px;
    margin-top: 0;
  }

  .slide-order--2::after {
    top: 0;
  }

  .slide-order--2 .slide-order__number {
    top: 3.75rem;
  }

  .slide-order {
    bottom: -1.875rem;
  }

  .slide-order__number {
    bottom: 1.875rem;
  }

  .our-projects__decor img:nth-child(2) {
    right: -3%;
    top: -5.625rem;
  }

  .our-projects__row {
    left: 1.25rem;
  }

  .our-projects__row--2 {
    left: -1.25rem;
  }

  .bonuses::before {
    left: -23%;
  }

  .bonuses__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .bonuses__item--blue::before {
    bottom: -150%;
  }

  .item-bonuses__number {
    font-size: 3rem;
  }

  .item-bonuses__title {
    margin-bottom: 1.25rem;
  }

  .guarantee__block::before {
    right: -30%;
  }

  .left-slide-love__image img {
    aspect-ratio: 1.43/1;
  }

  .left-slide-love__blocks {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .contacts__item:first-child .item-contacts__title {
    font-size: 1.25rem;
  }

  .contacts__item:nth-child(2)::before {
    background: url(/static/img/icons/decor-contacts-3.svg) 0 0/contain no-repeat;
    width: 30.75rem;
    height: 21.5rem;
    bottom: -28%;
    right: -68%;
  }

  .item-contacts__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.25rem;
  }

  .item-contacts__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2.5rem;
  }

  .item-contacts__item:not(:last-child) {
    margin-bottom: 1rem;
  }

  .item-contacts__decor img:first-child {
    top: 30%;
  }

  .item-contacts__decor img:nth-child(2) {
    bottom: 25%;
  }

  .item-contacts__star img {
    bottom: -3.125rem;
  }

  .service__text {
    font-size: 1rem;
  }

  .table-block-price tr td {
    font-size: 1rem;
  }

  .table-block-price tr td:first-child {
    width: 51.744186%;
  }

  .table-block-price tr td:last-child {
    width: 46.511628%;
  }

  .what-get__body {
    gap: 0.75rem;
  }

  .nuances__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .nuances__item {
    min-height: 11.625rem;
  }

  .who-suit__body {
    gap: 0.75rem;
  }

  .examples__slide {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }

  .slide-examples__image img {
    aspect-ratio: 1.32/1;
  }

  .what-need__body {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .item-what-need__icon {
    margin-bottom: 2rem;
  }

  .content-post__image img {
    aspect-ratio: 2.15/1;
  }

  .content-post__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 1rem;
  }

  .content-post__title {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }

  .content-post__date {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }

  .sidebar-post__image img {
    aspect-ratio: 1.46/1;
  }
}

@media (max-width: 61.99875em) {

  .top-footer__logo {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .top-footer__menu {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }

  .top-footer__link {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}

@media (max-width: 53.125em) {
  .posts__container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 47.99875em) {
  .spollers__title {
    font-size: 1.5rem;
  }

  .spollers__body {
    font-size: 1rem;
  }

  .top-header__title {
    margin-bottom: 1.25rem;
  }

  .body-hero__lines img {
    left: .71875%;
  }

  .body-hero__stars img:first-child {
    top: -3.75rem;
    left: -2%;
  }

  .body-hero__stars img:nth-child(2) {
    left: 5.1875%;
    bottom: -1.25rem;
  }

  .body-hero__stars img:nth-child(3) {
    right: 3.25%;
  }

  .body-hero__decor img:nth-child(2) {
    right: -7.5rem;
  }

  .body-hero__image {
    right: 3.047619%;
  }

  .body-hero__image img {
    width: 31.5rem;
    height: 26.25rem;
  }

  .quality__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }

  .quality__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1.75rem;
    -moz-column-gap: 1.75rem;
    column-gap: 1.75rem;
  }

  .item-quality__title {
    margin-bottom: 1.25rem;
  }

  .order__body--2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .slide-order--2 {
    min-height: 18.75rem;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .slide-order--2:not(:first-child) {
    margin-left: 0px;
    margin-top: -13.75rem;
  }

  .slide-order--2::after {
    top: auto;
    bottom: -2.9375rem;
  }

  .slide-order--2 .slide-order__number {
    top: auto;
    bottom: 3.75rem;
  }

  .our-projects__decor img:first-child {
    left: -2.180469%;
    bottom: -3.125rem;
  }

  .our-projects__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 18.75rem;
    flex: 0 1 18.75rem;
  }

  .bonuses__item--blue::before {
    bottom: -100%;
  }

  .services__body {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .contacts__body {
    gap: 1.25rem;
  }

  .who-suit__item {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 43.75em) {
  .our-projects__body {
    height: 61.625rem;
    padding: 1.25rem;
  }

  .our-projects__body::before {
    width: 2rem;
    height: 3.3125rem;
  }

  .our-projects__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.25rem;
    left: 0;
  }

  .our-projects__row--2 {
    left: 0rem;
  }

  .our-projects__item {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }

  .our-projects__item:first-child {
    margin-right: 1.75rem;
  }

  .our-projects__item:nth-child(2) {
    margin-left: 1.75rem;
  }

  .guarantee__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0.75rem;
  }

  .guarantee__input {
    text-align: center;
  }

  .contacts__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }

  .content-post__image-block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .content-post__image-block--reverse p {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .content-post__image-block--reverse .content-post__image-post {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .sidebar-post__blocks {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .menu__body {
    width: 100%;
  }

  .menu__list {
    -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;
  }

  .menu__link::after {
    left: -1.25rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

}

@media (max-width: 37.5em) {
  .popup__content form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0.625rem;
  }

  .popup__input::-webkit-input-placeholder {
    font-size: 0.625rem;
  }

  .popup__input::-moz-placeholder {
    font-size: 0.625rem;
  }

  .popup__input:-ms-input-placeholder {
    font-size: 0.625rem;
  }

  .popup__input::-ms-input-placeholder {
    font-size: 0.625rem;
  }

  .popup__input::placeholder {
    font-size: 0.625rem;
  }

  .spollers__item {
    border-radius: 1.5rem;
  }

  .spollers__title {
    border-radius: 1.5rem;
    font-size: 1.25rem;
    padding: 1.25rem 6rem 1.25rem 1.25rem;
  }

  ._spoller-init .spollers__title::before {
    right: 1.25rem;
    background-size: 0.75rem 0.75rem;
  }

  .spollers__body {
    padding: 0rem 1.25rem 1.25rem;
  }

  .title {
    font-size: 2rem;
  }

  .btn-slider {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .75rem;
  }

  .btn-slider::before {
    font-size: 0.75rem;
  }

  .first-block {
    padding-bottom: 12.5rem;
    margin-top: 2.5rem;
  }



  .cart-header {
    bottom: 0;
    height: 90%;
    width: 100%;
    padding: 2rem;
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
  }

  .cart-header__title {
    font-size: 1.75rem;
  }

  .cart-header__price-top {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 9.5625rem;
    flex: 0 1 9.5625rem;
  }

  .cart-header__result-btn {
    font-size: 1rem;
  }

  .cart-header__empty-title {
    font-size: 2rem;
    margin-bottom: 3.75rem;
  }

  .cart-header__empty-image::before {
    width: 25rem;
  }

  .top-cart-header__btn {
    height: 3.25rem;
    width: 3.25rem;
  }

  .top-cart-header__btn span:last-child {
    display: block;
  }

  .top-cart-header__btn span:first-child {
    display: none;
  }

  .hero {
    padding-bottom: 12.5rem;
  }

  .hero__title {
    margin-bottom: 2.5rem;
  }

  .hero__slider {
    overflow: visible !important;
  }

  .hero__swiper-button-prev,
  .hero__swiper-button-next {
    height: 2.5rem;
    width: 2.5rem;
  }

  .body-hero__stars {
    z-index: 1;
  }

  .body-hero__stars img {
    width: 2rem;
    height: 3.3125rem;
  }

  .body-hero__stars img:first-child {
    top: -2.5rem;
    left: 0;
  }

  .body-hero__stars img:nth-child(2) {
    left: 7.1875%;
    bottom: -0.625rem;
  }

  .body-hero__stars img:nth-child(3) {
    right: 7.25%;
  }

  .body-hero__image img {
    width: 100%;
    border-radius: 0 0 0 3.75rem;
    height: auto;
  }

  .body-hero__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0.75rem;
  }

  .slide-hero__title {
    font-size: 0.875rem;
  }

  .slide-hero__arrow::before {
    font-size: 0.625rem;
  }

  .why-we {
    padding-bottom: 12.5rem;
  }

  .why-we::before {
    left: -12.5rem;
  }

  .why-we__container {
    padding: 0;
  }

  .why-we__title {
    margin-bottom: 2.5rem;
  }

  .why-we__slider {
    padding: 1.925rem .6rem !important;
  }

  .why-we__wrapper {
    max-height: 32.5rem;
  }

  .why-we__slide {
    row-gap: 2.5rem;
    padding: 5rem 3.75rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .why-we__swiper-pagination {
    display: none;
  }

  .slide-why-we--center {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .slide-why-we__icon {
    width: 4.5rem;
    height: 4.5rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 4.5rem;
    flex: 0 0 4.5rem;
  }

  .slide-why-we__title {
    font-size: 1.5rem;
  }

  .slide-why-we__text {
    font-size: 1rem;
  }

  .quality {
    padding-bottom: 12.5rem;
  }

  .quality__top {
    margin-bottom: 2.5rem;
  }

  .quality__body:not(:last-child) {
    margin-bottom: 2.5rem;
  }

  .quality__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0.75rem;
  }

  .quality__link {
    font-size: 1rem;
  }

  .item-quality__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8rem;
    flex: 0 0 8rem;
  }

  .item-quality__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .order {
    padding-bottom: 12.5rem;
  }

  .order__title {
    margin-bottom: 2.5rem;
  }

  .order__slide {
    min-height: 23rem;
  }

  .order__top {
    margin-top: 2rem;
    margin-bottom: 0.3125rem;
  }

  .order__top-title {
    font-size: 1.25rem;
  }

  .order__slide {
    min-height: 18.75rem;
  }

  .order__slide:not(:first-child) {
    margin-top: -14.375rem;
  }

  .slide-order--2 {
    min-height: 25.875rem;
  }

  .slide-order--2:not(:first-child) {
    margin-top: -20rem;
  }

  .slide-order__text {
    font-size: 1rem;
  }

  .slide-order__icon {
    width: 4.5rem;
    height: 4.5rem;
  }

  .slide-order__title {
    font-size: 1.25rem;
  }

  .slide-order__number {
    font-size: 1.5rem;
  }

  .our-projects {
    padding-bottom: 16.25rem;
  }

  .our-projects__lines img {
    right: 15%;
    height: 45rem;
  }

  .our-projects__decor img:first-child {
    left: -10.180469%;
    bottom: -5.125rem;
  }

  .our-projects__decor img:nth-child(2) {
    right: -8%;
    top: -8.625rem;
  }

  .our-projects__decor img:nth-child(3) {
    right: -2.875rem;
    top: 49%;
  }

  .item-our-projects__title {
    font-size: 1.5rem;
  }

  .bonuses {
    padding-bottom: 12.5rem;
  }

  .bonuses::before {
    width: 30rem;
    height: 30rem;
    left: -43%;
    top: -4%;
    background: url("/static/img/icons/star-green.svg") 0 0/contain no-repeat;
  }

  .bonuses__title {
    margin-bottom: 2.5rem;
  }

  .bonuses__body::before {
    width: 2rem;
    height: 3.3125rem;
    background-size: contain;
    top: -1.6875rem;
    right: -0.3125rem;
  }

  .bonuses__item {
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
    padding: 2.5rem 2rem;
  }

  .bonuses__item--blue::before {
    bottom: -70%;
  }

  .bonuses__item:first-child::before {
    background: url("/static/img/icons/line-two.svg") 0 0/100% 100% no-repeat;
    width: 15rem;
    left: 0.625rem;
  }

  .item-bonuses__title {
    font-size: 1.5rem;
  }

  .guarantee {
    padding-bottom: 12.5rem;
  }

  .guarantee__top {
    margin: 0 auto 2.5rem;
  }

  .guarantee__block {
    padding: 2.5rem;
  }

  .guarantee__block::before {
    width: 20rem;
    height: 20rem;
    background: url("/static/img/icons/star-questions.svg") 0 0/contain no-repeat;
  }

  .guarantee__stars img {
    width: 2rem;
    height: 3.3125rem;
  }

  .love-us {
    padding-bottom: 12.5rem;
  }

  .love-us__top {
    margin-bottom: 2.5rem;
  }

  .left-slide-love__image img {
    border-radius: 2rem;
  }

  .left-slide-love__blocks {
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 1.125rem;
  }

  .left-slide-love__block {
    padding: 1.25rem;
    min-height: 10rem;
  }

  .left-slide-love__number {
    font-size: 1.5rem;
  }

  .right-slide-love__title {
    font-size: 1.5rem;
  }

  .right-slide-love__text {
    font-size: 1rem;
  }

  .right-slide-love__text p:not(:last-child) {
    margin-bottom: 1.75rem;
  }

  .right-slide-love__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0.75rem;
  }

  .questions {
    padding-bottom: 12.5rem;
  }

  .questions::before {
    left: -20%;
    top: -10%;
    width: 18.75rem;
    height: 18.75rem;
    background: url("/static/img/icons/decor-questions.svg") 0 0/cover no-repeat;
  }

  .questions__top {
    margin: 0 auto 2.5rem;
  }

  .questions__block {
    padding: 2.5rem;
    border-radius: 2.5rem;
  }

  .questions__block::before {
    bottom: -1.25rem;
    height: 20rem;
    width: 20rem;
    background: url("/static/img/icons/star-questions.svg") 0 0/cover no-repeat;
    right: 0.625rem;
  }

  .questions__stars img {
    width: 2rem;
    height: 3.3125rem;
  }

  .form-questions__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 2.5rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .form-questions__inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.25rem;
  }

  .form-questions__button {
    width: 100%;
  }

  .services__title {
    margin-bottom: 2.5rem;
  }

  .services__body {
    gap: 0.75rem;
  }

  .services__item {
    padding: 1.25rem;
  }

  .item-services__logo {
    width: 4.5rem;
    height: 4.5rem;
    padding: 0.9375rem;
    margin-bottom: 1.9375rem;
  }

  .item-services__link-title {
    font-size: 1rem;
    margin-bottom: 1.9375rem;
  }

  .posts__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .item-posts__link-title {
    margin-bottom: 1.25rem;
  }

  .item-posts__text:not(:last-child) {
    margin-bottom: 1.625rem;
  }

  .contacts__item {
    border-radius: 2.5rem;
    min-height: 26.5rem;
  }

  .contacts__details {
    padding: 2rem 2.5rem;
    border-radius: 2.5rem;
  }

  .item-contacts__decor img:first-child {
    top: -10%;
    left: 30%;
    width: 5.6875rem;
    height: 5.6875rem;
  }

  .item-contacts__decor img:nth-child(2) {
    width: 4.375rem;
    height: 4.375rem;
    right: -1.25rem;
  }

  .item-contacts__star img {
    width: 2rem;
    bottom: -1.875rem;
    height: 3.3125rem;
  }

  .details-contacts__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0.5rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .details-contacts__item:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .map {
    padding-bottom: 12.5rem;
  }

  .map iframe {
    border-radius: 2rem;
    height: 23.9375rem;
  }

  .service {
    padding-top: 2.5rem;
    padding-bottom: 12.5rem;
  }

  .service__body {
    min-height: 15rem;
  }

  .service__body::before {
    height: 15rem;
    left: 2%;
  }

  .service__stars img {
    width: 2rem;
    height: 3.3125rem;
  }

  .service__stars img:first-child {
    bottom: -1.25rem;
  }

  .service__decor img:first-child {
    left: -3.26875%;
    width: 7.8125rem;
    height: 7.8125rem;
    top: -2.5rem;
  }

  .service__decor img:nth-child(2) {
    height: 17.5rem;
    top: -1.875rem;
  }

  .service__decor img:nth-child(3) {
    right: -2.828125%;
    bottom: -1.875rem;
    width: 6.25rem;
    height: 6.25rem;
  }

  .ordered {
    padding-bottom: 12.5rem;
  }

  .ordered__title {
    margin-bottom: 2.5rem;
  }

  .ordered__wrapper {
    margin-bottom: 2.5rem;
  }

  .slide-ordered__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  /* .slide-ordered__image img {
    aspect-ratio: 2.2/1;
  } */

  .slide-ordered__body {
    padding: 2rem;
  }

  .slide-ordered__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .slide-ordered__text {
    font-size: 1rem;
  }

  .faq {
    padding-bottom: 12.5rem;
  }

  .faq__title {
    margin-bottom: 2.5rem;
  }

  .spollers__item:not(:last-child) {
    margin-bottom: 0.75rem;
  }

  .price {
    padding-bottom: 12.5rem;
  }

  .price {
    padding-bottom: 10rem;
  }

  .price__title {
    margin-bottom: 2.5rem;
  }

  .table-block-price {
    border-spacing: .25rem 0px;
  }

  .table-block-price tr th {
    font-size: 1.25rem;
  }

  .table-block-price tr td {
    padding: 1.5rem 0.75rem;
  }

  .table-block-price tr td:first-child {
    width: 70.909091%;
  }

  .table-block-price tr td:last-child {
    width: 28.181818%;
  }

  .what-get {
    padding-bottom: 12.5rem;
  }

  .what-get__item {
    font-size: 0.75rem;
    padding: 1.25rem 0.75rem;
  }

  .nuances {
    padding-bottom: 12.5rem;
  }

  .nuances__body::before {
    top: 3.125rem;
    right: -0.625rem;
  }

  .nuances__item {
    padding: 2.5rem 2rem;
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
  }

  .nuances__item:first-child::before,
  .nuances__item:last-child::before {
    left: 0.625rem;
  }

  .who-suit {
    padding-bottom: 12.5rem;
  }

  .who-suit__title {
    margin-bottom: 2.5rem;
  }

  .who-suit__item {
    border-radius: 1.25rem;
    font-size: 0.75rem;
    padding: 1.25rem 0.75rem;
  }

  .who-suit__item::before {
    position: absolute;
    top: -0.3125rem;
    left: -0.3125rem;
  }

  .examples {
    padding-bottom: 12.5rem;
  }

  .examples__title {
    margin-bottom: 2.5rem;
  }

  .examples__wrapper {
    margin-bottom: 2.5rem;
  }

  .examples__slide {
    row-gap: 0.75rem;
  }

  .slide-examples__content {
    padding: 2rem;
  }

  .slide-examples__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .slide-examples__text {
    text-align: center;
  }

  .what-need {
    padding-bottom: 12.5rem;
  }

  .what-need__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .what-need__item {
    min-height: 18.75rem;
  }

  .post {
    padding-top: 2.5rem;
    padding-bottom: 12.5rem;
  }

  .content-post__image img {
    border-radius: 2rem;
  }

  .content-post__title {
    font-size: 1.5rem;
  }

  .content-post__client {
    padding: 1.25rem;
  }
}


@media (max-width: 820px) {
  .footer__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 0 auto 0 auto;
    grid-template-areas: "logo" "btn" "menu";
    row-gap: 0;
  }

  .menu-footer__link::after {
    top: 21%;
    left: -20%;
  }

  .footer__items {
    -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;
  }

  .top-footer__link {
    margin-bottom: 2rem;
  }

  .menu-footer__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.25rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .top-footer__logo {
    -ms-grid-row: 1;
    margin-bottom: 0.75rem;
    -ms-grid-column: 1;
  }

  .top-footer__menu {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  .top-footer__link {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}

@media (max-width: 25em) {
  .spollers__title {
    font-size: 1rem;
    min-height: 4.375rem;
    padding: 1rem 6rem 1rem 1rem;
  }

  ._spoller-init .spollers__title::before {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: .75rem;
    right: 1rem;
  }

  .spollers__body {
    font-size: 0.75rem;
    padding: 0rem 1rem 1rem;
  }

  .title {
    font-size: 1.5rem;
  }

  .btn {
    font-size: 1rem;
  }

  .first-block {
    margin-top: 2rem;
    padding-bottom: 10rem;
  }

  .cart-header {
    padding: 1.25rem;
  }

  .cart-header__wrap {
    padding-top: 2.5rem;
  }

  .cart-header__close {
    top: -0.975rem;
    right: -0.8625rem;
  }

  .cart-header__top {
    display: none;
  }

  .cart-header__title {
    font-size: 1.5rem;
  }

  .cart-header__result-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0.5rem;
  }

  .cart-header__line {
    display: none;
  }

  .cart-header__empty-title {
    font-size: 1.75rem;
  }

  .cart-header__empty-image::before {
    width: 20rem;
    left: 0.625rem;
  }

  .hero {
    padding-bottom: 10rem;
  }

  .body-hero__decor img:nth-child(2) {
    right: -7.5rem;
    z-index: 1;
    bottom: -3.75rem;
  }

  .body-hero__links {
    width: 100%;
    margin: 0 1.5rem;
  }

  .body-hero__link {
    width: 100%;
  }

  .why-we {
    padding-bottom: 10rem;
  }

  .why-we__title {
    margin-bottom: 2rem;
  }

  .why-we__wrapper {
    max-height: 28.75rem;
  }

  .why-we__slide {
    padding: 2.5rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    row-gap: 2rem;
  }

  .why-we__slide.slide-why-we--center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .quality {
    padding-bottom: 10rem;
  }

  .quality__body {
    row-gap: 1rem;
  }

  .item-quality__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 6.25rem;
    flex: 0 0 6.25rem;
  }

  .item-quality__title {
    font-size: 1.5rem;
  }

  .order {
    padding-bottom: 10rem;
  }

  .order__title {
    margin-bottom: 2rem;
  }

  .order__slider {
    padding: 0.9375rem !important;
  }

  .our-projects {
    padding-bottom: 13.75rem;
  }

  .our-projects__lines img {
    right: 13%;
    width: 18.75rem;
    height: 37.5rem;
  }

  .item-our-projects__title {
    font-size: 1.25rem;
  }

  .bonuses {
    padding-bottom: 10rem;
  }

  .bonuses::before {
    left: -50%;
    top: -2%;
  }

  .bonuses__title {
    margin-bottom: 2rem;
  }

  .bonuses__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.5rem;
    border-radius: 2.5rem;
  }

  .bonuses__item:first-child::before {
    width: 10rem;
    left: 0.625rem;
  }

  .item-bonuses__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
  }

  .item-bonuses__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .guarantee {
    padding-bottom: 10rem;
  }

  .guarantee__block {
    padding: 2rem 1.59375rem;
    border-radius: 2.5rem;
  }

  .guarantee__block::before {
    right: -60%;
  }

  .guarantee__stars img:first-child {
    bottom: -2.5rem;
    left: 12.545455%;
  }

  .guarantee__stars img:nth-child(2) {
    top: -2.5rem;
  }

  .guarantee__input {
    font-size: 1rem;
  }

  .love-us {
    padding-bottom: 10rem;
  }

  .love-us__top {
    margin-bottom: 2rem;
  }

  .left-slide-love__blocks {
    -webkit-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
    row-gap: 1rem;
  }

  .left-slide-love__title {
    font-size: 0.75rem;
  }

  .left-slide-love__number {
    font-size: 1.25rem;
  }

  .right-slide-love__title {
    font-size: 1.25rem;
  }

  .questions {
    padding-bottom: 6.625rem;
  }

  .questions::before {
    left: -30%;
  }

  .questions__block {
    padding: 1.5rem;
    border-radius: 2rem;
  }

  .form-questions__bottom {
    row-gap: 2rem;
  }

  .services__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services__item {
    padding: 1.5rem;
  }

  .item-services__logo {
    width: 6.25rem;
    height: 6.25rem;
  }

  .item-services__link-title {
    font-size: 1.25rem;
  }

  .item-posts__image img {
    height: 7.5rem;
  }

  .item-posts__date {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .item-posts__link-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .item-posts__text:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .contacts__details {
    padding: 2rem 1.5rem;
  }

  .item-contacts__decor img:first-child {
    left: 50%;
  }

  .details-contacts__title {
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }

  .details-contacts__item:not(:last-child) {
    margin-bottom: 1rem;
  }

  .details-contacts__small-title {
    font-size: 1rem;
  }

  .details-contacts__info {
    font-size: 1rem;
  }

  .map {
    padding-bottom: 10rem;
  }

  .map iframe {
    height: 17.375rem;
  }

  .service {
    padding-bottom: 10rem;
  }

  .service__decor img:nth-child(2) {
    right: -14%;
  }

  .service__btn {
    width: 10.4375rem;
    height: 3rem;
  }

  .service__text {
    font-size: 0.75rem;
  }

  .ordered__wrapper {
    margin-bottom: 2rem;
  }

  /* .slide-ordered__image img {
    aspect-ratio: 1.6/1;
  } */

  .slide-ordered__body {
    padding: 1.5rem;
  }

  .slide-ordered__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .faq {
    padding-bottom: 10rem;
  }

  .faq__title {
    margin-bottom: 2rem;
  }

  .price__title {
    margin-bottom: 2rem;
  }

  .nuances__body::before {
    top: 5rem;
    right: -0.625rem;
  }

  .nuances__item {
    border-radius: 2.5rem;
    padding: 2.1875rem 1.5625rem;
  }

  .item-nuances__icon {
    width: 3.75rem;
    height: 3.75rem;
  }

  .item-nuances__title {
    font-size: 1.625rem;
  }

  .who-suit__title {
    margin-bottom: 2rem;
  }

  .slide-examples__content {
    padding: 1.5rem;
  }

  .slide-examples__title {
    font-size: 1.25rem;
  }

  .what-need__top {
    margin-bottom: 2rem;
  }

  .what-need__item {
    min-height: 12.875rem;
  }

  .post {
    padding-top: 2rem;
    padding-bottom: 10rem;
  }

  .content-post__top {
    margin-bottom: 2rem;
  }

  .content-post__title {
    font-size: 1.25rem;
  }

  .content-post__client {
    padding: 1rem;
  }

  .sidebar-post__blocks {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 21.875em) {
  .nuances__item {
    grid-template-areas: "icon" "title" "text";
  }

  .item-nuances__icon {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }

  .item-nuances__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }

  .item-nuances__text {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}

@media (any-hover: hover) {
  .select__option:hover {
    background: #d9d9d9;
  }

  .btn:hover {
    background-color: #4a7af4;
    color: #fff;
  }

  .btn-slider:hover {
    background-color: #4a7af4;
    border: .0625rem solid #4a7af4;
  }

  .btn-slider:hover::before {
    color: #fff;
  }

  .breadcrumbs__item a:hover {
    color: #4a7af4;
    border: .0625rem solid #4a7af4;
  }

  .header__cart-btn:hover {
    background-color: #4a7af4;
  }

  .menu__link:hover {
    color: #4a7af4;
  }

  .cart-header__close:hover {
    background-color: #4a7af4;
  }

  .cart-header__item:hover {
    background-color: #4a7af4;
  }

  .cart-header__item:hover .item-cart-header__title,
  .cart-header__item:hover .item-cart-header__text,
  .cart-header__item:hover .item-cart-header__price {
    color: #fff;
  }

  .cart-header__item:hover .item-cart-header__text::before,
  .cart-header__item:hover .item-cart-header__price::before {
    display: none;
  }

  .cart-header__item:hover .item-cart-header__button,
  .cart-header__item:hover .item-cart-header__link {
    border: .0625rem solid #fff;
  }

  .cart-header__item:hover .item-cart-header__button::before,
  .cart-header__item:hover .item-cart-header__link::before {
    color: #fff;
  }

  .cart-header__item:hover .item-cart-header__icon img:first-child {
    display: none;
  }

  .cart-header__item:hover .item-cart-header__icon img:last-child {
    display: block;
  }

  .footer__info--link:hover {
    color: #4a7af4;
  }

  .footer__social-link:hover {
    background-color: #d2f28e;
  }

  .menu-footer__link:hover {
    color: #4a7af4;
  }

  .item-our-projects__link:hover {
    color: #fff;
    background-color: #4a7af4;
    border: .0625rem solid #4a7af4;
  }

  .item-posts__image:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  .item-posts__link-title:hover {
    color: #4a7af4;
  }

  .item-posts__link:hover {
    background-color: #4a7af4;
    color: #fff;
    border: .0625rem solid #4a7af4;
  }

  .item-posts__link:hover::before {
    color: #fff;
  }

  .item-contacts__link:hover {
    color: #4a7af4;
  }

  .item-contacts__social-link:hover {
    background-color: #4a7af4;
  }

  .content-post__social-link:hover {
    background-color: #d2f28e;
  }

  .sidebar-post__link:hover {
    color: #4a7af4;
  }

  .sidebar-post__link:hover::before {
    color: #4a7af4;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  /* Скрыто по умолчанию */
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #fff;
  width: 100%;
  max-width: 450px;
  padding: 40px;
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}

.modal-close:hover {
  opacity: 1;
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.modal-subtitle {
  font-size: 14px;
  color: #666;
}

.input-group {
  margin-bottom: 15px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #E0E0E0;
  background: var(--bg-light);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.input-group input:focus {
  border-color: var(--accent-color);
}

.input-group textarea {
  height: 100px;
  resize: none;
}

.modal-policy {
  margin: 20px 0;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  color: #666;
}

.checkbox-container input {
  margin-right: 10px;
}

.btn-submit {
  width: 100%;
  background: #000;
  /* Или градиент как на сайте */
  color: #fff;
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
}

.btn-submit:disabled {
  background: #4b4b4b;
  pointer-events: none;
}

.btn-submit:hover {
  background: #4a7af4;
  transform: translateY(-2px);
}

.slide-hero__icon {
  width: 32px;
  filter: grayscale(1);
}



/* Обертка колонки (слайд Swiper) */
.hero__slide-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* ОТСТУП между верхней и нижней карточкой */
  height: auto;
  /* Позволяет Swiper управлять высотой */
}

/* Сама карточка */
.slide-hero {
  position: relative;
  overflow: hidden;
  background-color: #f7f7f7;
  border-radius: 20px;
  padding: 25px;

  /* Равномерная высота */
  display: flex;
  flex: 1;
  /* Растягивает обе карточки, чтобы они были одной высоты в колонке */
  align-items: center;
  min-height: 120px;
  /* Минимальная высота, если текста мало */

  transition: background-color 0.3s ease;
}

/* Контент внутри (иконка + текст) */
.slide-hero__body {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  transition: opacity 0.2s ease;
}

/* Стили ховера */
.slide-hero__hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4a7af4;
  /* Синий фон */

  display: flex;
  align-items: center;
  /* justify-content: center; */

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 5;
}

/* Эффекты при наведении
.slide-hero:hover {
  background-color: #4a7af4;
} */

.slide-hero:hover .slide-hero__body {
  opacity: 0;
  /* Скрываем основной контент */
}

.slide-hero:hover .slide-hero__hover-overlay {
  opacity: 1;
  visibility: visible;
}

/* Кнопки внутри ховера (белые) */
.slide-hero__hover-overlay .item-services__bottom {
  display: flex;
  gap: 12px;
}

/* Пример стилизации ваших кнопок, чтобы они стали белыми на синем */
.slide-hero:hover .item-services__cart,
.slide-hero:hover .item-services__link {
  color: #fff !important;
  color: #4a7af4 !important;
  border-color: #fff !important;
}

.slide-hero:hover.incart .slide-hero__hover-overlay {
  background-color: #62ee6b;
}

.slide-hero:hover.incart .item-services__link {
  color: #000000 !important;
  border-color: #000000 !important;
}

.slide-hero:hover.incart .item-services__link::before {
  color: #000000 !important;
}

.slide-hero:hover.incart .item-services__cart {
  display: none;
}




.slide-hero__hover-overlay .item-services__bottom ._icon-arrow-right::before {
  color: white;
}

.video-review__content {
  display: grid;
  grid-template-columns: 680px 1fr;
  gap: 40px;
}

.video-review__video {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}

.video-review__video-btn {
  position: absolute;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 28px;
  background-color: #fff;
}

.video-review__video video {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.video-review {
  padding-bottom: 15rem;
}

.video-review__left h2 {
  font-size: 80px;
  font-weight: 500;
  line-height: 100%;
  color: #202020;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.video-review__left h2 span {
  font-weight: 500;
  line-height: 100%;
  color: #B7BDCB;
}

.video-review__right h3 {
  font-size: 32px;
  line-height: 120%;
  color: #202020;
  font-weight: 600;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.video-case {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.video-case__item {
  background-color: #F6F6F6;
  color: #202020;
  border-radius: 28px;
  padding: 20px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  line-height: 120%;
  font-size: 16px;
}

.video-case__item::before {
  content: '';
  background: url('/static/img/icons/tick-circle.svg');
  position: absolute;
  left: -4px;
  top: -4px;
  display: block;
  width: 24px;
  height: 24px;
}

.video-review__btn {
  gap: 0px 32px;
  width: fit-content;
}

@media screen and (max-width: 75em) {
  .video-review__content {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
}

@media (max-width: 61.9988em) {
  .video-review__left h2 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .video-review__right h3 {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .video-review__left h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .video-review__video-btn {
    width: 64px;
    height: 64px;
    left: calc(50% - 32px);
    top: calc(50% - 32px);
    border-radius: 20px;
  }

  .video-review__video-btn img {
    width: 32px;
    height: 32px;
  }

  .video-review__content {
    gap: 40px;
  }
}

@media (max-width: 580px) {
  .video-review {
    padding-bottom: 11rem;
  }

  .video-review__left h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .video-review__video-btn {
    width: 64px;
    height: 64px;
    left: calc(50% - 32px);
    top: calc(50% - 32px);
    border-radius: 20px;
  }

  .video-review__video-btn img {
    width: 32px;
    height: 32px;
  }

  .video-case__item {
    font-size: 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .video-review__btn {
    min-width: 100%;
    font-size: 16px;
  }

  .video-case {
    margin-bottom: 28px;
  }
}

.post-author {
	background-color: #D4DEF7;
	border-radius: 40px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	position: relative;
	margin-bottom: 20px;
}
.post-author__icon img {
	position: absolute;
	right: 20px;
	top: -20px;
}
.post-author__backimg  {
	position: absolute;
	left: 0;
	top: 0px;
	height: 100%;
	width: 100%;
	border-radius: 40px;
	overflow: hidden;
	z-index: 1;
}
.post-author__backimg img {
	position: absolute;
	bottom: -18%;
}
.post-author__heading {
	display: flex;
	gap: 0px 20px;
	margin-bottom: 20px;
	z-index: 2;
}
.post-author__image {
	width: 68px;
	height: 68px;
	min-width: 68px;
	min-height: 68px;
	border-radius: 68px;
	overflow: hidden;
}
.post-author__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.post-author__name {
	font-size: 28px;
	font-weight: 500;
	line-height: 120%;
}
.post-author__expertise {
	color: #666666;
	line-height: 120%;
	margin-bottom: 40px;
}
.post-author__content {
	padding: 0px 14px 0px 88px;
	font-family: 'Ubuntu';
	z-index: 2;
}
.post-social {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.post-social__item {
	padding: 12px 16px;
	border: 1px solid #B7BDCB;
	font-weight: 700;
	border-radius: 12px;
	width: fit-content;
	display: flex;
	align-items: center;
	gap: 0px 10px;
	transition: .3s;
}
.post-social__item:hover {
	border: 1px solid #4a7af4;
}
@media screen and (max-width: 68.75em) {
	.post-author__content {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.post-social {
		flex-direction: row;
	}
	.post-author__expertise {
		margin-bottom: 0px;
	}
	.post-author__expertise {
		max-width: 250px;
	}
	.post-author__backimg img {
		bottom: -28%;
	}
}
@media screen and (max-width: 43.75em) {
	.post-author__content {
		flex-direction: column;
		justify-content: start;
		align-items: start;
	}
	.post-author__expertise {
		margin-bottom: 40px;
	}
	.post-social {
		flex-direction: column;
	}
	.post-author__backimg img {
		bottom: -18%;
	}
	.post-author__heading {
		flex-direction: column;
		gap: 12px 0px;
	}
	.post-author__content {
		padding: 0px;
	}
}
