<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --text: #7a7a7a;
  --header: #1e293b;
  --sandy: #e4be72;
  --tight-blue: #232d41;
  --white: white;
  --black: black;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: var(--text);
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
}

h2 {
  color: var(--header);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 0;
}

.hero_section {
  background-image: url('../images/hero-bg.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 9.5625rem;
  padding-bottom: 2rem;
}

.container {
  width: 100%;
  max-width: 90.625rem;
  margin-left: auto;
  margin-right: auto;
}

.container.large {
  max-width: 105rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero_wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.hero_slider-wrapper {
  z-index: 1;
  border-top-right-radius: 4.6875rem;
  border-bottom-left-radius: 4.6875rem;
  width: 100%;
  max-width: 57.8125rem;
  height: 42.5rem;
  position: relative;
  overflow: hidden;
}

.hero_form-wrapper {
  z-index: 2;
  border-bottom: .3125rem solid var(--sandy);
  background-color: var(--tight-blue);
  border-radius: .25rem;
  width: 36.25rem;
  margin-bottom: 0;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: auto;
  right: 0%;
  transform: translate(0, -50%);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .3);
}

.hero_slider-img_wrapper {
  height: 36.125rem;
}

.hero_slider-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero_slider-info {
  background-color: var(--white);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  display: flex;
}

.hero_form_title {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--white);
  text-align: center;
  letter-spacing: .6px;
  border-bottom: 1px solid rgba(82, 92, 105, .11);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: .9375rem 1.9375rem;
  font-size: 1.5rem;
  line-height: 1.375;
  display: flex;
}

.form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  padding: .875rem 1.9375rem 3.375rem;
  display: flex;
}

.form_item-wrapper {
  position: relative;
}

.form_input {
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: black black var(--sandy);
  color: var(--white);
  background-color: rgba(255, 255, 255, 0);
  height: auto;
  margin-bottom: 0;
  padding: .625rem;
}

.form_input:focus {
  border-bottom-color: var(--sandy);
}

.form_input-name {
  color: var(--white);
  margin-bottom: 0;
  font-size: .9375rem;
  font-weight: 400;
  transition: top .333s;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: .625rem;
  right: auto;
  transform: translate(0, -50%);
}

.form_input-star {
  color: red;
}

.hero_slider-arrows {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 1.875rem;
  padding-right: 5rem;
  display: flex;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 0%;
  right: auto;
  transform: translate(0, -50%);
}

.hero_slider-arrow-left {
  color: var(--white);
  cursor: pointer;
  background-color: rgba(228, 190, 114, .6);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  transition: background-color .3s;
  display: flex;
}

.hero_slider-arrow-left:hover {
  background-color: #e4be72;
}

.hero_slider-arrow-icon {
  justify-content: center;
  align-items: center;
  width: 2.125rem;
  height: 2.125rem;
  display: flex;
}

.hero_slider-arrow-right {
  color: var(--white);
  cursor: pointer;
  background-color: rgba(228, 190, 114, .6);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  transition: background-color .3s;
  display: flex;
  transform: rotate(180deg);
}

.hero_slider-arrow-right:hover {
  background-color: #e4be72;
}

.form_quantity-wrapper {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  background-color: rgba(0, 0, 0, .07);
  border: 1px solid rgba(0, 0, 0, .05);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: .625rem;
  display: flex;
}

.form_quantity-title {
  color: var(--white);
  font-size: .9375rem;
}

.form_quantity-list {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.form_quantity-item {
  grid-column-gap: .3125rem;
  grid-row-gap: .3125rem;
  color: var(--white);
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  min-width: 3.125rem;
  height: 3.125rem;
  margin-bottom: 0;
  padding-left: .625rem;
  padding-right: .625rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.form_quantity-btn {
  z-index: 1;
  cursor: pointer;
  border-style: none;
  border-radius: 0%;
  flex: none;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  transition: background-color .333s;
  position: absolute;
}

.form_quantity-btn:hover {
  background-color: rgba(228, 190, 114, .6);
}

.form_quantity-btn.w--redirected-checked {
  background-color: var(--sandy);
  background-image: none;
  border-style: none;
}

.form_quantity-btn.w--redirected-focus {
  box-shadow: none;
}

.form_quantity-lable {
  z-index: 2;
  pointer-events: auto;
  position: relative;
}

.btn {
  background-color: var(--sandy);
  color: var(--black);
  border-radius: .25rem;
  padding: .9375rem 1.25rem;
  font-weight: 600;
  transition: color .333s, background-color .333s;
}

.btn:hover {
  color: var(--white);
  background-color: rgba(228, 190, 114, .6);
}

.btn.cc-modal {
  border-radius: 0 3.125rem 3.125rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.btn.cc-home {
  border-radius: 0 3.125rem 3.125rem;
}

.navbar {
  z-index: 99;
  background-color: var(--tight-blue);
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.logo-wrapper {
  justify-content: center;
  align-items: center;
  width: 17.75rem;
  display: flex;
}

.logo-img {
  width: 100%;
}

.nav-link {
  color: var(--white);
  text-transform: uppercase;
  padding: 0;
  font-size: .875rem;
  font-weight: 600;
  transition: color .333s;
}

.nav-link:hover, .nav-link.w--current {
  color: var(--sandy);
}

.nav-menu-wrapper {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-menu-wrapper.cc-tablet {
  display: none;
}

.nav-phone {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: color .333s;
}

.nav-phone:hover {
  color: var(--sandy);
}

.nav_soc-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-soc_link {
  color: var(--sandy);
  width: 1.875rem;
  height: 1.875rem;
  transition: color .333s;
}

.nav-soc_link:hover {
  color: rgba(228, 190, 114, .6);
}

.nav-pading {
  width: 100%;
  height: 1rem;
}

.nav-shad {
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.about_section {
  background-color: var(--tight-blue);
  padding-top: 4.375rem;
  padding-bottom: 3.75rem;
}

.about_wrapper {
  grid-column-gap: 6.25rem;
  grid-row-gap: 6.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: center;
  display: grid;
  position: relative;
}

.about_wrapper-info {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  border: .3125rem solid var(--sandy);
  color: var(--white);
  border-top-right-radius: 3.125rem;
  border-bottom-left-radius: 3.125rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 3.125rem;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 10rem;
}

.hero-h1 {
  font-size: 1.5rem;
  font-weight: 400;
}

.none {
  display: none;
}

.about_h2 {
  color: var(--white);
  max-width: 14rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
}

.about_h2-bold {
  color: var(--sandy);
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.28125;
}

.about_wrapper-right {
  grid-column-gap: 4.375rem;
  grid-row-gap: 4.375rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.about_number-wrapper {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
  width: 100%;
  display: grid;
}

.about_number {
  color: var(--sandy);
  font-size: 4.3125rem;
  font-weight: 600;
  line-height: 1;
}

.about_number-info {
  color: var(--white);
  font-size: 1.375rem;
  line-height: 2.5;
}

.advantage_section {
  text-align: center;
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}

.heading_h2 {
  margin-bottom: 1rem;
  font-size: 2.625rem;
  font-weight: 600;
  position: relative;
}

.heading_h2.cc-color {
  color: var(--sandy);
}

.advantage_wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.advantage_list {
  grid-column-gap: 3.75rem;
  grid-row-gap: 3.75rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.advantage_item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.advantage_icon {
  width: 4rem;
  height: 4rem;
}

.advantage_name {
  color: var(--black);
  font-size: 1.25rem;
}

.finishing_section {
  background-color: var(--tight-blue);
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}

.finishing_slider {
  width: 100%;
  max-width: 63.75rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.all_slider-arrows {
  z-index: 3;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  display: inline-flex;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 0%;
  right: auto;
  transform: translate(0, -50%);
}

.finishing_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.finishing_img-wrapper {
  border-top-left-radius: 1.5625rem;
  border-top-right-radius: 1.5625rem;
  overflow: hidden;
}

.finishing_img-wrapper.max-500 {
  max-width: 31.25rem;
}

.finishing_img-wrapper.max-865 {
  max-width: 54.0625rem;
}

.finishing_img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.finishing_name {
  color: var(--white);
  text-align: center;
  font-size: 1.625rem;
  font-weight: 400;
}

.finishing_slider-arrow-left {
  color: var(--white);
  cursor: pointer;
  background-color: rgba(228, 190, 114, .6);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  transition: background-color .3s;
  display: flex;
}

.finishing_slider-arrow-left:hover {
  background-color: #e4be72;
}

.finishing_slider-arrow-right {
  color: var(--white);
  cursor: pointer;
  background-color: rgba(228, 190, 114, .6);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  transition: background-color .3s;
  display: flex;
  transform: rotate(180deg);
}

.finishing_slider-arrow-right:hover {
  background-color: #e4be72;
}

.finishing_wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.apartments_section {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}

.apartments_wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.apartments_link {
  background-color: var(--tight-blue);
  color: var(--white);
  text-align: center;
  border-top-right-radius: 1.5625rem;
  padding: .9375rem;
  font-weight: 600;
  transition: background-color .333s, color .333s;
}

.apartments_link:hover {
  color: var(--header);
  background-color: rgba(228, 190, 114, .6);
}

.apartments_link.w--current {
  background-color: var(--sandy);
  color: var(--header);
}

.apartments_link.cc-one.w--current {
  position: relative;
}

.apartments_menu {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.apartments_content-link {
  background-color: var(--sandy);
  color: var(--white);
  border-radius: .75rem;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  transition: color .333s, background-color .333s;
  display: flex;
}

.apartments_content-link:hover {
  color: var(--tight-blue);
  background-color: rgba(228, 190, 114, .6);
}

.apartments_content-icon {
  width: 1.5625rem;
  height: 1.5625rem;
}

.apartments_item {
  grid-column-gap: 3.125rem;
  grid-row-gap: 3.125rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1.875rem;
  display: flex;
}

.apartments_slider-1 {
  width: 100%;
  max-width: 63.75rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.apartments_slider-arrow-left {
  color: var(--white);
  cursor: pointer;
  background-color: rgba(228, 190, 114, .6);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  transition: background-color .3s;
  display: flex;
}

.apartments_slider-arrow-left:hover {
  background-color: #e4be72;
}

.apartments_slider-arrow-right {
  color: var(--white);
  cursor: pointer;
  background-color: rgba(228, 190, 114, .6);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  transition: background-color .3s;
  display: flex;
  transform: rotate(180deg);
}

.apartments_slider-arrow-right:hover {
  background-color: #e4be72;
}

.apartments_slider-item {
  justify-content: center;
  align-items: center;
  display: flex;
}

.apartments_img-wrapper {
  border-top-left-radius: 1.5625rem;
  border-top-right-radius: 1.5625rem;
  width: 100%;
  max-width: 48rem;
  overflow: hidden;
}

.apartments_img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.apartments_slider-2, .apartments_slider-3 {
  width: 100%;
  max-width: 63.75rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.project_section {
  background-color: var(--tight-blue);
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}

.project_title-wrapper {
  grid-column-gap: 6.25rem;
  grid-row-gap: 6.25rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.project_h2 {
  color: var(--white);
  width: 100%;
  max-width: 23rem;
  font-size: 1.375rem;
}

.project_h2_top {
  text-transform: uppercase;
  font-size: 2.5rem;
}

.project_h2_bold {
  color: var(--sandy);
  font-size: 3.625rem;
  font-weight: 800;
}

.project_slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.project_img-wrapper {
  border-top-right-radius: 4.6875rem;
  border-bottom-right-radius: 4.6875rem;
  width: 100%;
  overflow: hidden;
}

.project_img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.project_slider-arrow-left {
  color: var(--white);
  cursor: pointer;
  background-color: rgba(228, 190, 114, .6);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  transition: background-color .3s;
  display: flex;
}

.project_slider-arrow-left:hover {
  background-color: #e4be72;
}

.project_slider-arrow-right {
  color: var(--white);
  cursor: pointer;
  background-color: rgba(228, 190, 114, .6);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  transition: background-color .3s;
  display: flex;
  transform: rotate(180deg);
}

.project_slider-arrow-right:hover {
  background-color: #e4be72;
}

.contact_section {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}

.contact_wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  display: flex;
}

.contact_info {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  border: .3125rem solid var(--sandy);
  text-align: center;
  border-top-left-radius: 3.125rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 42.5rem;
  padding: 3.125rem;
  font-style: normal;
  display: flex;
}

.contact_name {
  color: var(--header);
  font-size: 1.375rem;
  font-weight: 700;
}

.contact_address {
  color: var(--header);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.40909;
}

.contact_phone {
  color: var(--header);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
}

.contact_map-wrpper {
  width: 100%;
  max-width: 60.1875rem;
  min-height: 41.1765rem;
}

.contact_map {
  width: 100%;
  height: 100%;
}

.footer {
  background-image: url('../images/hero-bg.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.footer_wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer_logo {
  max-width: 9rem;
}

.footer_info-wrapper {
  color: var(--header);
  max-width: 44.125rem;
  font-size: .875rem;
  font-weight: 500;
}

.footer-info_link {
  color: #046bd2;
  text-decoration: none;
}

.footer-info_link:hover {
  text-decoration: underline;
}

.footer_menu-wrapper {
  grid-column-gap: .3125px;
  grid-row-gap: .3125px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer_menu-link {
  grid-column-gap: 1.375rem;
  grid-row-gap: 1.375rem;
  color: var(--text);
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  line-height: 1.65rem;
  text-decoration: none;
  display: flex;
}

.footer_menu-icon {
  color: var(--sandy);
  flex: none;
  width: .875rem;
  height: .875rem;
}

.footer-contact {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-contact-phone {
  color: var(--black);
  font-size: 1.875rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-contact-phone:hover {
  text-decoration: none;
}

.footer-soc-wrapper {
  grid-column-gap: .3125rem;
  grid-row-gap: .3125rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-soc-link {
  color: var(--white);
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
}

.footer-soc-link.cc-whatsapp {
  background-color: #25d366;
  transition: background-color .333s;
}

.footer-soc-link.cc-whatsapp:hover {
  background-color: rgba(37, 211, 102, .8);
}

.footer-soc-link.cc-insta {
  background-color: #fa65bc;
  transition: background-color .333s;
}

.footer-soc-link.cc-insta:hover {
  background-color: rgba(250, 101, 188, .8);
}

.footer-soc-icon {
  width: 1.5625rem;
  height: 1.5625rem;
}

.copyright_section {
  background-color: var(--tight-blue);
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  font-weight: 500;
  display: flex;
  position: relative;
}

.modal-wrapper {
  z-index: 1000;
  background-color: rgba(0, 0, 0, .8);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.modal-content {
  position: relative;
}

.hero_form-modal {
  z-index: 2;
  border-bottom: .3125rem solid var(--sandy);
  background-color: var(--tight-blue);
  border-radius: .25rem;
  width: 36.25rem;
  margin-bottom: 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .3);
}

.modal_form_desk {
  font-size: 1rem;
}

.modal-close {
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: .5rem;
  bottom: auto;
  left: auto;
  right: .5rem;
}

.thank_section {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--tight-blue);
  text-align: center;
  background-color: #a0be47;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100svh;
  font-size: 1.375rem;
  font-weight: 600;
  display: flex;
}

.thank_icon {
  max-width: 10rem;
  height: 10rem;
}

.tabs {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.apartments_slider-arrow-left-1 {
  color: var(--white);
  cursor: pointer;
  background-color: rgba(228, 190, 114, .6);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  transition: background-color .3s;
  display: flex;
}

.apartments_slider-arrow-left-1:hover {
  background-color: #e4be72;
}

.apartments_slider-arrow-right-1 {
  color: var(--white);
  cursor: pointer;
  background-color: rgba(228, 190, 114, .6);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  transition: background-color .3s;
  display: flex;
  transform: rotate(180deg);
}

.apartments_slider-arrow-right-1:hover {
  background-color: #e4be72;
}

.apartments_slider-arrow-left-2 {
  color: var(--white);
  cursor: pointer;
  background-color: rgba(228, 190, 114, .6);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  transition: background-color .3s;
  display: flex;
}

.apartments_slider-arrow-left-2:hover {
  background-color: #e4be72;
}

.apartments_slider-arrow-right-2 {
  color: var(--white);
  cursor: pointer;
  background-color: rgba(228, 190, 114, .6);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  transition: background-color .3s;
  display: flex;
  transform: rotate(180deg);
}

.apartments_slider-arrow-right-2:hover {
  background-color: #e4be72;
}

.apartments_slider-arrow-left-3 {
  color: var(--white);
  cursor: pointer;
  background-color: rgba(228, 190, 114, .6);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  transition: background-color .3s;
  display: flex;
}

.apartments_slider-arrow-left-3:hover {
  background-color: #e4be72;
}

.apartments_slider-arrow-right-3 {
  color: var(--white);
  cursor: pointer;
  background-color: rgba(228, 190, 114, .6);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  transition: background-color .3s;
  display: flex;
  transform: rotate(180deg);
}

.apartments_slider-arrow-right-3:hover {
  background-color: #e4be72;
}

.apartments_menu_content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.apartments_menu_content.cc-one {
  padding-left: 2.5625rem;
}

.apartments_menu_content.cc-tree {
  justify-content: flex-end;
  align-items: center;
  padding-right: 2.5625rem;
}

.copyright_section-limk {
  color: var(--white);
}

@media screen and (max-width: 991px) {
  .hero_wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

  .hero_slider-wrapper {
    height: auto;
  }

  .hero_form-wrapper {
    position: relative;
    top: auto;
    right: auto;
    transform: translate(0);
  }

  .hero_slider-img_wrapper {
    width: 100%;
  }

  .hero_slider-arrows {
    padding-right: 1.875rem;
    display: none;
  }

  .logo-wrapper {
    width: 10rem;
  }

  .nav-menu {
    background-color: var(--tight-blue);
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .nav-menu-wrapper {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .nav-menu-wrapper.cc-tablet {
    flex-flow: row;
    display: flex;
  }

  .about_wrapper {
    grid-template-columns: 1fr;
  }

  .about_wrapper-info {
    position: relative;
    top: auto;
  }

  .apartments_content {
    width: 100%;
  }

  .project_title-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .contact_wrapper {
    flex-flow: column;
  }

  .contact_info {
    max-width: none;
  }

  .contact_map-wrpper {
    max-width: none;
    min-height: auto;
  }

  .contact_map {
    height: 43.75rem;
  }

  .footer_wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .copyright_section {
    text-align: center;
  }

  .modal-wrapper {
    display: none;
  }

  .menu-button {
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    display: flex;
  }

  .menu-button.w--open {
    background-color: rgba(200, 200, 200, 0);
  }

  .lottie-animation {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .tabs {
    width: 100%;
    overflow: hidden;
  }
}

@media screen and (max-width: 767px) {
  .hero_section {
    padding-top: 7rem;
    padding-bottom: 0;
  }

  .hero_wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .hero_slider-wrapper {
    border-radius: 0;
  }

  .hero_form-wrapper {
    box-shadow: none;
    border-bottom-style: none;
    width: 100%;
  }

  .btn.cc-modal.mobil-none, .nav_soc-wrapper.mobil-none {
    display: none;
  }

  .about_wrapper-info {
    padding: 2rem 1rem 3rem;
  }

  .advantage_list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }

  .all_slider-arrows {
    display: none;
  }

  .project_img-wrapper {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }

  .hero_form-modal {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 1.5rem;
  }
	.contact_map {
    height: 20rem;
  }

  .hero_slider-img_wrapper {
    height: 15rem;
  }

  .form {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-phone.mobil-none {
    display: none;
  }

  .about_section {
    padding-top: 2rem;
  }

  .about_wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .about_number-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    justify-items: stretch;
  }

  .about_number-info {
    line-height: 1.2;
  }

  .advantage_section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .heading_h2 {
    font-size: 2rem;
  }

  .heading_h2.cc-color {
    text-align: center;
  }

  .advantage_list {
    grid-template-columns: 1fr;
  }

  .finishing_name {
    font-size: 1.1rem;
  }

  .apartments_link {
    border-radius: 0;
    width: 100%;
  }

  .apartments_menu {
    grid-column-gap: .2rem;
    grid-row-gap: .2rem;
    flex-flow: column;
    width: 100%;
  }

  .project_section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .project_h2_top {
    font-size: 1.8rem;
  }

  .project_h2_bold {
    font-size: 2.9rem;
  }

  .contact_section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .contact_info {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding: 1rem;
  }

  .contact_address {
    font-size: 1.2rem;
  }

  .footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .apartments_menu_content {
    grid-column-gap: .2rem;
    grid-row-gap: .2rem;
    flex-flow: column;
  }

  .apartments_menu_content.cc-one {
    padding-left: 0;
  }

  .apartments_menu_content.cc-tree {
    padding-right: 0;
  }
}


@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@media (min-width: 991px) {
  .leng {
    display: none;
  }
}
</pre></body></html>