:root {
  --c-orange: #faa031;
  --c-brown: #db631a;
  --c-dark-tan: #640f1e;
  --c-tan: #9e1930;
  --c-white: #ffffff;
  --c-black: #202020;
  --c-gray: #e6e9ee;
  --c-blue: #353646;

  --font-heading: "Roboto Flex", sans-serif;
  --font-main: "Roboto", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}
nav,
footer,
header,
aside {
  display: block;
}
html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
input,
button,
textarea {
  font-family: inherit;
}
input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*--------------------*/

picture {
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  padding-bottom: 100%;
}
picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body {
  font-family: var(--font-main);
}
h1 {
  font-family: var(--font-heading);
  font-size: 70px;
  font-weight: 400;
  line-height: 63px;
  letter-spacing: 0em;
  text-align: center;
}
h2 {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: 0em;
  text-align: left;
}
h3 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0em;
  text-align: left;
}
h4 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
  letter-spacing: 0em;
  text-align: left;
}
.font-bold {
  font-weight: 700;
}
.font-regular {
  font-weight: 400;
}
.font-light {
  font-weight: 300;
}
.container {
  max-width: 1720px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
a {
  color: var(--c-black);
  transition: all 0.3s ease-in-out 0s;
}
a:hover {
  color: var(--c-orange);
  transition: all 0.3s ease-in-out 0s;
}
.btn.btn-full-width {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  background: var(--c-brown);
  border-radius: 40px;
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: left;
  color: #353535;
}
.btn.btn-full-width svg {
  margin-left: 10px;
}
.btn {
  padding: 14px 40px;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  background: var(--c-brown);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--c-white);
  transition: background 0.3s ease-in-out;
}
.btn:hover {
  background: var(--c-orange);
  color: var(--c-white);
}
.btn-transparent {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  padding: 14px 34px;
  border: 1px solid #000000;
  border-radius: 40px;
}
.btn-transparent svg {
  margin-left: 10px;
}
.btn-call {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  padding: 14px 34px;
  border: 1px solid #ffde39;
  border-radius: 40px;
  background: #ffde39;
  color: #000;
}
.btn-call:hover {
  color: #000;
}
.btn-call svg {
  margin-right: 10px;
}
strong {
  font-weight: 700;
}

.button-outline {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: var(--c-white);
  border: 1px solid var(--c-orange);
  background: transparent;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.button-outline:hover {
  background: var(--c-orange);
}

/* header */

#header {
  background: var(--c-dark-tan);
  color: var(--c-white);
  padding: 17px 0;
  margin-bottom: 30px;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 80px;
}
.header__right {
  display: flex;
  align-items: center;
}
.header-menu ul {
  display: flex;
  align-items: center;
}
.header-menu li a {
  display: block;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0em;
  text-align: left;
  padding: 5px;
  margin-right: 22px;
  color: var(--c-white);
  transition: color 0.3s ease-in-out 0s;
}
.header-menu li.current-menu-item a,
.header-menu li a:hover {
  color: var(--c-brown);
}
.header-info {
  display: flex;
  align-items: center;
}
.header-info__tablet {
  display: flex;
  align-items: center;
}
.btn-log-in {
  margin-left: 70px;
}
.header-social__icons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 43px;
}
.header-social__icons a {
  display: block;
}
.header-info__phones .header-info-phone:first-child {
  display: block;
  margin-bottom: 10px;
}
.header-info-phone {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0em;
  text-align: left;
  display: block;
  margin-right: 22px;
  color: var(--c-white);
  transition: color 0.3s ease-in-out 0s;
}
.header-info-phone:hover {
  color: var(--c-brown);
}
/* /header */

/* Home */

/* #partners */

#partners {
  padding: 30px 0 30px;
}
.partners-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* /#partners */
/* #catalog */

.catalog-body {
  padding: 48px 50px 51px 50px;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 60px;
}
.catalog-wrap {
  display: flex;
  justify-content: space-between;
}
.catalog-images {
  max-width: 1170px;
  width: 100%;
  margin-left: 55px;
}
.catalog-desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 515px;
}
.catalog-desc-top h3 {
  margin-bottom: 27px;
}
.catalog-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.catalog-images__item {
  max-width: 370px;
  width: 31%;
  height: 390px;
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out 0s;
}
.catalog-images__item:first-child {
  width: 100%;
  max-width: 100%;
  height: 320px;
  margin-bottom: 30px;
}
img.catalog-images__item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
p.catalog-images__item-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease-in-out 0s;
  z-index: 3;
}
p.catalog-images__item-desc {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0 25px;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: center;
  color: #202020;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
  z-index: -2;
}
.catalog-images__item-body:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0%;
  background: #ffde39e5;
  border-radius: 20px;
  transition: all 0.3s ease-in-out 0s;
}
.catalog-images__item:hover .catalog-images__item-body:after {
  transition: all 0.3s ease-in-out 0s;
  height: 100%;
}
.catalog-images__item:hover {
  transform: translate(0px, -18px);
  transition: all 0.3s ease-in-out 0s;
}
.popularObject-item-btn-share {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.catalog-images__item:hover p.catalog-images__item-title {
  transition: all 0.3s ease-in-out 0s;
  color: #202020;
  transform: translate(-50%, -150%);
}
.catalog-images__item:hover p.catalog-images__item-desc {
  transition: all 0.3s ease-in-out 0s;
  top: 50%;
  opacity: 1;
  z-index: 4;
}

/* /#catalog */

/* #popularObject */

#popularObject {
  margin-bottom: 60px;
}
.popularObject-body {
  padding: 0 50px;
}
.popularObject-slider {
  margin-top: 37px;
}
.slick-arrow {
  position: absolute;
  background: #00000099;
  backdrop-filter: blur(4px);
  border-radius: 4px;
  width: 26px;
  height: 37px;
  top: calc(50% - 18px);
  opacity: 1;
  transition: 0.5s;
  font-size: 0;
  z-index: 2;
}
.slick-arrow.slick-prev:before {
  background: url("./../images/icons/slider-prev2.svg") no-repeat;
  content: "";
  position: absolute;
}
.slick-arrow.slick-prev {
  left: 10px;
}
.slick-arrow.slick-next {
  right: 10px;
}
.slick-arrow.slick-next:before {
  content: "";
  position: absolute;
  background: url("./../images/icons/slider-next2.svg") no-repeat;
}
.slick-arrow.slick-next:before,
.slick-arrow.slick-prev:before {
  top: 50%;
  left: 50%;
  display: block;
  width: 9px;
  height: 11px;
  transform: translate(-50%, -50%);
}
.popularObject-item {
  padding: 0 15px;
}
.popularObject-slider > .slick-list.draggable {
  margin: 0 -15px;
}
.popularObject-item-images-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 250px;
  border-radius: 20px;
}
.popularObject-item-top {
  position: relative;
}
.popularObject-item-top .object-label {
  position: absolute;
  top: 12px;
  left: 22px;
  padding: 6px 12px;
  z-index: 1;
  font-size: 14px;
  color: var(--c-white);
  background: var(--c-brown);
  border-radius: 36px;
}
.object-top__left .object-label {
  position: absolute;
  top: 12px;
  left: 22px;
  padding: 6px 12px;
  z-index: 1;
  font-size: 14px;
  color: var(--c-white);
  background: var(--c-brown);
  border-radius: 36px;
}
.btn-plan-gallery {
  position: absolute;
  top: 12px;
  right: 22px;
  padding: 6px 12px;
  z-index: 1;
  font-size: 14px;
  color: var(--c-white);
  background: var(--c-brown);
  border-radius: 36px;
}
.popularObject-item-top-count-img {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 60px;
  height: 28px;
  background: #00000024;
  backdrop-filter: blur(24px);
  border-radius: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0em;
  text-align: left;
  color: var(--c-white);
}
.popularObject-item-top-count-img svg {
  margin-right: 6px;
}
.popularObject-item-top-btn-share {
  position: absolute;
  top: 13px;
  right: 15px;
  cursor: pointer;
}
.popularObject-item-bottom {
  position: relative;
  padding: 14px;
  background-color: var(--c-white);
}
.popularObject-item-top-price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 10.5px;
}
.popularObject-item-top-price {
  color: var(--c-dark-tan);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  line-height: 80%;
}
.popularObject-item-top-priceM {
  font-size: 14px;
  line-height: 1;
  color: #8f8f8f;
  font-weight: 400;
}
.popularObject-item-title {
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}
.popularObject-item-desc {
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0em;
  text-align: left;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 34px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #dfdfdf;
  color: #353646b2;
  display: flex;
  align-items: center;
}
.popularObject-item-desc svg {
  margin-right: 5px;
}
.popularObject-item-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  padding: 0 10px;
}
.popularObject-item-info-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0em;
  text-align: left;
  color: var(--c-blue);
  width: 33.333%;
}
.popularObject-item-info-item:nth-child(2) {
  justify-content: center;
}
.popularObject-item-info-item:nth-child(3) {
  justify-content: flex-end;
}

.popularObject-item-info-item p {
  margin-left: 8px;
  max-width: calc(100% - 31px);
}
.btn-favorite__wrap-listing {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #0000000d;
  backdrop-filter: blur(24px);
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}
.btn-favorite__wrap .btn-favorite__wrap {
  display: flex;
}
.btn-favorite__wrap-listing .add-favorite {
  color: var(--c-white);
}
.btn-favorite__wrap-listing .delete-favorite {
  color: var(--c-brown);
}
.btn-favorite__wrap-listing:has(.delete-favorite) {
  background: var(--c-white);
}
ul.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
ul.slick-dots li button {
  font-size: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #000000;
  border-radius: 50%;
  margin: 0 2.5px;
}
ul.slick-dots li.slick-active button {
  background: #000;
}
.popularObject-slider > .slick-arrow {
  background: #fff;
  width: 45px;
  height: 45px;
  top: auto;
  bottom: -15px;
}
.popularObject-slider > .slick-arrow.slick-prev:before {
  background: url("./../images/icons/slider-prev1.svg") no-repeat;
  content: "";
  position: absolute;
}
.popularObject-slider > .slick-arrow.slick-prev {
  left: 0px;
}
.popularObject-slider > .slick-arrow.slick-next {
  right: 0px;
}
.popularObject-slider > .slick-arrow.slick-next:before {
  content: "";
  position: absolute;
  background: url("./../images/icons/slider-next1.svg") no-repeat;
}
.popularObject-slider > .slick-arrow.slick-next:before,
.popularObject-slider > .slick-arrow.slick-prev:before {
  top: calc(50% - 8.5px);
  left: calc(50% - 10.5px);
  display: block;
  width: 21px;
  height: 17px;
}

/* /#popularObject */

/* #aboutUs */
#aboutUs {
  margin-bottom: 60px;
}
.aboutUs-body {
  background: #1d1d1d;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 57px 146px 49px 50px;
  color: #fff;
  height: 600px;
}
.aboutUs-wrap {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.aboutUs-left {
  max-width: 515px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.aboutUs-right {
  max-width: 1170px;
  width: 100%;
  margin-left: 55px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.title {
  margin-bottom: 19px;
}
.aboutUs-right-top h4 {
  margin-bottom: 15px;
}
.aboutUs-right-top p {
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
}
.aboutUs-right-bottom {
  display: flex;
  justify-content: space-between;
}
.aboutUs-right-bottom-number {
  font-size: 58px;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: 0em;
  text-align: left;
}
.aboutUs-right-bottom-txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  text-transform: uppercase;
}
.aboutUs-right-bottom-item {
  width: 16%;
}
/* /#aboutUs */

/* #valuables */

.valuables-body {
  padding: 50px 130px 50px 50px;
  background-color: #fff;
  border-radius: 20px;
}
.valuables-wrap {
  display: flex;
  justify-content: space-between;
}
.valuables-right {
  max-width: 1170px;
  width: 100%;
  margin-left: 55px;
}
.valuables-left {
  max-width: 515px;
  width: 100%;
}
img.valuables-decor {
  margin-left: auto;
  display: block;
}
.valuables-right-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}
.valuables-right__item {
  width: calc(50% - 20px);
}
.valuables-right__item-icon {
  margin-bottom: 10px;
}
.valuables-right__item-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 10px;
}
.valuables-right__item-txt {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}
/* /#valuables */

/* #reviews */

#reviews {
  margin-top: 150px;
  padding-bottom: 150px;
  padding-left: 50px;
}
.reviews-wrap {
  display: flex;
  justify-content: space-between;
}
.reviews-left {
  max-width: 515px;
  min-width: 450px;
  width: 100%;
  padding-right: 70px;
  padding-top: 90px;
}
.reviews-left p {
  color: #222222;
}
.reviews-slider {
  max-width: 1300px;
  min-width: 1000px;
  width: 100%;
}
.reviews-slider__item {
  margin: 0 15px;
}

.reviews-slider__item {
  background: #2b2b2b;
  border-radius: 30px;
  padding: 25px 40px 19px 25px;
  height: 550px !important;
  color: #fff;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.reviews-slider__item::after {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  position: absolute;
  bottom: 15px;
  right: 25px;
  background: url("./../images/icons/reviews-decor.png");
  background-size: cover;
}
.reviews-slider__item-img img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}
.reviews-slider__item-name {
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 20px;
}
.reviews-slider__item-txt {
  font-size: 22px;
  font-weight: 300;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
}
.reviews-slider__item-bottom {
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
}
.reviews-slider > .slick-arrow {
  background: #fff;
  width: 45px;
  height: 45px;
  top: 320px;
  bottom: auto;
}
.reviews-slider > .slick-arrow.slick-prev:before {
  background: url("./../images/icons/slider-prev1.svg") no-repeat;
  content: "";
  position: absolute;
}
.reviews-slider > .slick-arrow.slick-prev {
  left: -150px;
}
.reviews-slider > .slick-arrow.slick-next {
  right: auto;
  left: -95px;
}
.reviews-slider > .slick-arrow.slick-next:before {
  content: "";
  position: absolute;
  background: url("./../images/icons/slider-next1.svg") no-repeat;
}
.reviews-slider > .slick-arrow.slick-next:before,
.reviews-slider > .slick-arrow.slick-prev:before {
  top: calc(50% - 8.5px);
  left: calc(50% - 10.5px);
  display: block;
  width: 21px;
  height: 17px;
}
/* /#reviews */

/* #footer */

#footer {
  background: var(--c-dark-tan);
  color: #fff;
  padding: 95px 0 35px;
  margin-top: 40px;
}
.footer-container {
  max-width: 1210px;
  padding: 0 15px;
  margin: 0 auto;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
}
.footer-icons svg:not(.footer-icons a:last-child svg) {
  margin-right: 20px;
}
.footer-left > div {
  margin-bottom: 40px;
}
.footer-item__title {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--c-brown);
  font-weight: 800;
}
.footer-left > div p a {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 30px;
  color: var(--c-white);
  transition: color 0.3s ease-in;
}
.footer-left > div p a:hover {
  color: var(--c-orange);
}
.form-body {
  padding: 40px 48px;
  border-radius: 16px;
  max-width: 590px;
  border: 1px solid var(--c-white);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--c-brown);
  margin-bottom: 8px;
}
.form-txt {
  font-size: 14px;
  margin-bottom: 40px;
  color: var(--c-white);
}
.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.input-txt {
  width: calc(50% - 16px);
  height: 52px;
  border: 1px solid var(--c-white);
  padding: 0px 24px;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  color: var(--c-white);
  border-radius: 32px;
  background: transparent;
}
.input-txt::placeholder {
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  color: var(--c-gray);
}
.input-btn {
  width: calc(50% - 16px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--c-brown);
  border-radius: 32px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0em;
  text-align: center;
  color: var(--c-white);
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
.input-btn:hover {
  background: var(--c-tan);
}
.copyright {
  text-align: center;
  color: var(--c-brown);
  font-size: 14px;
}
.form-policy {
  margin-top: 32px;
  color: var(--c-white);
  font-size: 12px;
}
/* /#footer */

/* /Home */

/* aboutUs */

.aboutUs-page-body {
  padding: 0 61px;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}
.aboutUs__main {
  margin-top: 20px;
}
.aboutUs__main-wrap-left {
  background: #1d1d1d;
  max-width: 586px;
  min-width: 586px;
  width: 100%;
  min-height: 523px;
  border-radius: 40px;
  padding: 40px;
  color: #fff;
}
.wrap-left__info-title {
  margin-bottom: 5px;
}
.wrap-left__info > div {
  margin-bottom: 30px;
}
.aboutUs__main-wrap-left a {
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
}
.wrap-left__info-tel a {
  margin-right: 20px;
}
.wrap-left__info-icons .wrap-left__info-title {
  margin-bottom: 10px;
}
.wrap-left__info-icons svg {
  margin-right: 20px;
}
.aboutUs__main-wrap-left .btn {
  margin-top: 50px;
}
.aboutUs__main-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.aboutUs__main-wrap-right {
  max-width: 1193px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.aboutUs__main-wrap-right-item:not(.aboutUs__main-wrap-right-item.item-small) {
  background: url("./../images/Rectangle174.jpg");
  background-position: center;
  background-size: cover;
  padding: 60px 80px 60px 40px;
  border-radius: 30px;
  color: #fff;
}
.aboutUs__main-wrap-right-item.item-small {
  width: calc(50% - 10px);
  padding: 40px 40px 40px 30px;
  border: 1px solid #000000;
  border-radius: 30px;
}
.item-small-txt {
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  margin-top: 10px;
}
.aboutUs__main-perevagu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.perevagu-item {
  max-width: 282px;
  height: 240px;
  box-shadow: 0px 4px 14px 0px #0000001c;
  border: 1px dashed #000000;
  padding: 20px 27px 25px 25px;
  border-radius: 30px;
  width: 15.8%;
}
.perevagu-item-icon {
  display: flex;
  justify-content: flex-end;
}
.perevagu-item-number {
  font-size: 58px;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: 0em;
  text-align: left;
  margin-top: 28px;
}
.perevagu-item-txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  text-transform: uppercase;
}
#ourTeam {
  margin: 70px 0 130px;
}
.ourTeam-slider {
  margin-top: 30px;
}
.ourTeam-slider > .slick-arrow {
  background: #f2f2f2;
  width: 45px;
  height: 45px;
  top: auto;
  bottom: -15px;
}
.ourTeam-slider > .slick-arrow.slick-prev:before {
  background: url("./../images/icons/slider-prev1.svg") no-repeat;
  content: "";
  position: absolute;
}
.ourTeam-slider > .slick-arrow.slick-prev {
  left: 0px;
}
.ourTeam-slider > .slick-arrow.slick-next {
  right: 0px;
}
.ourTeam-slider > .slick-arrow.slick-next:before {
  content: "";
  position: absolute;
  background: url("./../images/icons/slider-next1.svg") no-repeat;
}
.ourTeam-slider > .slick-arrow.slick-next:before,
.ourTeam-slider > .slick-arrow.slick-prev:before {
  top: calc(50% - 8.5px);
  left: calc(50% - 10.5px);
  display: block;
  width: 21px;
  height: 17px;
}
.ourTeam-item {
  margin: 0 9px;
  position: relative;
  height: 387px !important;
}
.ourTeam-slider .slick-list.draggable {
  margin: 0 -9px;
}
.ourTeam-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.ourTeam-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 20px);
  position: absolute;
  left: 10px;
  bottom: 15px;
  background-color: #fff;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #000;
  height: 58px;
  cursor: pointer;
}
.ourTeam-btn svg {
  margin-left: 13px;
}

/* pop-up team */

.pop-up__team {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #00000066;
  z-index: -2;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
.pop-up__team.open {
  opacity: 1;
  z-index: 111;
  transition: all 0.3s ease-in-out 0s;
}
.pop-up__team-body {
  width: 950px;
  height: 320px;
  border-radius: 30px;
  background: #fff;
  position: relative;
  display: flex;
  padding: 40px 45px 40px 30px;
}
.pop-up__team-body::before {
  content: "";
  display: block;
  height: 100%;
  width: 137px;
  position: absolute;
  left: 0;
  top: 0;
  background: #1d1d1d;
  border-radius: 30px 0 0 30px;
}
.pop-up__team-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.close__pop-up__team {
  position: absolute;
  top: 30px;
  right: 30px;
}
.pop-up__team-image img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
}
.pop-up__team-center {
  max-width: 330px;
  width: 100%;
  text-align: center;
}
.pop-up__team-name {
  text-align: center;
}
.pop-up__team-info {
  font-size: 16px;
  line-height: 1.3em;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 31px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  height: 9em;
}
.pop-up__team-right p,
.pop-up__team-right a {
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: center;
}
.pop-up__team-phone {
  margin-top: 30px;
  margin-bottom: 27px;
}
.close__pop-up__team {
  cursor: pointer;
}
/* /pop-up team */
/* /aboutUs */

/* catalog */

.catalog-filters {
  padding: 25px 15px;
  border-radius: 20px;
  box-shadow: 0px 4px 24px 0px #0000000d;
  margin-bottom: 15px;
}
.catalog-filters__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #00000033;
}
.catalog-filters__top-left {
  display: flex;
  align-items: center;
  width: 75%;
}
.catalog-filters__top-right {
  width: 25%;
}
.catalog-filters__top-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 20px;
}
.catalog-filters-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 17px;
}
.catalog-filters__left-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter-block-body__wrap {
  display: flex;
  flex-direction: column;
}
.input-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  padding: 11.5px 20px;
  color: #00000066;
  margin-bottom: 10px;
  border: 1px solid transparent;
  border-radius: 5px;
}
.input-text:focus {
  border: 1px solid var(--c-brown);
}
.filter-block {
  position: relative;
}
.filter-block-body {
  position: absolute;
  height: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out 0s;
  z-index: 11;
  background: #e1e1e1;
  padding: 0 20px;
  border-radius: 10px;
  width: 100%;
  top: 101%;
}
.filter-block.open .filter-block-body {
  height: auto;
  max-height: 400px;
  transition: all 0.3s ease-in-out 0s;
  padding: 20px;
}
.filter-block-title {
  background: var(--c-gray);
  width: 200px;
  height: 43px;
  display: flex;
  position: relative;
  align-items: center;
  padding-left: 16px;
  padding-right: 35px;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0em;
  text-align: left;
  color: var(--c-black);
  cursor: pointer;
  border-radius: 8px;
}
.filter-block-title span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: block;
}
.filter-block-title:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("./../images/icons/str-filter.svg");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 9px);
  right: 16px;
  transition: all 0.3s ease-in-out 0s;
}
.filter-block.open .filter-block-title:after {
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out 0s;
}
.filter-block-body-item input[type="checkbox"] {
  width: 0;
  height: 0;
  overflow: hidden;
  display: none;
}
.filter-block-body-item label {
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #000;
  padding: 0 33px;
  margin-bottom: 16px;
  cursor: pointer;
  display: block;
  position: relative;
}
.filter-block-body-item label::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc(50% - 11px);
  background: #1d1b201f;
}
.filter-block-body-item label::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: 6px;
  top: calc(50% - 5px);
  border: 1px solid #1d1b20;
}
.filter-block-body-item input:checked ~ label::after {
  content: "";
  background: url("./../images/icons/state-layer.png");
  background-size: contain;
  display: block;
  width: 10px;
  height: 10px;
  border: none;
  background-repeat: no-repeat;
}

/* radio */
.filter-toggle {
  padding: 6px;
  background: #f4f5f7;
  width: auto;
  display: inline-flex;
  gap: 4px;
  border-radius: 40px;
  margin-right: 22px;
}
.filter-toggle input {
  display: none;
}
.filter-toggle label {
  display: block;
  line-height: 1;
  padding: 10px 34px;
  background: transparent;
  color: #202020cc;
  border-radius: 32px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.filter-toggle .filter-toggle__item input:checked ~ label,
.filter-toggle label:hover {
  background: var(--c-brown);
  color: var(--c-white);
}

.filter-toggle.v2 {
  background: transparent;
}

.filter-toggle.v2 label {
  padding: 11px 28px;
  color: var(--c-black);
  border: 1px solid #db631a1a;
}

.filter-toggle.v2 .filter-toggle__item input:checked ~ label,
.filter-toggle.v2 label:hover {
  color: var(--c-brown);
  background: #db631a1a;
}

.catalog-filters-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  max-width: 390px;
}
.btn.btn-search {
  padding: 15px 20px 15px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  cursor: pointer;
  margin-left: 10px;
  height: 50px;
}
.filter-submit {
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0em;
  text-align: left;
  background: #1d1d1d;
  padding: 14px 24px;
  color: var(--c-white);
  border-radius: 30px;
  background: var(--c-brown);
  transition: background 0.3s ease-in-out;
}
.filter-submit:hover {
  background: var(--c-orange);
}
#form-search {
  width: 100%;
}
.btn-show-cart {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 100%;
  padding: 16px 24px;
  border-radius: 30px;
  background: #db631a1a;
  color: var(--c-brown);
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.btn-show-cart svg {
  margin-left: 4px;
}
.btn-show-cart:hover {
  background: var(--c-brown);
  color: var(--c-white);
}
.btn-all-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0em;
  text-align: left;
  color: var(--c-dark-tan);
  transition: color 0.3s ease-in-out;
  display: none;
}
.btn-clear-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0em;
  text-align: left;
  color: #00000066;
  transition: color 0.3s ease-in-out;
}
.btn-all-filters:hover {
  color: var(--c-brown);
}
.btn-clear-filter:hover {
  color: var(--c-brown);
}
.btn-all-filters svg {
  margin-left: 6px;
}
.catalog-filters__left-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  /* height: 0;
  overflow: hidden;
  max-height: 0; */
  transition: all 0.3s ease-in-out 0s;
}
.catalog-filters__left-bottom.open {
  height: auto;
  max-height: 150px;
  overflow: unset;
  transition: all 0.3s ease-in-out 0s;
}
.catalog-page__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.catalog-page__top-count {
  font-size: 16px;
}
.sort {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sort-select {
  position: relative;
}
.sort-select__title {
  position: relative;
  min-width: 166px;
  padding: 10px 30px 10px 18px;
  border-radius: 12px;
  border: 1.5px solid #0000004d;
  cursor: pointer;
}

.sort-select__title span {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.sort-select.active .sort-select__title span {
  transform: translate(0, -50%) rotate(180deg);
}
.sort-select.active .sort-select__title {
  border-radius: 12px 12px 0 0;
  border-bottom: none;
}
.sort-select__body {
  position: absolute;
  padding: 10px 18px;
  border: 1.5px solid #0000004d;
  border-top: none;
  border-radius: 0 0 12px 12px;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, -10px);
  right: 0;
  z-index: 1;
  top: calc(100% - 1px);
  background: var(--c-white);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
body {
}
.sort-select.active .sort-select__body {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.sort-select__body a {
  display: inline-block;
  margin-bottom: 10px;
  transition: color 0.3s ease-in-out;
}
.sort-select__body a:hover {
  color: var(--c-brown);
}
.sort-select__body a.active {
  color: var(--c-brown);
}
.sort-select__body a:last-child {
  margin-bottom: 0;
}
.catalog-page-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.catalog-page-wrap .popularObject-item {
  width: calc(25% - 15px);
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0px 0px 54px 0px #35364633;
}
/* /catalog */

/* object */
.object-body {
  margin-bottom: 75px;
}
.object-breadcrumb {
  padding: 45px 40px 30px;
}
.object-top {
  display: flex;
  gap: 13px;
  margin-bottom: 26px;
}
.object-top__right {
  width: calc(50% - 13px);
}
.object-top__left {
  position: relative;
  width: 50%;
  margin-top: 4px;
}
.object-content-slider {
  max-width: 100%;
  width: 100%;
}
.object-content-slider__item {
  position: relative;
}

.object-content-slider__item picture {
  padding-bottom: 99%;
}
.object-content-slider__item img {
  /* width: 100%;
  height: 619px;
  object-fit: cover; */
  border-radius: 10px;
}

.object-content-slider__item .count-photo {
  position: absolute;
  bottom: 14px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 10px;
  background-color: var(--c-white);
  color: #000;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
}

.object-content-slider .slick-dots {
  position: absolute;
  z-index: 11;
  width: 100%;
  margin: 0 auto;
  bottom: 20px;
}
.object-content-slider .slick-dots li {
  display: flex;
}
.object-content-slider ul.slick-dots li button {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  border: transparent;
  background: var(--c-white);
}

.object-content-slider ul.slick-dots li.slick-active button {
  width: 10px;
  height: 10px;
  background: var(--c-brown);
}
.object-content-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.object-content-images__item--inner {
  display: flex;
  gap: 10px;
}
.object-content-images__item--inner picture {
  flex: 1;
  padding-bottom: 50%;
}
.object-content-images__item img {
  /* width: 100%;
  height: 305.5px;
  object-fit: cover; */
  border-radius: 16px;
}
.object-content {
  display: flex;
  gap: 13px;
}
.object-content__info {
  width: calc(100% - 480px);
}
.object-content__info--top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}
.object-content__info--price {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  margin-bottom: 14px;
}
.object-price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 0em;
  text-align: left;
  color: var(--c-dark-tan);
}
.object-small-price {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0em;
  text-align: left;
  color: #545454;
}
.object-content__info h1 {
  font-size: 26px;
  line-height: 100%;
  font-weight: 700;
  color: var(--c-blue);
  text-align: left;
}
.object-subtitle {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  margin-top: 14px;
}
.object-content__info--social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.object-content__info--social .delete-favorite {
  color: var(--c-brown);
}
.object-content__info--social .add-favorite {
  color: var(--c-black);
}
.object-content h3 {
  font-size: 32px;
  line-height: 100%;
  font-weight: 600;
  margin-bottom: 20px;
}
.object-details {
  margin-top: 21px;
  padding-top: 21px;
  border-top: 1px solid #00000033;
}

.object-details__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sidebar-info__bottom-item {
  display: flex;
  align-items: center;
  min-width: 200px;
  width: 22%;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--c-blue);
}

.sidebar-info__bottom-item.w-100 {
  width: 100%;
}

.sidebar-info__bottom-item p {
  margin-left: 8px;
  width: calc(100% - 44px);
}
.sidebar-info__bottom--icon {
  color: var(--c-brown);
  width: 34px;
  height: 34px;
  border-radius: 5px;
  background: #db631a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.object-content__sidebar {
  width: 477px;
}
.object-content__video {
  display: block;
  position: relative;
  width: 100%;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 15px;
}

.object-content__video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a1ab2;
}
.object-content__video-text {
  color: var(--c-white);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  gap: 8px;
  font-size: 22px;
}

.object-content__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.object-title {
  font-weight: 500;
  margin-top: 15px;
}
.object-desc {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #1d1d1d99;
}
.btn-favorite {
  cursor: pointer;
}
.object-sidebar-block .object-content-desc {
  margin-top: 0;
}
.object-sidebar-block .object-content-desc h3 {
  font-size: 20px;
}
.object-sidebar-block .object-content-desc h5 {
  font-size: 18px;
  margin-bottom: 10px;
}
div#object-sidebar-lightgallery {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.object-content__photo--item.lightgallery {
  width: calc(50% - 5px);
}
.object-content__photo--item.lightgallery img {
  border-radius: 10px;
}
.object-content-desc {
  margin-top: 38px;
}
.object-content-desc,
.object-content-desc p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0em;
  text-align: left;
}
.object-content-images__slider {
  margin: -5px 0;
}
.object-content-images__item {
  padding: 4px 0;
  cursor: pointer;
}
.images-slide {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
}

.object-sidebar-block {
  padding: 20px;
  border-radius: 10px;
  background: #f3f3f3;
  width: 100%;
  margin-bottom: 15px;
}
.object-sidebar-manager__top {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}
.sidebar-manager-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.sidebar-manager-info-prof {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: 0%;
  margin-bottom: 4px;
  color: #000;
}
.sidebar-manager-info-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
}
.object-sidebar-manager__phones {
  flex: 1;
}
.object-sidebar-manager__phones p:not(:last-child) {
  margin-bottom: 10px;
}
.object-sidebar-manager__phones a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: var(--c-white);
  background: var(--c-brown);
  border-radius: 30px;
  padding: 14px;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}
.object-sidebar-manager__phones a:hover {
  background: var(--c-dark-tan);
}
.object-sidebar-block button {
  display: flex;
  width: 100%;
  height: 52px;
  margin-top: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: var(--c-white);
  background: var(--c-brown);
  border-radius: 30px;
  padding: 14px;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}
.object-sidebar-block button:hover {
  background: var(--c-dark-tan);
}
/* /object */

/* manager-with__object-page */

.manager-with__object-page-body {
  padding: 30px 61px 90px;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}
.manager-with__object-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 40px 20px;
}
.manager-with__object-wrap .popularObject-item {
  width: calc(25% - 15px);
  padding: 0;
}
.manager-with__object-wrap .manager-item {
  width: calc(25% - 15px);
  padding: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.08);
}
.manager-item__top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background: rgba(29, 29, 29, 1);
}
.manager-item__wrap {
  padding: 20px 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 100%;
  justify-content: space-between;
}
.manager-item__image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
}
.manager-item__name {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3em;
  text-align: left;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 5px;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: 1.3em;
}
.manager-item__info {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3em;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 3.9em;
}
.manager-item__proposition {
  margin-block: 27px;
  font-size: 18px;
  font-weight: 600;
  line-height: 25.2px;
  text-align: center;
}
.manager-item__bottom-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  margin-bottom: 15px;
}
.manager-item__bottom-info > div {
  width: 49%;
}
.manager-item__bottom-info > div:last-child {
  display: flex;
  justify-content: flex-end;
}
.manager-item__bottom-info a {
  font-size: 15px;
  font-weight: 500;
  line-height: 25.2px;
  text-align: left;
}
.manager-item__bottom-info-social svg {
  margin-left: 10px;
}
/* /manager-with__object-page */
a.btn.btn-edit__object {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16.94px;
  text-align: left;
  padding: 10px 20px;
}

a.btn.btn-delete__object {
  position: absolute;
  bottom: 55px;
  right: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16.94px;
  text-align: left;
  padding: 10px 20px;
  width: 121px;
}
/* /new style 12.03.2024 */
/* .filter-block {
  display: none;
}
.filter-block:nth-child(1),
.filter-block:nth-child(2),
.filter-block:nth-child(3),
.filter-block:nth-child(4),
.filter-block:nth-child(5),
.filter-block:nth-child(6) {
  display: block;
} */

.catalog-filters__left-bottom.open {
  max-height: 100% !important;
}
.catalog-filters__left-bottom {
  margin-top: 0;
}
.catalog-filters__left {
  width: calc(100% - 270px);
}
.filter-block.open .filter-block-body {
  overflow: auto;
}

.page-title {
  text-align: center;
  margin-bottom: 25px;
}

main {
  margin-bottom: 30px;
}

.saved__lists table tr th,
.saved__lists table tr td {
  padding: 10px;
}

.saved__lists table tbody tr {
  position: relative;
  cursor: pointer;
  background: var(--c-brown);
  color: var(--c-white);
  transition: background 0.3s ease-in-out;
}

.delete-list {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0px, -50%);
  padding: 10px;
}

.saved__lists table tbody tr:hover {
  background: var(--c-dark-tan);
}

.saved__lists table tr th:first-child,
.saved__lists table tr td:first-child {
  width: 80%;
  text-align: left;
}

.saved__lists table tr th:last-child,
.saved__lists table tr td:last-child {
  width: 80%;
  text-align: center;
}

.saved__lists table {
  width: 100%;
}

.breadcrumb {
  font-size: 14px;
}

.breadcrumb .kb_sep {
  padding: 0 5px;
}

.breadcrumb a {
  color: #0000004d;
  transition: color 0.3s ease-in-out;
}

.breadcrumb a:hover {
  color: var(--c-orange);
}

.lg-toolbar.lg-group {
  margin-top: 40px;
  background: transparent;
  text-align: right;
  height: 0;
}

@media screen and (max-width: 1800px) {
  /* home page */

  .partners-item img {
    width: 90%;
  }

  .aboutUs-body {
    padding-right: 55px;
  }
  .reviews-slider {
    max-width: 1200px;
  }

  /* /home page */
}

@media screen and (max-width: 1560px) {
  .container {
    max-width: 1340px;
  }

  .header__left {
    gap: 40px;
  }

  /* home page */

  .partners-item img {
    width: auto;
  }
  .partners-item {
    display: flex !important;
    align-items: center !important;
    height: 94px !important;
    justify-content: center;
  }
  .catalog-desc {
    width: 45%;
  }
  .aboutUs-left {
    width: 45%;
  }
  .aboutUs-right-bottom {
    flex-wrap: wrap;
  }
  .aboutUs-right-bottom-item {
    min-width: 160px;
    margin-top: 20px;
  }
  .valuables-left {
    width: 45%;
  }
  .reviews-left {
    width: 45%;
  }
  .reviews-slider {
    width: 65%;
    min-width: 500px;
  }
  p.catalog-images__item-desc {
    padding: 0 15px;
    font-size: 16px;
    line-height: 21px;
  }

  /* /home page */

  /* aboutUs page */
  .aboutUs__main-wrap-right-item:not(
      .aboutUs__main-wrap-right-item.item-small
    ) {
    padding: 20px 38px 18px 30px;
  }
  .aboutUs__main-wrap-right-item.item-small {
    padding: 20px;
  }
  #ourTeam {
    margin-bottom: 100px;
  }
  /* .aboutUs__main-wrap-left {
    min-width: 452px;
  } */
  /* /aboutUs page */

  /* catalog page */

  .filter-toggle label {
    padding: 10px 24px;
  }

  .filter-toggle.v2 label {
    padding: 11px 14px;
  }
  .catalog-filters__top-right {
    width: 27%;
  }
  .filter-block-title {
    width: 185px;
  }
  .catalog-page-wrap .popularObject-item {
    width: calc(33% - 10px);
  }
  /* /catalog page */

  /* object page */

  /* .object-content-slider__item img {
    height: 550px;
  }

  .object-content-images__item img {
    height: 270px;
  } */

  /* /object page */

  /* manager-with__object-page */

  .manager-with__object-wrap .popularObject-item {
    width: calc(33% - 10px);
    padding: 0;
  }
  .manager-with__object-wrap .manager-item {
    width: calc(33% - 10px);
  }
  .manager-item__bottom-info a {
    font-size: 13px;
    line-height: 22px;
  }

  /* /manager-with__object-page */
}
@media screen and (max-width: 1367px) {
  .container {
    max-width: 1140px;
  }
  h3 {
    font-size: 32px;
    line-height: 38px;
  }
  .header-info__tablet {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 8px;
  }
  .header-menu li a {
    font-size: 15px;
    margin-right: 15px;
  }
  /* home page */

  #partners {
    padding: 20px 0;
  }
  .partners-item img {
    width: 70%;
    height: auto;
    max-height: 100%;
  }
  .catalog-body {
    padding: 30px 30px 40px 30px;
  }
  .catalog-wrap {
    flex-direction: column;
  }
  .catalog-desc {
    width: 100%;
    max-width: 100%;
  }
  .catalog-images__item {
    height: 314px;
  }
  .catalog-images__item:hover p.catalog-images__item-title {
    transform: translate(-50%, -100px);
  }
  .catalog-images__item:hover p.catalog-images__item-desc {
    top: 30%;
  }
  .catalog-desc-bottom {
    display: none;
  }
  .catalog-desc-bottom.catalog-desc-bottom-tablet {
    display: flex !important;
    justify-content: center;
  }
  .catalog-desc-bottom.catalog-desc-bottom-tablet .btn {
    max-width: 430px;
    margin-top: 30px;
  }
  .catalog-images {
    margin-left: 0;
    max-width: 100%;
    margin-top: 48px;
  }
  .popularObject-body {
    padding: 0;
  }
  .aboutUs-body {
    padding: 30px 21px 24px 30px;
  }
  .aboutUs-right {
    margin-left: 38px;
  }
  .aboutUs-right-top h4 {
    margin-bottom: 22px;
    font-size: 28px;
    line-height: 33px;
  }
  .aboutUs-right-bottom {
    justify-content: flex-start;
  }
  .aboutUs-right-bottom-item {
    width: 33.333%;
    max-width: 200px;
  }
  #aboutUs {
    margin-bottom: 110px;
  }
  img.valuables-decor {
    display: none;
  }
  .valuables-wrap {
    flex-direction: column;
  }
  .valuables-body {
    padding: 30px 68px 37px 30px;
  }
  .valuables-right {
    max-width: 100%;
    margin-left: 0;
  }
  h4 {
    font-size: 28px;
    line-height: 34px;
  }
  #reviews {
    margin-top: 100px;
    padding-bottom: 90px;
    padding-left: 0;
  }
  .reviews-left {
    width: 40%;
  }
  .reviews-slider {
    width: 50%;
  }
  .form-body {
    padding: 40px 27px;
    max-width: 484px;
  }
  .form-title {
    font-size: 24px;
    line-height: 29px;
  }
  .form-txt {
    font-size: 16px;
    line-height: 22px;
  }
  #footer {
    padding: 80px 70px 70px 40px;
  }
  .footer-container {
    padding: 0;
  }
  /* /home page */

  /* aboutUs page */

  .aboutUs__main-wrap-left {
    min-width: 452px;
    max-width: 452px;
    min-height: 493px;
  }
  .aboutUs__main-wrap-left {
    padding: 30px;
  }
  .item-small-title {
    font-size: 22px;
    line-height: 26px;
  }
  .aboutUs__main-wrap-right {
    flex-direction: column;
  }
  .aboutUs__main-wrap-right-item.item-small {
    width: 100%;
  }
  .aboutUs__main-perevagu {
    flex-wrap: wrap;
  }
  .perevagu-item {
    max-width: 32%;
    width: 32%;
    margin-bottom: 20px;
  }
  .ourTeam-btn {
    font-size: 14px;
    line-height: 17px;
  }
  .aboutUs__main-wrap-right-item h4 {
    font-size: 24px;
    line-height: 31px;
  }
  .ourTeam-item {
    height: 294px !important;
  }
  /* /aboutUs page */
  /* object page */

  /* .object-top__left {
    width: calc(100% - 400px);
  } */
  /* .object-content-slider__item img {
    height: 450px;
  } */

  .object-content-slider .slick-dots {
    width: 100%;
  }

  /* .object-content-images__item img {
    height: 220px;
  } */

  /* .object-top__right {
    width: 387px;
  } */

  .object-content__sidebar {
    width: 387px;
  }

  .object-content__info {
    width: calc(100% - 400px);
  }

  /* /object page */

  /* catalog page */

  .catalog-filters__top-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .catalog-filters__top-left {
    width: 60%;
  }
  .catalog-filters__top-right {
    width: 40%;
  }
  .catalog-filters__left-bottom {
    max-width: 900px;
  }

  .catalog-filters__left-bottom .filter-block:nth-child(5) {
    display: none;
  }

  /* /catalog page */
}

@media screen and (max-width: 1124px) {
  .header-burger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 48px;
    height: 48px;
    background: var(--c-tan);
    border-radius: 12px;
    cursor: pointer;
    z-index: 111;
    transition: all 0.5s ease-in-out 0s;
  }
  .header-burger span {
    position: absolute;
    left: 0;
    right: 0;
    width: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--c-white);
    height: 1.5px;
    border-radius: 3px;
    transition: all 0.5s ease-in 0s;
  }

  .header-burger span:first-child {
    top: 14px;
  }
  .header-burger span:last-child {
    bottom: 14px;
  }
  .header-burger.open {
    background: var(--c-brown);
  }
  .header-burger.open span:first-child {
    transform: rotate(45deg);
    top: 23px;
  }
  .header-burger.open span:nth-child(2) {
    opacity: 0;
  }
  .header-burger.open span:last-child {
    transform: rotate(-45deg);
    bottom: 24px;
  }

  .button-outline {
    padding: 15px 30px;
  }
  .header__right {
    margin-left: auto;
    margin-right: 20px;
  }

  .header-menu {
    position: absolute;
    width: 100%;
    height: 100vh;
    background: var(--c-dark-tan)
      url("../images/icons/arkada-symbol-orange.svg") no-repeat center bottom /
      145%;
    padding: 144px 20px 48px;
    left: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    transition: all 0.3s ease-in-out 0s;
  }
  .header-menu.open {
    opacity: 1;
    z-index: 110;
    pointer-events: auto;
  }
  .header-menu ul {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto 20px;
    max-width: 920px;
  }

  .header-info-phone {
    display: none !important;
  }
  /* home page */

  .header-social__icons {
    display: none;
  }
  .header-menu-bottom .header-social__icons {
    display: flex;
    margin-bottom: 12px;
  }
  .header-menu-bottom .header-info-phone {
    display: flex !important;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .header-menu-bottom {
    max-width: 920px;
    margin: 0 auto;
    display: block !important;
  }
  .header-menu li a {
    padding: 0;
    font-size: 32px;
    margin: 0;
  }
  .header-menu ul > li {
    margin-bottom: 32px;
  }
  .btn-log-in {
    margin-left: 0;
  }
  .catalog-body {
    padding: 20px 20px 30px 20px;
  }
  .catalog-desc-top h3 {
    margin-bottom: 11px;
  }
  .inter-fs22 {
    font-size: 18px;
    line-height: 25px;
  }
  .catalog-images {
    margin-top: 39px;
  }
  .catalog-images__item {
    height: 240px;
  }
  .catalog-images__item:first-child {
    height: 195px;
  }
  .catalog-images__item:hover p.catalog-images__item-desc {
    font-size: 14px;
    line-height: 17px;
  }
  .catalog-images__item:hover p.catalog-images__item-title {
    transform: translate(-50%, -85px);
  }
  .catalog-body {
    margin-bottom: 50px;
  }
  .catalog-desc-bottom.catalog-desc-bottom-tablet .btn {
    max-width: 330px;
  }
  .home-page {
    padding: 0 20px;
  }
  .catalog-images__item:hover p.catalog-images__item-desc {
    top: 40%;
  }
  #popularObject {
    margin-bottom: 70px;
  }
  .aboutUs-wrap {
    flex-direction: column;
  }
  .aboutUs-body {
    padding: 20px 20px 30px 20px;
    height: auto;
  }
  .aboutUs-left {
    width: 100%;
    max-width: 100%;
  }
  .aboutUs-right {
    margin-left: 0;
    margin-top: 30px;
  }
  .btn.btn-full-width {
    font-size: 18px;
    line-height: 25px;
    height: 54px;
  }
  .aboutUs-left .btn-full-width {
    display: none;
  }
  .aboutUs-right .btn-full-width {
    display: flex !important;
    max-width: 330px;
    margin: 0 auto;
  }
  .title {
    margin-bottom: 10px;
  }
  .aboutUs-right-top h4 {
    margin-bottom: 30px;
  }
  .aboutUs-right-bottom {
    max-width: 520px;
    margin-bottom: 40px;
  }
  #aboutUs {
    margin-bottom: 50px;
  }
  .aboutUs-body {
    margin-bottom: 0;
  }
  .valuables-body {
    padding: 20px 20px 30px 20px;
  }
  .valuables-right-wrap {
    margin-top: 30px;
  }
  .valuables-right__item {
    width: 100%;
  }
  #reviews {
    margin-top: 50px;
    padding-bottom: 125px;
  }
  .reviews-wrap {
    flex-direction: column;
  }
  .reviews-left {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
  .reviews-slider {
    min-width: 100%;
    width: 100%;
  }
  .reviews-slider > .slick-arrow.slick-prev {
    left: 15px;
    top: calc(100% + 30px);
  }
  .reviews-slider > .slick-arrow.slick-next {
    left: auto;
    right: 15px;
    top: calc(100% + 30px);
  }
  .footer-wrap {
    flex-direction: column-reverse;
  }
  .form-body {
    max-width: 600px;
    margin: 0 auto 20px;
  }
  .form-wrap {
    flex-direction: column;
    gap: 15px;
  }
  .form-title {
    margin-bottom: 20px;
    text-align: center;
  }
  .form-txt {
    margin-bottom: 20px;
    text-align: center;
  }
  .input-txt {
    width: 100%;
  }
  .input-btn {
    width: 100%;
    height: 52px;
  }
  .footer-left {
    padding: 20px;
  }
  .footer-item__title {
    text-align: center;
  }
  .footer-icons {
    display: flex;
    justify-content: center;
  }
  .footer-left > div img {
    display: block;
    margin: 0 auto;
  }
  #footer {
    padding: 80px 20px 50px 20px;
  }
  .footer-left > div p {
    text-align: center;
  }
  .footer-left > div p a {
    font-size: 18px;
  }
  /* /home page */

  /* aboutUs page */

  .aboutUs-page-body {
    padding: 0 20px;
  }
  .aboutUs__main-wrap {
    flex-direction: column;
  }
  .aboutUs__main-wrap-left {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    min-height: 300px;
    padding-bottom: 48px;
  }
  .aboutUs__main-wrap-left .btn.btn-full-width {
    display: none;
  }
  .aboutUs__main-wrap-left .aboutUs__main-wrap-left-box .btn.btn-full-width {
    display: flex !important;
    padding: 16.5px 44px;
  }
  .aboutUs__main-wrap-left-box {
    max-width: 235px;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .wrap-left__info {
    max-width: calc(100% - 285px);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .wrap-left__info-icons {
    margin-bottom: 0 !important;
  }
  .perevagu-item-number {
    font-size: 48px;
    line-height: 58px;
  }
  .perevagu-item-txt {
    font-size: 14px;
    line-height: 17px;
  }
  #ourTeam {
    margin: 50px 0 90px;
  }
  .pop-up__team-body {
    width: 700px;
    height: 240px;
    padding: 38px 22px;
  }
  .pop-up__team-image img {
    width: 160px;
    height: 160px;
  }
  .pop-up__team-name {
    font-size: 22px;
  }
  .pop-up__team-info {
    font-size: 14px;
    line-height: 1.3em;
    margin: 10px 0 26px;
  }
  .btn-transparent {
    font-size: 14px;
    line-height: 17px;
    padding: 10px 14px;
  }
  .pop-up__team-center {
    max-width: 260px;
  }
  .btn-transparent svg {
    width: 26px;
    height: 26px;
  }
  .pop-up__team-right p,
  .pop-up__team-right a {
    font-size: 14px;
    line-height: 17px;
  }
  .btn-call {
    font-size: 14px;
    line-height: 17px;
    padding: 10px 14px;
  }
  .close__pop-up__team {
    top: 15px;
    right: 15px;
  }
  /* /aboutUs page */

  /* object page */
  .object-top {
    flex-direction: column;
    margin-bottom: 15px;
  }
  .object-body {
    margin-bottom: 30px;
  }
  .object-top__left {
    width: 100%;
  }

  .object-top__right {
    display: none;
  }

  .object-content-images {
    width: 20%;
  }
  /* .object-content-slider__item img {
    height: 420px;
  }
  .object-content-images__item img {
    height: 115px;
  } */

  .object-content__video.object-content__video--mob {
    display: block !important;
    margin-top: 0;
    margin-bottom: 0;
  }

  .object-content__sidebar .object-content__video {
    display: none;
  }

  .object-content {
    flex-direction: column;
    gap: 30px;
  }

  .object-content__info {
    width: 100%;
  }
  .object-content__sidebar {
    width: 100%;
  }

  .object-sidebar-manager {
    display: flex;
    gap: 15px;
  }

  /* /object page */

  /* catalog page */

  .catalog-filters__top {
    flex-direction: column;
  }
  .catalog-filters__top-left {
    width: 100%;
  }

  .catalog-filters .filter-toggle {
    width: 100%;
    margin-right: 0;
  }
  .catalog-filters .filter-toggle:not(.v2) .filter-toggle__item {
    width: 50%;
  }
  .catalog-filters .filter-toggle.v2 {
    flex-wrap: wrap;
  }
  .catalog-filters .filter-toggle.v2 .filter-toggle__item {
    width: calc(50% - 2px);
  }
  .catalog-filters .filter-toggle.v2 label {
    padding: 15.5px;
  }
  .filter-toggle label {
    text-align: center;
  }
  .catalog-filters__top-right {
    width: 100%;
  }
  .filter-submit {
    display: none;
  }
  .catalog-filters__top-right .btn-show-cart {
    display: none;
  }
  .form-search {
    width: 100%;
  }
  .catalog-filters-btns {
    width: 100%;
  }
  .btn-all-filters .btn-all-filters__txt {
    display: none;
  }
  .btn-all-filters {
    display: flex;
  }
  .btn-all-filters .btn-all-filters__txt-mob {
    display: block !important;
  }
  .btn-show-cart__mob {
    display: flex !important;
    margin-left: auto;
  }
  .catalog-filters__left {
    display: none;
  }
  .catalog-filters {
    padding: 25px 20px;
  }
  .catalog-page-wrap .popularObject-item {
    width: calc(50% - 10px);
  }
  .catalog-filters__left {
    position: absolute;
    height: 100vh;
    width: 80%;
    top: 0;
    right: 0;
    background: var(--c-white);
    padding-top: 20px;
    z-index: 11111;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  }
  .catalog-filters__left:has(.catalog-filters__left-bottom.open) {
    transform: translateY(0);
    opacity: 1;
  }
  .catalog-filters__left-bottom {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .catalog-filters__left-box {
    height: calc(100vh - 120px);
    overflow-y: auto;
  }
  .catalog-filters__left-bottom .filter-block,
  .catalog-filters__left-bottom .filter-mob__top-line {
    width: calc(100% - 50px);
    margin-left: 25px;
  }
  .filter-mob__top-line {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 13px;
    background: var(--c-dark-tan);
    color: var(--c-white);
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    border-radius: 16px;
  }
  .close-filter {
    padding: 10px;
    margin: -10px;
    position: absolute;
    left: 15px;
  }
  .filter-block-title {
    width: 100%;
    height: 50px;
  }
  .filter-block-body {
    position: relative;
    border-radius: 0 0 10px 10px;
  }
  .filter-block.open .filter-block-title {
    border-radius: 8px 8px 0 0;
  }
  .filter-mob__btns {
    display: flex !important;
    gap: 10px;
    padding: 17px 25px;
    box-shadow: 0px -6px 15px 0px #0000000d;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .filter-mob__btns .btn-clear-filter {
    width: 50%;
    padding: 13px;
    font-size: 14px;
    font-weight: 500;
    background: #db631a1a;
    border-radius: 30px;
    color: var(--c-brown);
  }
  .catalog-filters-btns .btn-clear-filter {
    display: none !important;
  }
  .filter-submit__mob {
    display: flex !important;
    font-size: 20px;
    width: 50%;
    text-align: center;
    justify-content: center;
  }
  /* /catalog page */

  /* manager-with__object-page */

  .manager-with__object-page-body {
    padding: 30px 20px;
  }
  .manager-with__object-wrap .popularObject-item {
    width: calc(50% - 10px);
    padding: 0;
  }
  .manager-with__object-wrap .manager-item {
    width: calc(50% - 10px);
  }

  /* /manager-with__object-page */
}

@media screen and (max-width: 767px) {
  /* menu-fixed */
  a.btn.btn-edit__object {
    bottom: 5px;
    right: 5px;
    padding: 8px 15px;
    font-size: 12px;
  }
  a.btn.btn-delete__object {
    padding: 8px 15px;
    font-size: 12px;
    width: 100px;
    bottom: 50px;
    right: 5px;
  }
  .header-mob-fixed {
    display: block !important;
    height: 0;
    overflow: hidden;
    border-top: 1px solid #9c9c9c;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 100%;
    z-index: 1111;
    box-shadow: 0px 4px 45px 0px #00000073;
    transition: all 0.5s ease-in-out 0s;
  }
  .header-mob-fixed.active {
    height: 59px;
    transition: all 0.5s ease-in-out 0s;
    overflow: unset;
  }
  .header-mob-fixed__wrap {
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .mob-fixed__wrap-item a,
  .mob-fixed__wrap-item p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0em;
    text-align: left;
  }
  .mob-fixed__wrap-item:nth-child(3) a {
    width: 62px;
    height: 62px;
    background: linear-gradient(222.01deg, #ff5a3c 8.28%, #ffcf3c 101.27%);
    color: #fff;
    box-shadow: 0px 4px 15px 0px #00000014;
    border-radius: 50%;
    margin-top: -19px;
  }

  /* /menu-fixed */
  /* home page */
  .btn:not(.popularObject-item .btn) {
    padding: 8px 38px;
  }
  .home-page {
    padding: 0 10px;
  }
  .header-menu li a {
    font-size: 18px;
  }
  .header-info-phone {
    font-size: 18px;
  }
  .header-logo img {
    width: 100px;
  }
  .button-outline {
    padding: 10px 15px;
  }
  .btn-log-in svg {
    width: 34px;
    height: 34px;
  }
  #partners {
    padding: 10px 0;
    display: none;
  }
  #partners.partners-mobile {
    display: block !important;
    margin-bottom: 30px;
  }
  .partners-item img {
    width: 60%;
  }
  .partners-item {
    height: 64px !important;
  }
  .catalog-body {
    padding-left: 10px;
    padding-right: 10px;
  }
  .catalog-desc-top > p {
    display: none;
  }
  h3 {
    font-size: 24px;
    line-height: 29px;
  }
  .inter-fs22 {
    font-size: 14px;
    line-height: 17px;
  }
  .catalog-images {
    margin-top: 15px;
  }
  .russo-fs24 {
    font-size: 14px;
    line-height: 17px;
  }
  .catalog-images__item {
    height: 160px;
  }
  .catalog-images__item:hover p.catalog-images__item-desc {
    font-size: 8px;
    line-height: 12px;
  }
  .catalog-images__item:hover p.catalog-images__item-desc {
    top: 40%;
  }
  .catalog-images__item:hover p.catalog-images__item-title {
    transform: translate(-50%, -35px);
  }
  .catalog-images__item {
    height: 160px;
    width: 32%;
    margin-bottom: 0;
  }
  .catalog-images__item:first-child {
    height: 120px;
    margin-bottom: 10px;
  }
  .catalog-images__item:first-child p.catalog-images__item-title {
    font-size: 20px;
  }
  .catalog-desc-bottom.catalog-desc-bottom-tablet .btn {
    margin-top: 20px;
    max-width: 100%;
  }
  .popularObject-slider {
    margin-top: 20px;
  }
  ul.slick-dots {
    margin-top: 24px;
  }
  ul.slick-dots li button {
    width: 8px;
    height: 8px;
  }
  .popularObject-slider > .slick-arrow {
    width: 36px;
    height: 36px;
    bottom: -10px;
  }
  #popularObject {
    margin-bottom: 65px;
  }
  .popularObject-slider > .slick-list.draggable {
    margin: 0;
  }
  .popularObject-item {
    padding: 0;
  }
  .aboutUs-body {
    padding: 15px 15px 30px 15px;
  }
  .inter-fs18 {
    font-size: 14px;
    line-height: 17px;
  }
  .aboutUs-right-top h4 {
    font-size: 22px;
    line-height: 26px;
  }
  .aboutUs-right-top p {
    font-size: 14px;
    line-height: 17px;
  }
  .aboutUs-right-bottom-number {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 5px;
  }
  .aboutUs-right-bottom-txt {
    font-size: 14px;
    line-height: 17px;
  }
  .aboutUs-right-bottom {
    margin-bottom: 30px;
  }
  .aboutUs-right .btn-full-width {
    max-width: 100%;
  }
  .valuables-body {
    padding-left: 15px;
  }
  h4 {
    font-size: 22px;
    line-height: 26px;
  }
  .valuables-right-wrap {
    gap: 20px;
  }
  .valuables-right__item-title {
    font-size: 14px;
    line-height: 17px;
  }
  .valuables-right__item-txt {
    font-size: 14px;
    line-height: 17px;
  }
  .reviews-left {
    margin-bottom: 30px;
    min-width: auto;
  }
  p.catalog-images__item-desc {
    display: none;
  }
  .reviews-slider__item {
    margin: 0;
    height: auto !important;
    padding: 15px;
  }
  .reviews-slider__item-img img {
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
  }
  .reviews-slider__item-name {
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 5px;
  }
  .reviews-slider__item-txt {
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    margin-bottom: 90px;
  }
  .reviews-slider__item-bottom {
    font-size: 16px;
    line-height: 22px;
  }
  .reviews-slider > .slick-arrow {
    width: 36px;
    height: 36px;
  }
  .reviews-slider > .slick-arrow.slick-prev {
    left: 0;
  }
  .reviews-slider > .slick-arrow.slick-next {
    right: 0;
  }
  .form-body {
    max-width: 100%;
    padding: 20px 20px 40px 20px;
  }
  .form-title {
    text-align: left;
    margin-bottom: 10px;
    max-width: 250px;
  }
  .form-txt {
    text-align: left;
  }
  .input-txt {
    margin-bottom: 10px;
  }
  .catalog-body {
    margin-bottom: 30px;
  }
  /* /home page */

  /* aboutUs page */

  .aboutUs-page-body {
    padding-left: 10px;
    padding-right: 10px;
  }
  .aboutUs__main-wrap-left {
    flex-direction: column;
    padding: 20px 20px 30px 20px;
    min-width: auto;
  }
  .aboutUs__main-wrap-left-box {
    max-width: 100%;
    margin-right: 0;
  }
  .aboutUs__main-wrap-left .aboutUs__main-wrap-left-box .btn.btn-full-width {
    display: none !important;
  }
  .aboutUs__main-wrap-left-box .title {
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 24px;
  }
  .wrap-left__info {
    max-width: 100%;
  }
  .aboutUs__main-wrap-left a {
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
  }
  .wrap-left__info > div {
    margin-bottom: 20px;
  }
  .aboutUs__main-wrap-right-item:not(
      .aboutUs__main-wrap-right-item.item-small
    ) {
    padding: 20px 20px 30px 20px;
  }
  .aboutUs__main-wrap-right-item h4 {
    font-weight: 300;
    line-height: 31px;
  }
  .item-small-title {
    font-size: 22px;
    line-height: 27px;
  }
  .perevagu-item {
    width: 48%;
    max-width: 48%;
    height: auto;
    padding: 15px 15px 25px 15px;
  }
  .perevagu-item-number {
    margin-top: 27px;
    font-size: 38px;
    line-height: 46px;
  }
  .ourTeam-item {
    height: 270px !important;
  }
  .pop-up__team-body {
    width: calc(100% - 20px);
    height: auto;
    padding: 10px 30px 20px;
    max-width: 370px;
  }
  .pop-up__team-wrap {
    flex-direction: column;
  }
  .pop-up__team-body::before {
    height: 59px;
    width: 100%;
    border-radius: 30px 30px 0 0px;
  }
  .close__pop-up__team path {
    stroke: #fff;
  }
  .pop-up__team-image img {
    width: 86px;
    height: 86px;
    margin-bottom: 10px;
  }
  .pop-up__team-phone {
    margin: 12px 0 20px;
  }
  .btn-offers {
    display: none;
  }
  .btn-offers.btn-offers-mob {
    display: flex !important;
    margin-top: 10px;
  }
  .aboutUs__main-wrap-left a {
    margin-right: 10px;
  }
  .aboutUs__main-wrap-left a:last-child {
    margin-right: 0;
  }

  /* /aboutUs page */

  /* object page */

  .object-content-slider {
    width: 100%;
    /* height: 310px; */
  }
  /* .object-content-slider__item img {
    height: 310px;
  } */
  .object-breadcrumb {
    padding: 15px 10px;
  }
  .object-content-slider__item .count-photo {
    font-size: 0;
    gap: 0;
    bottom: 35px;
  }
  .object-price {
    font-size: 26px;
  }
  .object-content__info h1 {
    font-size: 18px;
  }
  .object-subtitle {
    font-size: 15px;
  }
  .object-content h3 {
    font-size: 24px;
  }
  .object-desc {
    font-size: 14px;
    line-height: 17px;
  }

  .object-sidebar-manager {
    flex-direction: column;
    gap: 0;
  }
  .object-content__video.object-content__video--mob {
    margin-top: 0;
  }

  .object-content__info--top {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .object-content__info--social {
    margin-left: auto;
  }

  .object-sidebar-block .object-content-desc h3 {
    font-size: 16px;
  }
  .object-sidebar-block .object-content-desc h5 {
    font-size: 16px;
  }

  /* /object page */

  /* catalog page */

  .catalog-page__top {
    flex-direction: column;
    gap: 15px;
  }

  .catalog-filters {
    padding: 15px 10px;
  }
  .catalog-filters-wrap {
    flex-direction: column;
  }
  .catalog-filters-wrap {
    flex-direction: column;
  }
  .catalog-filters__left-top .filter-block {
    width: 100%;
  }

  .filter-submit {
    width: 49%;
  }
  .catalog-page-wrap {
    gap: 30px 0;
  }
  .filter-submit {
    font-size: 14px;
    line-height: 17px;
    align-items: center;
  }
  .catalog-page-wrap .popularObject-item {
    width: 100%;
  }
  .popularObject-item-title {
    font-size: 18px;
    line-height: 22px;
  }

  .catalog-filters__left {
    width: 95%;
  }

  /* /catalog page */

  /* manager-with__object-page */

  .manager-with__object-wrap .manager-item {
    width: 100%;
  }
  .manager-with__object-wrap .popularObject-item {
    width: 100%;
  }
  .manager-item__name {
    font-size: 20px;
  }
  .manager-item__bottom-info-social svg {
    margin-left: 5px;
  }
  .manager-item__bottom-info a {
    font-size: 12px;
  }

  /* /manager-with__object-page */
}

/* modal */

.hidden {
  display: none;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 70%;
  border-radius: 20px;
  background-color: white;
  padding: 25px 50px 30px;
  border-radius: 5px;
  box-shadow: 0px 0px 15px 0px #00000014;
  z-index: 111111;
}
.modal-title {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  line-height: 29px;
  text-align: center;
  margin-bottom: 25px;
}
.model-desc {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 25px;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 11111;
}
button.close-modal {
  border: none;
  background: transparent;
  position: absolute;
  right: 7px;
  top: 10px;
  color: #637989;
  font-size: 25px;
}
.modal .btn {
  background-color: var(--c-brown);
  padding: 14px 52px;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: center;
  color: var(--c-white);
  border-radius: 25px;
  display: block;
  margin: 0 auto;
  max-width: 250px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modal {
    max-width: 85%;
    width: 100%;
  }
  .modal-title {
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 15px;
  }
  .model-desc {
    text-align: center;
    line-height: 1.3;
    margin-bottom: 15px;
  }
}

/* modal */

/* karta */

.cart-item-wrap {
  width: 260px;
  height: 340px;
}
.cart-item-top {
  position: relative;
}
.cart-item-top-img img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.cart-item-top-price {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 11px 40px 10px 20px;
  color: #fff;
  background: #000000b5;
  border-radius: 0px 5px 0px 0px;
}
.cart-item-bottom {
  margin-top: 10px;
}
.cart-item-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 5px;
  height: 2.4em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cart-item-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 5px;
  height: 2.4em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cart-item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
}
.cart-item-btns-wrap {
  display: flex;
}
.cart-item-btns-wrap .btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  padding: 8px 34px;
}

/* pagination */

.table-item-pagination {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.pagin-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.pagin-numbers a,
.pagin-numbers span,
.pagin-numbers p {
  width: 52px;
  height: 52px;
  display: flex;
  font-size: 18px;
  line-height: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 5px;
  color: var(--c-black);
  border: 1px solid #d1d1d1;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.pagin-numbers span.is-active,
.pagin-numbers a.is-active,
.pagin-numbers a:hover {
  background-color: var(--c-brown);
  color: #fff;
}

/* /pagination */

/* new style 12.03.2024 */

.popularObject-item-title {
  line-height: 1.1;
  height: 2.2em;
}
.popularObject-item-images-slider__item img {
  height: 250px;
}
.map-wrap {
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out 0s;
}
.map-wrap.open {
  height: 650px;
  transition: all 0.5s ease-in-out 0s;
}
.map-wrap #map {
  height: 580px;
}
.map-wrap-btn {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.btn-close-map {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

@media screen and (max-width: 1269px) and (min-width: 1125px) {
  .catalog-page-wrap .popularObject-item-bottom {
    padding-right: 25px;
  }

  .manager-with__object-wrap .popularObject-item-bottom {
    padding-right: 25px;
  }
}
@media screen and (max-width: 797px) and (min-width: 768px) {
  .catalog-page-wrap .popularObject-item-bottom {
    padding-right: 25px;
  }
  .btn.btn-search {
    padding: 16px 10px;
  }
  .manager-with__object-wrap .popularObject-item-bottom {
    padding-right: 25px;
  }
}
@media screen and (max-width: 1124px) and (min-width: 768px) {
  .catalog-filters__left-top > .filter-block:first-child .filter-block-title {
    width: 230px;
  }
  .catalog-filters__left-top > .filter-block:nth-child(2) .filter-block-title {
    width: 230px;
  }
}
@media screen and (max-width: 1367px) {
  .popularObject-item-images-slider__item img {
    height: 260px;
  }
}
@media screen and (max-width: 385px) {
  .input-btn {
    padding: 21px 85px;
  }
  .btn {
    padding: 14px 30px;
  }
  .popularObject-item-bottom {
    padding-right: 20px;
  }
  .btn-favorite__wrap {
    font-size: 10px;
  }
  .popularObject-item-btn-share {
    font-size: 10px;
  }
}

/* new style 20.09 Vitalii */

.manager-with__object-wrap .manager-item {
  height: 100%;
}
.manager-item__bottom-info {
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.manager-item__bottom-info > div {
  width: 100%;
}
.manager-item__bottom-info a {
  font-size: 21px;
  line-height: 30px;
}
.manager-item__bottom-info > div:last-child {
  justify-content: center;
  margin-top: 25px;
}
#rezult {
  font-size: 16px;
  display: flex;
  justify-content: center;
}
#rezult p {
  margin-top: 15px;
}
#rezult p.form-done {
  color: green;
}
#rezult p.form-error {
  color: red;
}
.filter-submit__mob {
  display: none;
}
.form-search {
  max-width: 100%;
  display: flex;
  align-items: center;
  width: 100px;
}
.form-search input {
  border: 1px solid #000;
  margin-right: 0;
  margin-bottom: 0;
  width: 100%;
}
button.search-submit {
  background: #1d1d1d;
  border-radius: 5px;
  width: 41px;
  height: 41px;
}

#objectMap {
  width: 100%;
  border-radius: 10px;
}

#objectMap:has(iframe) {
  height: 450px;
}

@media screen and (max-width: 1367px) {
  .tablet-wrap {
    display: flex;
    justify-content: space-between;
  }

  #tabletMapContainer {
    width: 49%;
    height: 350px;
    border-radius: 10px;
  }
}

@media screen and (max-width: 1124px) {
  .tablet-wrap {
    flex-direction: column;
  }

  .form-search {
    width: 100%;
  }

  #tabletMapContainer {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .form-search {
    margin-top: 10px;
    width: 100%;
  }

  .sidebar-manager-image img {
    width: 100px;
    height: 100px;
  }
  .sidebar-manager-right p {
    text-align: left;
    padding-left: 118px;
  }

  .sidebar-manager-right a,
  .sidebar-manager-right p {
    font-size: 16px;
    line-height: 22px;
  }

  #tabletMapContainer {
    display: none;
  }

  #mobileMapContainer {
    height: 350px;
    border-radius: 10px;
    width: 100%;
    margin-top: 20px;
  }

  .sidebar-manager__phones-mob {
    display: block !important;
    margin: 15px 0;
  }

  .sidebar-manager-right > p {
    display: none;
  }

  .sidebar-manager__phones-mob a {
    padding: 10px 15px;
    display: flex;
    border: 1px solid #000;
    border-radius: 40px;
    font-size: 14px;
    line-height: 15px;
    margin-bottom: 10px;
  }
}

.catalog-filters__left-bottom.open .filter-block {
  display: block;
}

/* new */

.saved__list-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.saved__list-top form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.saved__list-top form input {
  margin-bottom: 0;
  border: none;
  border-bottom: 1px solid var(--c-brown);
  border-radius: 0;
  margin-left: 10px;
  width: 100%;
  color: var(--c-black);
  height: auto;
  padding: 10px;
}

.saved__list-top .form-field {
  display: flex;
  align-items: center;
  gap: 15px;
}

.saved__list-top form input::placeholder {
  opacity: 0.5;
}

.saved__list-top form input::placeholder {
  color: var(--c-black);
}

@media screen and (max-width: 767px) {
  .saved__list-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* modal video */

.video-modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal__content {
  background: #fff;
  width: 90%;
  height: 80%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

.video-modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.video-modal__iframe-wrap {
  width: 100%;
  height: 100%;
}

.video-modal__iframe-wrap iframe {
  width: 100%;
  height: 100%;
}

.video-modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #000;
  font-size: 28px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .video-modal__content {
    padding: 35px;
  }
}

/* Quick buttons
----------------------------------------------------- */
.quick-buttons {
  --quick-btns-size: 3.5rem;
  --quick-btns-space: 1rem;
  --quick-btns-icon-size: 1.5rem;
  --quick-btns-box-shadow-size: 0.375rem;
  position: fixed;
  right: var(--quick-btns-space);
  bottom: var(--quick-btns-space);
  z-index: 9;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.quick-buttons-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--quick-btns-size);
  height: var(--quick-btns-size);
  border-radius: 50%;
  background-color: var(--c-orange);
  color: var(--c-white);
  font-size: var(--quick-btns-icon-size);
  text-align: center;
  animation: button-pulse 2s infinite;
}
.quick-buttons-btn:hover {
  background-color: var(--c-brown);
  color: var(--c-white);
}
.quick-buttons-btn > svg {
  width: 1em;
  height: 1em;
}
.quick-buttons-btn-telegram > svg {
  transition: opacity var(--transition);
}
.quick-buttons-btn-telegram > span {
  position: absolute;
  color: var(--c-white);
  font-size: 0.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.25;
  white-space: normal;
  opacity: 0;
  transition: opacity var(--transition);
}
.quick-buttons-btn-telegram:hover > svg {
  opacity: 0;
}
.quick-buttons-btn-telegram:hover > span {
  opacity: 1;
}

@media (min-width: 375px) {
  .quick-buttons {
    --quick-btns-size: 4rem;
    --quick-btns-space: 1.5rem;
    --quick-btns-icon-size: 1.75rem;
  }
}

@media (min-width: 992px) {
  .quick-buttons {
    --quick-btns-size: 4.5rem;
    --quick-btns-space: 2rem;
    --quick-btns-icon-size: 2rem;
    --quick-btns-box-shadow-size: 0.5rem;
    row-gap: 2rem;
  }
  .quick-buttons-btn-telegram > span {
    font-size: 0.625rem;
  }
}

@keyframes button-pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(250 160 49 / 75%);
  }
  75% {
    box-shadow: 0 0 0 var(--quick-btns-box-shadow-size) transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.form-field-block-search {
  margin-bottom: 15px;
}

.form-field-block-search input {
  width: 100%;
}

.popularObject-item-images-slider:not(.slick-initialized) {
  overflow: hidden;
  display: flex;
}

/* .slick-slider:not(.slick-initialized) .slick-track {
  display: flex;
} */
