/**************************************************/
/**         GENERAL RESET & BASE STYLES          **/
/**************************************************/

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --black: #000;
  --light-black: #1e1e1e;
  --gray: #aaa;
  --white: #fff;
  --bg-color: #edeee6;
  --hero-btn: #efede0;
  --dark-blue: #29333c;
  --Grad: linear-gradient(104deg, #29333c 20.18%, #6f8aa2 100%);
}
* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--black);
}

*:focus {
  outline: none;
}

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  background: var(--bg-color);
}

main {
  flex: auto;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

b {
  font-weight: 500;
}

img {
  width: 100%;
  height: auto;
}

input,
textarea,
select {
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box;
  resize: none;

  border: 1px solid transparent;
  color: var(--black) c49;
  background-color: var(--white);
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--black) c49;
  font-size: 16px;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  color: #b9b9b9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--white);
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px transparent;
}

.hover {
  transition: opacity 0.4s;
}

.hover:hover {
  opacity: 0.7;
}

.container {
  display: block;
  position: relative;
  width: 1760px;
  padding: 0;
  margin: 0 auto;
  height: 100%;
}
/**************************************************/
/**                  PRELOADER                   **/
/**************************************************/

.preloader {
  z-index: 200;
  position: fixed;
  width: 100%;
  height: 100vh;
}

.preloader__inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.preloader-overlay1 {
  position: absolute;
  background-color: var(--dark-blue);
  width: 200%;
  height: 100%;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  left: -50%;
  border-radius: 0 0;
}
.preloader__svg {
  width: 300px;
  height: 300px;
}

/**************************************************/
/**                 MAIN STYLES                  **/
/**************************************************/
.flex {
  display: flex;
}
.margin-top {
  margin-top: 160px;
}
.hover-word-js {
  position: relative;
  overflow: hidden;
  display: block;
  width: max-content;
}
.hover-word-js p {
  position: relative;
  transition: 0.3s;
}
.hover-word-js:hover p:nth-child(1) {
  transform: translateY(-100%);
}
.hover-word-js:hover p:nth-child(2) {
  transform: translateY(0);
}
.hover-word-js p:nth-child(2) {
  position: absolute;
  top: 0;
  transform: translateY(100%);
}

.last-bg-img {
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  z-index: -1;
}
.top-bg {
  /* background-image: url(../images/first-bg.webp); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative;
  z-index: 1;
}
.bg-2 {
  background-image: url(../images/second-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  position: relative;
}
.menu {
  display: none;
}
.hero {
  padding-top: 90px;
  height: 100vh;
}
.hero-title {
  display: none;
  color: var(--white);
  font-family: Inter;
  font-size: 80px;
  font-weight: 700;
}
.hero-descr {
  width: 573px;
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  margin-top: 25px;
}
.btn-wrap {
  margin-top: 50px;
  gap: 40px;
}
.hero .btn:nth-child(2) .btn-long,
.btn-long.btn-dark {
  background: var(--dark-blue);
  color: var(--white);
}
/* .btn-long::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  left: 0;
  opacity: 0;
  background: var(--dark-blue);
  border-radius: inherit;
  z-index: -1; 
  transition: all 0.5s ease;
}

.btn:hover .btn-long::before {
  height: 100%;
  opacity: 1;
}
.btn:hover .btn-long {
  color: var(--white);
} */

.btn {
  /* width: 252px; */
  width: 290px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
.btn-long {
  cursor: pointer;
  /* width: 228px; */
  width: 100%;
  height: 54px;
  border-radius: 500px;
  background: var(--hero-btn);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-blue);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  transition: 0.2s;
  position: relative;
  z-index: 0;
  gap: 9px;
}
.btn:hover {
  opacity: 0.8;
}
.btn-animation {
  position: absolute;
  /* width: 209px; */
  width: 270px;
  height: 65px;
  border-radius: 50px;
  border: 1px solid rgba(239, 237, 224, 0.5);
  transition: 0.5s;
  animation: pulse 2s infinite ease-out;
  will-change: width, height, opacity;
}

.btn-animation:nth-child(2) {
  animation-delay: 1s;
}

@keyframes pulse {
  0% {
    /* width: 228px; */
    width: 100%;
    height: 54px;
    opacity: 0;
  }
  10% {
    width: 102%;
    height: 57px;
    opacity: 0.2;
  }
  25% {
    width: 104%;
    height: 63px;
    opacity: 0.5;
  }
  50% {
    width: 106%;
    height: 70px;
    opacity: 0.8;
  }
  75% {
    width: 108%;
    height: 74px;
    opacity: 0.4;
  }
  90% {
    width: 110%;
    height: 79px;
    opacity: 0.1;
  }
  100% {
    width: 112%;
    height: 79px;
    opacity: 0;
  }
}

.social-fixes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  right: 10px;
  top: 50%;
  z-index: 5;
}
.social-fixes img {
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.about_title.title {
  width: 60%;
  color: var(--white);
  line-height: 90px;
}
.about_descr {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  width: 55%;
  margin-top: 40px;
}
.about_text {
  margin-top: 20px;
  color: var(--white);
  font-size: 18px;
  line-height: 25px;
  width: 60%;
}
.about-item {
  margin-top: 200px;
  padding-bottom: 280px;
}
.about-wrap {
  gap: 20px;
  justify-content: space-between;
}
.about-item_box {
  padding: 30px 40px 30px 30px;
  height: max-content;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.about-item_box img {
  width: 80px;
  height: 80px;
}
.box_text-title {
  margin-top: 35px;
  color: var(--white);
  font-family: Inter;
  font-size: 36px;
  font-weight: 600;
}
.box_text-descr {
  margin-top: 10px;
  color: var(--white);
  font-family: Montserrat;
  font-size: 18px;
}
.about-item_box:nth-child(1) {
  margin-top: 305px;
}
.about-item_box:nth-child(2) {
  margin-top: 145px;
}
.about-item_box:nth-child(4) {
  margin-top: 320px;
}
.title {
  color: var(--black);
  font-family: Inter;
  font-size: 100px;
  font-weight: 600;
}
.location_top,
.investment_top {
  align-items: center;
  gap: 40px;
}
.location_subtitle,
.investment_subtitle,
.investment_subtitle span,
.location_subtitle span {
  color: var(--light-black);
  font-size: 18px;
  line-height: 23px;
}
.location_subtitle span,
.investment_subtitle span {
  font-weight: 700;
}
.location_bottom_left,
.location_bottom_right {
  flex: 1;
}
.location_bottom_left {
  max-width: 602px;
}
.location_bottom_left_title {
  font-family: Inter;
  font-size: 64px;
  font-weight: 600;
}
.location_bottom_left ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 70px;
}
.location_bottom-li-top {
  align-items: center;
  gap: 20px;
}
.location_bottom-li-top {
  padding-bottom: 15px;
}
.location_bottom-li:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, #999 0%, var(--bg-color) 100%);
}
.location_bottom-li-top img {
  width: 50px;
  height: 50px;
}
.location_bottom-li-top p {
  font-family: Montserrat;
  font-size: 18px;
}
.location_bottom {
  margin-top: 50px;
  justify-content: space-between;
  align-items: center;
}
.location_bottom_right {
  max-width: 50%;
}

.guide_btn-circle {
  flex-shrink: 0;
  cursor: pointer;
  width: 170px;
  height: 170px;
  border-radius: 500px;
  background: var(--dark-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  transition: 0.5s;
}
.guide_btn:hover .guide_btn-circle {
  scale: 1.2;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(146, 146, 146, 0.1);
  color: var(--black);
}
.mk-project .guide_btn:hover .guide_btn-circle {
  color: var(--white);
}
.guide_btn:hover .guide_btn-animation {
  min-width: 190px;
  min-height: 190px;
}
.guide-btn_wrap {
  position: absolute;
  right: 320px;
  top: 40%;
}
.guide_btn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
}
.guide_btn-animation {
  position: absolute;
  min-height: 170px;
  min-width: 170px;
  border-radius: 500px;
  background: none;
  border: 1px solid rgba(41, 51, 60, 0.2);
  transition: 0.5s;
  animation: pulse2 2.4s infinite ease-out;
}

.guide_btn-animation:nth-child(2) {
  animation-delay: 0.8s;
}
.guide_btn-animation:nth-child(3) {
  animation-delay: 1.6s;
}
.guide_btn-animation:nth-child(4) {
  animation-delay: 2.4s;
}

@keyframes pulse2 {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }
  10% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }

  80% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.guide-img {
  max-width: 425px;
}
.guide_bottom {
  justify-content: center;
  position: relative;
  margin-top: 200px;
}
.guide-title {
  position: sticky;
  top: 160px;
  color: var(--black);
  text-align: center;
  font-family: Inter;
  font-size: 96px;
  font-weight: 600;
  line-height: 92px;
}
.gallery-top,
.gallery-tab {
  gap: 20px;
  align-items: center;
}
.gallery-tab {
  margin-top: 15px;
}
.gallary-btn {
  cursor: pointer;
  padding: 16px 95px;
  background: none;
  color: var(--dark-blue);
  font-size: 18px;
  font-weight: 600;
  border: 1px solid var(--accent_1, var(--dark-blue));
  border-radius: 50px;
  transition: 0.3s;
}
.gallery_wrap-slide .swiper-slide img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
.slide-gallery_item,
.stages_swiper-slide {
  cursor: pointer;
}
.gallary-btn.active {
  color: var(--white);
  background-color: var(--dark-blue);
}
.gallery-tab_content {
  position: relative;
  margin-top: 80px;
  padding-top: 1px;
}
.gallery_wrap-slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  opacity: 0;
  z-index: -1;
  transition: 0.3s ease-out;
}
.gallery_wrap-slide.active {
  position: relative;
  opacity: 1;
  z-index: 1;
}
.swiper {
  z-index: 0;
}
.navigation_btn-img {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  padding: 0 80px;
  height: auto;
}
.next-img {
  cursor: pointer;
  width: 55px;
  height: 55px;
}
.plan_center-item-r,
.plan_center-el_title:nth-last-child(1) {
  min-width: 110px;
}
.plan_center-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.plan_center-item ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--white);
  padding: 40px;
}
.plan_center-item ul li {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.plan_center-item ul li:nth-last-child(1) {
  margin-top: 20px;
}
.plan_center-item ul li:nth-last-child(1) p {
  font-weight: 500;
}
.plan_center-item ul li:nth-last-child(1) .plan_center-item-r {
  font-weight: 600;
}
.plan .container {
  border-top: 1px solid #999;
  padding-top: 70px;
}
.plan_center-item-l img {
  width: 30px;
  height: 30px;
}
.plan_row .plan_center-el_title {
  display: flex;
  justify-content: space-between;
  color: #949494;
  font-size: 16px;
  font-weight: 500;
}
.plan_row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.plan_row p,
.plan_center-item-r {
  color: var(--black);
  font-size: 24px;
  font-weight: 500;
}
.plan_center-item-l {
  display: flex;
  gap: 10px;
  align-items: center;
}
.plan_center-item-l p {
  font-weight: 400;
}
.plan_right {
  max-width: 670px;
}
.plan .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.investment_bottom {
  margin-top: 70px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.investment__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 66px 0;
  background: var(--Grad);
  flex: 1;
}
.investment__number {
  display: flex;
  gap: 5px;
}
.investment__number span,
.investment__number p {
  color: var(--white);
  font-family: Inter;
  font-size: 64px;
  font-weight: 700;
}
.investment__subtext {
  width: 60%;
  color: var(--white);
  text-align: center;
  font-size: 24px;
  font-weight: 400;
}
.investment__line {
  width: 20%;
  height: 5px;
  background: var(--white);
}
.turnkey .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.turnkey-r,
.turnkey-l {
  flex: 1;
}
.turnkey_title {
  color: var(--light-black);
  font-family: Inter;
  font-size: 64px;
  font-weight: 600;
}
.turnkey_subtitle {
  margin-top: 20px;
  color: var(--light-black);
  font-size: 18px;
  font-weight: 400;
}
.turnkey-r {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}
.turnkey-r_item {
  width: 48%;
  position: relative;
}
.turnkey-r_absolute img {
  width: 70px;
  height: 70px;
}
.turnkey-r_bg {
  width: 100%;
}
.turnkey-r_bg img {
  width: 100%;
  height: auto;
}
.turnkey-r_absolute {
  position: absolute;
  top: 0;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.turnkey-r_text {
  color: var(--light-black);
  font-size: 24px;
  font-weight: 600;
}
.turnkey-r .turnkey-r_item:nth-child(3) .turnkey-r_text {
  width: 226px;
}
.turnkey-r .turnkey-r_item:nth-child(4) .turnkey-r_text {
  width: 315px;
}

.header {
  position: absolute;
  z-index: 3;
  width: 100%;
  top: 0;
}
.heade-menu {
  padding-top: 20px;
}
.heade-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
header .logo {
  width: 160px;
}
.heade-menu ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.heade-menu * {
  color: #eee;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}
.heade-menu .header-navigation {
  /* padding: 8px 22px;
	border-radius: 64px;
	border: 1px solid #eee;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(16px);
	display: flex;
	align-items: center; */
}
.heade-menu .header-navigation .translate {
  font-weight: 500;
}

.header-navigation:hover .svg {
  transition: all 0.3s;
  pointer-events: none;
}
.header-navigation:hover .svg {
  transform: rotate(180deg) translateY(-13px);
}
/* ///////////////////////////////////////////////////////// */

.custom-left-container {
  padding-left: calc(50vw - 880px);
}
.custom-right-container {
  padding-right: calc(50vw - 880px);
}

/* clients and demand */
.clients-self {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.clients-self__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1170px;
  margin: 0px auto;
}
.clients-text {
  color: var(--light-black);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: -0.342px;
}
.clients-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.clients-card {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  justify-content: space-between;
}
.clients-card__title {
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 36px */
  letter-spacing: -0.456px;
}
.clients-card__img {
  aspect-ratio: 425 / 292;
}
.clients-card__img img {
  width: 100%;
  max-width: 432px;
  /* height: 100%; */
  object-fit: cover;
}
.demand {
  margin-top: 50px;
}
.demand__inner {
  display: flex;
  align-items: stretch;
  gap: 70px;
  justify-content: space-between;
}
.demand__left {
  display: flex;
  flex-direction: column;
}
.demand__title {
  color: var(--light-black);
  font-family: Inter;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 96px */
  letter-spacing: -1.408px;
}
.demand__text {
  color: var(--light-black);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.528px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.demand__lines {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.demand__line {
  display: flex;
  align-items: center;
  gap: 10px;
}
.demand__line span {
  display: block;
  width: 24px;
  height: 6px;
}
.demand__line p {
  color: var(--black);
  font-size: 18px;
  line-height: 120%; /* 21.6px */
  letter-spacing: -0.342px;
}
.demand__line1 {
  background-color: #1e1e1e;
}
.demand__line2 {
  background-color: #29333c;
}
.clients {
  background-image: url("../images/clients-demand-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-bottom: 200px;
}
/* clients and demand */

/* consult */
.consult {
  background: linear-gradient(96deg, #29333c 25.82%, #6f8aa2 100%);
  position: relative;
}
.consult-bg {
  display: none;
}
.consult__inner {
  padding-top: 80px;
  padding-bottom: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.consult__content {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.consult__btns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5%;
  margin-top: 90px;
}
.consult__btns .btn-long svg {
  width: 38px;
  height: 30px;
  /* margin-left: 5px; */
}
.consult__title {
  color: var(--white);
  font-family: Inter;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 64px */
  letter-spacing: -1.408px;
}
.consult__text {
  margin-top: 45px;
  color: var(--white);
  text-align: justify;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.528px;
}
.consult__img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0%;
}
/* consult */

/* stages */
.stages {
  padding-top: 30px;
}
.stages__slide {
  color: #aaa;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.528px;
  padding: 20px 30px;
  border-radius: 34px;
  transition: all 0.5s;
  overflow: hidden;
  border: 1px solid #aaa;
  width: fit-content;
  line-height: 0.9;
  cursor: pointer;
}
.stages__slide:hover {
  color: var(--black);
  border: 1px solid var(--black);
}
.stages__slide.active {
  background-color: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}
.stagesNavSlider .swiper-slide {
  width: fit-content;
}
.stages__nav {
  margin-top: 60px;
}
.stages__pagination {
  position: relative;
  height: 5px;
  margin-top: 20px;
}
.stages__pagination
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background: var(--black);
}
.stages-tabs__wrap {
  margin-top: 50px;
  position: relative;
}

.stages-tabs__tab {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: -10;
  opacity: 0;
  transition: all 0.5s;
  width: 100%;
}
.stages-tabs__tab.active {
  position: relative;
  opacity: 1;
  z-index: 1;
}
.stagesTabSlider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 57px;
  border: 1.5px solid #fff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  width: 55px;
  height: 55px;
  display: grid;
  place-content: center;
  z-index: 1;
  cursor: pointer;
  transition: all 0.4s;
}
.stagesTabSlider-btn:hover {
  opacity: 0.8;
}
.stagesTabSlider-btn svg {
  width: 25px;
  height: 25px;
}
.stagesTabSlider-next {
  right: 30px;
}
.stagesTabSlider-prev {
  left: 30px;
}
.stages-tabs__tab-top h3 {
  color: var(--light-black);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 46.8px */
  letter-spacing: -0.792px;
  margin-bottom: 5px;
}
.stages-tabs__tab-top p {
  color: var(--light-black);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.528px;
}
.stagesTabSlider .swiper-slide img {
  object-position: center;
  object-fit: cover;
  aspect-ratio: 288/251;
}
/* stages */

/* available */
.available__mobile-title {
  display: none;
}
.available-content {
  position: relative;
}
.available-nums {
  position: absolute;
  inset: 0;
}
.available-nums svg {
  width: 100%;
  height: 100%;
}
.villa {
  color: #f30e0e;
  cursor: pointer;
  transition: all 0.4s;
}
.villa--availavle {
  color: #38c00e;
}
circle {
  color: unset;
}
.available__title {
  color: var(--white);
  font-family: Inter;
  font-size: 96px;
  font-style: normal;
  font-weight: 600;
  line-height: 90%; /* 86.4px */
  letter-spacing: -2.208px;
  position: absolute;
  top: 80px;
  left: 0px;
  width: fit-content;
  z-index: 2;
}
/* available */

/* features */
.mk-feat .container {
  display: contents;
}
.mk-feat__title {
  margin-top: 100px;
}
.mk-feat {
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}
.mk-feat__inner {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  margin: 0px auto;
}
.mk-feat__title {
  line-height: 0.9;
}
.mk-feat__list {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #999;
}
.mk-feat-item__icon {
  width: 35px;
  height: 35px;
  overflow: hidden;
  flex-shrink: 0;
}
.mk-feat-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mk-feat-item {
  padding: 40px;
  border-bottom: 1px solid #999;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.mk-feat__list > :last-child {
  border-bottom: none;
}
.mk-feat-item__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mk-feat-item__info h3 {
  color: var(--light-black);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 36px */
  letter-spacing: -0.456px;
}
.mk-feat-item__info p {
  color: var(--light-black);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: -0.342px;
}
.mk-feat__left {
  width: 100%;
  height: 100%;
  position: relative;
}
.mk-feat__img {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 70%;
  width: auto;
}
.mk-feat__img img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}
/* features */

/* mk-projetcs */
.mk-projetcs__top .title {
  line-height: 90%; /* 90px */
  letter-spacing: -2.3px;
}
.mk-projetcs__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.mk-projetcs__text {
  max-width: 1020px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mk-projetcs__text h3 {
  color: var(--black);
  text-align: justify;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 119%; /* 28.56px */
  letter-spacing: 0.72px;
}
.mk-projetcs__text p {
  color: var(--light-black);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  letter-spacing: -0.342px;
}
.mk-projects__self {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mk-project {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mk-project__title {
  color: var(--black);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.342px;
}
.mk-project__text {
  color: var(--black);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.342px;
}
.mk-project__img {
  position: relative;
  width: 100%;
  aspect-ratio: 870 / 748;
  height: fit-content;
}
.mk-project__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mk-project__top-title {
  position: absolute;
  z-index: 1;
  top: 40px;
  left: 40px;
  color: var(--white);
  font-family: Inter;
  font-size: 128px;
  font-style: normal;
  font-weight: 600;
  line-height: 90%; /* 115.2px */
  letter-spacing: -2.816px;
}
.mk-project__img .guide-btn_wrap {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.guide_btn-circle {
  flex-shrink: 0;
}
.mk-project .guide_btn-circle {
  background-color: var(--white);
  color: var(--black);
}
.mk-project .guide_btn-animation {
  border-color: var(--white);
}
.mk-project .guide-btn_wrap {
  opacity: 0;
  transition: all 0.6s;
}
.mk-project__img:hover .guide-btn_wrap {
  opacity: 1;
}
/* mk-projetcs */

/* faq */
.faq__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.faqs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
  max-width: 1020px;
}
.faq-tab {
  cursor: pointer;
  border-bottom: 1px solid #999;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 50px;
}
.faq-tab .tab-top h3 {
  color: var(--light-black);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.456px;
}

.tab-text {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s;
}
.tab-text span {
  display: block;
  height: 5px;
}
.tab-text p {
  color: var(--light-black);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.342px;
}
.tab-text > div {
  min-height: 0;
}

.faq-tab__char {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.faq-tab__char span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  width: 100%;
  height: 3px;
  display: block;
  border-radius: 2px;
  overflow: hidden;
  background-color: var(--black);
  transition: transform 0.4s;
}
.faq-tab__char > :nth-child(1) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-tab.active .faq-tab__char > :nth-child(1) {
  transform: translate(-50%, -50%);
}

.faq-tab.active .tab-text {
  grid-template-rows: 1fr;
}
/* faq */

/* footer styles */
.footer-mob-title {
  display: none;
}
.footer {
  background-image: url("../images/footer-bg.webp");
  background-size: 100% 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-bottom: 50px;
}
.footer__title {
  width: 100%;
  margin-bottom: 10vh;
}
.footer__title svg {
  width: 100%;
  height: auto;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}
.footer__rights {
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.26px;
}
.footer__made-by {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.4s;
}
.footer__made-by:hover {
  opacity: 0.7;
}
.footer-from__top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.footer-from__person {
  display: flex;
  flex-direction: column;
}
.footer-from__person h3 {
  color: var(--white);
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 43.2px */
  letter-spacing: -0.792px;
}
.footer-from__person span {
  color: var(--white);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  letter-spacing: -0.342px;
}
.footer-from__img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.footer__link {
  color: #eee;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 119%; /* 21.42px */
  letter-spacing: 0.54px;
}
.footer__content {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  justify-content: space-between;
}
.footer__b {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}
.footer__form-title {
  color: var(--white);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 21.6px */
  letter-spacing: -0.342px;
  max-width: 394px;
  margin-bottom: 30px;
}
.footer-form {
  width: 425px;
}
.footer-form__inputs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-from__input {
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7.5px);
  padding: 10px 16px;
  overflow: hidden;
  width: 100%;
}
.footer-from__input,
.footer-from__input::placeholder {
  color: var(--white);
  font-family: Montserrat;
  font-size: 16px;
  line-height: 150%; /* 24px */
  letter-spacing: -0.368px;
}
.footer-form__send {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
}
.footer-form__btn {
  transition: all 0.4s;
  padding: 16px 107px;
  cursor: pointer;
  border-radius: 50px;
  background-color: var(--white);
  overflow: hidden;
  outline: none;
  border: none;
}
.footer-form__btn span {
  transition: all 0.4s;
  color: var(--black);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  letter-spacing: -0.414px;
}
.footer-form__btn:hover {
  background-color: var(--dark-blue);
}
.footer-form__btn:hover span {
  color: var(--white);
}
.footer-form__links {
  display: flex;
  gap: 15px;
  align-items: center;
}
.footer-form__link {
  transition: opacity 0.4s;
  width: 50px;
  height: 50px;
  border-radius: 500px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  display: grid;
  place-content: center;
}
.footer-form__link svg {
  width: 27px;
  height: 27px;
}
.footer-form__link:hover {
  opacity: 0.7;
}
/* footer styles */

/* pop-up styles */
.pop_up {
  position: fixed;
  z-index: -1;
  top: -100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.308);
  overflow: hidden;
  opacity: 0;
  /* backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px); */
  transition: 0.5s all;
}

.pop_up.modal_active {
  opacity: 1;
  z-index: 10;
  top: 0;
}
.pop-up_container {
  background-color: var(--dark-blue);
  width: 960px;
  max-width: 960px;
  position: relative;
  display: flex;
  justify-content: center;
}
.pop-up_content {
  padding: 90px 20px;
}
.close-pop_up {
  position: absolute;
  right: 20px;
  top: 30px;
  cursor: pointer;
  transition: 0.5s;
  height: 32px;
  width: 32px;
}
.close-pop_up:hover {
  transform: rotate(180deg);
}
.pop_up .footer-form__btn:hover {
  opacity: 0.8;
  background-color: var(--white);
}
.pop_up .footer-form__btn:hover span {
  color: var(--black);
}
/* pop-up styles */

.img-popup {
  display: flex;
  opacity: 0;
  position: fixed;
  z-index: -1;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.img-popup.active {
  z-index: 10;
  opacity: 1;
}

.img-popup__content {
  position: relative;
  padding: 0 20px;
  width: 50%;
  height: 70vh;
}
.img-popup__content > img {
  object-fit: contain;
  height: 100%;
}
.img-popup__close {
  position: absolute;
  top: -35px;
  right: -40px;
  cursor: pointer;
  height: 32px;
  width: 32px;
  transition: 0.4;
}
.img-popup__close:hover {
  transform: rotate(180deg);
}
.img-popup__overlay {
  position: absolute;
  inset: 0;
}

/* new styles */
.gallery-tab_content {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.gallery-tab__wrap {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.mk-feat__img {
  inset: 0;
  height: 100%;
}
.mk-feat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mk-feat__title {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.mk-feat,
.mk-feat-item,
.mk-feat__list {
  border: none !important;
}
.mk-feat-item__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-content: center;
  background: var(--Grad);
  flex-shrink: 0;
}
.mk-feat-item__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.available-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.available-title {
  color: var(--light-black);
  line-height: 1;
}
.available-sub {
  color: var(--light-black);
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 90%; /* 57.6px */
  letter-spacing: -1.472px;
  line-height: 1;
}
.available-new1__inner {
  display: flex;
  flex-direction: column;
}
.available-new > .container {
  display: contents;
}
.available-new1-img {
  max-width: 1400px;
  height: fit-content;
  margin: 0px auto;
  margin-bottom: 80px;
}
.available-new1 {
  background-image: url("../images/available-new-bg1.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
.available-new2 {
  background-image: url("../images/available-new-bg2.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
.available-new2__inner .available-heading {
  align-items: flex-end;
}
.main-available {
  position: relative;
}
.available-new2__inner {
  padding-bottom: 50px;
}
.available-nums-new {
  position: absolute;
  inset: 0;
}
.available-nums-new svg {
  width: 100%;
  height: 100%;
}
.main-available__btns {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
}
.available-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.available-links__link {
  overflow: hidden;
  width: 50px;
  height: 50px;
  display: grid;
  place-content: center;
}
.available-links__link img {
  width: 100%;
  height: 100%;
}
.main-available__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-available__btns .btn-animation {
  border-color: var(--dark-blue);
}
.tab-interior {
  margin-top: 50px;
}
.btn:has(.btn-dark) .btn-animation {
  border-color: var(--dark-blue);
}
/* new styles */

.map-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.map-svg svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.villas-self,
path {
  cursor: pointer;
}

.map-popup {
  --dx: 0px; /* суммарный сдвиг по X */
  --dy: 0px;
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  z-index: 2;
  white-space: nowrap;
  width: fit-content;
  height: fit-content;
  pointer-events: none;
  opacity: 0;
  transform: translate(var(--dx), var(--dy));
}
.map-popup span {
  color: #000;
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.3px;
  text-align: center;
  font-size: 10px;
  white-space: break-spaces;
  width: 100%;
}
.map-popup img {
  width: 100%;
  aspect-ratio: 87 / 65;
}
.pp-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 25px 20px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  background: #fff;
  color: #000;
  width: 127px;
  position: relative;
}
.pp-icon {
  position: absolute;
  left: 0;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 31px;
  height: 31px;
  display: grid;
  place-content: center;
  padding: 4px;
  border-radius: 50%;
  background: #fff;
}
.pp-icon svg {
  width: 100%;
  height: 100%;
}
.map-popup.is-shown {
  opacity: 1;
  transition: opacity 0.45s ease;
}

.map-popup.free-left {
  --dx: 10px;
}
.map-popup.free-right {
  --dx: -130px;
}
.map-popup.free-top {
  --dy: 10px;
}
.map-popup.free-bottom {
  --dy: -130px;
}
