@import url("./fonts.css");
@import url("../fonts/style.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* COLORS */
  --black: #222222;
  --green: #01665e;
  --white: #ffffff;
  --white-secondary: #faf9f6;
  --orange: #ff7700;
  --orange-secondary: rgba(255, 132, 0, 0.15);
  --white-green: #018e0d;
  --dark-green: #00534c;
  --white-green-secondary: rgba(94, 255, 0, 0.15);
  --white-white: #ffffff;
  --gray: #878787;
}
html {
  overflow-x: hidden !important;
}
body {
  font-family: "Gilroy";
  user-select: none;
}
html.no-scroll {
  overflow: hidden;
}
.dark {
  --white: #222222;
  --black: #ffffff;
  --white-secondary: #222222;
  --green: #43a99f;
}
.dark .menu_bottom {
  background: var(--white);
  border-top: 1px solid var(--black);
}
.dark .object_sorting {
  background: var(--white);
}
a {
  text-decoration: none;
  transition: 0.2s linear;
  position: relative;
}
a::before {
  content: "";
  position: absolute;
  background: var(--white);
  height: 1px;
  bottom: 0;
  width: 0%;
  transition: 0.2s linear;
}
a:hover::before {
  width: 100%;
}
h2 {
  font-family: "Florentia";
}
.hamburger {
  padding: 0;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 21px;
  height: 1px;
  background-color: white;
  transition: 0.4 ease-in-out;
}
.hamburger--spin .hamburger-inner::before {
  width: 10px;
  top: -6px;
  transition: 0.4s ease-in-out;
}
.hamburger--spin .hamburger-inner::after {
  width: 10px;
  right: 0;
  bottom: -6px;
  transition: 0.4s ease-in-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  width: 21px;
  background-color: white;
}
.hamburger--spin.is-active .hamburger-inner {
  background-color: white;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: white;
}
.hamburger-box {
  height: 12px;
}
.menu_hamburger,
.menu_hamburger::before,
.menu_hamburger::after {
  background-color: var(--black) !important;
}

.container {
  max-width: 1310px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  overflow-x: hidden;
}

.header {
  height: 100vh;
  overflow-x: hidden !important;
  max-width: 100vw !important;
}
.header.header_second {
  height: unset;
}

.wrapper {
  overflow-x: hidden;
  position: relative;
}

.header_swiper_content,
.header_pagination,
.header_pag {
  opacity: 0;
}
.header_royal {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  user-select: none;
  will-change: transform, width, height;
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease;

  width: 100%;
  height: auto;
  max-width: 100vw;
  display: flex;
  justify-content: center;
}
.header_royal img {
  width: 100%;
  max-width: 90vw;
  height: 100%;
  object-fit: contain;
}
.nav {
  position: fixed;
  width: 100%;
  z-index: 99;
  transition: 0.3s ease-in-out;
}
.nav.active {
  background: var(--white);
  color: var(--black);
  border: none;
  z-index: 999;
  a,
  p,
  svg,
  i {
    color: var(--black) !important;
  }
}
.nav.active a::before {
  background: var(--black);
}
.nav.hide {
  transform: translateY(-100%);
}
.nav_main {
  transform: translateY(-100%);
  z-index: 9999;
}
.nav_main.active {
  transform: translateY(0);
}
.nav_main.active {
  background: var(--white-secondary);
}
.nav_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1310px;
  padding: 20px 15px;
  margin: 0 auto;
  position: relative;
}
.menu_nav_top {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-top: 1px solid #e2e2e2;
}
.nav_left,
.nav_right {
  display: flex;
}
.nav_left {
  align-items: center;
  gap: 54px;
}
.nav_theme {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--dark-green);
  transition: 0.3s linear;
  cursor: pointer;
  position: relative;
  z-index: 100;
}
/* .nav_theme:hover {
  opacity: 0.9;
} */
.nav_theme.active {
  background: white;
  border: 1px solid #00534c;
}
.nav_theme img {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.nav_theme img:nth-child(2) {
  opacity: 0;
}
.nav_theme.active img:nth-child(2) {
  transform: translateY(-50%) rotate(180deg);
  opacity: 1;
}
.nav_theme.active img:first-child {
  opacity: 0;
  transform: translateY(-50%) rotate(180deg);
}
.nav_phone {
  font-weight: 400;
  font-size: 16px;
  color: var(--white-white);
}
.nav_lang {
  color: var(--white);
  font-weight: 400;
  font-size: 14px;
  position: relative;
}
.nav_lang_block {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--white-white);
}
.nav_lang_block img {
  transition: 0.3s ease-in-out;
}
.nav_lang_block.active img:last-child {
  transform: rotate(180deg);
}
.nav_lang_block p {
  padding: 0 17px 0 5px;
  color: var(--white-white);
}
.nav_lang_content {
  position: absolute;
  background: var(--white);
  color: var(--black);
  top: 30px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: none;
}
.nav_lang_content p {
  cursor: pointer;
  padding: 10px;
  transition: 0.1s linear;
}
.nav_lang_content p:hover {
  background: var(--black);
  color: var(--white);
}
.nav_lang_content p.active {
  background: var(--black);
  color: var(--white) !important;
}
.nav_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white-white);
}
.nav_logo::before {
  content: unset;
}
.nav_right {
  gap: 30px;
  align-items: center;
}
.nav_objects {
  font-weight: 400;
  font-size: 14px;
  color: var(--white-white);
}
.burger_menu {
  color: var(--white-white);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 21px;
  position: relative;
  overflow: hidden;
}
.burger_menu_line1 {
  display: flex;
  align-items: start;
}
.burger_menu_line1 span {
  width: 10px;
  height: 1px;
  background: white;
  display: block;
  position: absolute;
  transition: 0.4s ease-in-out;
}
.burger_menu_line1 span:last-child {
  transform: translateX(-50px);
}
.burger_menu:hover .burger_menu_line1 span:first-child {
  transform: translateX(50px);
}
.burger_menu:hover .burger_menu_line1 span:last-child {
  transform: translateX(0);
}
.burger_menu_line2 span {
  width: 21px;
  height: 1px;
  background: white;
  display: block;
  position: absolute;
  transition: 0.4s ease-in-out;
}
.burger_menu_line2 span:first-child {
  transform: translateX(50px);
}
.burger_menu:hover .burger_menu_line2 span:first-child {
  transform: translateX(0);
}
.burger_menu:hover .burger_menu_line2 span:last-child {
  transform: translateX(-50px);
}
.burger_menu_line3 {
  display: flex;
  justify-content: flex-end;
}
.burger_menu_line3 span {
  width: 10px;
  height: 1px;
  background: white;
  display: flex;
  position: absolute;
  bottom: 0;
  transition: 0.4s ease-in-out;
}
.burger_menu_line3 span:last-child {
  transform: translateX(-50px);
}
.burger_menu:hover .burger_menu_line3 span:first-child {
  transform: translateX(50px);
}
.burger_menu:hover .burger_menu_line3 span:last-child {
  transform: translateX(0);
}
.menu {
  background: var(--white-secondary);
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.7s ease-in-out;
  transform: translateY(-1000px);
  visibility: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  a,
  p,
  svg {
    color: var(--black);
  }
}
.menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu_logo {
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu_logo::before {
  content: unset;
}
.menu_logo .icon-logo::before {
  color: currentColor;
}
.menu_nav {
  border-bottom: 1px solid #e2e2e2;
}
.menu_content {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 80px;
  justify-content: space-between;
}
.menu_links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  width: 50%;
}

.menu_link {
  font-family: "Florentia";
  font-weight: 300;
  font-size: 53px;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  display: inline-block;
  position: relative;
}
.menu_link::before {
  position: unset;
}

.text-wrapper {
  display: inline-block;
  position: relative;
}

.text-top,
.text-bottom {
  display: block;
  transition: transform 0.5s ease;
}

.text-bottom {
  position: absolute;
  top: 100%;
  left: 0;
}
.menu_content_bg {
  background: url("../img/menu_content_bg.png") center/cover no-repeat;
  height: 100%;
  padding: 40px;
  display: flex;
  align-items: flex-end;
  width: 40%;
}
.menu_content_bg h2 {
  font-weight: 400;
  font-size: 30px;
  color: var(--white-white);
  font-family: "Florentia";
  text-transform: uppercase;
  span {
    font-family: "Pramodia";
    font-size: 70px;
  }
}
.menu_bottom {
  background: linear-gradient(180deg, #e4e4e4 0%, #faf9f6 100%);
  padding: 35px 0;
}
.menu_bottom_content {
  display: flex;
  gap: 200px;
  align-items: center;
}
.menu_phones {
  display: flex;
  gap: 50px;
  align-items: center;
}
.menu_phones a {
  font-weight: 400;
  font-size: 16px;
}
.menu_socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.menu_social {
  display: flex;
  gap: 7px;
  align-items: center;
}

/* header swiper */
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header_pag {
  display: flex;
  z-index: 5;
}
.header_pag {
  display: flex;
  position: absolute;
  z-index: 3;
  right: 80px;
  bottom: 85px;
  gap: 5px;
  align-items: center;
}
.header_pag_next,
.header_pag_prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white-white);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.header_pag_next:hover,
.header_pag_prev:hover {
  opacity: 0.8;
}
.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.3;
}
.swiper-button-disabled:hover {
  opacity: 0.3;
}
.header_pagination {
  position: absolute;
  z-index: 3;
  left: 80px;
  bottom: 80px;
  color: var(--white);
  width: 100px;
  font-weight: 200;
  font-family: "Florentia";
  font-size: 18px;
}
.swiper-pagination-current {
  font-size: 37px;
}
.header_swiper_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}
.header_swiper_content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  color: var(--white);
  text-align: center;
}
.header_swiper_content h2 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 25px;
  color: var(--white-white);
  span {
    font-size: 45px;
  }
}
.header_swiper_content p {
  font-weight: 400;
  font-size: 18px;
  color: var(--white-white);
  font-family: "Florentia";
}

/* about */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about_top_title {
  display: flex;
  justify-content: flex-end;
  height: 150px;
  z-index: 99;
}
.about_texts {
  max-width: 920px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--black);
  position: absolute;
  z-index: 1;
}
.about_top_text:first-child {
  display: flex;
  justify-content: flex-end;
  font-weight: 400;
  font-size: 42px;
  text-transform: uppercase;
  span {
    color: var(--green);
  }
}
.about_top_text:last-child {
  font-weight: 400;
  font-size: 42px;
  text-transform: uppercase;
}
.about_content {
  display: flex;
  gap: 40px;
  position: relative;
}
.about_left {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}
.about_us {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.about_us.mobile {
  display: none;
}
.about_us img {
  width: 100%;
  max-width: 242px;
}
.about_us_img {
  position: relative;
  width: 240px;
  height: 310px;
  overflow: hidden;
}
.about_us_img img {
  position: absolute;
  width: 100%;
  height: 120%;
  top: 0;
  left: 0;
  object-fit: cover;
}
/* .about_right_img_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
} */
.about_right_img {
  /* position: absolute; */
  width: 100%;
  height: 100%;
}
.about_us h2 {
  font-weight: 300;
  font-size: 18px;
  font-style: italic;
  color: var(--black);
}
.about_us_text {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.about_us_text p {
  font-weight: 400;
  font-size: 16px;
  font-family: "Gilroy";
  position: relative;
  line-height: 25px;
  color: var(--black);
  span {
    font-family: "Pramodia";
    font-size: 70px;
  }
}
.read {
  font-weight: 400;
  font-size: 14px;
  font-family: "Gilroy";
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  width: 143px;
  height: 143px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  animation: pulse 2s infinite;
  opacity: 1;
  transition: 0.4s ease-in-out;
}
.read:hover {
  transform: scale(2);
}
.read::before,
.read::after {
  content: "";
  position: absolute;
  border: 2px solid var(--green);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  opacity: 0;
}
.read::after {
  animation-delay: 0.5s;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  70%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.about_right {
  max-width: 60%;
  display: flex;
  width: 100%;
  img {
    width: 100%;
  }
}
.categories {
  background: var(--white-secondary);
  padding: 100px 0;
}
.categories_content {
  position: relative;
  z-index: 1;
}
.categories_name {
  text-align: end;
  font-weight: 300;
  font-size: 18px;
  font-style: italic;
  font-family: "Florentia";
  color: var(--black);
}
.categories_title {
  text-align: center;
  padding: 15px 0 30px 0;
  font-weight: 400;
  font-size: 60px;
  color: var(--black);
  span {
    color: var(--green);
  }
}
.categories_top {
  display: flex;
  justify-content: center;
}
.categories_top_objects {
  display: flex;
  background: var(--green);
  border-radius: 100px;
  padding: 8px;
  gap: 16px;
  width: 320px;
}
.categories_top_item {
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 400;
  font-size: 16px;
  font-family: "Gilroy";
  color: var(--white);
  transition: 0.2s ease-in-out;
  cursor: pointer;
  flex-grow: 1;
  text-align: center;
}
.categories_top_item:hover,
.categories_top_item.active {
  color: black;
  background: #f7f7f5;
  font-weight: 500;
}
.categories_statuses {
  display: flex;
  gap: 15px;
  padding: 30px 0 20px 0;
  flex-wrap: wrap;
}
.categories_status {
  padding: 10px 20px;
  border: 1px solid #e6e6e6;
  border-radius: 100px;
  background: var(--white);
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  transition: 0.2s ease-in-out;
  color: var(--black);
}
.categories_status:hover {
  background: #f7f7f5;
  color: black;
}
.categories_status.active {
  background: #f7f7f5;
}
.categories_sort {
  display: flex;
  gap: 27px;
  flex-wrap: wrap;
}
.categories_select {
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid #e6e6e6;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  font-family: "Gilroy";
}

.range_slider {
  position: relative;
}
.range_slider input[type="range"] {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;
  width: 85%;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  height: 1px;
  background: var(--black);
}
.range_slider input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  position: relative;
  z-index: 2;
  -webkit-appearance: none;
  height: 10px;
  width: 10px;
  background: var(--black);
  border-radius: 50%;
  cursor: pointer;
}
.values {
  padding: 10px 20px;
  border: 1px solid #e6e6e6;
  border-radius: 100px;
  display: flex;
  gap: 70px;
  background: var(--white);
  justify-content: space-between;
}
.categories_sort_status {
  display: flex;
  gap: 15px;
}
.categories_sort .range_slider {
  width: 296px;
}

.categories_items {
  padding: 50px 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 70px 20px;
}
.categories_item_title {
  font-weight: 500;
  font-size: 50px;
  padding-bottom: 20px;
  color: var(--black);
}
.categories_item_info {
  display: flex;
  gap: 25px;
  align-items: center;
  padding-bottom: 15px;
  user-select: none;
}
.categories_item_status {
  padding: 6px 10px;
  border-radius: 100px;
  color: var(--orange);
  background: var(--orange-secondary);
  font-weight: 500;
  font-size: 14px;
  font-family: "Gilroy";
}
.categories_item_status.complete {
  background: rgba(94, 255, 0, 0.15);
  color: var(--white-green);
}
.categories_item_address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--black);
}
.categories_item_image {
  position: relative;
}
.categories_item_image img {
  width: 100%;
  object-fit: cover;
}
.categories_item_image p {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 14px;
  font-family: "Florentia";
  border-radius: 100px;
  position: absolute;
  top: 15px;
  left: 15px;
  line-height: normal;
}
.categories_item {
  width: calc(50% - 20px);
  max-width: 630px;
  flex-grow: 1;
}
.categories_swiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.categories_swiper .swiper-pagination-bullet {
  width: 7px !important;
  height: 7px !important;
  background: rgba(255, 255, 255, 0.71) !important;
}
.categories_swiper .swiper-pagination-bullet-active {
  width: 12px !important;
  height: 12px !important;
  background: var(--white) !important;
  border: 1px solid #c0c0c0 !important;
}
.categories_bottom {
  display: flex;
  justify-content: center;
}
.categories_bottom.hidden {
  display: none;
}

.gsap-fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.gsap-fade-left {
  opacity: 1 !important;
  transform: translateX(-50px);
}

.gsap-fade-right {
  opacity: 0;
  transform: translateX(50px);
}

.gsap-scale-in {
  opacity: 0;
  transform: scale(0.9);
}
.categories_no_data {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 150px 15px;
  color: var(--black);
  display: none;
}
.categories_no_data.active {
  display: flex;
}
.categories_no_data h2 {
  font-weight: 600;
  font-size: 18px;
  font-family: "Gilroy";
}
.categories_no_data p {
  font-size: 400px;
  font-size: 16px;
}

/* abous_us_number */
.abous_us_number {
  background: url("../img/about_us_number.png") center/cover no-repeat;
  width: 100%;
  color: var(--white);
  padding: 150px 0;
  height: 100vh;
  display: flex;
}
.abous_us_number_texts {
  max-width: 992px;
}
.abous_us_number_texts p {
  font-weight: 400;
  font-size: 42px;
  line-height: 54px;
  color: var(--white-white);
}
.abous_us_number_texts span {
  font-size: 158px;
  font-family: "Pramodia";
  span {
    font-size: 42px;
    font-family: "Gilroy";
  }
}
.abous_us_number_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.abous_us_number_items {
  display: flex;
  gap: 100px;
  justify-content: space-between;
}
.abous_us_number_item h2 {
  font-family: "Florentia";
  font-weight: 300;
  font-size: 112px;
  color: var(--white-white);
}
.abous_us_number_item p {
  font-size: 16px;
  font-family: "Gilroy";
  font-weight: 300;
  color: var(--white-white);
}
.abous_us_number_item {
  min-width: 150px;
}
.abous_us_number_left,
.abous_us_number_right {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
.abous_us_number_left .abous_us_number_item:first-child h2 {
  width: 295px;
}
.abous_us_number_right .abous_us_number_item:last-child h2 {
  width: 295px;
}

/* reviews */
.reviews {
  padding: 160px 0;
  background: var(--white);
}
.reviews_top_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviews_top_title h2 {
  color: var(--black);
  font-weight: 400;
  font-size: 60px;
  max-width: 685px;
  span {
    color: var(--dark-green);
  }
}
.reviews_top_title p {
  font-weight: 300;
  font-family: "Florentia";
  font-size: 18px;
  color: var(--black);
  font-style: italic;
}
.reviews_items {
  display: flex;
  padding-top: 75px;
  gap: 80px;
}
.reviews_item {
  display: flex;
  align-items: flex-end;
  gap: 60px;
  flex-grow: 1;
  cursor: none;
}
.reviews_item_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}
.reviews_item_social {
  padding-top: 20px;
}
.reviews_item_info h2 {
  font-weight: 400;
  font-size: 25px;
  color: var(--black);
  font-family: "Gilroy";
}
.reviews_item_info p {
  font-weight: 400;
  font-size: 18px;
  color: var(--black);
}
.reviews_item_social {
  padding: 5px 20px;
  border: 1px solid #dddddd;
  border-radius: 100px;
  text-decoration: none;
  color: #464646;
}
.reviews_item_image {
  padding-bottom: 100px;
  img {
    width: 240px;
    height: 250px;
    object-fit: cover;
  }
}
.reviews_subtitle {
  max-width: 420px;
  padding-right: 50px;
  position: relative;
  color: var(--black);
}
.reviews_subtitle_title {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: 16px;
  position: absolute;
  right: 100px;
  top: 60px;
  padding-left: 70px;
  span {
    font-family: "Pramodia";
    font-size: 70px;
    position: absolute;
    top: 20%;
    left: 0;
    transform: translateY(-50%);
  }
}
.reviews_bottom {
  padding-top: 240px;
  display: flex;
  position: relative;
}
.reviews_bottom_item {
  position: absolute;
  right: 0;
  top: -110px;
  max-width: 565px;
}
.reviews_item_info {
  max-width: 313px;
}
.reviews_all {
  display: flex;
  justify-content: flex-end;
}
.ponorama {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 50px;
  cursor: none;
  position: relative;
}
.ponorama_bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
}
.ponorama_content h2 {
  font-weight: 400;
  font-size: 42px;
  color: var(--white-white);
}

/* news */
.news {
  padding: 80px 0;
  background: var(--white-secondary);
}
.news_top {
  display: flex;
  flex-direction: column;
}
.news_top_title {
  display: flex;
  gap: 40px;
  align-items: center;
}
.news_top_title h2 {
  font-weight: 400;
  font-size: 60px;
  color: var(--black);
}
.news_top_title p {
  font-family: "Florentia";
  font-weight: 200;
  font-size: 56px;
  color: var(--black);
  span {
    font-family: "Pramodia";
    font-size: 130px;
  }
}
.news_top_text {
  display: flex;
  justify-content: flex-end;
}
.news_top_text p {
  font-weight: 400;
  font-size: 60px;
  color: var(--black);
  max-width: 1140px;
}
.contacts_top_text p {
  color: var(--green);
}
.news_left {
  display: flex;
  flex-direction: column;
  max-width: 710px;
  align-items: start;
}
.news_item_date {
  font-weight: 500;
  font-size: 14px;
  padding: 20px 0;
  border-top: 1px solid #bababa;
  color: #7a7a7a;
  width: 100%;
}
.news_item_title {
  padding: 15px 0;
  font-weight: 500;
  font-size: 20px;
  font-family: "Gilroy";
  color: var(--black);
}
.news_item_bottom {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 30px;
  border-bottom: 1px solid #bababa;
  width: 100%;
}
.reviews_item_social.mobile {
  display: none;
}
.news_left .news_item_img {
  max-width: 710px;
  width: 100%;
  object-fit: cover;
}
.news_block {
  padding-top: 150px;
  display: flex;
  gap: 135px;
}
.news_item {
  display: flex;
  flex-direction: column;
  max-width: 435px;
}
.news_right {
  display: flex;
  flex-direction: column;
}
.news_item .news_item_img {
  max-height: 255px;
  object-fit: cover;
}
.news_bottom {
  display: flex;
  justify-content: flex-end;
  padding-top: 70px;
  padding-right: 120px;
}

/* contacts */
.contacts {
  padding: 210px 0 100px 0;
  background: var(--white);
  overflow: hidden;
}
.contacts_title {
  font-weight: 400;
  font-size: 60px;
  color: var(--black);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 69px;
  span {
    color: var(--dark-green);
  }
}
.contacts_form {
  display: flex;
  flex-direction: column;
  gap: 70px;
  justify-content: center;
  max-width: 825px;
  margin: 0 auto;
  align-items: center;
}
.contacts_input {
  width: 100%;
  text-align: center;
  padding-bottom: 10px;
  border: none;
  border-bottom: 1px solid #d2d2d2;
  outline: none;
  font-weight: 400;
  font-size: 21px;
  color: var(--black);
  background: unset;
}
.contacts_input::placeholder {
  color: #787878;
}
.contacts_btn {
  background: unset;
  border: none;
}

/* footer */
.footer {
  background: #181717;
  padding: 90px 0;
  color: var(--white-white);
}
.footer_content {
  display: flex;
  justify-content: space-between;
}
.footer_title {
  font-weight: 400;
  font-size: 56px;
  font-family: "Florentia";
  max-width: 930px;
}
.footer_left {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.footer_email {
  font-weight: 400;
  font-size: 16px;
}
.footer_info {
  font-weight: 300;
  font-size: 16px;
  color: #969696;
  padding-top: 18px;
  max-width: 420px;
}
.footer_socials {
  padding-top: 115px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer_items {
  display: flex;
  justify-content: space-between;
}
.footer_social {
  display: flex;
  align-items: center;
  gap: 5px;
  p {
    font-weight: 400;
    font-size: 14px;
    font-family: "Florentia";
    color: var(--white-white);
  }
}
.footer_phones {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: start;
}
.footer_phone {
  font-weight: 400;
  font-size: 16px;
  color: var(--white-white);
}
.footer_address {
  padding: 50px 0 20px 0;
}
.footer_address_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
  color: #969696;
}
.footer_bottom {
  padding: 25px 0 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.27);
  background: #181717;
}
.footer_bottom_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_bottom_title {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  span {
    font-weight: 500;
    opacity: 1;
    color: var(--white-white);
  }
}
.footer_mobile {
  display: none;
}
.range_item {
  color: var(--black);
}

/* object */
.header_object,
.header_company {
  background: url("../img/object_bg.png") center/cover no-repeat;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  z-index: -1;
  color: var(--white-white);
}
.header_object h2 {
  font-weight: 500;
  font-size: 65px;
  text-transform: uppercase;
  opacity: 1;
}
.header_object p {
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  max-width: 720px;
}
.nav_object i {
  color: var(--white);
}
.header_object_title span,
.header_object_text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px) rotateX(90deg);
}

/*  */
.custom-cursor,
.ponorama_cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--green);
  font-weight: bold;
  font-size: 24px;
  background: transparent;
  user-select: none;
  position: fixed;
  font-weight: 500;
  font-size: 17px;
  font-family: "Gilroy";
  text-transform: uppercase;
}

.custom-cursor span {
  position: relative;
  z-index: 10;
  background: transparent;
}

.rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ponorama_cursor {
  color: var(--white-white);
}
.ponorama_cursor .ring {
  border: 1px solid var(--white-white);
}

.ring {
  position: absolute;
  border: 1px solid var(--green);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
}
.ring1 {
  width: 200px;
  height: 200px;
}
.ring2 {
  width: 190px;
  height: 190px;
  opacity: 0.7;
}
.ring3 {
  width: 180px;
  height: 180px;
  opacity: 0.4;
}
/* .reviews_content {
  cursor: none;
} */
/* .nav_object .nav_content {
  flex-direction: row-reverse;
}
.nav_object .nav_right {
  flex-direction: row-reverse;
}
.nav_object .nav_left {
  flex-direction: row-reverse;
} */
.nav_object {
  top: 0;
}
.nav_object_details {
  color: var(--black);
  border-bottom: 1px solid #e2e2e2;
  background: var(--white-secondary);
  z-index: 999;
  a,
  p,
  svg,
  i {
    color: var(--black) !important;
  }
}

/* object_about */
.object_about {
  padding: 130px 0 190px 0;
  background: var(--white);
  position: relative;
}
.object_about_info {
  display: flex;
  justify-content: space-between;
}
.object_about_left {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 315px;
}
.object_about_title {
  color: var(--black);
  font-weight: 300;
  font-size: 45px;
  text-transform: uppercase;
  span {
    font-weight: 400;
  }
}
.object_about_text {
  font-weight: 400;
  font-size: 16px;
  color: var(--black);
}
.object_about_right {
  position: absolute;
  bottom: 250px;
  right: 80px;
}
.object_about_right p {
  font-weight: 500;
  font-size: 16px;
  color: var(--black);
}
.object_about_right h2 {
  font-weight: 200;
  font-size: 328px;
  color: var(--black);
}
.object_about_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.object_about_item {
  padding-top: 28px;
  border-top: 1px solid #d9d9d9;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.object_about_item::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 0%;
  height: 1px;
  background: red;
  top: -1px;
  transition: 0.5s ease-in-out;
}
.object_about_item:hover::before {
  width: 100%;
}
.object_about_item p {
  color: var(--gray);
  font-weight: 400;
  font-size: 16px;
}
.object_about_item h2 {
  font-weight: 400;
  font-size: 16px;
  color: var(--black);
  font-family: "Gilroy";
}
.gallery_target {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* object */
.object {
  position: relative;
  background: var(--white-secondary);
  padding: 70px 15px 130px 15px;
  color: var(--black);
  height: 100vh;
}
.object_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.object_subtitle {
  padding-bottom: 7px;
  font-weight: 300;
  font-family: "Florentia";
  font-size: 18px;
  font-style: italic;
}
.object_title {
  font-weight: 300;
  font-size: 45px;
  text-transform: uppercase;
}
.object_img {
  width: 100%;
  max-width: 760px;
  object-fit: cover;
}
.object_img_content {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}
.object_bg {
  display: flex;
  gap: 63px;
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 337px;
}
.object_bg p {
  font-weight: 200;
  font-size: 65px;
  color: #a6acaa;
  text-transform: uppercase;
  font-family: "Florentia";
}

/* object_gallery */
.object_gallery {
  width: 100%;
  position: relative;
  color: var(--white-white);
  overflow: hidden;
}
.object_gallery_title {
  font-family: "Florentia";
  font-weight: 200;
  font-size: 18px;
  font-style: italic;
  position: absolute;
  top: 42px;
  left: 42px;
  z-index: 2;
}
.object_gallery_line1 {
  position: absolute;
  width: 100%;
  z-index: 2;
  left: 0;
  top: 30px;
  height: 1px;
  background: var(--white-white);
}
.object_gallery_line2 {
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--white-white);
  left: 30px;
  top: 30px;
  z-index: 2;
}
.gallery_swiper .swiper-pagination {
  left: 80px;
  bottom: 40px;
  width: unset;
  span {
    font-weight: 200;
    font-family: "Florentia";
    font-size: 18px;
  }
}
.gallery_swiper .swiper-pagination-current {
  font-size: 37px !important;
}
.object_gallery_pag {
  display: flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  z-index: 2;
  right: 80px;
  bottom: 40px;
}
.object_gallery_left,
.object_gallery_right {
  cursor: pointer;
}

/* object_location */
.object_location {
  padding: 190px 80px;
  background: var(--white);
}
.object_location_title {
  text-align: center;
  max-width: 980px;
  color: var(--black);
  font-weight: 400;
  font-size: 60px;
  margin: 0 auto;
  padding-bottom: 50px;
  text-transform: uppercase;
}
.object_location_content {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}
.object_location_img {
  width: 100%;
  max-width: 628px;
  object-fit: cover;
}
.object_location_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: var(--black);
}
.object_location_item {
  display: flex;
  flex-direction: column;
  gap: 65px;
  justify-content: space-between;
  padding: 30px;
}
.object_location_arrow {
  display: flex;
  justify-content: flex-end;
}
.object_location_item_info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.object_location_item_info h2 {
  font-weight: 200;
  font-size: 105px;
  display: flex;
  gap: 18px;
  span {
    font-weight: 400;
    font-size: 15px;
  }
}
.object_location_item_info p {
  font-weight: 500;
  font-size: 16px;
  text-transform: unset;
}
.object_location_item:first-child {
  color: var(--green);
  border-bottom: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
}
.object_location_item:last-child {
  border-top: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
}

/* object_sorting */
.object_sorting {
  background: linear-gradient(180deg, #f4f2e9 0%, #faf9f6 100%);
  color: var(--black);
}
.object_sorting_content {
  padding: 80px 15px;
}
.object_sorting_top {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 40px;
}
.object_sorting_title {
  font-weight: 400;
  font-size: 60px;
  text-transform: uppercase;
}
.object_sorting_subtitle {
  font-weight: 300;
  font-size: 18px;
  font-style: italic;
}
.object_sorting_items {
  display: flex;
  gap: 140px;
}
.object_sorting_item p {
  color: var(--gray);
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
}
.object_sorting_item_floor {
  display: flex;
  align-items: center;
  gap: 5px;
}
.object_floor_item {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: var(--white-white);
  cursor: pointer;
  transition: 0.1s ease-in-out;
  color: black;
}
.object_floor_item:hover {
  background: var(--black);
  color: var(--white);
}
.object_sorting_right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: start;
  flex-grow: 1;
}
.object_sorting_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.object_sorting_range {
  width: 300px;
}
.object_sorting_bottom_left {
  display: flex;
  gap: 50px;
}
.object_sorting_clear {
  padding: 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--white);
  background: var(--green);
  cursor: pointer;
}
.object_filters {
  background: var(--white-secondary);
  padding: 70px 0;
  color: var(--black);
}
.object_filters_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 60px;
}
.object_filters_item {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
  padding: 100px 50px;
  position: relative;
  border-right: 1px solid #e9e9e9;
  border-left: 1px solid #e9e9e9;
  cursor: pointer;
  color: var(--black);
}
.object_filters_item::before {
  content: "";
  position: absolute;
  width: 120%;
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
  z-index: 1;
  height: 1px;
  background: #e9e9e9;
}
.object_filters_item:hover .object_filters_item_img {
  transform: scale(1.1);
}
.object_filters_item:hover .object_filters_item_bottom {
  transform: scale(1.1);
}

.object_filters_item_bottom {
  margin-top: auto;
  transition: 0.2s ease-in-out;
}
.object_filters_item_img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: 0.2s ease-in-out;
  img {
    width: 100%;
  }
}
.object_filters_item_bottom h2 {
  font-weight: 300;
  font-size: 26px;
  span {
    font-size: 35px;
  }
}
.object_filters_item_bottom p {
  font-weight: 300;
  font-size: 35px;
  font-family: "Florentia";
}
.object_filters_item_line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5px;
  height: 100%;
  left: 0;
  background: #e9e9e9;
}
.object_filters_item_line:nth-child(4) {
  left: unset;
  right: 0;
}
.object_filters_item_line_top {
  position: absolute;
  width: 130%;
  height: 0.5px;
  background: #e9e9e9;
  top: 60px;
}
.object_filters_item_line_top:nth-child(6) {
  top: unset;
  bottom: 60px;
}
.object_sorting_mobile {
  display: none;
  flex-direction: column;
  gap: 30px;
}
.object_sorting_mobile_item {
  display: flex;
  gap: 30px;
}
.object_floor_item.active {
  background-color: var(--black);
  color: var(--white);
}

/* object_details */
.object_details {
  padding: 80px 0 40px 0;
  background: var(--white-secondary);
  position: relative;
}
.object_details_content {
  position: relative;
}
.breadcrumbs {
  position: absolute;
  top: 30px;
}
.breadcrumbs a {
  color: #a6acaa;
}
.object_details_wrapper {
  display: flex;
  align-items: center;
}
.object_details_left {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-right: 30px;
}
.object_details_left,
.object_details_right {
  width: 50%;
}
.object_details_compas {
  display: flex;
  justify-content: flex-end;
}
.object_details_right,
.object_details_item {
  display: flex;
  flex-direction: column;
}
.object_details_right {
  border-left: 1px solid #e2e2e2;
  align-items: start;
}
.object_details_item {
  gap: 20px;
  padding: 30px;
  border-bottom: 1px solid #e2e2e2;
  width: 100%;
  color: var(--black);
}
.object_details_item img {
  max-width: 165px;
}
.object_details_item:last-child {
  border: none;
}
.object_details_item p {
  font-weight: 400;
  font-size: 14px;
  color: var(--gray);
}
.object_details_items {
  display: flex;
  gap: 80px;
  border-bottom: 1px solid #e2e2e2;
  width: 100%;
}
.object_details_items .object_details_item {
  border: none;
  width: unset;
  h2 {
    font-weight: 300;
    font-size: 45px;
  }
}
.object_details_bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 60px;
}
.object_details_bottom_item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.object_details_bottom_item h2 {
  font-size: 14px;
  font-weight: 400;
}
.object_details_bottom_item p {
  font-weight: 400;
  font-size: 15px;
}
.object_details_btn {
  right: 40px;
  bottom: 40px;
  position: absolute;
}

/* object_details_top */
.object_details_top {
  display: flex;
  flex-direction: column;
}
.object_details_top_title {
  font-weight: 400;
  font-size: 60px;
}
.object_details_top_subtitle {
  font-weight: 400;
  font-size: 60px;
  display: flex;
  gap: 10px;
  font-family: "Florentia";
  padding-left: 200px;
  line-height: 30px;
  align-items: center;
  padding-bottom: 70px;
}
.object_details_top_subtitle h2 {
  font-family: "Florentia";
  font-weight: 200;
  font-size: 60px;
  span {
    font-family: "Pramodia";
    font-weight: 400;
    font-size: 138px;
  }
}

/* object_details_360 */
.object_details_360 {
  position: relative;
  height: 768px;
}
.object_details_360_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.object_details_360_title {
  position: absolute;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 45px;
  color: #222222;
  top: 50px;
  left: 80px;
}

/* company */
.header_company {
  /* background: url("../img/company_header.png") center/cover no-repeat; */
  background: unset;
  overflow: hidden;
  position: relative;
}
.header_company_bg {
  width: 100%;
  height: 120%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.header_company h2 {
  font-weight: 400;
  font-size: 45px;
  max-width: 828px;
  text-transform: uppercase;
}

/* company_info */
.company_info {
  padding: 180px 0;
  background: var(--white);
  color: var(--black);
}
.company_info_top_item {
  position: relative;
  display: flex;
  padding-bottom: 70px;
}
.company_info_top_item h2 {
  font-weight: 300;
  font-size: 45px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.company_info_top_item span {
  font-family: "Pramodia";
  font-size: 85px;
  line-height: 0px;
  vertical-align: middle;
}
.company_info_top_item img {
  position: absolute;
  right: 0;
}
.company_info_bottom_item {
  display: flex;
  align-items: flex-end;
  gap: 34px;
}
.company_info_bottom_item p {
  max-width: 465px;
  font-weight: 300;
  font-size: 18px;
}

/* company_about */
.company_about {
  padding: 175px 0;
  background: var(--white-secondary);
}
.company_about_content {
  position: relative;
}
.company_about_title {
  font-weight: 400;
  font-size: 70px;
  line-height: 40px;
  color: var(--black);
  z-index: 2;
  span {
    font-family: "Pramodia";
    font-weight: 400;
    font-size: 157px;
  }
}
.company_about_wrapper {
  display: flex;
  gap: 120px;
}
.company_about_block:first-child {
  display: flex;
  gap: 56px;
  align-items: flex-end;
}
.company_about_items {
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.company_about_block:last-child {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
  align-items: start;
  max-width: 335px;
}
.company_about_block:last-child .company_about_items {
  gap: 60px;
}
.company_about_title {
  position: absolute;
  left: 48%;
  transform: translateX(-50%);
  top: 105px;
}
.company_about_item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.company_about_item_title {
  font-weight: 300;
  font-size: 18px;
  color: var(--green);
}
.company_about_item_text {
  font-weight: 400;
  font-size: 18px;
  color: var(--black);
}
.company_about_item_text span {
  font-weight: 500;
  color: var(--green);
}

/* company_gallery */
.company_item {
  position: relative;
  height: 100vh;
}
.company_item img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 110%;
}
.company_item_content {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 100px 80px;
  max-width: 875px;
}
.company_item_top_title {
  font-weight: 400;
  font-size: 45px;
  display: flex;
  align-items: end;
}
.company_item_top_title span {
  font-family: "Pramodia";
  font-size: 100px;
  font-weight: 300;
}
.company_item_top_title p {
  line-height: 45px;
}
.company_item_info p {
  font-weight: 500;
  font-size: 38px;
}
.company_item_info p:last-child {
  font-size: 18px;
  font-weight: 400;
}
.company_item_info {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* company_center */
.company_center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: var(--white-secondary);
  position: relative;
  overflow: hidden;
}
.company_center_title {
  max-width: 590px;
  text-align: center;
  font-weight: 300;
  font-size: 40px;
  text-transform: uppercase;
  color: var(--black);
  z-index: 2;
  position: relative;
}
.company_img_right,
.company_img_left {
  position: absolute;
  will-change: transform;
}
.company_img_right {
  right: 0;
  top: 60px;
}
.company_img_left {
  left: 0;
  bottom: 60px;
}

/* company_team */
.company_team {
  position: relative;
  padding: 210px 80px 100px 80px;
  overflow: hidden;
}
.company_team_item {
  display: flex;
}
.company_team_bg {
  position: absolute;
  width: 100%;
  height: 120%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.company_team_item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.company_team_info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #fff;
  text-align: center;
  max-width: 610px;
}
.company_team_info h2 {
  font-weight: 400;
  font-size: 45px;
  text-transform: uppercase;
}
.company_team_info p {
  font-weight: 400;
  font-size: 15px;
}
.company_team_pag {
  position: absolute;
  z-index: 99;
  display: flex;
  gap: 5px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.company_team_right,
.company_team_left {
  cursor: pointer;
}
.company_team_content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}

/* partners */
.partners {
  padding-top: 160px;
}
.partners_title {
  font-weight: 300;
  font-size: 45px;
  text-transform: uppercase;
  max-width: 1075px;
}
.partners_text {
  text-align: end;
  padding-bottom: 56px;
  font-weight: 300;
  font-size: 18px;
  font-style: italic;
}
.partners_item {
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ececec;
}
.partners_item img {
  width: 100%;
  max-width: 247px;
  object-fit: contain;
}
.partners_items .swiper-wrapper {
  padding-top: 85px;
}
.partners_pag {
  display: flex;
  gap: 5px;
  position: absolute;
  z-index: 99;
  top: 0;
  right: 70px;
}
.partners_left,
.partners_right {
  cursor: pointer;
}

/* news_details_banner */
.news_details_banner {
  width: 100%;
  background: var(--white-secondary);
  padding-top: 80px;
}
.news_details_banner img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
}
.news_details_title.mobile {
  display: none;
}

.news_details {
  background: var(--white-secondary);
  padding: 40px 0;
}
.news_details_title {
  font-weight: 500;
  font-size: 30px;
  padding-bottom: 35px;
  font-family: "Gilroy";
}
.news_details_text {
  font-weight: 400;
  font-size: 18px;
  white-space: pre-line;
}

/* btn_read */
.btn_read {
  position: relative;
  width: 143px;
  height: 143px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 14px;
  border-radius: 100px;
  bottom: 0;
  color: var(--white);
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.4s ease-in-out;
  z-index: 2;
  text-align: center;
  border: none;
  background: unset;
}
.btn_read::before {
  content: unset;
}
.btn_bg {
  position: absolute;
  width: 143px;
  height: 143px;
  background: var(--green);
  border-radius: 100px;
  transition: 0.3s ease-in-out;
  z-index: -1;
}
.btn_read:hover {
  color: var(--black);
}
.btn_read:hover .btn_bg {
  transform: scale(1.9);
  background: unset;
}
.btn_wrapper {
  text-decoration: none;
}

.btn_bg::before,
.btn_bg::after {
  content: "";
  position: absolute;
  border: 1px solid var(--green);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: ring-wave 2s linear infinite;
  opacity: 0;
  left: 0;
}
.btn_bg::after {
  animation-delay: 0.5s;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  70%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes ring-wave {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* custom _select */
.custom_select {
  width: 245px;
  border-radius: 100px;
  background-color: var(--white-white);
  border: 1px solid #e6e6e6;
  position: relative;
  transition: 0.1s ease-in-out;
  max-height: 41px;
  display: flex;
}
.custom_select:hover {
  background: #f7f7f7;
}
.custom_select_selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  padding: 0 16px;
  svg {
    transition: 0.3s ease-in-out;
  }
}
.custom_select_selected.open svg {
  transform: rotate(180deg);
}
.custom_select_content {
  border-radius: 15px;
  background: var(--white-white);
  border: 1px solid #e6e6e6;
  position: absolute;
  left: 0;
  width: 100%;
  top: 45px;
  overflow: hidden;
  display: none;
  z-index: 70;
}
.custom_select_item {
  font-weight: 400;
  font-size: 16px;
  font-family: "Gilroy";
  padding: 10px 16px;
  transition: 0.1s ease-in-out;
  cursor: pointer;
  border-bottom: 1px solid #e6e6e6;
}
.custom_select_item:last-child {
  border: none;
}
.custom_select_item:hover {
  background: #f7f7f7;
}
.custom_select_item.active {
  background: #f7f7f7;
}
.page_transition {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.page_transition.hidden {
  visibility: hidden;
}
.page_transition_line {
  width: 0%;
  background: #faf9f6;
  transition: 0.7s ease-in-out;
}
.page_transition_line.active {
  width: 100%;
}
.text_transition {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Pramodia";
  font-weight: 400;
  font-size: 132px;
  color: var(--gray);
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.text_transition.active {
  opacity: 1;
}

/* contacts_top */
.contacts_top {
  display: flex;
  padding-top: 110px;
  justify-content: space-between;
  align-items: flex-end;
}
.contacts_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 69px 256px;
}
.contacts_item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacts_item_title {
  font-weight: 400;
  font-size: 15px;
  color: #666666;
}
.contacts_item_text {
  font-weight: 400;
  font-size: 16px;
  color: var(--black);
}
.contacts_item_bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 15px;
  color: var(--black);
}
.contacts_top_socials {
  display: flex;
  gap: 20px;
  align-items: center;
}
.contacts_top_social {
  display: flex;
  gap: 5px;
  align-items: center;
  color: var(--black);
  font-family: "Florentia";
  font-weight: 400;
  font-size: 14px;
}
.contacts_map {
  padding-top: 50px;
  position: relative;
  width: 100%;
}
.contacts_map img {
  width: 100%;
}
.contacts_map_btn {
  position: absolute;
  right: 97px;
  bottom: -95px;
}
.contacts_contacts {
  background: var(--white-secondary);
}

.nav_theme_wrapper {
  position: relative;
}
.nav_theme_block {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--black);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  border-radius: 100%;
  transition: 0.5s ease-in-out;
  opacity: 1;
}
.nav_theme_block.active {
  width: 1000px;
  height: 1000px;
  opacity: 0;
  visibility: hidden;
}
.categories_bottom_clear {
  display: flex;
}
.clear_filters {
  margin-top: 20px;
  background: var(--green);
  color: var(--white-white);
  padding: 10px;
  border-radius: 100px;
  display: none;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 16px;
  transition: 0.1s linear;
  border: 1px solid var(--green);
  cursor: pointer;
}
.clear_filters.active {
  display: flex;
}
.clear_filters:hover {
  background: unset;
  color: var(--green);
}

/* contact_success */
.contact_success,
.contact_failed {
  display: flex;
  gap: 15px;
  align-items: center;
  position: fixed;
  right: 50px;
  top: 50px;
  background: var(--green);
  z-index: 1000;
  padding: 10px 15px;
  border-radius: 46px;
  color: var(--white);
  width: 328px;
  transition: 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateX(500px);
}
.contact_success.active {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}
.contact_failed.active {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}
.contact_failed {
  background: #a11919;
}
.contact_success_item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.contact_success_title {
  font-weight: 600;
  font-size: 18px;
}
.contact_success_text {
  font-weight: 400;
  font-size: 15px;
}

/* panorama details */
.custom-hotspot {
  border: 2px solid #fff;
  position: relative;
  width: 12px;
  height: 12px;
  background: #cca92c;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(204, 169, 44, 0.4);
  border-radius: 50%;
}
.custom-tooltip {
  position: absolute;
  text-transform: uppercase;
  color: #313131;
  font-size: 0.875em;
  width: 180px;
  left: -106px;
  bottom: calc(100% + 15px);
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  padding: 10px 15px;
  border: 2px solid #cca92c;
}
#panorama {
  height: 100vh;
  max-height: 1080px;
  background: var(--white-secondary);
}
.pnlm-render-container a {
  position: unset;
}

/* panorama_modal */
.panorama_modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 100000;
  transition: 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(1000px);
}
.panorama_modal.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.panorama_close {
  position: absolute;
  top: 60px;
  right: 60px;
  z-index: 1;
  cursor: pointer;
  background: var(--white-secondary);
  color: black;
  padding: 10px 20px;
  border-radius: 10px;
}

@media screen and (max-width: 1100px) {
  .object_sorting_items {
    display: none;
  }
  .object_sorting_mobile {
    display: flex;
    align-items: start;
  }
  .company_info_top_item {
    display: flex;
    flex-direction: column;
  }
  .company_info_bottom_item {
    flex-direction: column;
    align-items: start;
  }
  .company_about_wrapper {
    flex-direction: column;
  }
  .company_about_title {
    position: unset;
    transform: unset;
    padding-bottom: 35px;
  }
  .company_about {
    padding: 100px 0;
  }
  .company_about_block img {
    max-height: 600px;
  }
  .company_about_block:last-child {
    max-width: unset;
    flex-direction: row-reverse;
  }
  .company_center img {
    display: none;
  }
  .company_team_swiper {
    padding-bottom: 80px !important;
  }
}

@media screen and (max-width: 980px) {
  .about_content {
    flex-direction: column-reverse;
  }
  .about_right {
    gap: 17px;
    max-width: unset;
    align-items: flex-end;
  }
  .about_us {
    display: none;
  }
  .about_us.mobile {
    display: flex;
    flex-grow: 1;
    img {
      max-width: unset;
    }
  }
  .about_right_img {
    max-width: 60%;
    flex-grow: 1;
  }
  .about_left {
    max-width: unset;
  }
  .about_bottom {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .categories_statuses {
    gap: 8px;
  }
  .categories_sort_status {
    flex-wrap: wrap;
    gap: 8px;
  }
  .abous_us_number_items {
    padding-top: 65px;
    flex-direction: column;
  }
  .abous_us_number_left {
    flex-direction: row-reverse;
  }
  .reviews_bottom_item {
    position: unset;
    top: unset;
  }
  .reviews_bottom {
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
  }
  .reviews_items {
    flex-direction: column;
  }
  .reviews_subtitle {
    padding-bottom: 60px;
    max-width: unset;
  }
  .reviews_subtitle_title {
    left: 50%;
    top: 65%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
  }
  .reviews_subtitle_title span {
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
  }
  .news_block {
    gap: 20px;
  }
  .news_top_text p {
    font-size: 42px;
  }
  .news_top_title h2 {
    font-size: 54px;
  }
  .menu_content {
    padding-left: 20px;
    gap: 20px;
  }
  .menu_link {
    font-size: 30px;
  }
  .menu_content_bg {
    width: 50%;
  }
  .menu_phones {
    gap: 20px;
  }
  .menu_bottom_content {
    gap: unset;
    justify-content: space-between;
  }
  .object_location_content {
    flex-direction: column;
  }
  .object_location_img {
    max-width: unset;
  }
  .object_filters_items {
    grid-template-columns: repeat(2, 1fr);
  }
  .object_details_top_subtitle {
    padding: unset;
  }
  .object_details_top_subtitle h2 {
    span {
      font-size: 80px;
    }
  }
  .object_details_sorting {
    display: none;
  }
  .object {
    height: unset;
  }
  .contacts_items {
    gap: 70px 100px;
  }
}
@media screen and (max-width: 860px) {
  .news_block {
    flex-direction: column;
  }
  .news_left {
    max-width: unset;
  }
  .news_left .news_item_img {
    max-width: unset;
    max-height: 400px;
    object-fit: cover;
  }
  .news_item {
    max-width: unset;
  }
  .contacts_title {
    font-size: 36px;
  }
  .contacts {
    padding: 100px 0;
  }
  .footer_content {
    flex-direction: column;
  }
  .footer_right.mobile {
    display: none;
  }
  .footer_mobile {
    display: block;
  }
  .footer_item {
    display: none;
  }
  .footer_mobile_items {
    display: flex;
    gap: 30px;
    justify-content: space-between;
  }
  .footer_address {
    padding: unset;
    padding-bottom: 12px;
  }
  .footer_mobile_items:nth-child(2) {
    padding-top: 50px;
  }
  .footer_socials {
    padding-top: 80px;
  }
  .object_details_wrapper {
    flex-direction: column;
  }
  .breadcrumbs {
    position: unset;
    padding: 30px 0;
  }
  .object_details_left,
  .object_details_right {
    width: 100%;
  }
  .object_details_btn {
    display: none;
  }
  .object_details_right {
    border: none;
  }
}
@media screen and (max-width: 768px) {
  .nav_left {
    display: none;
  }
  .nav_right {
    width: 100%;
    justify-content: space-between;
  }
  .about_top_text:last-child,
  .about_top_text:first-child {
    font-size: 16px;
  }
  .about_top_title {
    height: 60px;
  }
  .categories_title {
    font-size: 26px;
  }
  .categories_item_title {
    font-size: 30px;
  }
  .categories_item {
    max-width: unset;
    width: 100%;
  }
  .abous_us_number_item h2 {
    font-size: 64px;
  }
  .abous_us_number_item p {
    font-size: 14px;
  }
  .abous_us_number_texts p {
    font-size: 21px;
    line-height: 36px;
  }
  .abous_us_number_texts span {
    span {
      font-size: 21px;
    }
    font-size: 52px;
  }
  .reviews_top_title h2 {
    font-size: 22px;
  }
  .reviews_item_info {
    max-width: unset;
  }
  .reviews_item_image img {
    width: 120px;
    height: 125px;
  }
  .reviews_item_info h2 {
    font-size: 18px;
  }
  .reviews_item_info p {
    font-size: 14px;
  }
  .reviews_item {
    justify-content: space-between;
  }
  .ponorama_content h2 {
    font-size: 21px;
  }
  .news_top_title h2 {
    font-size: 22px;
  }
  .news_top_title p {
    font-size: 22px;
    span {
      font-size: 60px;
    }
  }
  .news_top_text p {
    font-size: 22px;
  }
  .news {
    padding: 50px 0;
  }
  .news_block {
    padding-top: 57px;
  }
  .news_item_title {
    font-size: 18px;
  }
  .news_item_bottom {
    display: none;
  }
  .reviews_item_social.mobile {
    display: block;
  }
  .news_item {
    align-items: start;
  }
  .news_item .news_item_img {
    width: 100%;
  }
  .news_item_date {
    display: none;
  }
  .news_right {
    gap: 20px;
  }
  .footer_title {
    font-size: 22px;
  }
  .nav_objects.mobile {
    padding: 6px 10px;
    background: var(--green);
    color: var(--white) !important;
    border-radius: 8px;
  }
  .menu_content {
    flex-direction: column;
    padding-left: unset;
    gap: unset;
  }
  .menu_links,
  .menu_content_bg {
    width: 100%;
  }
  .menu_links {
    padding: 35px 20px;
  }
  .menu_bottom_content {
    flex-direction: column;
    gap: 14px;
  }
  .menu_bottom {
    padding: 20px 0;
  }
  .menu_link {
    font-size: 22px;
  }
  .menu_content_bg h2 {
    font-size: 22px;
  }
  .menu_phones a {
    font-size: 14px;
  }
  .menu_social {
    font-size: 14px;
  }
  .header_object h2 {
    font-size: 50px;
    font-weight: 400;
  }
  .header_object p {
    font-size: 20px;
  }
  .object_subtitle {
    font-size: 12px;
  }
  .object_title {
    font-size: 22px;
  }
  .object_location_title {
    font-size: 22px;
  }
  .object_location {
    padding: 80px 0;
  }
  .object_location_img {
    max-height: 330px;
  }
  .object_gallery_pag {
    right: 15px;
    bottom: 15px;
  }
  .object_gallery_line1 {
    top: 10px;
  }
  .object_gallery_line2 {
    left: 10px;
    top: 10px;
  }
  .object_gallery_title {
    top: 20px;
    left: 20px;
    font-size: 12px;
  }
  .object_about_title {
    font-size: 22px;
  }
  .object_about_left {
    max-width: unset;
  }
  .object_about_text {
    font-size: 14px;
  }
  .object_location_item_info h2 {
    font-size: 65px;
  }
  .menu_logo {
    font-size: 30px;
  }
  .swiper-slide img {
    min-height: 330px;
  }
  .gallery_swiper .swiper-pagination {
    display: none;
  }
  .menu_nav_top {
    display: flex;
  }
  .object_about_right {
    position: unset;
    padding-top: 40px;
  }
  .object_about {
    padding: 100px 0;
  }
  .object_about_items {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
  .object_sorting_title {
    font-size: 22px;
  }
  .object_sorting_top {
    flex-direction: column;
    gap: 20px;
  }
  .object_sorting_subtitle {
    text-align: end;
  }
  .object_sorting_mobile_item,
  .object_sorting_range,
  .range_item_object {
    width: 100%;
  }
  .object_filters_item_bottom p {
    font-size: 25px;
  }
  .object_filters_item {
    padding: 80px 30px;
    padding-bottom: 0;
  }
  .object_filters_items {
    padding: 0 40px;
  }
  .header_pagination {
    left: 40px;
    bottom: 40px;
  }
  .header_pag {
    right: 40px;
    bottom: 40px;
  }
  .object_about_left {
    padding-bottom: 30px;
  }
  .object_details_top_title,
  .object_details_top_subtitle {
    font-size: 22px;
  }
  .object_details_top_subtitle h2 {
    font-size: 19px;
  }
  .object_details_top_subtitle h2 {
    span {
      font-size: 44px;
    }
  }
  .object_details_360_title {
    top: 40px;
    left: 40px;
    font-size: 34px;
  }
  .object_details_item {
    padding: 0;
  }
  .object_details_item:last-child {
    padding: 0;
    padding-top: 20px;
  }
  .object_details_items .object_details_item {
    padding: 20px 0;
  }
  .object_details_right .object_details_item:first-child {
    padding: 20px 0;
    border-top: 1px solid #e2e2e2;
  }
  .object_details_360 {
    background: var(--white-secondary);
    overflow: hidden;
  }
  .object_details_360_title {
    position: unset;
    padding: 25px 15px;
    font-size: 22px;
  }
  .header_company h2 {
    font-size: 20px;
    padding: 0 15px;
    line-height: 28px;
  }
  .company_info_top_item h2 {
    font-size: 22px;
  }
  .company_info_top_item img {
    max-width: 170px;
    padding-top: 65px;
  }
  .company_info_top_item span {
    font-size: 50px;
  }
  .company_info_top_item {
    padding-bottom: 220px;
  }
  .company_info_bottom_item {
    gap: 15px;
  }
  .company_info_bottom_item p {
    padding-left: 60px;
  }
  .company_info {
    padding: 90px 0;
  }
  .company_info_top_item br {
    display: none;
  }
  .company_about_title {
    font-size: 22px;
  }
  .company_about_title span {
    font-size: 60px;
  }
  .company_about {
    padding: 60px 0;
  }
  .company_about_block:first-child {
    flex-direction: column;
    align-items: start;
  }
  .company_about_item_text {
    font-size: 16px;
  }
  .company_about_items {
    gap: 35px;
  }
  .company_about_block:first-child img {
    max-width: 150px;
  }
  .company_about_block:last-child .company_about_items {
    gap: 35px;
  }
  .company_about_block img {
    max-width: 177px;
  }
  .company_about_wrapper {
    flex-direction: row;
    gap: 20px;
  }
  .company_about_block:last-child {
    flex-direction: column-reverse;
  }
  .company_item_top_title {
    font-size: 22px;
    flex-direction: column;
    align-items: start;
  }
  .company_item_top_title p {
    position: absolute;
    right: 20px;
    top: 110px;
  }
  .company_item_content {
    padding: 70px 30px;
    gap: 140px;
  }
  .company_item_info p {
    font-size: 22px;
  }
  .company_center {
    padding: 140px 15px 90px 15px;
    height: unset;
  }
  .company_center_title {
    font-weight: 300;
    font-size: 22px;
  }
  .company_team_item {
    flex-direction: column;
  }
  .company_team_item img {
    min-height: unset;
    object-fit: cover !important;
    width: 100% !important;
    max-height: 320px;
    max-width: 215px;
  }
  .company_team_info h2 {
    font-size: 22px;
  }
  .company_team {
    padding: 55px 15px;
  }
  .partners {
    padding-top: 75px;
  }
  .partners_text {
    font-size: 12px;
    text-align: unset;
    padding-bottom: 20px;
  }
  .partners_title {
    font-size: 22px;
  }
  .partners_items .swiper-wrapper {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .partners_pag {
    bottom: 0;
    right: 15px;
    top: unset;
  }
  .partners_item img {
    min-height: unset;
    max-width: 110px;
  }
  .partners_item {
    height: 110px;
  }
  .news_details_title {
    display: none;
  }
  .news_details {
    padding: 20px 0;
  }
  .news_details_title.mobile {
    display: block;
    font-size: 22px;
    padding-bottom: 18px;
  }
  .news_details_banner {
    padding: 80px 15px;
    padding-bottom: 0;
  }
  .news_details_text {
    font-size: 16px;
  }
  .contacts_top {
    flex-direction: column;
    align-items: start;
    gap: 60px;
    padding-top: 48px;
  }
  .abous_us_number {
    max-height: 650px;
  }
}
@media screen and (max-width: 560px) {
  .object_filters_items {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
  }
  .object_filters_item {
    width: 50%;
  }
  .range_slider input[type="range"] {
    bottom: 1px;
  }
  .object_details_bottom {
    grid-template-columns: repeat(2, 1fr);
  }
  .about_top_title {
    position: relative;
  }
  .about_texts {
    padding-left: 60px;
    top: -65px;
  }
  .about_top_text:first-child {
    justify-content: unset;
    font-size: 21px;
    flex-direction: column;
  }
  .about_top_text:last-child,
  .about_top_text:first-child {
    font-size: 21px;
  }
  .nav_objects.mobile {
    display: flex;
  }
  .custom_select_selected {
    height: 38px;
  }
  .contacts_items {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .contacts_item_bottom {
    column-gap: 30px;
  }
  .contacts_top_title {
    padding-top: 30px;
  }
  .company_team_content {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .header_swiper_content h2 {
    font-size: 24px;
  }
  .header_swiper_content span {
    font-size: 36px;
  }
  .header_swiper_content p {
    font-size: 16px;
  }
  .about_top_title {
    height: 80px;
  }
  .about_us_text p {
    font-size: 14px;
  }
  .read {
    font-size: 10px;
  }
  .categories_title {
    font-size: 22px;
  }
  .categories_top_item,
  .categories_status,
  .categories_status,
  .categories_select,
  .range_item {
    font-size: 14px;
  }
  .categories_item_title {
    font-size: 22px;
  }
  .categories_item_status,
  .categories_item_address {
    font-size: 12px;
  }
  .categories_item_image p {
    font-size: 10px;
  }
  .abous_us_number_items {
    gap: 25px;
    padding-top: unset;
  }
  .reviews {
    padding: 66px 0;
  }
  .reviews_items {
    padding-top: 20px;
    gap: 60px;
  }
  .contacts_title {
    font-size: 22px;
  }
  .contacts_input::placeholder {
    font-size: 18px;
  }
  .contacts_input {
    font-size: 18px;
  }
  .contacts {
    padding: 50px 0;
  }
  .footer_mobile_items {
    gap: 10px;
  }
  .footer_right img {
    max-width: 120px;
  }
  .footer_info,
  .footer_phone,
  .footer_address,
  .footer_address_item {
    font-size: 14px;
  }
  .footer_bottom_title {
    font-size: 12px;
  }
  .object_img {
    max-width: 250px;
  }
  .object_bg {
    bottom: 130px;
  }
  .header_object p {
    padding: 0 16px;
  }
  .abous_us_number_left,
  .abous_us_number_right {
    gap: unset;
  }
  .abous_us_number_item {
    width: 100%;
  }
  .abous_us_number_content {
    gap: 70px;
  }
  .panorama_close {
    top: 30px;
    right: 30px;
  }
}
