@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;
}
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;
}
.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);
}
.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;
}
.amenities-section {
  padding: 100px 0;
  background: rgba(246, 246, 246, 1);
}
.amenities-section-title {
  justify-content: space-between;
  align-items: center;
}
.amenities-section-title h2 {
  font-size: 72px;
}
.amenities-section-title-btn {
  gap: 12px;
}
.amenities-section-title-btn .btn-white {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.amenities-section-list {
  margin-top: 42px;
  flex-wrap: wrap;
  gap: 12px;
}
.amenities-section-list-item {
  padding: 32px 41px;
  border-radius: 100px;
  background-color: #fff;
}
.amenities-section-list-item-title {
  margin-top: 4px;
}
.amenities-section-list-item-title h3 {
  font-size: 32px;
  line-height: 150%;
}
.amenities-section-list-item-img {
  max-width: 36px;
}
.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;
}
.hero-section-slider {
  position: relative;
}
.hero-section-slider-list {
  height: 404px;
  transition: all 0.5s;
}
.hero-section-slider-list-item {
  flex-shrink: 0;
  width: 50%;
  overflow: hidden;
}
.hero-section-slider-list-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.hero-section-slider-btns {
  position: absolute;
  bottom: 16px;
  right: 16px;
  gap: 12px;
}
.hero-section-slider-prev,
.hero-section-slider-next {
  width: 72px;
  height: 72px;
  background-image: url("./assets/imgs/button.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.hero-section-slider-prev {
  transform: scale(-1);
}
.property-info {
  padding: 42px 0 100px;
}
.property-info .container {
  justify-content: space-between;
  gap: 80px;
}
.property-info-left {
  width: 50%;
}
.property-info-right {
  width: 50%;
}
.property-info-address {
  position: relative;
  padding: 18px 16px;
  padding-left: 58px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 1);
}
.property-info-address::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: url("./assets/imgs/map-pin-black.svg") no-repeat center center;
  background-size: contain;
}
.property-info-address span {
  font-size: 18px;
}
h1 {
  margin-top: 32px;
  font-size: 60px;
  line-height: 103%;
}
.property-info-list {
  margin-top: 32px;
  gap: 24px;
}
.property-info-list-item-title {
  gap: 6px;
  align-items: center;
}
.property-info-list-item-title span {
  font-size: 26px;
  line-height: 150%;
}
.property-info-btns {
  margin-top: 60px;
}
.property-info-btns {
  gap: 12px;
}
.property-info-list-item-title img {
  max-width: 36px;
}
.property-info-right-list-item-icon img {
  max-width: 52px;
}
.property-info-right {
  padding: 32px;
  border-radius: 40px;
  background: rgba(248, 248, 248, 1);
}
.property-info-right-list {
  gap: 24px;
  flex-wrap: wrap;
}
.property-info-right-list-item {
  width: calc(50% - 12px);
}
.property-info-right-list-item:first-child {
  width: 100%;
}
.property-info-right-list-item-title span {
  font-size: 26px;
  line-height: 150%;
}
.property-info-right-list-item:first-child
  .property-info-right-list-item-title
  span {
  font-size: 48px;
  line-height: 100%;
}
.property-info-right-list-item-description span {
  font-size: 18px;
  line-height: 100%;
  opacity: 0.5;
}
.property-info-right-list-item:first-child
  .property-info-right-list-item-description
  span {
  font-size: 26px;
  line-height: 150%;
}
.btn-green {
  background-color: rgba(64, 164, 64, 1);
  color: #fff;
  border: 1px solid rgba(64, 164, 64, 1);
}
.btn-green.btn-icon-left::before {
  content: "";
  position: absolute;
  left: 25px;
  width: 24px;
  height: 24px;
  background: url("./assets/imgs/wa-white.svg") no-repeat center center;
  background-size: contain;
}
.property-info-right-about {
  justify-content: space-between;
  align-items: center;
  padding: 30px 32px;
  border-radius: 100px;
  background-color: #fff;
  margin-top: 24px;
  position: relative;
  padding-right: 60px;
}
.property-info-right-about-left-suptitle span {
  font-size: 18px;
  line-height: 100%;
  opacity: 0.5;
}
.property-info-right-about-left-title h3 {
  font-size: 26px;
  line-height: 150%;
}
.property-info-right-about-right img {
  max-width: 154px;
}
.property-info-right-about::before {
  content: "";
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("./assets/imgs/arrow-right-24.svg") no-repeat center center;
  background-size: contain;
}
.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;
}
.hero-section-slider-btns {
  z-index: 10;
}
.hero-section-slider-wrapper {
  overflow: hidden;
}
.disabled {
  opacity: 0.4;
  pointer-events: none;
}
.amenities-section-list-appartments,
.amenities-section-list-outside {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.amenities-section-title-btn .btn {
  cursor: pointer;
}
.map-section {
  display: none;
}
.desktop {
  display: block;
}
.container.desktop {
  display: flex;
}
.mobile {
  display: none;
}
.mein-he .properties-section-list-item-btns .btn-white img {
  transform: scaleX(-1);
}
.mein-he .hero-section-slider-prev {
  transform: scaleX(1);
}
.mein-he .hero-section-slider-next {
  transform: scaleX(-1);
}
.mein-he .property-info-address {
  padding-left: 16px;
  padding-right: 58px;
}
.mein-he .property-info-address::before {
  left: auto;
  right: 16px;
}
.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);
}
.property-info-right-about-right {
  display: none;
}
.property-info-right-about::before {
  display: none;
}
@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);
  }
  .hero-section {
    padding-top: 10px;
  }
  .hero-section-slider-list-item {
    width: 100%;
  }
  .property-info .container {
    flex-direction: column;
    gap: 24px;
  }
  .property-info-left {
    width: 100%;
  }
  .property-info-right {
    width: 100%;
  }
  .property-info-list-item-title span {
    font-size: 18px;
  }
  h1 {
    font-size: 36px;
    text-align: left;
  }
  .property-info-btns {
    margin-top: 24px;
  }
}
