@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;
}
.project-logo,
.project-logo-opacity {
  position: absolute;
}
.hero-section {
  min-height: 100vh;
  background-image: url("./assets/imgs/project-main-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.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);
}
.hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.6) 40%,
    black 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.6) 40%,
    black 100%
  );
}
.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-section .container {
  width: 100%;
  position: relative;
}
.project-logo {
  top: 110px;
  left: 42px;
  max-width: 251px;
}
.project-logo-opacity {
  max-width: 235px;
  top: 0;
  right: 40px;
}
.project-hero-content {
  padding-bottom: 100px;
  position: relative;
  z-index: 3;
}
.project-hero-content-left-way a {
  font-size: 16px;
  line-height: 100%;
  color: #fff;
}
.project-hero-content-left-way span {
  font-size: 16px;
  line-height: 100%;
  color: #fff;
}
.project-hero-content-left-way a:last-child {
  color: #fff;
  opacity: 0.3;
}
.project-hero-content-left-title {
  margin-top: 24px;
}
h1 {
  font-size: 60px;
  color: #fff;
}
.project-hero-content-left-description {
  margin-top: 24px;
}
.project-hero-content-left-description span {
  font-size: 40px;
  color: #fff;
  opacity: 0.5;
}
.project-hero-content {
  justify-content: space-between;
  align-items: flex-end;
}
.project-hero-content-right-video {
  overflow: hidden;
  border-radius: 20px;
  max-width: 233px;
  position: relative;
}
.project-hero-content-right-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.project-hero-content-right-video::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  bottom: 0;
  width: 56px;
  height: 56px;
  background: url("./assets/imgs/play-white.svg") no-repeat center center;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.project-hero-content-right-info {
  margin-top: 32px;
  text-align: right;
}
.project-hero-content-right-info-description span {
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}
.project-hero-content-right-info-price span {
  font-size: 40px;
  color: #fff;
}
.project-hero-content-right-btn {
  margin-top: 32px;
}
.project-hero-content-right-btn .btn-white::before {
  background: url("./assets/imgs/phone-black.svg") no-repeat center center;
}
.project-hero-content-right-btn .btn-white {
  border: 1px solid #fff;
}
.btn-transparent {
  border: 1px solid #fff;
  color: #fff;
}
.btn-transparent.btn.btn-arrow-right::after {
  background: url("./assets/imgs/arrow-bot-white.svg") no-repeat center center;
  transform: rotate(-90deg);
  top: calc(50% - 7px);
}
.about-section {
  padding: 100px 0;
}
.about-section .container {
  justify-content: space-between;
  gap: 80px;
}
.about-section-left-title h2 {
  font-size: 72px;
}
.about-section-left-description {
  margin-top: 42px;
}
.about-section-left-description p {
  font-size: 26px;
  line-height: 150%;
}
.about-section-left-txt {
  margin-top: 24px;
}
.about-section-left-txt p {
  font-size: 18px;
  line-height: 150%;
  opacity: 0.5;
}
.about-section-left-btn {
  margin-top: 42px;
}
.about-section-left {
  max-width: 526px;
}
.about-section-right {
  width: 100%;
}
.about-section-right-wrapper {
  background: rgba(246, 246, 246, 1);
  padding: 42px;
  border-radius: 40px;
}
.about-section-right-list-item {
  width: calc(50% - 21px);
}
.about-section-right-list-item:last-child {
  width: 100%;
}
.about-section-right-list {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 42px;
}
.about-section-right-list-item-icon {
  max-width: 35px;
}
.about-section-right-list-item-title {
  margin-top: 5px;
}
.about-section-right-list-item-title span {
  font-size: 48px;
  color: #000;
}
.about-section-right-list-item-txt {
  margin-top: 5px;
}
.about-section-right-list-item-txt span {
  font-size: 18px;
  color: #000;
  opacity: 0.5;
}
.facilities-section {
  padding: 100px 0;
  background: rgba(246, 246, 246, 1);
}
.facilities-section-left {
  max-width: 526px;
}
.facilities-section-left-title {
  margin-bottom: 12px;
}
.facilities-section-left-title h2 {
  font-size: 72px;
}
.facilities-section-left-imgs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.facilities-section-left-imgs-item {
  overflow: hidden;
  border-radius: 24px;
}
.facilities-section .container {
  gap: 80px;
  justify-content: space-between;
}
.facilities-section-right {
  width: 100%;
}
.facilities-section-right-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.facilities-section-right-title h3 {
  font-size: 40px;
}
.facilities-section-right-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
}
.facilities-section-right-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 1px;
  background-color: #000;
}

.facilities-section-right-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 16px;
  background-color: #000;
}
.facilities-section-right-list-item.active
  .facilities-section-right-btn::after {
  display: none;
}
.facilities-section-right-list-item-list-item {
  justify-content: space-between;
  margin-top: 12px;
}
.facilities-section-right-list-item-list-item-title span {
  font-size: 18px;
  opacity: 0.4;
}
.facilities-section-right-list-item-list-item-value span {
  font-size: 18px;
}
.img-section {
  min-height: 559px;
  background-image: url("./assets/imgs/project-img-bg1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.location-section {
  padding: 100px 0;
}
.location-section-title h2 {
  font-size: 72px;
}
.location-section-title {
  justify-content: space-between;
  align-items: center;
}
.location-section-map {
  margin-top: 38px;
}
.location-section-list {
  margin-top: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 24px;
}
.location-section-list-item {
  width: 50%;
  padding-left: 48px;
  position: relative;
}
.location-section-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background-image: url("./assets/imgs/address.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.location-section-list-item:last-child::before {
  background-image: url("./assets/imgs/map-pin-black.svg");
}
.location-section-list-item-name {
  margin-bottom: 12px;
}
.location-section-list-item-name span {
  font-size: 20px;
}
.location-section-list-item-title span {
  font-size: 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;
}
.gallery-section {
  padding: 81px 0;
}
.gallery-section-title h2 {
  font-size: 72px;
}
.gallery-section-title {
  justify-content: space-between;
  align-items: center;
  max-width: 1620px;
  padding: 0 42px;
  margin: 0 auto;
}
.gallery-section-title-btn {
  gap: 12px;
}
.gallery-section-title-btn .btn-white {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.gallery-section-main-img {
  margin-top: 36px;
}
.gallery-section .container {
  padding: 0;
  max-width: 100%;
}
.gallery-section-main-img {
  position: relative;
  min-height: 786px;
  background-image: url("./assets/imgs/gallery1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gallery-section-main-img-btns {
  position: absolute;
  right: 42px;
  bottom: 56px;
  display: flex;
  gap: 12px;
}
.gallery-section-main-img-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  cursor: pointer;
  background-image: url("./assets/imgs/button.svg");
}
.gallery-section-main-img-btn.prev {
  transform: rotate(180deg);
}
.gallery-section-list {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
}
.gallery-section-list-item {
  flex-shrink: 0;
  width: 260px;
  height: 162px;
  overflow: hidden;
  opacity: 0.2;
}
.gallery-section-list-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery-section-list-item.active {
  opacity: 1;
}
.floorplan-section {
  padding: 81px 0;
  background-color: #000;
}
.floorplan-section .container {
  gap: 80px;
  justify-content: space-between;
}
.floorplan-section-left {
  max-width: 510px;
}
.floorplan-section-right {
  max-width: 100%;
}
.floorplan-section-left-title h2 {
  font-size: 72px;
  color: #fff;
}
.floorplan-section-left-btns {
  margin-top: 42px;
  gap: 12px;
}
.floorplan-section-left-btns .btn-black {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.floorplan-section-right-list {
  margin-top: 40px;
}
.floorplan-section-right-list-item {
  padding-left: 57px;
  position: relative;
}
.floorplan-section-right-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  background-image: url("./assets/imgs/table-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.floorplan-section-right-list-item:nth-child(2)::before {
  background-image: url("./assets/imgs/shower-white.svg");
}
.floorplan-section-right-list-item:nth-child(3)::before {
  background-image: url("./assets/imgs/size-white.svg");
}
.floorplan-section-right-list-item-number span {
  font-size: 32px;
  line-height: 150%;
  color: #fff;
}
.floorplan-section-right-list-item-title h3 {
  font-size: 20px;
  opacity: 0.4;
  color: #fff;
}
.floorplan-section-right-list {
  justify-content: space-between;
}
.paymentplan-section {
  padding: 100px 0;
  background: rgba(246, 246, 246, 1);
}
.paymentplan-section .container {
  justify-content: space-between;
}
.paymentplan-section-left {
  max-width: 526px;
}
.paymentplan-section-right {
  max-width: 100%;
}
.paymentplan-section-left-title h2 {
  font-size: 72px;
  color: #000;
}
.paymentplan-section-right {
  width: 100%;
  max-width: 930px;
}
.paymentplan-section-left-btns {
  margin-top: 42px;
  gap: 12px;
}
.paymentplan-section-left-btns .btn-white {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.paymentplan-section-right-first {
  padding: 32px;
  border-radius: 40px;
  background: #fff;
}
.paymentplan-section-right-first-title h3 {
  font-size: 28px;
}
.paymentplan-section-right-first-title {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.paymentplan-section-right-first-list-item {
  justify-content: space-between;
  margin-top: 12px;
}
.paymentplan-section-right-first-list-item-title span {
  font-size: 18px;
  line-height: 150%;
}
.paymentplan-section-right-first-list-item.inner {
  padding-left: 42px;
}
.inner .paymentplan-section-right-first-list-item-title span {
  opacity: 0.5;
}
.paymentplan-section-right-second {
  margin-top: 12px;
  padding: 32px;
  border-radius: 40px;
  background: #fff;
}
.paymentplan-section-right-second-title h3 {
  font-size: 28px;
}
.paymentplan-section-right-second-title {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.paymentplan-section-right-second-list {
  margin-top: 40px;
}
.paymentplan-section-right-second-list-item {
  justify-content: space-between;
  margin-top: 12px;
}
.paymentplan-section-right-second-list-item-title span {
  font-size: 18px;
  line-height: 150%;
}
.paymentplan-section-right-second-list-item-date span {
  font-size: 18px;
  line-height: 150%;
  opacity: 0.5;
}
.paymentplan-section-right-second-list-item-number span {
  font-size: 18px;
  line-height: 150%;
  color: #000;
}
.payment-plan-section-btn {
  margin-top: 12px;
}
.why-section {
  padding: 124px 0;
  background-image: url("./assets/imgs/project-bg-last.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.why-section .container {
  padding: 137px 42px;
  background: linear-gradient(90deg, #b08f28 0%, #7c6d40 100%);
  border-radius: 42px;
  position: relative;
  z-index: 3;
  box-shadow: 0px 73px 38.1px -41px rgba(126, 110, 61, 0.39);
}
.why-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
}
.why-section-title h2 {
  font-size: 60px;
  color: #fff;
}
.why-section-txt {
  margin-top: 24px;
  max-width: 666px;
}
.why-section-txt p {
  font-size: 26px;
  line-height: 150%;
  color: #fff;
}
.why-section-btn {
  margin-top: 42px;
}
.why-section .container::before {
  content: "";
  position: absolute;
  right: 42px;
  bottom: 0;
  width: 743px;
  height: 637px;
  background-image: url("./assets/imgs/project-bg-last2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}
.why-section .container::after {
  content: "";
  position: absolute;
  left: 70px;
  bottom: 26px;
  width: 100%;
  height: 100%;
  background-image: url("./assets/imgs/why-gray-logo.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.why-section-btn {
  position: relative;
  z-index: 3;
}
.no-select {
  user-select: none !important;
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
}

/* курсор для зоны миниатюр */
.gallery-section-list {
  cursor: grab;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.gallery-section-list.dragging {
  cursor: grabbing;
}

/* стиль для отключённой кнопки (если у тебя другой класс — подправь) */
.gallery-section-main-img-btn.disabled {
  opacity: 0.35;
  pointer-events: none;
}
.gallery-section-main-img {
  height: 786px;
  overflow: hidden;
  background: none;
}
.gallery-section-main-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.facilities-section-right-list-item .facilities-section-right-list-item-list {
  display: none;
}
.facilities-section-right-list-item.active
  .facilities-section-right-list-item-list {
  display: block;
}
.desktop {
  display: block;
}
.container.desktop {
  display: flex;
}
.mobile {
  display: none;
}
.img-section {
  display: none;
}
.location-section-map {
  display: none;
}
.img2-section {
  display: none;
}
.floorplan-section-right-item,
.paymentplan-section-right-second,
.paymentplan-section-right-first {
  display: none;
}
.floorplan-section-right-item.active,
.paymentplan-section-right-first.active,
.paymentplan-section-right-second.active {
  display: block;
}
.paymentplan-section-right-second-list-item-title.end span {
  opacity: 0.5;
}

.paymentplan-section-right-second-list-item-title {
  width: 300px;
  max-width: 300px;
}
.btn {
  cursor: pointer;
}
.mein-he .location-section-list-item {
  padding-left: 0;
  padding-right: 48px;
}
.mein-he .location-section-list-item::before {
  left: auto;
  right: 0;
}
.mein-he .why-section .container::before {
  right: auto;
  left: 0;
}
.language-list-item a {
  color: #000 !important;
}
.paymentplan-section-right-second-list-item-date {
  width: 300px;
  text-align: left;
}
.paymentplan-section-right-second-list-item-number {
  width: 160px;
  text-align: left;
}
.mein-he .paymentplan-section-right-second-list-item-number, .mein-he .paymentplan-section-right-second-list-item-date {
    text-align: right;
}
@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;
  }
  .slider-clear-fix {
    display: none;
  }
  .why-impex-main-container-list {
    flex-direction: column;
  }
  .project-tag {
    font-size: 12px;
    font-weight: 500;
  }
  h1 {
    font-size: 48px;
    line-height: 100%;
  }
  .btn {
    padding: 17px 24px;
  }
  .btn-block {
    display: flex;
    gap: 12px;
  }
  .span-with-icon {
    font-size: 14px;
  }
  .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;
  }
  .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;
  }
  .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-white.svg");
  }
  .burger-block.burger-open {
    background-image: url("./assets/imgs/close.svg");
  }
  .project-hero-content-right,
  .project-hero-content-left-way {
    display: none;
  }
  .project-logo {
    max-width: 174px;
    top: 104px;
    left: 50%;
    transform: translateX(-50%);
  }
  .header-mobile-project {
    border-radius: 0;
    width: 100%;
  }
  .project-hero-content-left-description span {
    font-size: 26px;
  }
  .project-hero-content-left-description {
    margin-top: 12px;
  }
  .project-hero-content {
    padding-bottom: 40px;
  }
  .about-section {
    padding: 40px 0;
  }
  .about-section .container {
    gap: 24px;
    flex-direction: column;
  }
  .about-section-left-title h2 {
    font-size: 32px;
  }
  .about-section-left-description p {
    font-size: 18px;
    line-height: 120%;
  }
  .btn-icon-left {
    border-radius: 16px;
    padding: 17px 16px;
    padding-left: 52px;
  }
  .about-section-left-btn {
    margin-top: 24px;
  }
  .about-section-right-list-item:last-child {
    width: 100%;
    order: -1;
  }
  .about-section-right-wrapper {
    padding: 16px;
  }
  .about-section-right-list-item-title span {
    font-size: 26px;
  }
  .about-section-right-list-item-txt span {
    font-size: 16px;
  }
  .about-section-right-list {
    gap: 24px;
  }
  .facilities-section {
    padding: 40px 0;
  }
  .facilities-section-left-title h2 {
    font-size: 32px;
  }
  .facilities-section .container {
    flex-direction: column;
    gap: 24px;
  }
  .facilities-section-left-imgs {
    flex-direction: row;
  }
  .facilities-section-right-title h3 {
    font-size: 26px;
  }
  .why-section .container::after {
    display: none;
  }
  .header-mobile-project {
    padding-top: 104px;
  }
  .mobile-header-logo:has(.burger-open) ~ .language .language-selected {
    border-color: #000;
    color: #000;
  }
  .mobile-header-logo:has(.burger-open) ~ .language .language-selected::after {
    background-image: url("./assets/imgs/arrow-bot-black.svg");
  }
  .about-section-left {
    max-width: 100%;
  }
  .facilities-section-left-imgs {
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
  }
  .facilities-section-left-imgs-item {
    min-width: 276px;
    width: 276px;
    flex-shrink: 0;
  }
  .facilities-section-left {
    max-width: 100%;
  }
  .location-section {
    display: none;
  }
  .amenities-section {
    padding: 40px 0;
  }
  .amenities-section-title h2 {
    font-size: 32px;
  }
  .amenities-section-title {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .amenities-section-list-item {
    padding: 24px 16px;
  }
  .amenities-section-list-item-img {
    max-width: 24px;
  }
  .amenities-section-list-item-title h3 {
    font-size: 16px;
    line-height: 110%;
  }
  .gallery-section-main-img {
    height: 360px;
    min-height: 360px;
  }
  .gallery-section-main-img-btn {
    width: 52px;
    height: 52px;
  }
  .gallery-section-main-img-btns {
    bottom: 24px;
    right: 50%;
    transform: translateX(50%);
  }
  .gallery-section-main-img-btn {
    background-size: cover;
  }
  .floorplan-section {
    padding: 40px 0;
  }
  .floorplan-section-left-title h2 {
    font-size: 32px;
  }
  .floorplan-section .container {
    gap: 40px;
    flex-direction: column;
  }
  .floorplan-section-left-btns {
    margin-top: 24px;
  }
  .floorplan-section-left {
    max-width: 100%;
  }
  .floorplan-section-left-btns {
    display: flex;
    gap: 12px;
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
  }
  .floorplan-section-left-btns .btn {
    flex-shrink: 0;
  }
  .floorplan-section-right-list-item-number span {
    font-size: 26px;
  }
  .floorplan-section-right-list-item-title h3 {
    font-size: 16px;
  }
  .floorplan-section-right-list-item {
    padding-left: 0;
    padding-top: 28px;
  }
  .floorplan-section-right-list-item::before {
    width: 24px;
    height: 24px;
  }
  .paymentplan-section {
    padding: 40px 0;
  }
  .paymentplan-section .container {
    flex-direction: column;
    gap: 24px;
  }
  .paymentplan-section-left-title h2 {
    font-size: 32px;
  }
  .paymentplan-section-left-btns {
    margin-top: 24px;
    gap: 12px;
    display: flex;
  }
  .paymentplan-section-left-btns .btn {
    width: 50%;
    text-align: center;
  }
  .paymentplan-section-left {
    max-width: 100%;
  }
  .paymentplan-section-right-first {
    padding: 24px 16px;
  }
  .paymentplan-section-right-first-title h3,
  .paymentplan-section-right-second-title h3 {
    font-size: 18px;
  }
  .paymentplan-section-right-first-list-item-title span,
  .paymentplan-section-right-second-list-item-title span {
    font-size: 14px;
  }
  .why-section {
    padding: 42px 16px;
  }
  .why-section .container::before {
    width: 100%;
    height: 300px;
    background-size: contain;
    right: 0;
    bottom: 0;
  }
  .why-section .container {
    padding: 24px 16px;
    padding-bottom: 328px;
    overflow: hidden;
  }
  .btn.btn-icon-left::before {
    left: 16px;
  }
  .btn.btn-icon-left {
    padding-left: 50px;
  }
  .why-section-btn {
    text-align: center;
  }
  .why-section-title h2 {
    font-size: 32px;
  }
  .why-section-txt p {
    font-size: 16px;
  }
  .gallery-section {
    padding: 40px 0;
  }
  .gallery-section-title h2 {
    font-size: 32px;
  }
  .gallery-section-title {
    flex-direction: column;
    gap: 12px;
    padding: 0 16px;
    align-items: flex-start;
  }
  .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);
  }
}
