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

:root {
  --primary-color: #d9ad3a;
  --secondary-color: #333;
  --bg: #191818;
}

@font-face {
  font-family: Poppins-Bold;
  src: url("../fonts/Poppins-Bold.ttf");
  font-weight: 600;
}

@font-face {
  font-family: Poppins-Regular;
  src: url("../fonts/Poppins-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: Tinos-Regular;
  src: url("../fonts/Tinos-Regular.ttf");
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

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

body,
html {
  overflow-x: hidden;
  font-family: "Poppins-Regular";
  scroll-padding-top: 96px;
}

.custome_container {
  width: 85%;
  margin: auto;
}

header {
  /* background: #fff; */
  color: #333;
  /* padding: 10px 0; */
  box-shadow: 0px 0px 10px rgba(8, 8, 8, 0.1);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}

.nav_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 138px;
  margin: auto;
  z-index: 1000;
  /* background: #fff; */
  background: #0000006b;
}
.nav_bar .logo .light_logo {
  display: block;
}
.nav_bar .logo .dark_logo {
  display: none;
}
.nav_bar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.nav_bar.fixed .logo .dark_logo {
  display: block;
}
.nav_bar.fixed .logo .light_logo {
  display: none;
}
.nav_bar .logo img {
  width: 190px;
  /* height: 54px; */
  /* filter: invert(1) brightness(9.5); */
}

.nav_bar.fixed .logo img {
  filter: none;
}

.nav_wrapper {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999999;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
  /* Hide to the right initially */
  box-shadow: 0px 0px 10px rgba(8, 8, 8, 0.1);
}

.nav_wrapper.active {
  transform: translateX(0);
  /* Slide in from right */
}

.nav_links {
  list-style: none;
  height: 100vh;
  background-color: #fff;
  color: #333;
  margin: 0;
  padding: 0;
  width: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  gap: 25px;
}

.nav_links li {
  width: 90%;
  text-align: center;
  padding: 8px 0px;
  border-bottom: 1px solid #333;
  cursor: pointer;
}

.nav_links li:first-child {
  border-bottom: none;
}

.nav_links li a:hover {
  color: var(--primary-color);
}

.nav_links li img {
  width: 120px;
}

.nav_links a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
  letter-spacing: 1.5px;
  font-family: "Poppins-Regular";
}

.nav_links .close {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #ff0000;
  padding: 5px;
  cursor: pointer;
}

.nav_links .close img {
  width: 40px;
}

.call_nav {
  width: 25px;
  margin-right: 2px;
}

.nav_right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav_right a {
  text-decoration: none;
  color: var(--primary-color);
  letter-spacing: 1.5px;
  font-size: 16px;
}

.nav_right .menu_icon {
  width: 70px;
  cursor: pointer;
}

.custom_btn {
  letter-spacing: 1.5px;
  /* color: var(--primary-color);
    border: 1px solid var(--primary-color); */
  padding: 9px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: #000;
}

.custom_btn:focus {
  box-shadow: 0 0 0 0.25rem rgb(247 170 76 / 31%);
}

.custom_btn:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* banner code start */
.banner_container {
  width: 100%;
  position: relative;
}

.banner_container .carousel-inner img {
  height: 100vh;
}

.banner_container .carousel-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.714), rgb(4 4 4 / 0%));
  z-index: 1;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.blinking-text {
  color: #cb1414;
  animation: blink 2.5s infinite;
  font-weight: bold !important;
}

.classic_patch {
  position: absolute;
  left: 38%;
  width: 137px;
  height: 126px;
  top: 57%;
  z-index: 99;
}

.address-vertical {
  rotate: 270deg;
  position: absolute;
  top: 50%;
  left: -110px;
  transform: translateY(-50%);
  z-index: 999;
  color: #fff;
  text-align: center;
}

.address-vertical span {
  letter-spacing: 2px;
  font-family: "Poppins-Regular";
  font-weight: 300;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.location_icon {
  width: 24px;
}

.vertical_line {
  height: 1px;
  background-color: #fff;
  width: 50px;
}

.banner_content_box {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  color: #fff;
}

.welcome_text {
  font-family: "Tinos-Regular";
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 0px;
}

.banner_content_box h1 {
  font-family: "Poppins-Regular";
  font-weight: 400;
  letter-spacing: 3px;
  font-size: 50px;
  margin: 0px 0px;
  font-family: "Tinos-Regular";
}

.banner_content_box ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 10px 0;
  margin-top: 8px;
}

.banner_content_box ul li {
  font-size: 16px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.banner_content_box ul li img {
  width: 14px;
}

.banner_content_box .typology_text {
  font-size: 18px;
  letter-spacing: 3px;
  font-weight: 300;
  margin-top: 7px;
}

.price_text {
  font-size: 20px;
  color: #fff;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.price_text span {
  font-weight: bold;
  font-size: 50px;
  color: var(--primary-color);
}

.banner_content_box .custom_btn {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: #000;
}

.form-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 1050;
  transform: translateX(110%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
}

.form-box .close-btn {
  border: none;
  padding: 10px;
  background-color: transparent;
  font-size: 25px;
  color: red;
  position: absolute;
  top: 0px;
  left: 0px;
  cursor: pointer;
}

.form-box .form_box_inner {
  padding: 0px;
  gap: 10px;
  border: unset !important;
}

.form-box.show {
  transform: translateX(0);
}

.form_btn {
  padding: 10px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999999;
  background-color: #fff;
  box-shadow: 0 0 5px #ada4a4;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
}

.form_btn img {
  width: 36px;
}

.key_highlights_box {
  background-color: var(--bg);
  padding: 10px 200px;
}

.key_highlight .tick_icon {
  background-color: #fff;
  width: fit-content;
  padding: 2px 6px;
}

.key_highlight .tick_icon img {
  width: 15px;
}

.key_highlight {
  display: flex;
  align-items: center;
  gap: 10px;
}

.key_highlight p {
  font-size: 16px;
  color: #fff;
  letter-spacing: 1.5px;
  font-weight: 300;
}

/* banner code end */

.hero-section {
  background-color: #f3ede2;
  position: relative;
  overflow: hidden;
}

.content-wrapper {
  position: relative;
  padding-left: 130px !important;
  padding-top: 40px;
}

.logo-container {
  display: flex;
  justify-content: center;
}

.logo-container img {
  height: 78px;
  width: auto;
}

.overview-label {
  font-size: 35px;
  color: var(--primary-color);
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 1.5px;
}

.main-heading {
  font-size: 38px;
  font-weight: 700;
  font-family: "Tinos-Regular";
  color: var(--secondary-color);
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: 2px;
}

.description {
  font-size: 16px;
  color: var(--secondary-color);
  line-height: 1.8;
  margin-bottom: 20px;
  /* max-width: 90%; */
  letter-spacing: 1.5px;
}

.overview_img {
  position: relative;
}

.overview_img img {
  width: 100%;
  height: 750px;
}

.overview_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(255 255 255), rgb(4 4 4 / 0%));
  z-index: 1;
}

.content_area {
  position: relative;
}

.overview_vertical_line {
  height: 100px;
  background-color: var(--primary-color);
  width: 1px;
  position: absolute;
  top: -105px;
  left: 0;
}

.overview_color_box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 60px;
  background-color: var(--primary-color);
}

/*  highlights Section */

.highlights_sec {
  padding: 40px 0px;
  position: relative;
}

.highlights_sec .section_subtitle {
  color: #fff;
}

.highlights_img {
  height: 740px;
  width: 820px;
}

.highlights_content {
  padding: 40px 80px;
  width: 60%;
  position: absolute;
  right: 0;
  top: 80px;
  background-color: var(--bg);
  z-index: 999;
  min-height: 740px;
}

.section_title {
  font-size: 35px;
  color: var(--primary-color);
  font-weight: 300;
  margin-bottom: 5px;
  line-height: 30px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.section_subtitle {
  font-size: 18px;
  font-family: "Tinos-Regular";
  font-weight: 400;
  color: var(--secondary-color);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}

.highlights_content .table th {
  border-right: 1px solid #c6c6c6;
  width: 40px;
  text-align: center;
  color: var(--primary-color);
  padding: 10px;
  letter-spacing: 1.5px;
  font-weight: 200;
  padding: 15px 10px;
}

.highlights_content .table {
  display: flex;
  align-items: center;
  height: 560px;
}

.highlights_content .table td {
  font-size: 16px;
  letter-spacing: 1.5px;
  padding: 10px;
  font-weight: 200;
  padding: 15px 10px;
  color: #fff;
  font-weight: 100;
}

.highlights_content .table tr {
  border-bottom: 1px solid #c6c6c6;
}

.highlights_content .table tr:last-child {
  border-bottom-color: var(--bg);
}

/* Price section */
.price_section {
  padding: 40px 0px;
  position: relative;
  background-color: #f3ede2;
  z-index: 9;
}

.price_section .section_subtitle {
  margin-bottom: 80px;
}

.price_box {
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 5px #909090;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}

.price_box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--secondary-color);
  letter-spacing: 1.5px;
}

.price_box .priceSec_price {
  font-size: 27px;
  color: var(--primary-color);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.priceSec_area {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}

.price_box .custom_btn {
  background-color: #191818;
  border-color: #191818;
  color: #fff;
  padding: 6px 30px;
  margin-top: 10px;
}

.price_box .custom_btn:focus {
  box-shadow: 0 0 0 0.25rem rgba(176, 176, 176, 0.259);
}

.pricelist_img {
  width: 50%;
  position: absolute;
  right: 0;
  top: 80px;
  height: 460px;
  z-index: -1;
}

/* amenities section */
.amenities_sec {
  margin-top: 70px;
}

.amenitis_box {
  padding: 20px 10px;
  border: 1px solid #c6c6c6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-top: 30px;
}

.amenitis_box:hover {
  background-color: #383838ab;
}

.amenitis_box img {
  width: 56px;
}

.amenitis_box p {
  font-size: 16px;
  color: #fff;
  letter-spacing: 1.5px;
}

/* floorplan section */
.floorPlan_sec {
  padding: 40px 0px;
  position: relative;
  background-color: #f3ede2;
}

.floorplan_slider {
  padding: 40px;
  background-color: var(--bg);
}

.floorplan_slider .slick-next {
  right: 0px !important;
  height: 100%;
  width: 40px;
  z-index: 99;
  background-color: var(--primary-color);
}

.floorplan_slider .slick-prev {
  left: 0px !important;
  height: 100%;
  width: 40px;
  z-index: 99;
  background-color: var(--primary-color);
}

.masterplan_img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.floorPlan_sec .slick-slide .floorPlan_img {
  width: 100%;
  height: 350px;
}

.wraper_floorplan {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 620px;
  width: 100%;
  padding-right: 10px;
}

.floorPlan_sec .section_title,
.floorPlan_sec .section_subtitle {
  margin-left: 140px;
}

.floorplan_slider .floorplan_typo {
  width: 100%;
  background-color: var(--primary-color);
  padding: 5px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  letter-spacing: 1.5px;
}

.floor_plan_view {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #fff;
  background-color: #33333394;
  text-align: center;
  letter-spacing: 1.5px;
  z-index: 99;
  padding: 10px;
}

.master_plan {
  position: relative;
}

.floorplan_slider .slick-slide {
  position: relative;
}

/* location section */

.location_sec {
  padding: 0px;
  position: relative;
}

.location_sec .custome_container {
  width: 100%;
}

.location_sec .table th {
  border-right: 1px solid var(--secondary-color);
  width: 40px;
  text-align: center;
  color: var(--primary-color);
  padding: 10px;
  letter-spacing: 1.5px;
  font-weight: 200;
  padding: 15px 10px;
}

.location_sec .table td {
  font-size: 16px;
  letter-spacing: 1.5px;
  padding: 10px;
  font-weight: 200;
  padding: 15px 10px;
}

.location_sec .table tr {
  border-bottom: 1px solid var(--secondary-color);
}

.location_sec .table tr:last-child {
  border-bottom-color: #fff;
}

.locationFlex_box {
  display: flex;
}

.locationFlexItem1,
.locationFlexItem2 {
  width: 50%;
}

.locationFlexItem1 {
  padding: 40px 20px 40px 135px;
}

.location_img {
  width: 100%;
  height: 623px;
  object-fit: cover;
}

/* Other project section */
.otherProject_sec {
  padding: 40px 0px;
}

.otherProject_sec .section_title,
.otherProject_sec .section_subtitle {
  text-align: center;
}

.otherProject_sec .project_card {
  /* padding: 10px; */
  /* background-color: #d3b999; */
  box-shadow: 0px 0px 10px 0px #00000026;
  border-radius: 8px;
  height: 100%;
  overflow: hidden;
  background-color: #d9ad3a;
}

.project_card .project_img img {
  width: 100%;
}

.project_card h2 {
  font-size: 30px;
  color: #000;
  text-align: center;
  margin: 5px auto;
  letter-spacing: 1.5px;
  font-family: "Tinos-Regular";
}

.project_content {
  padding: 10px;
}

.project_card address {
  font-size: 16px;
  text-align: center;
  letter-spacing: 1.5px;
  margin: 5px auto;
  color: var(--secondary-color);
}

.project_card address img {
  filter: invert(1);
  width: 21px;
}

.project_typo {
  padding: 5px 10px;
  font-size: 18px;
  text-align: center;
  color: var(--secondary-color);
  letter-spacing: 1.5px;
  background-color: #fff;
  margin-top: 10px;
}

.project_area {
  padding: 5px 10px;
  font-size: 18px;
  text-align: center;
  color: #000;
  letter-spacing: 1.5px;
  margin-top: 10px;
}

.project_Price {
  padding: 5px 10px;
  font-size: 18px;
  text-align: center;
  color: var(--secondary-color);
  letter-spacing: 1.5px;
  margin: 8px 0px;
}

.projectStartingPrice {
  font-size: 28px;
  font-weight: bold;
  color: #000;
}

.project_card .custom_btn {
  text-align: center;
  color: #fff;
  background-color: var(--secondary-color);
}

.mobile-section_1 {
  display: none;
}

.mobile-section_1 {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.mobile-section {
  display: flex;
  width: 100%;
  align-items: center;
  background: #2f2f2f;
  z-index: 999;
}

.mobile-section .btn-success {
  color: #fff;
  background-color: var(--primary-color);
  border-color: #fff;
  font-size: 13px;
  padding: 7px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.mobile-section a {
  padding: 5px;
  width: 100%;
  border-radius: 0;
}

/* about builder section */
.about_builder_sec {
  padding: 60px 0px;
  position: relative;
  background-color: var(--bg);
}

.about_builder_sec .section_title {
  font-size: 35px;
  margin-bottom: 20px;
  font-family: bold;
  font-family: "Tonos-Regular";
}

.about_builder_sec .builder_logo {
  width: 200px;
  margin: 20px 0px;
  filter: invert(1) brightness(10);
}

.builder_text {
  font-size: 16px;
  color: #fff;
  letter-spacing: 1.5px;
  line-height: 1.8;
}

.builder_text + .custom_btn {
  background-color: var(--primary-color);
  color: #fff;
  margin-top: 20px;
  padding: 8px 40px;
}

.form_box_footer h5 {
  font-size: 17px;
  color: var(--primary-color);
  font-weight: 300;
  margin-bottom: 5px;
  line-height: 30px;
  letter-spacing: 1.5px;
}

.form_box_footer {
  width: 80%;
  margin: auto;
  background-color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form_box_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form_box_inner input {
  outline: none;
  border: none;
  border-radius: 0px;
  border-bottom: 1px solid var(--secondary-color);
  padding: 10px;
  font-size: 16px;
  color: var(--secondary-color);
  letter-spacing: 1.5px;
}

.form_box_inner input:focus {
  outline: none;
  box-shadow: unset;
}

.form_box_inner .custom_btn {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 20px;
  margin-top: 10px;
}

.form_box_inner .custom_btn:hover {
  background-color: var(--primary-color);
}

/* Footer section */
.footer_sec {
  padding: 20px 8px;
  background-color: var(--secondary-color);
}

.qr_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.qr_box img {
  width: 100px;
  height: 100px;
}

.moretext {
  display: none;
}

.footer_sec p {
  font-size: 12px;
  color: #fff;
  letter-spacing: 1.5px;
  text-align: center;
  margin-top: 10px;
}

.footer_sec a {
  color: var(--primary-color);
  text-decoration: none;
}

.footer_sec .moreless-button {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-align: center;
  display: block;
  font-weight: bold;
}

.qrboxItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.qrboxItem p {
  text-align: center;
  font-size: 12px;
  padding: 0;
  margin: 0;
}

.qr_box + p {
  width: 60%;
  margin: auto;
}

/* gallery section code */
.gallery_section {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  /* background-color: var(--bg); */
  background-color: #f3ede2;
}

.gallery_container {
  position: relative;
  height: 760px;
  max-width: 95%;
  margin: 0 auto;
  perspective: 1500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery_slide {
  position: absolute;
  width: 460px;
  height: 587px;
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  transform-style: preserve-3d;
}

.gallery_image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
}

.gallery_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

/* Center slide */
.gallery_slide.center {
  z-index: 10;
  transform: translateX(0) translateZ(50px) scale(1.15);
}

/* Left slide with enhanced 3D effect */
.gallery_slide.left {
  z-index: 5;
  transform: translateX(-490px) translateZ(-100px) rotateY(0deg) scale(0.75);
  opacity: 0.8;
}

.gallery_slide.left .gallery_image {
  /* Create trapezoid effect - decrease right side height */
  clip-path: polygon(0% 0%, 85% 10%, 85% 90%, 0% 100%);
  transform: perspective(800px) rotateY(15deg) skewY(-2deg);
}

/* Right slide with enhanced 3D effect */
.gallery_slide.right {
  z-index: 5;
  transform: translateX(490px) translateZ(-100px) rotateY(-0deg) scale(0.75);
  opacity: 0.8;
}

.gallery_slide.right .gallery_image {
  /* Create trapezoid effect - decrease left side height */
  clip-path: polygon(15% 10%, 100% 0%, 100% 100%, 15% 90%);
  transform: perspective(800px) rotateY(-15deg) skewY(2deg);
}

/* Hidden slides */
.gallery_slide.hidden {
  opacity: 0;
  transform: scale(0.3) translateZ(-200px);
  z-index: 1;
}

/* Navigation buttons */
.nav_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  color: #fff !important;
}

.nav_btn:hover {
  background: #c39f73;
  color: white;
  transform: translateY(-50%) scale(1.15) translateZ(20px);
  box-shadow: 0 25px 50px rgba(212, 165, 116, 0.5);
}

.nav_btn i {
  font-size: 26px;
  color: #fff;
  transition: all 0.4s ease;
}

.nav_btn:hover i {
  color: white;
  transform: scale(1.1);
}

.prev-btn {
  left: 100px;
}

.next-btn {
  right: 100px;
}

.modal-content {
  position: relative;
}

.btn-close {
  background: none;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 999;
}

.btn-close:focus {
  box-shadow: unset;
}

.btn-close img {
  width: 35px;
}

.popup_form {
  padding: 15px;
  /* padding-left: 0px; */
  width: 100%;
}

.popup_form .form_box_inner h3 {
  font-size: 22px;
  color: var(--primary-color);
  font-weight: 300;
  margin-bottom: 5px;
  line-height: 30px;
  letter-spacing: 1.5px;
  text-align: center;
}

.popup_form .form_box_inner {
  padding: 15px;
  gap: 10px;
  border: 1px solid #dab88f;
}
.price_cnt {
  display: block;
  padding-top: 5px;
}

.price-cnt {
  position: relative;
  font-size: 42px !important;
}

.price-cnt1 {
  position: relative;
  font-size: 26px;
}

.price-cnt i {
  position: absolute;
  top: 10px;
  right: 0px;
  /* background: red; */
  content: "";
  color: #ff0000ad;
  font-size: 42px;
  display: block;
  z-index: 999;
}

.price-cnt1 i {
  position: absolute;
  top: 7px;
  right: 0px;
  /* background: red; */
  content: "";
  color: #ff0000ad;
  font-size: 21px;
  display: block;
  z-index: 999;
}

@media (max-width: 1440px) {
  .content-wrapper {
    padding-left: 105px !important;
  }

  .pricelist_img {
    height: 390px;
  }

  .highlights_img {
    height: 708px;
    width: 633px;
  }

  .highlights_content {
    min-height: 708px;
  }

  .amenitis_box p {
    font-size: 14px;
    text-align: center;
  }

  .overview_img img {
    width: 100%;
    height: 650px;
  }

  .logo-container img {
    height: 125px;
    width: auto;
  }

  .overview-label {
    margin-bottom: 8px;
  }

  .main-heading {
    margin-bottom: 15px;
  }

  .floorPlan_sec .slick-slide .floorPlan_img {
    width: 100%;
    height: 220px;
  }

  .wraper_floorplan {
    height: 580px;
  }

  .masterplan_img {
    height: 580px;
  }

  .location_img {
    height: 600px;
  }

  .builder_text {
    font-size: 14px;
  }

  /* Gallery for 1440px */
  .gallery_slide.left {
    z-index: 5;
    transform: translateX(-420px) translateZ(-100px) rotateY(0deg) scale(0.75);
    opacity: 0.8;
  }

  .gallery_slide.right {
    z-index: 5;
    transform: translateX(420px) translateZ(-100px) rotateY(-0deg) scale(0.75);
    opacity: 0.8;
  }

  .prev-btn {
    left: 0px;
  }

  .next-btn {
    right: 0;
  }

  .amenitis_box {
    padding: 20px 7px;
  }

  .nav_links {
    padding-top: 12px;
    gap: 12px;
  }

  .nav_bar {
    padding: 4px 138px;
  }

  .nav_bar .logo img {
    width: 170px;
    /* height: 58px; */
  }

  .gallery_slide {
    position: absolute;
    width: 373px;
    height: 438px;
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    transform-style: preserve-3d;
  }

  .gallery_container {
    height: 576px;
  }
}

@media (max-width: 1366px) {
  .banner_content_box {
    position: absolute;
    left: 8%;
    top: 56%;
    transform: translateY(-50%);
    z-index: 999;
    color: #fff;
  }
  .banner_content_box h1 {
    letter-spacing: 2px;
    font-size: 45px;
  }
}

@media (max-width: 1280px) {
  .key_highlight p {
    font-size: 14px;
  }

  .nav_links {
    padding-top: 12px;
    gap: 12px;
  }

  .key_highlight .tick_icon {
    padding: 1px 5px;
  }

  .welcome_text {
    font-size: 16px;
  }

  .banner_content_box h1 {
    font-size: 45px;
    margin: 10px 0px;
    font-family: "Tinos-Regular";
  }

  .price_text span {
    font-size: 38px;
  }

  .price_text {
    font-size: 16px;
  }

  .main-heading {
    margin-bottom: 15px;
    font-size: 30px;
  }

  .description {
    font-size: 14px;
  }

  .highlights_content {
    padding: 40px 50px;
  }

  /* Gallery for laptop 1280px */
  .gallery_container {
    max-width: 95%;
    height: 419px;
  }

  .gallery_slide {
    width: 308px;
    height: 311px;
  }

  .gallery_slide.left {
    transform: translateX(-350px) translateZ(-100px) rotateY(0deg) scale(0.75);
  }

  .gallery_slide.right {
    transform: translateX(350px) translateZ(-100px) rotateY(-0deg) scale(0.75);
  }

  .prev-btn {
    left: 60px;
  }

  .next-btn {
    right: 60px;
  }
}

@media (max-width: 768px) {
  .logo-container img {
    height: 64px;
    width: auto;
  }

  .nav_bar {
    width: 100%;
    padding: 10px;
    background: #fff;
  }

  .nav_bar .logo img {
    /* width: 126px; */
    /* height: 58px; */
    filter: none;
  }

  .nav_links .close img {
    width: 26px;
  }
  .nav_bar .logo .light_logo {
    display: none;
  }
  .nav_bar .logo .dark_logo {
    display: block;
    /* height: 50px; */
    width: 150px;
  }
  .nav_bar.fixed .logo .dark_logo {
    display: block;
  }

  .nav_wrapper {
    width: 100%;
    height: 100vh;
  }

  .nav_links {
    width: 100%;
    padding-top: 11px;
    gap: 15px;
  }

  .nav_right .custom_btn {
    display: none;
  }

  .nav_right a {
    border-radius: 25px;
    /* display: none; */
    background: #fff;
    /* box-shadow: 0 0 5px #000; */
    border: 1px solid #b28a5a;
    padding: 5px;
  }

  .nav_right .menu_icon {
    width: 55px;
    cursor: pointer;
  }

  .banner_container .carousel-inner img {
    height: 50vh;
    padding-top: 80px;
    min-height: 50vh;
  }

  .banner_container .carousel-inner::after {
    display: none;
  }

  .banner_content_box {
    position: relative !important;
    background-color: #333;
    top: 0;
    left: 0;
    transform: unset;
  }

  .form-box {
    position: relative;
    bottom: 0px;
    left: 50%;
    width: 350px;
    background: transparent;
    border-radius: 15px;
    box-shadow: unset;
    z-index: 1050;
    transform: translateX(-50%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
  }

  /* .form-box .form_box_inner h3 {
        text-align: start;

    } */

  .form-box .form_box_inner input {
    background-color: transparent;
  }

  .form-box .form_box_inner {
    padding: 0px;
    gap: 10px;
    border: unset !important;
  }

  .key_highlights_box {
    background-color: var(--bg);
    padding: 10px 0px;
  }

  .key_highlights_flexbox {
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 100%;
  }

  .content-wrapper {
    padding-left: 0px !important;
  }

  .overview_color_box {
    display: none;
  }

  .overview_img {
    padding: 10px;
  }

  .overview-label {
    text-align: center;
  }

  .overview_img img {
    height: 200px;
    margin-top: 10px;
  }

  .banner_container {
    /* background-image: url("../img/banner/banner2.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat; */
    background-color: #fff;
  }

  .banner_container:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    /* background-color: #ffffffe0; */
    z-index: 0;
    /* background-color: #f3ede2; */
  }

  .banner_container .carousel {
    z-index: 999;
  }

  .banner_content_box {
    padding: 10px;
    color: var(--primary-color);
    /* background-color: transparent; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f3ede2;
  }

  .banner_content_box ul li {
    color: var(--secondary-color);
  }

  .welcome_text {
    font-size: 16px;
    color: var(--secondary-color);
  }

  .location_icon {
    filter: invert(1);
    width: 22px;
  }

  .banner_content_box h1 {
    font-size: 27px;
    font-family: "Tinos-Regular";
    margin-bottom: 8px;
    margin-top: 0px;
    text-align: center;
    font-weight: bold;
    color: var(--secondary-color);
  }

  .banner_content_box .typology_text {
    font-size: 18px;
    color: var(--secondary-color);
    padding: 8px 12px;
    text-align: center;
    /* background-color: #e0b88f; */
    color: var(--secondary-color);
    width: fit-content;
    margin: auto;
    margin-bottom: 0px;
  }

  .banner_content_box .blinking-text {
    color: #cb1414;
  }

  .price_text {
    font-size: 16px;
    color: var(--secondary-color);
    text-align: center;
    margin-top: 10px;
    background: #fff;
    padding: 9px 10px;
    background: var(--primary-color);
  }

  .price_text span {
    font-size: 26px;
    color: #000;
  }

  .address-vertical {
    rotate: 0deg;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary-color);
    text-align: center;
    margin: 10px 0px;
    display: flex;
    justify-content: center;
    z-index: 999;
  }

  .vertical_line {
    background-color: var(--secondary-color);
  }

  .banner_content_box .custom_btn {
    border-color: var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    width: 100%;
    margin: 15px 0px;
  }

  .main-heading {
    color: var(--primary-color);
    letter-spacing: 2px;
    text-align: center;
  }

  .overview_img::before {
    display: none;
  }

  .description {
    font-size: 14px;
    text-align: center;
  }

  .content_area .custom_btn {
    width: 100%;
    margin: auto !important;
  }

  .highlights_sec {
    /* background-image: url("../img/highlight.webp"); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .highlights_sec::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background-color: #333333ba;
    z-index: 0;
  }

  .highlights_sec.m_bg::after {
    background-color: #00000094;
  }

  .highlights_sec .section_title,
  .highlights_sec .section_subtitle {
    text-align: center;
  }

  .highlights_sec .section_title {
    margin-bottom: 15px;
  }

  .highlights_content {
    padding: 20px 10px;
    width: 100%;
    position: relative;
    top: 0px;
    background-color: transparent;
    min-height: fit-content;
  }

  .highlights_sec .table {
    margin-top: unset;
    height: auto;
  }

  .highlights_img {
    height: 360px;
    width: 100%;
    padding: 10px;
    display: none;
  }

  .highlights_content .table tr:last-child {
    border-bottom-color: transparent;
  }

  .highlights_content .table tr {
    border-bottom: 1px solid #c6c6c6;
    /* backdrop-filter: blur(5px); */
    background-color: #000000bd;
  }

  .custome_container {
    width: 100%;
    margin: auto;
    padding: 10px;
  }

  .pricelist_img {
    display: none;
  }

  .price_box {
    margin-top: 20px;
  }

  .price_section .section_title,
  .price_section .section_subtitle {
    text-align: center;
  }

  .price_section .section_subtitle {
    margin-bottom: 20px;
  }

  .price_section {
    padding: 20px 0px;
  }

  .floorPlan_sec .section_title,
  .floorPlan_sec .section_subtitle {
    margin-left: 10px;
    text-align: center;
  }

  .wraper_floorplan {
    height: fit-content;
    padding-right: 0px;
  }

  .amenities_sec {
    margin-top: 0px;
    background-image: url("../img/amenities.webp") !important;
  }

  .amenities_img {
    display: none;
  }

  .floorPlan_sec {
    padding: 20px 0px;
    position: relative;
  }

  .floorplan_slider {
    padding: 20px 40px;
    background-color: var(--bg);
  }

  .floorPlan_sec .slick-slide .floorPlan_img {
    width: 100%;
    height: 160px;
  }

  .masterplan_img {
    height: 280px;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
  }

  .location_sec .section_title,
  .location_sec .section_subtitle {
    margin-left: 10px;
    text-align: center;
    line-height: 34px;
  }

  .location_img {
    width: 100%;
    position: static;
    height: 460px;
    height: 320px;
  }

  .location_sec .table td {
    padding: 10px 10px;
  }

  .location_sec .table th {
    padding: 10px 10px;
  }

  .highlights_content .table td {
    font-size: 14px;
  }

  .locationFlex_box {
    display: flex;
    flex-wrap: wrap;
  }

  .locationFlexItem1,
  .locationFlexItem2 {
    width: 100%;
  }

  .locationFlexItem1 {
    padding: 0px;
  }

  .form_box_footer {
    width: 100%;
    margin-top: 15px;
  }

  .form_box_footer {
    padding: 15px;
  }

  .builder_text {
    font-size: 12px;
    text-align: center;
  }

  .qr_box + p {
    width: 100%;
    margin: auto;
  }

  .qr_box + p {
    font-size: 10px;
  }

  .about_builder_sec .section_title {
    font-size: 35px;
    text-align: center;
  }

  .project_typo {
    font-size: 16px;
  }

  .projectStartingPrice {
    font-size: 22px;
    font-weight: bold;
  }

  .project_Price {
    font-size: 16px;
  }

  /* CTA btns */
  .mobile-section_1 {
    display: block;
  }

  /* gallery section for mobile */
  .gallery_container {
    height: 230px;
    width: 100%;
  }

  .gallery_slide {
    width: 250px;
    height: 320px;
  }

  .gallery_slide.left {
    transform: translateX(-150px) translateZ(-80px) rotateY(0deg) scale(0.7);
  }

  .gallery_slide.right {
    transform: translateX(150px) translateZ(-80px) rotateY(-0deg) scale(0.7);
  }

  .gallery_slide.center {
    transform: translateX(0) translateZ(30px) scale(1.1);
  }

  .gallery_slide {
    width: 180px;
    height: 200px;
  }

  .nav_btn {
    width: 32px;
    height: 32px;
  }

  .nav_btn i {
    font-size: 20px;
  }

  .prev-btn {
    left: -15px;
  }

  .next-btn {
    right: -15px;
  }

  .nav_wrapper {
    z-index: 999999999;
  }

  .footer_sec {
    padding-bottom: 46px;
  }

  .classic_patch {
    position: absolute;
    right: 19px;
    left: unset;
    width: 98px;
    height: 91px;
    top: 22%;
    z-index: 1000;
  }

  .form_box_inner input {
    height: 40px;
  }

  .form_box_inner .checkbox-section input {
    height: unset;
  }

  .form_box_inner .checkbox-section p {
    font-size: 7px !important;
    color: #000;
    padding: 0 0 0 10px !important;
    margin: 0;
    line-height: unset;
    letter-spacing: 0px !important;
  }

  .popup_form .form_box_inner h3 {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 300;
    margin-bottom: 0px;
    line-height: unset;
    letter-spacing: 0px;
    text-align: center;
  }

  .form_box_inner input {
    outline: none;
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid var(--secondary-color);
    padding: 8px;
    font-size: 14px;
    color: var(--secondary-color);
    letter-spacing: 1.5px;
  }

  .form_box_inner .custom_btn {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 20px;
    margin-top: 5px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 200;
  }

  .popup_form .form_box_inner {
    padding: 6px;
    gap: 4px;
    border: 1px solid #dab88f;
  }

  .popup_form {
    padding: 3px;
  }

  .btn-close {
    background: none;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10px !important;
    left: unset;
    top: 10px;
    z-index: 999;
  }
  .price_cnt {
    display: inline-block;
    padding-top: 0px;
  }
  .price-cnt {
      position: relative;
      font-size: 36px !important;
  }

  .price-cnt i {
      position: absolute;
      top: 3px;
      right: -3px;
      /* background: red; */
      content: "";
      color: #ff0000ad;
      font-size: 42px;
      display: block;
      z-index: 999;
  }

  .price_text {
      text-align: left;
  }
}
@media (max-width:340px) {
  .price-cnt {
    position: relative;
    font-size: 30px !important;
  }

  .price-cnt i {
    position: absolute;
    top: 3px;
    right: -3px;
    /* background: red; */
    content: "";
    color: #ff0000ad;
    font-size: 36px;
    display: block;
    z-index: 999;
  }

  .price_text {
    text-align: left;
    font-size: 13px;
    padding: 9px;
  }

  .price_text span {
    font-size: 22px;
    color: #000;
  }
}

.nav_bar.fixed {
  z-index: 99999999;
}

.modal {
  z-index: 99999;
}
