:root {
  --primary-color: #0891b2;
  --secondary-color: #0e1950;
  --accent-color: #e2f4ff;
  --text-color: #333333;
  --background-color: #f9f9f9;
  --white: #ffffff;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Urbanist", sans-serif;
}

.header {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
  max-width: 1530px;
  z-index: 9999;
  transition: 0.5s ease-out;
  padding: 15px 20px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1411764706);
}

.header.header_sticky {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 100%;
  top: 0;
  border-radius: 0px;
  background: #fff;
}

.header .site_navbar .nav_menu_wrapper .menu_link {
  color: var(--white);
  transition: color 0.3s ease-in-out;
  font-weight: 500;
}

.header .site_navbar .nav_menu_wrapper .menu_link:hover {
  color: var(--primary-color);
}

.header.header_sticky .site_navbar .nav_menu_wrapper .menu_link {
  color: var(--secondary-color);
}

.header.header_sticky .site_navbar .nav_menu_wrapper .menu_link:hover {
  color: var(--primary-color);
}

.logo_wrapper a {
  border-radius: 100px;
  background: #fff;
  overflow: hidden;
  display: flex;
  height: 100%;
  padding: 0 10px;
}

#mobile-menu {
  position: absolute;
  top: 80px;
  border-radius: 24px;
}

.site_navbar {
  position: relative;
}

.banner_section {
  background: url("../images/banner.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.banner_section::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #091d25, #0e1950);
  z-index: -1;
  opacity: 0.75;
}

.banner_subtitle .before {
  width: 100px;
  transition: 0.8s ease-in-out;
  transform-origin: right;
  transform: scaleX(0);
}

.banner_subtitle .before.w-100px {
  transform: scaleX(1);
}

.banner_subtitle .after {
  width: 100px;
  transition: 0.8s ease-in-out;
  transform-origin: left;
  transform: scaleX(0);
}

.banner_subtitle .after.w-100px {
  transform: scaleX(1);
}

.why_us_section {
  background: #ffffff url("../images/vector_bg_2.png") no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.why_us_section::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

.feature_box {
  background: rgba(226, 244, 255, 0.2);
  transition: 0.5s ease-out;
  border: 1px dashed #0891b2;
}

.feature_box:hover {
  transform: translateY(-10px);
  background: var(--primary-color) !important;
}

.feature_box h4 {
  transition: 0.5s ease-out;
}

.feature_box p {
  transition: 0.5s ease-out;
}

.feature_box:hover h4 {
  color: #ffffff;
}

.feature_box:hover p {
  color: #ffffff;
}

.project_showcase_section {
  background: #ffffff;
}

.amenities_img_wrapper .icon_wrapper {
  background: #fcfcff;
}

.amenities_box_wrapper .amenities_box:nth-last-of-type(2) {
  grid-area: 3/2/span 1/span 1;
}

.amenities_box_wrapper .amenities_box:nth-last-of-type(1) {
  grid-area: 3/3/span 1/span 1;
}

.amenities_box_wrapper .amenities_box .amenities_box_inner_wrapper {
  transition: 0.5s ease-out;
  box-shadow: 0px 0px 0px 0px rgba(34, 240, 255, 0.6156862745);
  min-height: 282px;
  height: 100%;
}

.amenities_box_wrapper .amenities_box .amenities_box_inner_wrapper:hover {
  box-shadow: 0px 4px 44px -16px rgba(34, 240, 255, 0.6156862745);
  transform: translateY(-10px) !important;
}

.construction_box_text_wrapper .inner_text_wrapper {
  padding-bottom: 50px;
  padding-top: 50px;
  cursor: pointer;
}

.construction_box_text_wrapper .inner_text_wrapper:first-child {
  padding-top: 0px;
}

.construction_box_text_wrapper .inner_text_wrapper:last-child {
  padding-bottom: 0px;
}

.feat_img.hidden {
  display: none;
}

.feat_img_hover {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
}

.feat_img_hover.active {
  animation: show_img 0.5s linear forwards;
}

@keyframes show_img {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
.testimonial_section .swiper-horizontal {
  padding: 25px 0;
}

.testimonial_section .swiper-slide {
  padding: 0 25px;
}

#popupForm input::placeholder {
  font-size: 14px;
}

.swiper-pagination-bullet {
  width: 1.5rem;
  height: 5px;
  background-color: #D1D5DB;
  opacity: 0.4;
  transition: all 0.3s ease;
  border-radius: 9999px;
  display: inline-block;
}

.swiper-pagination-bullet-active {
  width: 2.5rem;
  background-color: #25aceb;
  opacity: 1;
}

.map_switch {
  border: 1px solid #efefef;
  padding: 10px 20px;
  max-width: max-content;
  border-radius: 30px;
  background: #f9feff;
  transition: all 0.35s ease-in;
}

.inner_switch_wrapper {
  position: relative;
}

.inner_switch_wrapper .slider {
  transition: 0.3s ease-out;
}

.inner_switch_wrapper input:checked + .slider {
  transform: translate(120%, -50%);
  background-color: var(--primary-color);
}

.loc_img_inner_wrapper {
  max-width: 700px;
  height: 550px;
  border: 13px solid rgba(8, 145, 178, 0.0509803922);
  width: 100%;
}

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

.loc_img_inner_wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.gallery_swiper .swiper-pagination {
  display: none;
}

@media (max-width: 1366px) {
  .construction_box_text_wrapper .inner_text_wrapper .text_wrapper {
    width: calc(100% - 100px) !important;
  }
}
@media (max-width: 992px) {
  .banner_section {
    height: auto;
  }
  .header {
    width: calc(100% - 40px);
  }
  .loc_img_inner_wrapper {
    height: 500px;
  }
  .location_section .section_content_wrapper {
    padding: 0;
  }
  .location_section .section_content_wrapper .text_wrapper {
    padding: 0;
    order: 0;
  }
  .location_section .section_content_wrapper .location_img_wrapper {
    order: 1;
  }
}
@media (max-width: 768px) {
  .amenities_box_wrapper {
    display: flex !important;
    flex-direction: column;
  }
  .testimonial_section .swiper-slide {
    padding: 0 0px;
  }
  .download_btn {
    font-size: 12px !important;
  }
  .construction_box_img_wrapper {
    height: 335px !important;
  }
  .construction_box_img_wrapper img {
    height: auto;
  }
}
@media (max-width: 640px) {
  .nav_btn_wrapper .cta-button {
    width: 44px;
    justify-content: center;
  }
  .banner_btn {
    padding: 15px 25px !important;
  }
  .gallery_swiper .text_wrapper {
    padding: 20px !important;
  }
  .gallery_swiper .text_wrapper h3 {
    font-size: 20px;
  }
  .gallery_swiper .text_wrapper p {
    font-size: 13px;
    line-height: 22px;
  }
}
@media (max-width: 391px) {
  .banner_subtitle .before {
    width: 70px;
    left: -65px;
  }
  .banner_subtitle .after {
    width: 70px;
    right: -65px;
  }
  .why_us_section .section_title {
    font-size: 25px;
  }
  .why_us_section .section_title + p {
    font-size: 14px;
  }
  .why_us_section .fetaure_wrapper {
    gap: 1rem;
  }
  .why_us_section .fetaure_wrapper .feature_box {
    width: 100%;
    padding: 25px 20px;
  }
  .why_us_section .fetaure_wrapper .feature_box h4 {
    font-size: 35px;
  }
  .why_us_section .fetaure_wrapper .feature_box p {
    font-size: 13px;
  }
  .project_showcase_section .section_title {
    font-size: 25px;
  }
  .project_showcase_section .section_title + p {
    font-size: 14px;
  }
  .future_ready_construction_section .section_title {
    font-size: 25px;
  }
  .future_ready_construction_section .section_title + p {
    font-size: 14px;
  }
  .construction_box_text_wrapper .inner_text_wrapper {
    flex-direction: column;
    text-align: center;
  }
  .construction_box_text_wrapper .inner_text_wrapper .icon_wrapper {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .construction_box_text_wrapper .inner_text_wrapper .text_wrapper {
    width: 100% !important;
  }
  .construction_box_img_wrapper {
    height: 265px !important;
    width: 100%;
    margin-top: 60px;
  }
  .construction_box_img_wrapper img {
    width: 100%;
    height: auto;
  }
  .amenities_section .section_title {
    font-size: 25px;
  }
  .amenities_section .section_title + p {
    font-size: 14px;
  }
  .amenities_box_wrapper {
    display: flex !important;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .amenities_box_wrapper .amenities_box {
    width: 100%;
  }
  .gallery_section .section_header h2 {
    font-size: 25px;
  }
  .gallery_section .section_header p {
    font-size: 14px;
    line-height: 25px;
  }
  .img_grid_wrapper {
    display: flex !important;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .img_grid_wrapper .group {
    width: 100%;
  }
  .testimonial_section .section_header h2 {
    font-size: 25px;
  }
  .testimonial_section .section_header p {
    font-size: 14px;
    line-height: 22px;
  }
  .testimonial_section .testimonialSwiper {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 0;
  }
  .testimonial_section .testimonialSwiper .swiper-slide .text_wrapper p {
    font-size: 14px;
    line-height: 22px;
  }
  .contact_section .section_title {
    font-size: 25px;
  }
  .contact_section .section_title + p {
    font-size: 14px;
  }
  .location_section .container {
    padding: 0 15px !important;
  }
}

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