/* ESTATE START */
.estate {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.estate__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 32px;
  gap: 32px;
}
.estate__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 32px;
  min-height: 450px;
  color: var(--text-white);
}
.estate__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3490196078);
  z-index: 1;
}
@media (min-width: 1024px) {
  .estate__item:not(.--first):hover .estate__item-logo {
    top: 32px;
    left: 32px;
    -webkit-transform: translate(0, 0) scale(0.8);
        -ms-transform: translate(0, 0) scale(0.8);
            transform: translate(0, 0) scale(0.8);
  }
  .estate__item:not(.--first):hover .estate__hidden {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.estate__item:not(.--first) .estate__text p:not([class]) {
  color: #E5E5E5;
}
.estate__item.--first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.estate__item.--first::before {
  display: none;
}
.estate__item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 2s;
  transition: all 2s;
}
.estate__text {
  position: relative;
  z-index: 1;
}
.estate__text p:not([class]) {
  line-height: 1.6;
  font-size: 18px;
  font-weight: 300;
}
.estate__item-title {
  margin-bottom: 20px;
}
.estate__item-logo {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 70%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.estate__hidden {
  -webkit-transform: translateY(calc(100% + 32px));
      -ms-transform: translateY(calc(100% + 32px));
          transform: translateY(calc(100% + 32px));
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.estate__label {
  background-color: var(--primary-main);
  padding: 5px 10px;
  color: var(--text-white);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .estate__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .estate {
    gap: 64px;
  }
  .estate__item {
    min-height: 243px;
  }
  .estate__item-title {
    font-size: 20px;
    line-height: 1.4;
  }
  .estate__text p:not([class]) {
    line-height: 1.5;
    font-size: 14px;
  }
}
/* ESTATE END */
/* COMMERCIAL START */
.commercial-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.commercial-block__left {
  width: 100%;
  max-width: 646px;
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  color: var(--text-white);
  padding: 32px;
  border-radius: 16px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.commercial-block__left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1019607843);
  z-index: -1;
}
.commercial-block__text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.2px;
}
.commercial-block__btn {
  border-color: transparent;
  font-size: 18px;
}
.commercial-block__btn:hover {
  border-color: var(--primary-main);
  background-color: var(--primary-main);
  color: var(--text-white);
}
.commercial-block__btn:hover svg {
  color: var(--text-white);
}
.commercial-block__right {
  width: 100%;
  max-width: 650px;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
  height: 600px;
  margin-left: -14px;
  position: relative;
  z-index: 1;
  padding: 32px 32px 32px 0;
  border: 1px solid var(--primary-main);
}
.commercial-block__img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1220px) {
  .commercial-block__left {
    max-width: 500px;
  }
}
@media (max-width: 1024px) {
  .commercial-block__left {
    max-width: 440px;
    padding: 32px 16px;
  }
}
@media (max-width: 768px) {
  .commercial-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .commercial-block__left,
  .commercial-block__right {
    max-width: 100%;
    height: auto;
  }
  .commercial-block__text {
    font-size: 14px;
    line-height: 1.5;
  }
  .commercial-block__btn {
    font-size: 14px;
    padding: 8px 32px;
  }
  .commercial-block__right {
    margin: 0 0 -16px 0;
    border-radius: 16px 16px 0 0;
    padding: 16px 16px 0 16px;
    height: 246px;
  }
}
/* COMMERCIAL END */
/* INFRASTRUCTURE START */
.infrastructure .projects-head {
  margin-top: 40px;
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 32px;
  gap: 32px;
}

.infrastructure-card {
  position: relative;
  color: var(--text-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  min-height: 400px;
  padding: 32px;
}
.infrastructure-card:hover .infrastructure-card__img img {
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
}
.infrastructure-card__img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 16px;
  overflow: hidden;
}
.infrastructure-card__img img {
  -webkit-filter: brightness(0.45);
          filter: brightness(0.45);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.infrastructure-card._decor-right::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  -webkit-clip-path: path("M 0 0 L 80 0 L 80 80 Q 78 65 74 62 L 15 5 Q 10 1 0 0 Z");
          clip-path: path("M 0 0 L 80 0 L 80 80 Q 78 65 74 62 L 15 5 Q 10 1 0 0 Z");
  z-index: 2;
}
.infrastructure-card._decor-left::after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  -webkit-clip-path: path("M 0 0 L 80 0 L 80 80 Q 78 65 74 62 L 15 5 Q 10 1 0 0 Z");
          clip-path: path("M 0 0 L 80 0 L 80 80 Q 78 65 74 62 L 15 5 Q 10 1 0 0 Z");
  z-index: 2;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.infrastructure-card._decor-right .infrastructure-card__img {
  border-top-right-radius: 0px;
}
.infrastructure-card._decor-left .infrastructure-card__img {
  border-bottom-left-radius: 0px;
}
.infrastructure-card._decor-top-bottom::after, .infrastructure-card._decor-top-bottom::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 50px;
  background-color: #ffffff;
  -webkit-clip-path: polygon(45% 5%, 45.5% 4.5%, 46% 4%, 46.5% 3.5%, 47% 3%, 47.5% 2.5%, 48% 2%, 48.5% 1.5%, 49% 1%, 49.5% 0.5%, 50% 0%, 50.5% 0.5%, 51% 1%, 51.5% 1.5%, 52% 2%, 52.5% 2.5%, 53% 3%, 53.5% 3.5%, 54% 4%, 54.5% 4.5%, 55% 5%, 55.5% 5.5%, 100% 100%, 0% 100%);
          clip-path: polygon(45% 5%, 45.5% 4.5%, 46% 4%, 46.5% 3.5%, 47% 3%, 47.5% 2.5%, 48% 2%, 48.5% 1.5%, 49% 1%, 49.5% 0.5%, 50% 0%, 50.5% 0.5%, 51% 1%, 51.5% 1.5%, 52% 2%, 52.5% 2.5%, 53% 3%, 53.5% 3.5%, 54% 4%, 54.5% 4.5%, 55% 5%, 55.5% 5.5%, 100% 100%, 0% 100%);
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.infrastructure-card._decor-top-bottom::before {
  top: -10px;
  -webkit-transform: translateX(-50%) rotate(180deg);
      -ms-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}
.infrastructure-card._decor-top-bottom::after {
  bottom: -10px;
}
.infrastructure-card__title {
  position: relative;
  z-index: 1;
}
.infrastructure-card ._text {
  position: relative;
  z-index: 1;
}
.infrastructure-card ._btn {
  position: relative;
  z-index: 1;
}
.infrastructure-card ._decor-img {
  position: absolute;
  z-index: 2;
  top: -24px;
  right: -20px;
  width: 124px;
  height: 124px;
}

.infrastructure-bottom__decor {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 230px;
  position: relative;
  z-index: 1;
}
.infrastructure-bottom__decor::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-image: repeating-linear-gradient(to bottom, var(--primary-main), var(--primary-main) 8px, #fff 8px, #fff 16px);
}
.infrastructure-bottom__decor::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  z-index: 1;
  background-color: var(--primary-main);
}
.infrastructure-bottom__year {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 40px;
}
.infrastructure-bottom__text {
  text-align: center;
  color: var(--text-tertiary);
}

@media (max-width: 1220px) {
  .infrastructure-grid {
    gap: 19px;
  }
}
@media (max-width: 800px) {
  .infrastructure-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .infrastructure-card {
    padding: 24px 16px;
    min-height: 200px;
  }
  .infrastructure-card ._btn {
    margin-left: auto;
  }
  .infrastructure-card ._decor-img {
    width: 80px;
    height: 80px;
    top: -19px;
    right: -20px;
  }
  .infrastructure-card._decor-top-bottom {
    padding: 32px 16px 34px;
  }
  .infrastructure-card._decor-top-bottom::after, .infrastructure-card._decor-top-bottom::before {
    width: 138px;
    height: 33px;
  }
  .infrastructure-card__title {
    font-size: 20px;
    line-height: 1.4;
    padding-right: 20px;
  }
  .infrastructure-bottom__decor {
    padding-top: 70px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .infrastructure-bottom__decor::after {
    width: 12px;
    height: 12px;
  }
  .infrastructure-bottom__year {
    margin-bottom: 24px;
  }
  .infrastructure-bottom__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
  }
}
/* INFRASTRUCTURE END */
/* PARKING START */
.parking .projects-head {
  margin-top: 40px;
}
.parking .infrastructure-grid {
  margin-bottom: 20px;
}

.parking-card {
  overflow: hidden;
  position: relative;
  min-height: 400px;
  border-radius: 20px;
  color: var(--text-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.parking-card:hover .parking-card__arrow {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.parking-card:hover .parking-card__img {
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
}
.parking-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-position: bottom;
     object-position: bottom;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
}
.parking-card__arrow {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 32px;
  right: 32px;
  background-color: rgba(255, 255, 255, 0.6980392157);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  -webkit-transform: translateX(120px);
      -ms-transform: translateX(120px);
          transform: translateX(120px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.parking-card__arrow svg {
  width: 32px;
  height: 32px;
  color: var(--stroke-primary);
  stroke-width: 1px;
}
.parking-card__content {
  min-height: 200px;
  padding: 32px;
  background-color: rgba(66, 95, 29, 0.56);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: auto;
  border-radius: 20px;
}
.parking-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}
.parking-card__places {
  padding: 8px 16px;
  background-color: var(--bg-white);
  color: var(--primary-main);
  line-height: 1.4;
  font-weight: 500;
  border-radius: 8px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.parking-card__lvl {
  opacity: 0.8;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .parking-card {
    min-height: 294px;
  }
  .parking-card__content {
    padding: 24px 16px;
    min-height: 187px;
  }
  .parking-card__head {
    gap: 50px;
  }
  .parking-card__arrow {
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    width: 44px;
    height: 44px;
    right: 24px;
    top: 24px;
  }
  .parking-card__arrow svg {
    width: 24px;
    height: 24px;
  }
  .parking-card__places {
    font-size: 14px;
  }
  .parking-card__address {
    font-size: 18px;
    line-height: 1.4;
  }
  .parking-card__title {
    font-size: 20px;
    line-height: 1.4;
  }
  .parking .infrastructure-grid {
    margin-bottom: 64px;
  }
  .parking .infrastructure-grid:last-child {
    margin-bottom: 0;
  }
}
/* PARKING END */
/* CONTACT START */
.map-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}

.map {
  width: 100%;
  max-width: 858px;
  min-height: 336px;
  overflow: hidden;
  border-radius: 16px;
}

.address {
  width: 100%;
  max-width: 430px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.address__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.address__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1.6;
}
.address__item a {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.address__item a:hover {
  color: var(--primary-main);
}
.address__item svg {
  color: var(--primary-main);
}

@media (max-width: 1024px) {
  .map-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
  }
  .address {
    max-width: 100%;
    padding: 24px 16px;
  }
}
/* CONTACT END */

/*# sourceMappingURL=projects.css.map */