@font-face {
  font-family: "Satoshi";
  src: url("./assets/fonts/Satoshi-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Satoshi", sans-serif;
  list-style: none;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  outline: none;
}
img {
  max-width: 100%;
  width: 100%;
}
.container {
  max-width: 1620px;
  padding: 0 42px;
  margin: 0 auto;
}
.flx {
  display: flex;
}
html {
  scroll-behavior: smooth;
}
header .container {
  justify-content: space-between;
  align-items: center;
}
.logo {
  max-width: 124px;
}
.menu ul {
  gap: 4px;
}
.menu ul li a {
  display: inline-block;
  font-size: 16px;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 29px;
  cursor: pointer;
}
.language-selected {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 29px;
  cursor: pointer;
  padding-right: 46px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.language-selected::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 8px;
  height: 8px;
  background: url("./assets/imgs/arrow-right.svg") no-repeat center center;
  background-size: contain;
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}
.single-post-main {
  background: #f7f7f7;
}

.single-post-wrapper {
  max-width: 1024px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.single-post-article {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.single-post-cover img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.single-post-header {
  padding: 32px 32px 0;
}

.single-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.single-post-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #f0f2f5;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.2;
  color: #2f323a;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.single-post-title {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1.25;
  color: #1f1f1f;
}

.single-post-content {
  padding: 0 32px 32px;
  font-size: 16px;
  line-height: 1.8;
  color: #3a3a3a;
}

.single-post-content p {
  margin: 0 0 18px;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
  margin: 28px 0 12px;
  line-height: 1.3;
  color: #1f1f1f;
}

.single-post-content ul,
.single-post-content ol {
  margin: 0 0 18px 20px;
  padding: 0;
}

.single-post-content img,
.single-post-content figure {
  max-width: 100%;
  height: auto;
}

.single-post-content figure {
  margin: 0 0 18px;
}

.single-post-content blockquote {
  margin: 0 0 18px;
  padding: 16px 20px;
  border-left: 4px solid #2c6bed;
  background: #f0f5ff;
  color: #1e2b45;
}

.single-post-empty {
  max-width: 1024px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  font-size: 18px;
  color: #3a3a3a;
  text-align: center;
}
.footer-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 16px 24px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 24px;
  font-size: 18px;
  line-height: 100%;
  color: #000;
}
.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.footer-form textarea {
  resize: none;
}
.form-section-left-form-item button {
  width: 100%;
}
footer {
  padding-top: 80px;
  padding-bottom: 40px;
}
footer .container {
  padding: 0 80px;
}
.footer-bot {
  margin-top: 80px;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.footer-left img {
  max-width: 124px;
}
.footer-top {
  justify-content: space-between;
}
.footer-list {
  gap: 71px;
}
.footer-list-item-title h3 {
  font-size: 24px;
}
.footer-list-item-list {
  margin-top: 32px;
}
.footer-list-item-list a {
  font-size: 18px;
  line-height: 32px;
  opacity: 0.5;
}
.footer-bot-left span {
  font-size: 18px;
  line-height: 32px;
  opacity: 0.5;
}
.footer-bot-right-list {
  gap: 24px;
}
.footer-bot-right-list a {
  font-size: 18px;
  line-height: 32px;
}
.language-selected,
.project-page header a,
.project-page header span {
  color: #fff;
}
.menu ul li a {
  background-color: rgba(255, 255, 255, 0.25);
}
.language-selected::after {
  background-image: url("./assets/imgs/arrow-bot-white.svg");
  transform: none;
}
.language-selected {
  border: 1px solid rgba(255, 255, 255, 0.25);
}
@font-face {
  font-family: "Satoshi";
  src: url("./assets/fonts/Satoshi-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Satoshi", sans-serif;
  list-style: none;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  outline: none;
}
img {
  max-width: 100%;
  width: 100%;
}
.container {
  max-width: 1620px;
  padding: 0 42px;
  margin: 0 auto;
}
.flx {
  display: flex;
}
html {
  scroll-behavior: smooth;
}
header .container {
  justify-content: space-between;
  align-items: center;
}
.logo {
  max-width: 124px;
}
.menu ul {
  gap: 4px;
}
.menu ul li a {
  display: inline-block;
  font-size: 16px;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 29px;
  cursor: pointer;
}
.language-selected {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 29px;
  cursor: pointer;
  padding-right: 46px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.language-selected::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 8px;
  height: 8px;
  background: url("./assets/imgs/arrow-right.svg") no-repeat center center;
  background-size: contain;
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}
.hero {
  position: relative;
  background: url("./assets/imgs/bg-circle.svg") no-repeat right center;
  background-size: auto 80%;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 880px;
  gap: 34px;
}
h1 {
  font-size: 92px;
  line-height: 103%;
}
h1 span {
  color: rgba(211, 173, 52, 1);
}
.hero-title {
  max-width: 766px;
}
.hero-title p {
  margin-top: 34px;
}
.hero-btns {
  display: flex;
  gap: 4px;
}
.btn {
  display: inline-block;
  font-size: 16px;
  padding: 24px 25px;
  border-radius: 24px;
}
.btn.btn-black {
  background: #000;
  color: #fff;
}
.btn.btn-white {
  border: 1px solid rgba(0, 0, 0, 1);
  background: #fff;
}
.area-section-title .btn {
  border: none;
}
.btn.btn-arrow-right {
  padding-right: 60px;
  position: relative;
}
.btn.btn-arrow-right::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  width: 14px;
  height: 14px;
  background: url("./assets/imgs/arrow-right.svg") no-repeat center center;
  background-size: contain;
}
.btn.btn-icon-left {
  padding-left: 60px;
  position: relative;
}
.btn.btn-icon-left::before {
  content: "";
  position: absolute;
  left: 25px;
  width: 24px;
  height: 24px;
  background: url("./assets/imgs/phone-white.svg") no-repeat center center;
  background-size: contain;
}
.btn-gray {
  background: rgba(246, 246, 246, 1);
}
.hero-filter-block {
  display: flex;
  gap: 4px;
}
.btn-long {
  min-width: 240px;
}
.btn-arrow-right.btn-black::after {
  background-image: url("./assets/imgs/arrow-white.svg");
}
.hero-filter .btn::after {
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.full-screen-image-slider {
  min-height: 768px;
  padding-bottom: 56px;
  background-image: url("./assets/imgs/full-screen-img.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.full-screen-image-slider .container {
  display: flex;
  width: 100%;
  min-height: 768px;
  align-items: flex-end;
  position: relative;
}
.full-screen-image-slider::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 40%;
  z-index: 2;
  height: 387px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 40%,
    black 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 40%,
    black 100%
  );
}
.full-screen-image-slider-item {
  position: relative;
  z-index: 3;
}
.full-screen-image-slider-item-info-logo {
  max-width: 160px;
}
.full-screen-image-slider-item-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.full-screen-image-slider-item-info-title h2 {
  font-size: 52px;
  color: #fff;
}
.full-screen-image-slider-item-info-title-location {
  margin-top: 12px;
}
.full-screen-image-slider-item-info-title-location img {
  max-width: 24px;
  margin-right: 8px;
}
.full-screen-image-slider-item-info-title-location span {
  color: #fff;
  font-size: 16px;
  line-height: 150%;
}
.price-span {
  font-size: 18px;
}
.full-screen-image-slider-item-info-title-location {
  display: flex;
  align-items: center;
  gap: 4px;
}
.full-screen-image-slider button {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 72px;
  height: 72px;
  background-image: url("./assets/imgs/button.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
  cursor: pointer;
}
.logo-slider {
  padding: 0 48px;
  background: rgba(246, 246, 246, 1);
}
.logo-slider-wrapper {
  display: flex;
  gap: 100px;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
}
.container::-webkit-scrollbar {
  display: none;
}
.logo-slider-item {
  flex-shrink: 0;
}
.projects-section {
  padding: 100px 0;
}
.projects-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.projects-section-title-btn {
  font-size: 48px;
}
.projects-section-title-btn-text {
  opacity: 0.2;
  margin-left: 12px;
}
.projects-section-title h2 {
  max-width: 683px;
  font-size: 48px;
}
.projects-section .container {
  flex-direction: column;
  gap: 42px;
}
.projects-section-nav {
  gap: 8px;
}
.projects-section-nav-item {
  width: 72px;
  height: 72px;
  background-image: url("./assets/imgs/bg-circle-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.projects-section-filter-block {
  justify-content: space-between;
}
.projects-section-nav-item.next {
  transform: scale(-1);
}
.projects-section-list {
  flex-direction: row;
  gap: 12px;
}
.projects-section-list-item {
  width: calc(50% - 6px);
  min-height: 795px;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
}
.projects-section-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, rgba(1, 27, 71, 0) 0%, #011b47 100%);
  z-index: 2;
}
.projects-section-list-item-info-title,
.projects-section-list-item-info-type {
  position: absolute;
}
.projects-section-list-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.projects-section-list-item-info-type {
  top: 32px;
  left: 24px;
  z-index: 3;
  gap: 10px;
  align-items: center;
  padding: 13px 12px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
}
.project-tag {
  font-size: 16px;
  color: #fff;
}
.projects-section-list-item-info-type img {
  max-width: 24px;
}
.projects-section-list-item-info-title {
  bottom: 32px;
  left: 24px;
  z-index: 3;
}
.projects-section-list-item-info-title h3 {
  font-size: 40px;
  color: #fff;
}
.btn-block {
  margin-top: 24px;
}
.btn-green {
  background: rgba(64, 164, 64, 1);
  color: #fff;
}
.btn-icon-left.btn-green::before {
  background-image: url("./assets/imgs/wa-white.svg");
}
.projects-section-list-item-info-title .btn-white {
  border: 1px solid rgba(255, 255, 255, 1);
}
.area-section {
  padding: 100px 0;
  background: rgba(246, 246, 246, 1);
}
.area-section-title {
  justify-content: space-between;
  align-items: center;
}
.area-section-title h2 {
  font-size: 48px;
}
.area-section-list {
  gap: 12px;
  margin-top: 42px;
}

.area-section-list-item {
  background-image: url("./assets/imgs/area-img1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 24px;
  padding-top: 30px;
  padding-left: 30px;
}
.area-section-list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  z-index: 2;
  pointer-events: none;

  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);

  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.8) 45%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.8) 45%,
    rgba(0, 0, 0, 0) 100%
  );
}

.area-section-list-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  z-index: 2;
  pointer-events: none;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0) 100%
  );
}
.area-section-list-first-block {
  flex-wrap: wrap;
  gap: 12px;
}
.area-section-list-second-block {
  flex-direction: column;
  gap: 12px;
}
.area-section-list-item.first-item {
  background-image: url("./assets/imgs/area-img1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(50% - 6px);
  min-height: 548px;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
}
.area-section-list-item.second-item {
  background-image: url("./assets/imgs/loc2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(50% - 6px);
  min-height: 548px;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
}
.area-section-list-item.third-item {
  background-image: url("./assets/imgs/loc3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 548px;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
}
.area-section-list-first-block {
  width: calc(66% - 6px);
}
.area-section-list-second-block {
  width: calc(33% - 6px);
}
.area-section-list-item.fourth-item {
  background-image: url("./assets/imgs/loc4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 384px;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
}
.area-section-list-item.fifth-item {
  background-image: url("./assets/imgs/loc5.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
}
.area-section-list-item-info {
  position: relative;
  z-index: 3;
}
.area-section-list-item-info-title h3 {
  position: relative;
  font-size: 26px;
  color: #fff;
  z-index: 3;
}
.area-section-list-item-info-subtitle {
  font-size: 18px;
  color: #fff;
  opacity: 0.5;
  z-index: 3;
}
.area-section-list-item-btn {
  position: absolute;
  bottom: 42px;
  left: 42px;
  z-index: 3;
  width: 72px;
  height: 72px;
  background-image: url("./assets/imgs/button.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.comercial-projects-section {
  padding-top: 100px;
  background-color: #000;
}
.comercial-projects-section-title {
  justify-content: space-between;
  align-items: center;
}
.comercial-projects-section-title h2 {
  font-size: 48px;
  color: #fff;
}
.comercial-projects-section-title h2 span {
  color: rgba(211, 173, 52, 1);
}
.comercial-projects-section-list-item {
  width: 38%;
  flex-shrink: 0;
  background-image: url("./assets/imgs/comercial-img1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  position: relative;
  z-index: 3;
  color: #fff;
  position: relative;
  padding: 42px;
  overflow: hidden;
  min-height: 799px;
}
.comercial-projects-section-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(180deg, #1a1c21 0%, rgba(0, 0, 0, 0) 100%);
}
.cemercial-projects-section-list-wrapper {
  overflow: scroll;
  scrollbar-width: none;
  gap: 1px;
  margin-top: 42px;
}
.cemercial-projects-section-list-wrapper::-webkit-scrollbar {
  display: none;
}
.comercial-projects-section-list-item-title {
  padding-right: 90px;
  position: relative;
  z-index: 3;
}
.btn-opacity-white {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.comercial-projects-section-list-item .btn.btn-arrow-right::after {
  background: url("./assets/imgs/arrow-white.svg") no-repeat center center;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}
.comercial-projects-section-list-item .btn.btn-arrow-right {
  padding-right: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.com2 {
  background-image: url("./assets/imgs/comercial-img2.png");
}
.com3 {
  background-image: url("./assets/imgs/comercial-img3.png");
}
.comercial-projects-section-list-item-title h3 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 12px;
}
.comercial-projects-section-title {
  padding: 0 42px;
}
.comercial-projects-section .container {
  padding: 0;
}
.properties-section {
  padding: 100px 0;
  background-color: rgba(246, 246, 246, 1);
}
.properties-section-title h2 {
  font-size: 48px;
}
.properties-section-title {
  justify-content: space-between;
  align-items: center;
}
.properties-section-title .btn-white {
  border: 1px solid #fff;
}
.properties-section-list {
  margin-top: 42px;
}
.properties-section-list {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  row-gap: 46px;
}
.properties-section-list-item {
  width: calc(33% - 31px);
}
.properties-section-list-item-info-price img {
  max-width: 24px;
}
.properties-section-list-item-info-price {
  display: flex;
  align-items: center;
  gap: 12px;
}
.span-with-icon {
  display: inline-block;
  padding-left: 32px;
  position: relative;
}
.span-with-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("./assets/imgs/map-pin-gray.svg");
}
.bed-icon::before {
  background-image: url("./assets/imgs/bed-icon-gray.svg");
}
.bath-icon::before {
  background-image: url("./assets/imgs/shower-icon-gray.svg");
}
.sqft-icon::before {
  background-image: url("./assets/imgs/size-icon-gray.svg");
}
.bed-icon,
.bath-icon,
.sqft-icon {
  padding-left: 30px;
}
.properties-section-list-item-info-features-item {
  gap: 24px;
  margin-top: 12px;
}
.properties-section-list-item-info-title {
  margin-top: 12px;
}
.properties-section-list-item-info-price {
  margin-top: 24px;
  position: relative;
}
.properties-section-list-item-info-price::before {
  content: "";
  position: absolute;
  left: 0;
  top: -12px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.properties-section-list-item-btns {
  gap: 12px;
  display: flex;
  margin-top: 24px;
}
.properties-section-list-item-btns a {
  width: 50%;
  display: flex;
  justify-content: center;
  padding-left: 0 !important;
  padding-right: 0 !important;
  gap: 12px;
  align-items: center;
}
.properties-section-list-item-btns .btn-black img {
  max-width: 24px;
}
.properties-section-list-item-btns .btn-white img {
  max-width: 8px;
}
.properties-section-list-item-btns .btn-black::before {
  display: none;
}
.properties-section-list-item-btns .btn.btn-arrow-right::after {
  display: none;
}
.map-section {
  padding: 100px 0;
}
.map-section-title h2 {
  font-size: 48px;
}
.map-section-title {
  justify-content: space-between;
  align-items: center;
}
.map-section-map {
  margin-top: 42px;
  min-height: 719px;
  background-image: url("./assets/imgs/map.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  width: 100%;
}
.why-impex-section {
  padding: 100px 0;
  background-color: rgba(246, 246, 246, 1);
}
.why-impex-main-container {
  margin-top: 42px;
}
.why-impex-section-logo {
  max-width: 128px;
  margin: 0 auto;
}
.why-impex-main-container {
  padding: 71px 24px;
  background-color: #000;
  border-radius: 24px;
  position: relative;
}
.why-impex-main-container::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("./assets/imgs/why-gray-logo.png");
  background-size: 110%;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.why-impex-main-container-text {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 42px;
}
.why-impex-main-container-text h2 {
  font-size: 52px;
  color: #fff;
}
.why-impex-main-container-text h2 span {
  color: rgba(211, 173, 52, 1);
}
.why-impex-main-container-list {
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 902px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.why-impex-main-container-list-item {
  width: calc(50% - 5px);
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  max-width: 451px;
  padding: 24px;
  padding: auto;
  padding-top: 58px;
  position: relative;
}
.why-impex-main-container-list-item-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 24px;
  left: 24px;
}
.why-impex-main-container-list-item-icon.icon-1 {
  background-image: url("./assets/imgs/buildings-yellow.svg");
}
.why-impex-main-container-list-item-icon.icon-2 {
  background-image: url("./assets/imgs/building-yellow.svg");
}
.why-impex-main-container-list-item-icon.icon-3 {
  background-image: url("./assets/imgs/box-yellow.svg");
}
.why-impex-main-container-list-item-icon.icon-4 {
  background-image: url("./assets/imgs/doc-yellow.svg");
}
.why-impex-main-container-list-item-text h3 {
  font-size: 26px;
  line-height: 150%;
}
.why-impex-main-container-list-item-text {
  margin-bottom: 10px;
}
.why-impex-main-container-list-item-text span {
  font-size: 16px;
  line-height: 150%;
}
.why-impex-main-container-person-img {
  position: absolute;
  left: 27px;
  bottom: 0;
  height: 120%;
  width: 18%;
  background-image: url("./assets/imgs/why-person-left.png");
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 2;
}
.why-impex-main-container-person-img2 {
  position: absolute;
  right: 5px;
  bottom: 0;
  height: 120%;
  width: 20%;
  background-image: url("./assets/imgs/why-person-right.png");
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 2;
}
.why-impex-main-container-logo-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 235px;
  height: 496px;
  background-image: url("./assets/imgs/why-right-logo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.why-impex-main-container-logo-img2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 235px;
  height: 496px;
  background-image: url("./assets/imgs/why-left-logo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.numbers-section {
  padding: 100px 0;
}
.numbers-section .container {
  justify-content: space-between;
  gap: 42px;
}
.numbers-section-left {
  max-width: 660px;
}
.numbers-section-left-title {
  margin-bottom: 42px;
}
.numbers-section-left-title h2 {
  font-size: 48px;
}
.numbers-section-left-txt p {
  font-size: 16px;
  line-height: 150%;
}
.numbers-section-right {
  max-width: 660px;
}
.numbers-section-right-list {
  width: 100%;
  gap: 61px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.numbers-section-right-list-item {
  max-width: 288px;
}
.numbers-section-right-list-item-number span {
  font-size: 48px;
  color: rgba(126, 110, 61, 1);
}
.numbers-section-right-list-item-number {
  margin-bottom: 12px;
}
.numbers-section-right-list-item-text p {
  font-size: 16px;
  line-height: 150%;
}
.testimonials-section {
  padding: 100px 0;
  background-color: rgba(24, 26, 32, 1);
}
.testimonials-section-title h2 {
  font-size: 48px;
  color: #fff;
}
.testimonials-section-title {
  justify-content: space-between;
  align-items: center;
}
.testimonials-section-title-btn {
  font-size: 48px;
}
.testimonials-section-title-btn .btn {
  width: 72px;
  height: 72px;
  background-image: url("./assets/imgs/button.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.testimonials-section-title-btn .btn.prev {
  transform: scale(-1);
}
.testimonials-section-list {
  margin-top: 40px;
  gap: 12px;
}
.testimonials-section-list-item {
  width: calc(33.3333333% - 8px);
  background-color: #fff;
  padding: 24px;
  border-radius: 24px;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}
.testimonials-section-list-item-left {
  max-width: 333px;
}
.testimonials-section-list-item-stars {
  max-width: 76px;
  margin-top: 17px;
}
.testimonials-section-list-item-author {
  position: relative;
}
.testimonials-section-list-item-author::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.testimonials-section-list-item-author-img {
  max-width: 44px;
}
.testimonials-section-list-item-author {
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.testimonials-section-list-item-author-name h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.testimonials-section-list-item-author-name span {
  font-size: 13px;
  color: rgba(113, 113, 113, 1);
}
.testimonials-section-list-item-title h3 {
  font-size: 26px;
}
.testimonials-section-list-item-title {
  margin-bottom: 17px;
}
.testimonials-section-list-item-left p {
  font-size: 16px;
  line-height: 100%;
}
.faq-section {
  padding: 120px 0;
}
.faq-section .container {
  justify-content: space-between;
  gap: 64px;
}
.faq-section-left-title {
  max-width: 555px;
}
.faq-section-left-title h2 {
  font-size: 48px;
  line-height: 100%;
}
.faq-section-left-title p {
  font-size: 16px;
  line-height: 100%;
  margin-top: 24px;
  color: rgba(24, 26, 32, 0.5);
}
.faq-section-right {
  max-width: 846px;
}
.faq-section-right-list {
  flex-direction: column;
  gap: 20px;
}
.faq-section-right-list-item {
  padding: 24px;
  border: 1px solid rgba(229, 229, 230, 1);
}
.faq-section-right-list-item-txt {
  margin-top: 24px;
  display: none;
}
.faq-section-right-list-item-title {
  justify-content: space-between;
  align-items: center;
}
.faq-section-right-list-item-title-btn {
  width: 16px;
  height: 16px;
  position: relative;
}
.faq-section-right-list-item-title-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 1);
}
.faq-section-right-list-item-title-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 1);
}
.faq-section-right-list-item.active .faq-section-right-list-item-txt {
  display: block;
}
.faq-section-right-list-item.active
  .faq-section-right-list-item-title-btn::after {
  display: none;
}
.faq-section-right-list-item-title h3 {
  font-size: 26px;
}
.faq-section-right-list-item-txt p {
  font-size: 16px;
  line-height: 100%;
  color: rgba(24, 26, 32, 1);
}
.form-section {
  padding: 80px 0;
  background-color: #000;
  justify-content: space-between;
}
.form-section .container {
  border-radius: 42px;
  background-color: #fff;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.form-section-right {
  width: 35%;
  max-width: 512px;
  background-image: url("./assets/imgs/comercial-img2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.form-section-left {
  width: 70%;
  padding: 57px 80px;
}
.form-section-left-title h2 {
  font-size: 48px;
}
.form-section-left-title {
  max-width: 700px;
  margin-bottom: 24px;
}
.form-section-left-form-item {
  margin-bottom: 24px;
}
.form-section-left-form-item label {
  display: block;
  font-size: 16px;
  line-height: 100%;
  color: rgba(24, 26, 32, 1);
}
.footer-form {
  flex-wrap: wrap;
  gap: 20px;
}
.form-section-left-form-item {
  width: 100%;
}
.form-section-left-form-item.input-half {
  width: calc(50% - 10px);
}
.footer-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 16px 24px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 24px;
  font-size: 18px;
  line-height: 100%;
  color: #000;
}
.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.footer-form textarea {
  resize: none;
}
.form-section-left-form-item button {
  width: 100%;
}
footer {
  padding-top: 80px;
  padding-bottom: 40px;
}
footer .container {
  padding: 0 80px;
}
.footer-bot {
  margin-top: 80px;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.footer-left img {
  max-width: 124px;
}
.footer-top {
  justify-content: space-between;
}
.footer-list {
  gap: 71px;
}
.footer-list-item-title h3 {
  font-size: 24px;
}
.footer-list-item-list {
  margin-top: 32px;
}
.footer-list-item-list a {
  font-size: 18px;
  line-height: 32px;
  opacity: 0.5;
}
.footer-bot-left span {
  font-size: 18px;
  line-height: 32px;
  opacity: 0.5;
}
.footer-bot-right-list {
  gap: 24px;
}
.footer-bot-right-list a {
  font-size: 18px;
  line-height: 32px;
}
.impax-slider-wrapper {
  position: absolute;
  width: 680px;
  right: 0;
  height: 100%;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}

.impax-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 377px;
  height: 417px;
  transform-origin: center;
  border-radius: 18px;
  overflow: hidden;
  transform: translate(-50%, -50%);
  transition: transform 0.6s ease, opacity 0.6s ease, z-index 0.6s ease;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.slide .slide-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
}
.impax-prev {
  transform: rotate(90deg);
}
.impax-next {
  transform: rotate(-90deg);
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impax-arrow {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background-image: url("./assets/imgs/button.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.impax-btns {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 45px;
  z-index: 10;
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.impax-track {
  position: relative;
  height: 100%;
  --h: 100%;
}
.hero {
  overflow: hidden;
}
.impax-slider-wrapper {
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
}
.impax-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.logo-slider-wrapper.dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
.logo-slider-wrapper {
  cursor: grab;
  cursor: -webkit-grab;
}
.projects-section-list-block {
  flex-wrap: wrap;
  gap: 12px;
  transition: transform 0.3s ease;
  width: 100%;
  flex-shrink: 0;
}
.projects-section-nav-item.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.projects-section-list {
  overflow: hidden;
  position: relative;
}

.projects-section-list-track {
  display: flex;
  flex-direction: row;
  width: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.projects-section-list-block {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0 12px;
}

.projects-section-list-block .projects-section-list-item {
  box-sizing: border-box;
  width: calc(50% - 6px);
  padding: 8px;
  float: left;
}

.projects-section-list-block::after {
  content: "";
  display: table;
  clear: both;
}
.projects-section-nav-item.disabled {
  opacity: 0.35;
  pointer-events: none;
}

.projects-section-list-block,
.projects-section-list-track {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cemercial-projects-section-list-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.cemercial-projects-section-list-wrapper::-webkit-scrollbar {
  display: none;
}
.cp-dragging {
  cursor: grabbing;
  user-select: none;
}
.testimonials-section-title-btn .disabled {
  opacity: 0.4;
  pointer-events: none;
}
.testimonials-section-list-item {
  flex-shrink: 0;
}
.testimonials-section-list-wrapper {
  overflow: hidden;
  width: 100%;
}
.faq-section-right-list-item {
  cursor: pointer;
}
.projects-section-item {
  background-image: url(./assets/imgs/projects-item.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  padding: 32px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  display: flex;
}
.project-tag {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}
.projects-section-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 150%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.projects-section-item-top {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
.projects-section-item-top-right-address {
  padding: 13px 12px;
  padding-left: 46px;
  position: relative;
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 32px;
}
.projects-section-item-top-right-address::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(./assets/imgs/map-pin-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.projects-section-item-bot {
  position: relative;
  z-index: 3;
  justify-content: space-between;
  align-items: flex-end;
}
.projects-section-item-bot-title h3 {
  color: #fff;
  font-size: 26px;
  line-height: 150%;
}
.properties-section-list-item-info-price {
  display: flex;
  align-items: center;
  gap: 12px;
}
.properties-section-list-item-info-price {
  margin-top: 13px;
  position: relative;
}
.properties-section-list-item-info-price img {
  max-width: 24px;
}
.properties-section-list-item-info-price span {
  color: #fff;
  font-size: 16px;
  line-height: 100%;
}
.properties-section-list-item-info-price span {
  color: #fff;
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
}
.hero-custom-dropdown {
  position: relative;
}
.hero-dropdown-trigger-area,
.hero-dropdown-trigger-commercial,
.hero-dropdown-trigger-region {
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.hero-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}
.hero-custom-dropdown.hero-dropdown-active .hero-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hero-dropdown-item {
  padding: 16px 24px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s ease;
}
.hero-dropdown-item:hover {
  background-color: rgba(246, 246, 246, 1);
}
.hero-dropdown-item:first-child {
  border-radius: 24px 24px 0 0;
}
.hero-dropdown-item:last-child {
  border-radius: 0 0 24px 24px;
}
.hero-custom-dropdown.hero-dropdown-active .hero-dropdown-trigger-area::after,
.hero-custom-dropdown.hero-dropdown-active
  .hero-dropdown-trigger-commercial::after,
.hero-custom-dropdown.hero-dropdown-active
  .hero-dropdown-trigger-region::after {
  transform: translateY(-50%) rotate(-90deg);
}
.hero-btns {
  margin-top: 34px;
}
.desktop {
  display: block;
}
.container.desktop {
  display: flex;
}
.mobile {
  display: none;
}

.impax-slider-wrapper {
  --slide-w: 377px;
  --slide-h: 417px;
  --offset-main: 40px;
  --offset-extra: 170px;
}
.impax-slider-wrapper {
  --horiz-offset-x: 100%;
  --horiz-offset-y: 24px;
  --horiz-rotate-deg: -12deg;
  --horiz-scale-side: 0.6;
  --horiz-center-scale: 1;
  --horiz-offset-y-left: 24px;
  --horiz-offset-y-right: 24px;
}
.impax-slider-wrapper {
  position: absolute;
  width: 680px;
  right: 0;
  height: 100%;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
}

.impax-track {
  position: relative;
  width: 100%;
  height: 100%;
  --h: 100%;
  overflow: visible;
}

.slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--slide-w);
  height: var(--slide-h);
  transform-origin: center;
  border-radius: 18px;
  overflow: hidden;
  transform: translate(-50%, -50%);
  transition: transform 0.6s ease, opacity 0.6s ease, z-index 0.6s ease;
  opacity: 0;
  z-index: 1;
}

.impax-prev {
  transform: rotate(90deg);
}
.impax-next {
  transform: rotate(-90deg);
}
.impax-arrow {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background-image: url("./assets/imgs/button.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.impax-btns {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 45px;
  z-index: 10;
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.hero {
  overflow: hidden;
}
.impax-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.map-section {
  display: none;
}
.hero-custom-dropdown.hero-dropdown-active .hero-dropdown-menu {
  max-height: 200px;
  overflow-y: scroll;
}
.projects-section-list-item {
  background-image: url("./assets/imgs/property-slider1.jpg");
  background-size: cover;
  background-position: center;
}
.projects-section-list-item {
  max-height: 50%;
}
.properties-section .properties-section-list-item-info-price span {
  color: #000;
}
.properties-section-list-item-img {
  border-radius: 24px;
  overflow: hidden;
}
.comercial-projects-filter .btn-black {
  border: 1px solid #fff;
}
.why-impex-section-logo {
  width: 228px;
  max-width: 228px;
}
.mein-he .impax-slider-wrapper {
  right: auto;
  left: 0;
  transform: scaleX(-1);
}
.mein-he .btn.btn-arrow-right {
  padding: 24px 25px;
  padding-left: 60px;
}
.mein-he .btn.btn-arrow-right::after {
  transform: scaleX(-1);
  right: auto;
  left: 25px;
  top: calc(50% - 5px);
}
.mein-he .hero-filter .btn::after {
  top: calc(50% - 5px);
}
.mein-he .btn.btn-icon-left {
  padding-left: 25px;
  padding-right: 60px;
}
.mein-he .btn.btn-icon-left::before {
  left: auto;
  right: 25px;
}
.mein-he .full-screen-image-slider button {
  right: auto;
  left: 0;
  transform: scaleX(-1);
}
.mein-he .projects-section-nav-item.prev {
  transform: scaleX(-1);
}
.mein-he .projects-section-nav-item.next {
  transform: scale(1);
}
.mein-he .projects-section-list-item-info-title {
  left: auto;
  right: 24px;
}
.mein-he .area-section-list-item {
  padding-left: 0;
  padding-right: 30px;
}
.mein-he .area-section-list-item-btn {
  transform: scaleX(-1);
}
.mein-he .comercial-projects-section-list-item-title .btn.btn-arrow-right {
  padding: 0;
  right: auto;
  left: 0;
}
.mein-he .comercial-projects-section-list-item-title {
  padding-right: 0;
  padding-left: 90px;
}
.mein-he .why-impex-main-container-list-item-icon {
  left: auto;
  right: 24px;
}
.mein-he .testimonials-section-title-btn .btn.prev {
  transform: scaleX(1);
}
.mein-he .testimonials-section-title-btn .btn.next {
  transform: scaleX(-1);
}
.properties-section-list-item-img {
  height: 300px;
}
.properties-section-list-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.logo-slider {
  background-color: #000;
}
.language-selected,
.project-page header a,
.project-page header span {
  color: #000;
}
.single-post-cover {
    height: 450px;
    width:100%;
    overflow: hidden;
}
.single-post-cover img {
      width: 100%;
  height: 100%;
  object-fit: cover;      /* как background-size: cover */
  object-position: center;/* центрирование */
  display: block;
}
@media (max-width: 1440px) {
  h1 {
    font-size: 72px;
  }
  .hero-title {
    max-width: 566px;
  }
  .btn-long {
    min-width: 150px;
  }
}
@media (max-width: 1024px) {
  .burger-block {
    width: 29px;
    height: 24px;
    background-image: url("./assets/imgs/burger.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .mobile-header-logo {
    justify-content: center;
    gap: 24px;
    align-items: center;
  }
  .mobile-header-logo img {
    max-width: 97px;
  }
  .header-mobile {
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
  }
  .mobile-header-menu {
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    padding: 24px;
    border-radius: 24px;
  }
  .hero .container {
    justify-content: space-between;
    padding-bottom: 26px;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .header-mobile {
    display: flex;
  }
  .container.desktop {
    display: none;
  }
  .container {
    padding: 0 16px;
  }
  h1 {
    font-size: 52px;
    text-align: center;
  }
  .hero-title {
    max-width: 100%;
  }
  .hero-title p {
    text-align: center;
    margin-top: 16px;
    font-size: 16px;
  }
  .hero-btns {
    justify-content: center;
    margin-top: 16px;
  }
  .hero {
    overflow: visible;
    background-image: none;
  }
  .impax-slider-wrapper {
    overflow: hidden;
    bottom: 0;
  }
  .impax-slider-wrapper {
    --slide-w: 256px;
    --slide-h: 283px;
    --offset-main: 40px;
    --offset-extra: 170px;
  }
  .impax-slider-wrapper {
    width: 100%;
  }
  .hero-filter-block {
    flex-wrap: wrap;
    width: 100%;
  }
  .hero-area-filter {
    width: calc(50% - 2px);
  }
  .hero-commercial-filter {
    width: calc(50% - 2px);
  }
  .hero-region-filter {
    width: 100%;
  }
  .hero-search-filter,
  .hero-search-filter .btn {
    width: 100%;
  }
  .hero-dropdown-menu {
    max-height: 200px;
    overflow-y: scroll;
  }
  .impax-btns {
    display: none;
  }
  .impax-slider-wrapper {
    bottom: -45px;
  }
  .full-screen-image-slider,
  .full-screen-image-slider .container {
    height: 600px;
    min-height: 600px;
  }
  .full-screen-image-slider .container {
    padding-bottom: 24px;
  }
  .full-screen-image-slider button {
    bottom: 24px;
    right: 16px;
  }
  .projects-section-nav {
    display: none;
  }
  .projects-section-title-btn {
    display: none;
  }
  .projects-section-title {
    width: 100%;
  }
  .projects-section-list-block {
    flex-wrap: wrap;
    gap: 12px;
  }
  .projects-section-list-track {
    gap: 12px;
  }
  .projects-section-list-item {
    width: 285px !important;
    height: 400px !important;
    min-height: 400px !important;
    flex-shrink: 0 !important;
  }
  .projects-section-list-item:not(:last-child) {
    margin-right: 12px;
  }
  .projects-section-list-block {
    flex-wrap: nowrap !important;
    width: auto !important;
  }
  .projects-section-list-block::-webkit-scrollbar {
    display: none !important;
  }
  .projects-section-list-track {
    gap: 12px !important;
  }
  .projects-section-list-track {
    overflow-x: scroll !important;
    scrollbar-width: none !important;
  }
  .projects-section-list-track {
    gap: 12px !important;
  }
  .projects-section-list-track::-webkit-scrollbar {
    display: none !important;
  }
  .slider-clear-fix {
    display: none;
  }
  .projects-section-list-block {
    gap: 0;
    padding: 0;
  }
  .area-section-list-item {
    width: 100% !important;
    height: 400px !important;
    min-height: 400px !important;
    flex-shrink: 0 !important;
  }
  .area-section-list-first-block,
  .area-section-list-second-block {
    width: 100%;
    flex-direction: column;
  }
  .area-section-list {
    flex-direction: column;
  }
  .comercial-projects-section-list-item {
    min-height: 502px;
    height: 502px;
    width: 312px;
  }
  .properties-section-list {
    flex-direction: column;
  }
  .properties-section-list-item {
    width: 100%;
  }
  .faq-section .container {
    flex-direction: column;
  }
  .testimonials-section-list-item {
    width: 100%;
  }
  .numbers-section .container {
    flex-direction: column;
  }
  .numbers-section-right-list {
    flex-direction: column;
  }
  .why-impex-main-container-list {
    flex-direction: column;
  }
  .project-tag {
    font-size: 12px;
    font-weight: 500;
  }
  .projects-section-item-top-right-address {
    padding: 6px 12px;
    padding-left: 32px;
  }
  .projects-section-item-top-right-address::before {
    width: 16px;
    height: 16px;
    left: 12px;
  }
  .slide {
    padding: 16px;
  }
  .logo-slider {
    padding: 0 16px;
  }
  h1 {
    font-size: 48px;
  }
  .projects-section-item-bot-title h3 {
    font-size: 24px;
    line-height: 110%;
  }
  .properties-section-list-item-info-price span {
    font-size: 14px;
    font-weight: 500;
  }
  .full-screen-image-slider-item-info-title h2 {
    font-size: 26px;
  }
  .projects-section {
    padding: 42px 0;
  }
  .projects-section-title h2 {
    font-size: 32px;
    line-height: 110%;
  }
  .projects-section .container {
    gap: 38px;
  }
  .btn {
    padding: 17px 24px;
  }
  .projects-section-list-item-info-title h3 {
    font-size: 26px;
    line-height: 110%;
  }
  .projects-section-list-item-info-title a.btn-arrow-right {
    width: 56px;
    height: 56px;
    color: #fff;
    padding: 0;
    overflow: hidden;
  }
  .projects-section-list-item-info-title .btn.btn-arrow-right::after {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .btn-block {
    display: flex;
    gap: 12px;
  }
  .hero-btns .btn-arrow-right {
    padding: 16px;
  }
  .hero-btns .btn.btn-arrow-right::after {
    display: none;
  }
  .full-screen-image-slider button {
    width: 52px;
    height: 52px;
  }
  .area-section {
    padding: 42px 0;
  }
  .area-section-title h2 {
    font-size: 32px;
    line-height: 110%;
  }
  .area-section-list {
    margin-top: 28px;
  }
  .area-section-list-item {
    padding: 25px 24px;
  }
  .area-section-list-item-btn {
    bottom: 25px;
    left: auto;
    right: 24px;
  }
  .comercial-projects-section {
    padding-top: 42px;
  }
  .comercial-projects-section-title h2 {
    font-size: 32px;
  }
  .comercial-projects-section-title {
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .comercial-projects-section-list-item {
    padding: 32px;
  }
  .comercial-projects-section-list-item-title h3 {
    font-size: 26px;
  }
  .comercial-projects-section-list-item-title {
    padding-right: 0;
    position: initial;
  }
  .comercial-projects-section-list-item .btn.btn-arrow-right {
    right: 32px;
    top: auto;
    bottom: 32px;
  }
  .comercial-projects-section-list-item::before {
    z-index: -1;
  }
  .properties-section {
    padding: 42px 0;
  }
  .properties-section-title h2 {
    font-size: 32px;
    line-height: 110%;
  }
  .properties-section-list {
    margin-top: 24px;
  }
  .properties-section-list-item-info {
    margin-top: 12px;
  }
  .span-with-icon {
    font-size: 14px;
  }
  .properties-section-list-item-info-title h3 {
    font-size: 26px;
  }
  .properties-section-list-item-info-features-item {
    font-size: 14px;
  }
  .properties-section-list-item-info-price span {
    color: #000;
  }
  .properties-section-list-item-info-features-item {
    padding-bottom: 12px;
  }
  .impax-track .properties-section-list-item-info-price span {
    color: #fff;
  }
  .comercial-projects-section-title {
    padding: 0 16px;
  }
  .why-impex-section {
    padding: 42px 0;
  }
  .why-impex-section-logo {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .why-impex-section-logo img {
    max-width: 162px;
    margin: 0 auto;
  }
  .why-impex-section-logo h2 {
    margin-bottom: 42px;
    font-size: 32px;
  }
  .why-impex-section-logo h2 span {
    text-transform: uppercase;
    color: rgba(211, 173, 52, 1);
  }
  .why-impex-main-container-list-item {
    width: 100%;
    max-width: 100%;
  }
  .why-impex-main-container-text {
    display: none;
  }
  .numbers-section {
    padding: 42px 0;
  }
  .numbers-section-left-title h2 {
    font-size: 32px;
    text-align: center;
  }
  .numbers-section-left {
    width: 100%;
    max-width: 100%;
  }
  .numbers-section-left-txt p {
    font-size: 14px;
  }
  .numbers-section-right-list-item {
    width: 100%;
    max-width: 100%;
  }
  .numbers-section-right-list {
    gap: 32px;
  }
  .testimonials-section {
    padding: 42px 0;
  }
  .testimonials-section-title h2 {
    font-size: 32px;
  }
  .testimonials-section-list {
    margin-top: 16px;
  }
  .testimonials-section-list-item {
    flex-direction: column;
  }
  .testimonials-section-list-item-left {
    width: 100%;
    max-width: 100%;
  }
  .testimonials-section-list-item-author::before {
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 100%;
  }
  .testimonials-section-list-item {
    align-items: flex-start;
  }
  .testimonials-section-list-item {
    gap: 24px;
  }
  .faq-section {
    padding: 42px 0;
  }
  .faq-section-left-title {
    max-width: 100%;
    width: 100%;
  }
  .faq-section-left-title h2 {
    font-size: 32px;
  }
  .faq-section-left-title p {
    margin-top: 12px;
  }
  .faq-section .container {
    gap: 24px;
  }
  .faq-section-right-list-item-title h3 {
    font-size: 18px;
  }
  .faq-section-right-list-item-txt p {
    font-size: 14px;
  }
  .why-impex-main-container-person-img {
    left: 0;
    bottom: auto;
    top: -120px;
    height: 350px;
    width: 100px;
  }
  .why-impex-main-container-person-img2 {
    right: -10px;
    bottom: auto;
    top: -110px;
    height: 350px;
    width: 120px;
  }
  .why-impex-main-container-logo-img,
  .why-impex-main-container-logo-img2,
  .why-impex-main-container::before {
    display: none;
  }
  .form-section .container {
    flex-direction: column;
  }
  .form-section-left {
    width: 100%;
  }
  .form-section-right {
    width: 100%;
    max-width: 100%;
    height: 202px;
  }
  .form-section-left {
    padding: 16px;
  }
  .form-section-right {
    width: calc(100% - 32px);
    max-width: 100%;
    height: 202px;
    margin: 0 16px;
    margin-bottom: 16px;
    border-radius: 42px;
  }
  .form-section-left-form-item:last-child {
    margin-bottom: 0;
  }
  .form-section-left-title h2 {
    font-size: 32px;
  }
  .form-section-left-form-item.input-half {
    width: 100%;
    max-width: 100%;
  }
  footer .container {
    padding: 0 16px;
  }
  footer {
    padding: 42px 0;
  }
  footer .footer-top {
    flex-direction: column;
  }
  .footer-list {
    flex-wrap: wrap;
    gap: 0;
  }
  .footer-list-item {
    width: 50%;
    margin-bottom: 24px;
  }
  .footer-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .testimonials-section {
    padding-bottom: 130px;
    position: relative;
  }
  .testimonials-section-title-btn {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-bot {
    flex-direction: column;
    margin-top: 24px;
    gap: 12px;
  }
  .footer-list-item-list {
    margin-top: 12px;
  }
  .footer-top {
    gap: 24px;
  }
  .footer-list-item-title h3 {
    font-size: 18px;
  }
  .footer-list-item-list a {
    font-size: 16px;
  }
  .mobile-header-menu ul {
    display: flex;
    gap: 23px;
    flex-direction: column;
  }
  .header-mobile {
    position: relative;
    z-index: 1000;
  }
  .mobile-header-logo,
  .language {
    position: relative;
    z-index: 1000;
  }
  .mobile-header-menu {
    transition: all 0.3s;
    z-index: 100;
  }
  .burger-block.burger-close {
    background-image: url(./assets/imgs/burger.svg);
  }
  .burger-block.burger-open {
    background-image: url(./assets/imgs/close.svg);
  }
  .why-impex-section-logo {
    width: 128px;
    max-width: 128px;
  }
}

@media (max-width: 900px) {
  .single-post-wrapper {
    padding: 40px 18px 60px;
  }

  .single-post-header {
    padding: 24px 24px 0;
  }

  .single-post-content {
    padding: 0 24px 24px;
  }

  .single-post-title {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .single-post-wrapper {
    padding: 28px 16px 48px;
  }

  .single-post-header {
    padding: 18px 18px 0;
  }

  .single-post-content {
    padding: 0 18px 18px;
  }

  .single-post-title {
    font-size: 22px;
  }

  .single-post-tag {
    font-size: 11px;
  }
}
