@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/about-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;
  position: relative;
}
.hero-section .container {
  width: 100%;
  position: relative;
}
.project-logo-opacity {
  display: none;
}
.project-logo {
  display: none;
}
.project-hero-bot {
  max-width: 801px;
  margin-bottom: 70px;
}
.project-hero-bot span {
  font-size: 92px;
  line-height: 100%;
  color: #fff;
}
.project-hero-top {
  margin-top: 42px;
}
.project-hero-content-left-title {
  margin-top: 10px;
}
.project-hero-content-left-title h1 {
  font-size: 60px;
  color: #fff;
}
.sign-section .container {
  padding: 100px 42px;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.sign-section .container::before {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 211px;
  height: 445px;
  background-image: url("./assets/imgs/opacity-logo-about.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.sign-content {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sign-content-txt p {
  line-height: 150%;
  font-size: 26px;
  font-weight: 500;
}
.sign-img {
  max-width: 111px;
}
.sign-img img {
  max-width: 100%;
  width: 100%;
}
.sign-name-suptitle span {
  font-size: 18px;
  opacity: 0.5;
}
.sign-name-title h3 {
  font-size: 26px;
  font-weight: 500;
}
.about-numbers-section {
  padding: 42px 0;
  background-color: #000;
}
.about-numbers-list {
  gap: 12px;
}
.about-numbers-list-item {
  padding: 32px 41px;
  border-radius: 32px;
  background-color: #fff;
  width: calc(25% - 12px);
}
.about-numbers-list-item-img {
  max-width: 64px;
}
.about-numbers-list-item-img img {
  max-width: 100%;
  width: 100%;
}
.about-numbers-list-item-number span {
  line-height: 150%;
  font-size: 48px;
  font-weight: 500;
}
.about-numbers-list-item-number {
  margin: 4px 0;
}
.about-numbers-list-item-txt span {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.5;
}
.cards-section {
  padding: 100px 0;
  background-color: rgba(246, 246, 246, 1);
}
.cards-item-title {
  max-width: 854px;
}
.cards-item-title h2 {
  font-size: 60px;
}
.cards-item-list {
  margin-top: 32px;
  gap: 12px;
  align-items: flex-start;
}
.cards-item-list-item {
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  width: 25%;
  border-radius: 24px;
  background-color: #fff;
}
.cards-item-list-item-img {
  max-width: 96px;
}
.cards-item-list-item-img img {
  max-width: 100%;
  width: 100%;
}
.cards-item-list-item-title h3 {
  font-size: 26px;
  font-weight: 500;
}
.cards-item-list-item-txt p {
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  opacity: 0.5;
}
.team-section {
  padding: 100px 0;
  background-color: rgba(246, 246, 246, 1);
}
.team-item-title h2 {
  font-size: 60px;
}
.team-item-list {
  margin-top: 32px;
  gap: 12px;
}
.gold-txt {
  color: rgba(211, 173, 52, 1);
}
.team-item-list-item {
  width: 25%;
}
.team-item-list {
  gap: 32px;
}
.team-item-list-item-img {
  max-width: 100%;
}
.team-item-list-item-img img {
  max-width: 100%;
  width: 100%;
}
.team-item-list-item-title {
  margin-top: 21px;
}
.team-item-list-item-title span {
  font-size: 16px;
  opacity: 0.3;
  font-weight: 700;
}
.team-item-list-item-txt span {
  font-size: 26px;
  font-weight: 500;
  line-height: 150%;
}
.project-hero-content-left-way a:last-child {
  opacity: 0.3;
}
.desktop {
  display: block;
}
.container.desktop {
  display: flex;
}
.mobile {
  display: none;
}
.img-section {
  display: none;
}
.location-section-map {
  display: none;
}
.mein-he .sign-section .container {
  justify-content: flex-start;
}
.language-list-item a {
  color: #000 !important;
}
.mein-he .hero-section {
  background-image: url("./assets/imgs/about-bg-he.png");
}
@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: -10px;
  }
  .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;
  }
  .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);
  }
  .project-hero-content-left-title h1 {
    font-size: 32px;
  }
  .project-hero-bot span {
    font-size: 40px;
  }
  .hero-section {
    justify-content: flex-start;
  }
  .project-hero-top {
    margin-top: 24px;
  }
  .hero-section .container {
    padding: 0;
  }
  .hero-section .container .container {
    padding: 0 16px;
  }
  .project-hero-content {
    padding: 0 16px;
    margin-top: 24px;
  }
  .hero-section {
    background-image: url("./assets/imgs/about-bg-mobile.png") !important;
    background-position: center;
  }
  .sign-section .container::before {
    left: auto;
    bottom: auto;
    top: 0;
    opacity: 0.5;
    z-index: -1;
  }
  .sign-section .container {
    padding: 42px 16px;
    padding-top: 91px;
  }
  .sign-content-txt p {
    font-size: 18px;
    line-height: 110%;
  }
  .about-numbers-list {
    flex-direction: column;
  }
  .about-numbers-list-item {
    width: 100%;
    padding: 32px 24px;
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .about-numbers-list-item-number span {
    font-size: 40px;
  }
  .cards-item-title h2 {
    font-size: 32px;
  }
  .cards-section {
    padding: 42px 0;
  }
  .cards-item-list {
    flex-direction: column;
  }
  .cards-item-list-item {
    width: 100%;
  }
  .team-section {
    padding: 42px 0;
  }
  .team-item-title h2 {
    font-size: 32px;
  }
  .team-item-list {
    flex-wrap: wrap;
    gap: 12px;
  }
  .team-item-list-item {
    width: calc(50% - 12px);
  }
}
