* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: var(--second-font);
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: Lora;
  font-display: swap;
  src: url("../fonts/Lora/Lora-Regular.ttf");
}

@font-face {
  font-family: Rubik;
  font-display: swap;
  src: url("../fonts/Rubik/Rubik-Regular.ttf");
}

body {
}

:root {
  --primary-theme: #f1ead7;
  --secondary-theme: #b18e4e;
  --text-white: #fff;
  --text-black: #000;
  --first-font: "Lora";
  --second-font: "Rubik";
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  appearance: none;
}

input:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
}

body {
  background-color: var(--text-white);
}

a {
  text-decoration: none !important;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style-type: none;
}

.button {
  background: var(--secondary-theme);
  color: var(--text-white);
  font-size: 20px;
  line-height: 24px;
  padding: 10px 25px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid var(--secondary-theme);
}

.button:hover {
  color: var(--secondary-theme);
  background: var(--text-white);
}

.header {
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 9999;
  transition: 0.3s;
}

.header.scrolled {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.menu-btn {
  background: none;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
  transition: color 0.3s;
}

.menu-btn.scrolled {
  color: rgb(51, 51, 51);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: var(--text-white);
  transition: background-color 0.3s;
}

.hamburger.scrolled div {
  background-color: rgb(51, 51, 51);
}

.logo img {
  max-width: 180px;
  transition: 0.3s;
  filter: invert(1) brightness(435);
  padding: 4px 0px;
}

.header.scrolled .logo img {
  filter: unset;
}

.phone-email {
  animation: 1.2s ease 0s infinite normal none running mobile;
}

.phone-email .button {
  background: rgb(177, 142, 78);
  border-color: rgb(177, 142, 78);
  font-size: 13px;
}

.phone-email .button:hover {
  background: rgb(255, 255, 255);
  color: rgb(177, 142, 78);
}

.phone-email img {
  height: 34px;
}

.phone-email h4 a {
  color: rgb(251, 234, 9);
  margin-left: 5px;
  font-size: 16px;
  font-weight: 600;
}

.phone-email h4 a i {
  filter: invert(0);
}

.phone-email.scrolled h4 a {
  color: rgb(51, 51, 51);
}

.phone-email.scrolled {
  background: transparent;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
}

.phone-email.scrolled img {
  filter: brightness(0);
}

.sidebar {
  position: fixed;
  top: 0px;
  left: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--primary-theme);
  transition: left 0.3s;
  z-index: 9999;
}

.sidebar.open {
  left: 0px;
}

.sidebar .sidebar_logo {
  max-width: 170px;
  position: relative;
  top: 17px;
}

.menu-items {
  list-style: none;
  padding-top: 80px;
}

.menu-items li {
  border-bottom: 1px solid var(--secondary-theme);
}

.menu-items a {
  display: block;
  color: rgb(0, 0, 0);
  padding: 20px 30px;
  text-decoration: none;
  font-size: 18px;
}

.menu-items a:hover {
  background-color: var(--secondary-theme);
  color: var(--primary-theme) !important;
}

.header.scrolled {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
  padding-top: 15px ;
  padding-bottom: 15px ;
}

.menu-btn.scrolled {
  color: rgb(0, 0, 0);
}

.hamburger.scrolled div {
  background-color: rgb(0, 0, 0);
}

.nav-link.scrolled {
  color: rgb(0, 0, 0) !important;
}

.overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 150;
}

.overlay.show {
  display: block;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.main-content {
  margin-top: 80px;
  padding: 40px 20px;
  transition: margin-left 0.4s;
}

.content-section {
  max-width: 1200px;
  margin: 0px auto;
  padding: 60px 0px;
}

.section-title {
  color: rgb(44, 62, 80);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.section-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 20px;
  margin-bottom: 40px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  color: rgb(0, 0, 0);
  font-size: 42px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.close-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.carousel-item img {
  height: 100vh;
  width: 100%;
}

.slider_section {
  position: relative;
}

.slider_section::after {
  content: "";
  position: absolute;
  z-index: 8;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 100%;
  opacity: 1;
  width: 60%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0));
}

.project_box {
  position: absolute;
  bottom: 12%;
  left: 2%;
  z-index: 99;
}

.project_box .pro_logo {
  max-width: 300px;
  margin-bottom: 12px;
  filter: invert(1);
}

.invest_in {
  display: none;
}

.project_box h1 {
  font-family: var(--first-font);
  font-size: 58px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 2px;
}

.project_box p {
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 10px;
}

.project_box p img {
  filter: invert(1);
  margin-right: 5px;
}

.project_box h4 {
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 12px;
}

.project_box h3 {
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 14px;
}

.project_box h3 span {
  font-size: 28px;
  color: var(--text-white);
}

.project_box ul {
  padding: 0px;
  margin: 0px;
  align-items: center;
}

.project_box ul li {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--text-white);
}

.project_box ul li img {
  max-width: 24px;
  margin-right: 5px;
}

.project_box ul li span {
  display: block;
  font-size: 24px;
  font-weight: 600;
}

.carousel-indicators [data-bs-target] {
  height: 5px;
}

.form_section h6 {
  font-size: 19px;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-white);
}

.form_section input {
  width: 100%;
  padding: 8px;
  border-top-width: medium;
  border-right-width: medium;
  border-left-width: medium;
  border-top-style: none;
  border-right-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-left-color: currentcolor;
  border-image: initial;
  border-bottom: 1px solid var(--text-white);
  background: transparent;
  border-radius: 0px;
  color: var(--text-white);
}

.form_section input::placeholder {
  color: var(--text-white);
}

.form_section .lg_btn {
  background: rgb(255, 255, 255);
  color: var(--secondary-theme);
}

.form-toggle-btn {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background: var(--secondary-theme);
  color: var(--text-white);
  padding: 12px 7px;
  border-radius: 4px 0px 0px 4px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
  writing-mode: vertical-lr;
  letter-spacing: 1px;
  border: 1px solid var(--secondary-theme);
}

.form-toggle-btn:hover {
  background: var(--text-white);
  color: var(--secondary-theme);
}

.slide-form {
  position: fixed;
  right: -400px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  background: var(--secondary-theme);
  padding: 24px;
  border-radius: 20px 0px 0px 20px;
  max-width: 350px;
  width: 100%;
  transition: right 0.4s;
}

.slide-form.active {
  right: 0px;
}

.form-close-btn {
  position: absolute;
  top: -10px;
  right: 9px;
  background: transparent;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  color: var(--text-white);
  font-size: 34px;
  cursor: pointer;
}

.carousel-indicators {
  z-index: 999;
}

.overview_section {
  padding: 80px 0px;
}

.section_title {
  font-family: var(--first-font);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.subheading {
  font-family: var(--second-font);
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
  text-transform: capitalize;
  color: var(--secondary-theme);
  letter-spacing: 1px;
}

.overview_section .para {
  font-size: 16px;
  margin-bottom: 0px;
  text-align: justify;
  text-align-last: center;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 2rem;
  place-items: center;
}

.overview-item {
  text-align: center;
  padding: 1.25rem;
}

.icon {
  font-size: 3rem;
  color: var(--text-gray);
  margin-block-end: 1rem;
}

.icon img {
  width: 50px;
  height: 50px;
}

.label {
  color: var(--text-black);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-block-end: 0.5rem;
}

.value {
  color: rgb(51, 51, 51);
  font-weight: 500;
  font-size: 1.125rem;
}

.highlight_section {
  padding: 80px 0px;
  position: relative;
  background: url("../img/highlight-img.webp") 0% 0% / cover no-repeat fixed;
  z-index: 1;
  overflow-x: hidden !important;
}

.highlight_section::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 49%);
}

.highlight_section .section_title {
  position: relative;
  z-index: 999;
  color: var(--text-white);
}

.highlight_section .subheading {
  position: relative;
  z-index: 999;
  color: var(--text-white);
  margin-bottom: 30px;
}

.highlight_image {
  height: 100%;
  object-fit: cover;
}

.feature-card-wrapper {
  position: relative;
  padding: 3px;
  border-radius: 15px;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 20px;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  height: 100%;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  z-index: 2;
  min-height: 150px;
}

.feature-card:hover {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 30px;
}

.feature-card-wrapper::before,
.feature-card-wrapper::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid var(--secondary-theme);
  z-index: 1;
}

.feature-card-wrapper::before {
  top: 0px;
  left: 0px;
  border-right-width: medium;
  border-right-style: none;
  border-right-color: currentcolor;
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  border-top-left-radius: 15px;
}

.feature-card-wrapper::after {
  bottom: 0px;
  right: 0px;
  border-left-width: medium;
  border-left-style: none;
  border-left-color: currentcolor;
  border-top-width: medium;
  border-top-style: none;
  border-top-color: currentcolor;
  border-bottom-right-radius: 15px;
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: var(--secondary-theme);
  color: rgb(255, 255, 255);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.feature-icon span {
  color: rgb(255, 255, 255);
  font-size: 24px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: rgb(44, 62, 80);
  margin-bottom: 7px;
}

.feature-description {
  color: rgb(44, 62, 80);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0px;
}

.price_list_section {
  padding: 80px 0px;
  overflow-x: hidden !important;
}

.price_list_section .calling {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.price_box {
  background: var(--text-white);
  padding: 30px 15px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 20px;
  text-align: center;
}

.price_box:hover {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 30px;
  transform: translateY(-5px);
  transition: 0.3s;
}

.price_box h5 {
  font-size: 22px;
  margin-bottom: 12px;
}

.price_box h6 {
  font-size: 22px;
  margin-bottom: 12px;
}

.price_box p {
  font-size: 22px;
  margin-bottom: 15px;
}

.price_box p span {
  font-size: 26px;
  color: var(--secondary-theme);
}

.price_box .button {
  font-size: 18px;
  line-height: 21px;
  padding: 7px 25px;
  background: var(--secondary-theme);
  color: rgb(255, 255, 255);
}

.amenities_section {
  padding: 80px 0px;
  background: var(--primary-theme);
  overflow: hidden;
}

.amenities_section ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.amenities_section .amenity_list {
  display: flex;
  flex-direction: column;
}

.amenities_section ul .amenity-box {
  background: var(--secondary-theme);
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  margin: 10px;
  min-width: 180px;
  position: relative;
  overflow: hidden;
}

.amenities_section ul .amenity-box.ameinity_width {
  width: 100%;
}

.amenities_section ul .amenity-box img {
  filter: invert(1);
}

.amenity-box .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.753);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 10px;
}

.amenity-box:hover .overlay {
  opacity: 1;
}

.col-4.align-self-center.pe-0.d_view
  .amenity_list
  .amenity-box:first-child
  .overlay {
  opacity: 1;
  pointer-events: none;
}

.amenities_section ul .amenity-box .overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  filter: unset;
}

.amenities_section ul .amenity-box span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  padding-top: 10px;
  color: var(--text-white);
}

.amenity-box .overlay span {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  z-index: 2;
  padding: 5px 10px;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
}

.floor_section {
  padding: 80px 0px;
}

.floor_section .nav.nav-tabs {
  justify-content: center;
  border-bottom: 0px;
  gap: 20px;
  margin-top: 20px;
}

.floor_section .nav-tabs .nav-link {
  background: var(--secondary-theme);
  border-radius: 4px;
  width: 220px;
  color: rgb(255, 255, 255) !important;
  padding: 10px 40px !important;
  border-width: medium !important;
  border-style: none !important;
  border-color: currentcolor !important;
  border-image: initial !important;
}

.floor_section .nav-tabs .nav-link.active {
  background-color: var(--secondary-theme);
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  color: rgb(255, 255, 255) !important;
}

.floor_section .tab-content {
  margin-top: 30px;
}

.floor_section .tab-content h5 {
  font-size: 20px;
  margin-bottom: 0px;
  text-align: center;
  background: var(--secondary-theme);
  padding: 14px 0px;
  color: var(--text-white);
  border-radius: 4px;
}

.floor_section .floor_image {
  background: var(--text-white);
  padding: 20px;
  border-radius: 20px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.13) 4px 4px 10px 4px;
}

.floor_section .floor_image span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 400;
  cursor: pointer;
  background: var(--secondary-theme);
  padding: 10px 12px;
  color: var(--text-white);
  border-radius: 4px;
  font-size: 13px;
}

.location_section {
  padding: 80px 0px 40px;
  background: var(--primary-theme);
  position: relative;
  overflow: hidden;
}

.location-container {
  position: relative;
  max-width: 1200px;
  margin: 0px auto;
  height: 550px;
}

.central-logo {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 25px;
  z-index: 10;
}

.central-logo .brand-name {
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.central-logo .sub-text {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.location-point {
  position: absolute;
  padding: 12px 0px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  z-index: 5;
  width: 250px;
}

.location-point img {
  max-width: 16px;
}

.location-point.left {
  text-align: right;
  left: 0px;
}

.location-point.right {
  text-align: left;
  right: 0px;
}

.location-name {
  display: block;
  margin-bottom: 2px;
}

.location-time {
  font-size: 16px;
  font-weight: bold;
}

.connecting-line {
  position: absolute;
  border-top: 2px dotted rgb(102, 102, 102);
  z-index: 1;
}

.vertical-line {
  position: absolute;
  border-left: 2px dotted rgb(102, 102, 102);
  z-index: 1;
}

.location-1 {
  top: 60px;
  left: 1%;
}

.location-2 {
  top: 180px;
  left: 9%;
}

.location-3 {
  top: 320px;
  left: 6%;
}

.location-4 {
  top: 450px;
  left: 13%;
}

.location-5 {
  top: 65px;
  right: 17%;
}

.location-6 {
  top: 192px;
  right: 103px;
}

.location-7 {
  top: 329px;
  right: 15%;
}

.location-8 {
  top: 454px;
  right: 11%;
}

.line-1 {
  top: 92px;
  left: 260px;
  width: 238px;
}

.line-2 {
  top: 220px;
  left: 258px;
  width: 200px;
}

.line-3 {
  top: 362px;
  left: 278px;
  width: 245px;
}

.line-4 {
  top: 492px;
  left: 278px;
  width: 209px;
}

.line-5 {
  top: 92px;
  left: 702px;
  width: 224px;
}

.line-6 {
  top: 220px;
  left: 727px;
  width: 200px;
}

.line-7 {
  top: 362px;
  left: 725px;
  width: 210px;
}

.line-8 {
  top: 492px;
  left: 746px;
  width: 190px;
}

.v-line-left {
  left: 500px;
  top: 92px;
  height: 400px;
}

.v-line-right {
  right: 500px;
  top: 92px;
  height: 400px;
}

.decision_corner {
  position: relative;
  padding: 80px 0px;
  overflow: hidden;
}

.decision_corner::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url("../img/banner/banner2.webp") center center / cover no-repeat;
  filter: blur(1px);
  z-index: 1;
}

.decision_corner > .container {
  position: relative;
  z-index: 2;
}

.decision_corner::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.decision_corner .section_title {
  color: var(--text-white);
}

.decision_corner .subheading {
  color: var(--text-white);
}

.flex_div {
  display: flex;
  justify-content: center;
}

.boxes {
  padding: 15px;
  text-align: center;
}

.title {
  font-size: 17px;
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
  color: var(--text-white);
}

.gallery_section {
  padding: 80px 0px 120px;
  position: relative;
  overflow: hidden;
}

.center-slider .gallery-card {
  background-color: var(--secondary-theme);
  border-radius: 10px;
  padding: 3px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
  position: relative;
}

.center-slider .gallery-card span {
  position: absolute;
  bottom: 10px;
  right: 2%;
  font-size: 10px;
  color: var(--text-white);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px;
  border-radius: 5px;
}

.center-slider .gallery-card img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.center-slider .slick-slide {
  margin: 0px 10px;
}

.slide-arrow6.prev-arrow6,
.slide-arrow6.next-arrow6 {
  position: absolute;
  bottom: -50px;
  z-index: 10;
  background: var(--secondary-theme);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s;
  height: 44px;
  width: 44px;
  text-align: center;
}

.slide-arrow6.prev-arrow6 {
  right: 70px;
}

.slide-arrow6.next-arrow6 {
  right: 10px;
}

.slide-arrow6:hover {
  background: rgb(0, 10, 43);
}

.slide-arrow6 img {
  filter: brightness(0) invert(1);
}

.about_builder {
  padding: 80px 0px;
  background-image: url("../img/about_builder.webp");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 1;
  position: relative;
  overflow-x: hidden !important;
}

.about_builder::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.63);
  z-index: -1;
}

.about_builder h5 {
  font-size: 35px;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--text-white);
}

.about_builder p {
  font-size: 17px;
  margin-bottom: 0px;
  text-align: justify;
  color: var(--text-white);
}

.about_builder .footer_form {
  background: var(--primary-theme);
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
  max-width: 450px;
  border-radius: 10px;
  margin-left: auto;
}

.about_builder .footer_form h6 {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
}

.about_builder .footer_form input {
  width: 100%;
  padding: 8px 10px;
  border-width: medium medium 1px;
  border-style: none none solid;
  border-color: currentcolor currentcolor rgb(0, 0, 0);
  border-image: initial;
  border-radius: 0px;
  background: var(--primary-theme);
}

footer {
  padding: 70px 0px;
}

footer .disclaimer p {
  color: var(--text-black);
  font-size: 13px;
  margin-bottom: 10px;
}

footer .disclaimer .moreless-button {
  color: var(--text-black);
  font-size: 13px;
}

footer .rera_details p {
  color: var(--text-black);
  font-size: 13px;
  margin: 10px 0px;
}

footer .rera_details a {
  color: var(--text-black);
}

footer .rera_details a:hover {
  text-decoration: underline !important;
}

.modal .modal-header {
  border-bottom: 1px solid var(--secondary-theme);
}

.modal .btn-close {
  opacity: 1;
}

.modal .modal-header h6 {
  font-size: 21px;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
}

.modal input {
  width: 100%;
  padding: 8px 10px;
  border-width: medium medium 1px;
  border-style: none none solid;
  border-color: currentcolor currentcolor rgb(0, 0, 0);
  border-image: initial;
  border-radius: 0px;
  height: 40px;
}

.modal .form-control:focus {
  color: rgb(33, 37, 41);
  background-color: var(--text-white);
  border-color: var(--secondary-theme);
  outline: 0px;
  box-shadow: none;
}

.modal input::placeholder {
  color: rgb(0, 0, 0);
}

.modal .inp-box {
  margin-bottom: 12px;
}

.fixedIcons {
  position: fixed;
  z-index: 99;
  bottom: 15px;
  padding: 5px;
  background: rgb(255, 252, 241);
  border-radius: 50%;
  animation: 1.25s cubic-bezier(0.66, 0, 0, 1) 0s infinite normal none running
    pulse;
  box-shadow: rgb(41, 167, 26) 0px 0px 0px 0px;
}

.fixedIcons {
  &.whatsapp {
    left: 15px;
  }
}

.fixedIcons {
  &.phone {
    right: 15px;
    background: var(--text-white);
  }
}

.fixedIcons {
  & img {
    width: 40px;
    padding: 5px;
  }
}

.mobile-section-footer {
  display: none;
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  background: var(--secondary-theme);
  color: rgb(255, 255, 255);
  padding: 5px 0px;
}

.typ-bg {
  display: none;
}

.d_view {
  display: block;
}

.m_view {
  display: none;
}

.project_box .all_inc {
  font-size: 16px;
}

.price_list_section .subheading_inclu {
  font-size: 18px;
  text-align: center;
  margin-bottom: 0px;
}

#carouselExampleIndicators1 .carousel-item img {
  height: unset;
}

.pro_name span {
  display: block;
  font-size: 24px;
  margin-top: 9px;
}

.price_boxx {
  margin-bottom: 24px;
}

@media (max-width: 1480px) {
  .form_section {
  }

  .project_box {
    bottom: 16%;
    left: 4%;
  }

  .project_box h1 {
    font-size: 38px;
    letter-spacing: 1px;
  }

  .value {
    font-size: 20px;
  }
}

@media (max-width: 1366px) {
  .slick-slide img {
    max-width: 350px;
  }

  .next-arrow6 {
    right: 2%;
  }

  .line-5 {
    left: 617px;
  }

  .line-6 {
    left: 640px;
  }

  .line-7 {
    left: 613px;
  }

  .line-8 {
    left: 610px;
  }

  .fixedIcons {
    &.phone {
      right: 10px;
    }
  }

  .fixedIcons {
    & img {
      width: 40px;
    }
  }

  .amenities_section ul .amenity-box {
    padding: 25px;
    margin: 10px 5px;
    min-width: 160px;
  }
}

@media (max-width: 767px) {
  .location-point {
    width: 100%;
    margin:  15px 0;
  }
  .d_view {
    display: none;
  }

  .m_view {
    display: block;
  }

  .invest_in {
    display: block;
    font-size: 25px;
    color: var(--text-black);
    margin-bottom: 6px;
    font-family: var(--first-font);
    font-weight: 700;
  }

  .carousel-indicators {
    z-index: 9;
  }

  .menu-items {
    padding-top: 40px;
  }

  .logo img {
    max-width: 140px;
  }

  .header .menu-btn span {
    display: none;
  }

  .navbar-brand {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-right: 0px;
  }

  .nav-item .nav-link {
    margin-bottom: 0px;
    text-align: center;
  }

  .phone-email {
    display: none !important;
  }

  .navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.55);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .carousel-inner img {
    min-height: 305px;
  }

  .carousel-item img {
    height: auto;
    width: 100%;
    object-fit: cover;
    min-height: 305px;
  }

  .slider_section .project_box {
    position: unset;
    padding: 20px 0px;
    background: rgb(255, 255, 255);
    text-align: center;
  }

  .carousel-indicators {
    bottom: 70%;
  }

  .slider_section .form_section {
    position: unset;
    width: 100%;
    border-radius: 0px;
    transform: unset;
    max-width: 100%;
  }

  .slider_section::after {
    background: none;
    width: unset;
    position: unset;
  }

  .project_box h1 {
    font-size: 25px;
    margin-bottom: 10px;
    color: var(--text-black);
  }

  .project_box p {
    margin-bottom: 8px;
    color: var(--text-black);
    font-size: 18px;
  }

  .project_box h3 {
    color: var(--text-black);
    font-size: 18px;
  }

  .project_box h3 span {
    color: var(--text-black);
  }

  .project_box p img {
    filter: unset;
  }
  .project_box ul {
    text-align: center;
  }
  .project_box ul li {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 3px;
    color: var(--text-black);
    text-align: center;
    /* margin-left: 25px; */
    /* display: flex; */
    align-items: start;
  }

  .project_box ul li img {
    width: 18px;
    filter: invert();
  }

  .feature-description {
    color: rgb(44, 62, 80);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 0px;
  }

  .form-close-btn {
    display: none;
  }

  .form-toggle-btn {
    display: none;
  }

  .section_title {
    font-size: 26px;
  }

  .subheading {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .overview_section {
    padding: 50px 0px;
  }

  .overview-grid {
    grid-template-columns: unset;
    gap: 0rem;
    place-items: unset;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .overview-item {
    text-align: center;
    padding: 8px 4px;
    width: 50%;
  }

  .label {
    color: var(--text-black);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0px;
    margin-block-end: 0.5rem;
  }

  .highlight_section {
    padding: 50px 0px;
  }

  .feature-card {
    padding: 14px;
    min-height: 180px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .feature-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .price_box {
    max-width: 350px;
    margin: 0px auto 20px;
  }

  .price_list_section {
    padding: 50px 0px;
  }

  .price_list {
    margin-top: 10px;
  }

  .amenities_section {
    padding: 50px 0px;
  }

  .amenities_section ul {
    min-height: 330px;
    overflow-y: scroll;
    height: 330px;
  }

  .amenities_section ul .amenity-box {
    padding: 7px;
    margin: 7px;
    min-width: unset;
    width: 150px;
    z-index: 9;
  }

  .amenities_section ul .amenity-box img {
    max-width: 50px;
  }

  .amenities_section ul .amenity-box .overlay img {
    max-width: 100%;
  }

  .amenities_section ul .amenity-box span {
    font-size: 16px;
  }

  .col-12.m_view ul .amenity-box:first-child .overlay {
    opacity: 1;
    pointer-events: none;
  }

  .amenities_section ul .amenity-box .overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    filter: unset;
  }

  .amenities_section ul .amenity-box span {
    display: block;
    font-size: 17px;
    font-weight: 500;
    padding-top: 10px;
    color: var(--text-white);
  }

  .amenity-box .overlay span {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    z-index: 2;
    padding: 5px 10px;
    border-radius: 6px;
    text-align: center;
    white-space: nowrap;
  }

  .floor_section {
    padding: 50px 0px;
  }

  .floor_section .nav.nav-tabs {
    margin-top: 10px;
    gap: 15px;
  }

  .floor_section .nav-tabs .nav-link {
    width: 140px;
    padding: 10px !important;
  }

  .floor_section .floor_image {
    margin-bottom: 15px;
  }

  .floor_section .tab-content h5 {
    padding: 8px 0px;
  }

  .decision_corner {
    padding: 50px 0px;
  }

  .decision_corner .subheading {
    font-size: 13px;
  }

  .title {
    font-size: 12px;
  }

  .gallery_section {
    padding: 50px 0px 80px;
  }

  .slide-arrow6.next-arrow6 {
    right: 36%;
  }

  .slide-arrow6.prev-arrow6 {
    right: 51%;
  }

  .slick-slide img {
  }

  .about_builder {
    padding: 50px 0px;
  }

  .about_builder h5 {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .about_builder p {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .form_section.slide-form .button {
    padding: 10px 40px;
  }

  footer {
    padding: 50px 0px 70px;
  }

  .footer_form .button {
    padding: 10px 40px;
  }

  .price_list {
    background: transparent;
    border-radius: 0px;
  }

  .location_section {
    padding: 50px 0px;
  }

  .location-container {
    height: auto;
  }

  .central-logo {
    position: unset;
    transform: unset;
    width: 100%;
    box-shadow: none;
    border-radius: 0px;
  }

  .central-logo img {
    border-radius: 0px !important;
  }

  .location-point {
    position: unset;
    text-align: left;
    z-index: 999;
    padding: 0px 0px 10px;
  }

  .location-point.left {
    text-align: left;
    display: flex;
    justify-content: space-between;
  }

  .location-point.right {
    text-align: left;
    display: flex;
    justify-content: space-between;
  }

  .location-name {
    margin-bottom: 0px;
  }

  .connecting-line {
    display: none;
  }

  .fixedIcons {
    bottom: 45px;
  }

  .fixedIcons {
    bottom: 45px;
  }

  .fixedIcons {
    & img {
      width: 35px;
    }
  }

  .mobile-section-footer {
    display: flex;
    gap: 0px 5px;
    justify-content: space-around;
    z-index: 999;
  }

  .mobile-section-footer a {
    display: block;
    font-size: 14px;
    padding: 6px 8px;
    color: rgb(255, 255, 255);
    border-radius: 5px 0px;
  }

  .decision_corner .button {
    background-color: var(--secondary-theme);
    color: var(--text-white);
    font-size: 16px;
    line-height: unset;
    padding: 10px;
  }

  .icon {
    font-size: 2rem;
  }

  .project_box h4 {
    color: var(--text-black);
  }

  .header {
    background: rgba(0, 0, 0, 0.34);
  }

  .about_builder .footer_form h6 {
    font-size: 20px;
  }

  .modal .modal-header h6 {
    font-size: 17px;
    margin-bottom: 0px;
  }

  .project_box .all_inc {
    text-align: left;
    font-size: 16px;
    padding-left: 20px;
  }
}

@keyframes pulse {
  100% {
    box-shadow: rgba(255, 232, 160, 0) 0px 0px 0px 20px;
  }
}

@keyframes mobile {
  0%,
  100% {
    transform: scaleX(1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
}
