/* @import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap'); */

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* 

/* Poppins SemiBold - 600 */
@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

/* Poppins Bold - 700 */
@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins/Poppins-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair";
  src: url("../font/Playfair/Playfair_9pt-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../font/Playfair/PlayfairDisplay-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

:root {
  --theme-bg-linear: linear-gradient(to right, #d4a21f, #e7c664);
  --theme-color: #d4a21f;
  --grey: #9ca3af;
  --bg-color: #f4f3ee;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Poppins;
  background-color: var(--bg-color);
}

button:focus {
  box-shadow: none !important;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: black;
  display: inline-block;
}

a:hover {
  color: black;
}

ul {
  list-style: none;
}

.d-view {
  display: block;
}

.m-view {
  display: none;
}

.container {
  max-width: 97%;
  margin: auto;
}

.heading {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 2px;
  color: black;
  max-width: 50%;
  text-align: center;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

section {
  padding: 60px 0;
}

.section_container {
  max-width: 70%;
  margin: auto;
}

.section_left_heading {
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 35px;
  line-height: 41px;
  color: #7a7977;
  letter-spacing: 5px;
  white-space: nowrap;
  transform-origin: center;
}

.btn {
  font-size: 10px;
  letter-spacing: 1.5px;
  background: var(--theme-bg-linear);
  border-radius: 0;
  padding: 10px 13px;
  text-transform: uppercase;
  max-width: 170px;
  width: 100%;
  transition: all 0.5s ease-in-out;
  border: 1px solid var(--theme-color);
  font-weight: 500;
}

.btn:hover {
  background: white;
}

/* Navbar Start*/

nav {
  padding: 14px 0;
  position: fixed;
  z-index: 10;
  background: white;
  width: 100%;
}

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

nav .nav_logo img {
  max-width: 180px;
}

nav .nav_links ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  gap: 0 10px;
}

nav .nav_links ul li a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  color: black;
}

nav .nav_links .call_us a {
  font-size: 14px;
  margin-right: 10px;
  color: var(--theme-color);
  font-weight: 600;
  animation: blinking_callus 1s linear infinite alternate-reverse;
  letter-spacing: 2px;
  cursor: pointer;
}

@keyframes blinking_callus {
  from {
    color: var(--theme-color);
  }

  to {
    color: black;
  }
}

nav .nav_links ul .nav_link {
  display: block;
  color: black;
}

/*  *****Code By Randhir Start ******* */

.menu_btn {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -350px;
  width: 330px;
  height: 100%;
  background-color: #35543ded;
  color: #fff;
  padding: 10px 20px;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;
  z-index: 20;
}

.side-menu.active {
  right: 0;
}

.side-menu .close-btn {
  background: transparent;
  border: 1px solid #fff !important;
  border-radius: 30px;
  padding: 3px 10px;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 35px;
  right: 20px;
  font-weight: bold;
}

.side-menu .side_nav_logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.side-menu .side_nav_logo img {
  width: 150px;
}

.side-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 140px;
  gap: 15px;
}

.side-menu ul li {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
  padding-bottom: 13px;
  width: 100%;
  text-transform: uppercase;
}

.side-menu ul li:last-child {
  border-bottom: none;
}

.side-menu ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.side-menu ul li a:hover {
  color: var(--primary-color);
}

.nav .nav_links .menu_btn {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

/*  *****Code By Randhir End ******* */

/* Navbar End*/

/* Hero Section Start*/

.hero_section {
  height: 100%;
  width: 100%;
  padding: unset;
  background: white;
}

.hero_section .banner {
  height: 100%;
  width: 100%;
}

.hero_section .row .col-md-3 {
  padding: 0;
}

.hero_section .key_points {
  padding: 0px 35px;
  position: relative;
  border-left: 2px dotted var(--grey);
  padding: 1.5rem 25px;
  margin: 1rem 0;
}

.hero_section .row .col-md-3:first-child .key_points {
  border-left: 0;
  justify-content: center;
}

.hero_section .key_points h4 {
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 0;
  line-height: 20px;
}

.hero_section .banner {
  height: 100vh;
}

.hero_section .banner_content {
  position: absolute;
  top: 13%;
  left: 50%;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  height: 100%;
  max-width: 75%;
  margin: auto;
  width: 100%;
  transform: translateX(-50%);
  z-index: 0;
}

.hero_section .banner_content .row {
  text-align: center;
}

.hero_section .banner_content .left,
.hero_section .banner_content .right {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  flex-direction: column;
  flex: 1;
}

.hero_section .banner_content .left .bottom,
.hero_section .banner_content .right .top {
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 400;
}

.hero_section .banner_content .left .top,
.hero_section .banner_content .right .bottom {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 400;
  padding: unset;
}

.hero_section .banner_content .left .top {
  line-height: 35px;
}

.hero_section .banner_content .right .bottom {
  line-height: 35px;
  margin-top: 16px;
}

.hero_section .banner_content .left,
.hero_section .banner_content .right {
  display: flex;
  align-items: center;
  flex-direction: row;
  height: 100%;
  justify-content: space-around;
  width: 100%;
}

.hero_section .banner_content .left .top,
.hero_section .banner_content .left .bottom,
.hero_section .banner_content .right .top,
.hero_section .banner_content .right .bottom {
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.hero_section .banner_content .logo {
  max-width: 210px;
}

.hero_section .status_box {
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 35%;
  margin: auto;
  width: 100%;
  margin-top: 16px;
}

.hero_section .status_box .price {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero_section .status_box .horizontal_line {
  height: 0.1px;
  width: 100%;
}

.hero_section .right .vertical_line,
.hero_section .left .vertical_line {
  height: 90px;
  width: 0.5px;
  margin: 0 20px;
}

.hero_section .btn {
  font-size: 13px;
  padding: 13px 13px;
  margin-top: 26px;
}

.hero_section .middle .vertical_line {
  display: flex;
  align-items: center;
}

.hero_section .right .bottom {
  line-height: 27px !important;
}

.hero_section .container .row {
  align-items: center;
}

/* Hero Section End*/

/* About Us Start */

.about_us {
  position: relative;
}

.about_us .section_left_heading {
  left: -8%;
  top: 48%;
}

.about_us .right img {
  min-height: 450px;
  height: 100%;
}

/* .about_us .container {
  max-width: 70%;
} */

.about_us .left .para {
  color: black;
  font-size: 14px;
  letter-spacing: 1.56px;
  line-height: 25px;
  font-size: 13px;
}

.about_us .row {
  background-color: white;
}

.about_us .row:last-child {
  background-color: unset;
}

.about_us .left {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about_us .right {
  padding: 0;
}

.about_us .left .para {
  font-size: 12px;
}

.about_us .bottom {
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.about_us .bottom .box {
  text-align: center;
}

.about_us .bottom .location {
  display: flex;
  flex: 2;
  gap: 0 0px;
  justify-content: space-between;
}

.about_us .bottom h3 {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  flex: 1;
}

.about_us .bottom .box p {
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 12px;
}

.about_us .bottom .box img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.about_us .left .btn {
  margin-top: 30px;
}

/* About Us End */

/* Price List Start */

.price_list {
  position: relative;
  padding-bottom: 0;
}

.price_list .section_container {
  /* margin-bottom: 75px; */
}

.price_list .box {
  padding: 0;
  padding-bottom: 60px;
}

.price_list .section_left_heading {
  top: 40%;
}

.price_list .box li {
  width: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  padding: 15px 26px;
  letter-spacing: 1px;
  text-align: left;
  margin-bottom: 24px;
}

.price_list .box li p,
.price_list .box li button {
  flex: 1;
  font-size: 14px;
}

.price_list .box li button {
  font-size: 12px;
}

.price_list .bottom {
  display: flex;
  align-items: center;
  margin-top: 35px;
}

.price_list .bottom h3 {
  font-family: "Playfair", serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  flex: 1;
}

.price_list .bottom .location {
  display: flex;
  flex: 2;
  gap: 0px;
  justify-content: space-between;
}

.price_list .key_points .bottom {
  margin-bottom: 35px;
}

.price_list .bottom .box {
  text-align: center;
  padding-bottom: 0;
}

.price_list .bottom .box img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.price_list .bottom .box p {
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 12px;
  color: black;
}

.price_list .key_points {
  background-color: white;
  padding: 65px 0;
  padding-bottom: 0;
  padding-top: 0;
}

/* Price List End */

/* Amenities Start */

.amenities {
  position: relative;
  height: 80vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease;
}

.amenities .heading{
  color: white;
}

.amenities::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
}

.amenities .content {
  background-color: white;
  padding: 1.5rem 30px;
  position: absolute;
  bottom: 13%;
  max-width: 60%;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  padding: 25px 50px;
}

.amenities .box {
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: space-around;
}

.amenities .box .action_btn {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.4;
  filter: grayscale(1);
  margin-right: 16px;
}

.amenities .not_active {
  display: flex;
}

.amenities .box .action_btn:hover {
  opacity: 0.7;
}

.amenities .box .action_btn.active {
  margin-right: 60px;
  opacity: 1;
  filter: grayscale(0);
}

.amenities .box .action_btn.active img {
  height: 45px;
  width: 45px;
  object-fit: contain;
}

.amenities .box .action_btn img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}

.amenities .box .action_btn h4 {
  font-size: 20px;
  text-transform: uppercase;
  font-family: "Playfair", serif;
  margin-bottom: 0;
  white-space: nowrap;
}

.amenities .btns {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
}

.amenities .btns button {
  background-color: transparent;
  border: none;
  position: absolute;
  cursor: pointer;
}

.amenities .btns button.right {
  right: 0;
}

.amenities .btns button img {
  width: 30px;
  height: 30px;
}

.amenities .not_active {
  position: relative;
  display: flex;
  gap: 20px;
}

.amenities .not_active .indicator {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 80px;
  /* matches button width */
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s ease;
  pointer-events: none;
}

/* Amenities End */

/* Floor Plan Start */

.plan-section {
  position: relative;
  background: white;
}

.plan-section .heading{
  color: black;
}

.plan-section .section_left-heading {
  left: -10%;
  top: 35%;
}

.plan-section .sub-heading {
  color: #09142f;
  font-size: 13px;
  margin: 30px 0;
  line-height: 23px;
  padding: 0 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  font-weight: 300;
}

.plan-section .content-wrapper {
  display: flex;
  justify-content: center;
}

.plan-section .content-container {
  width: 90%;
  max-width: 1200px;
  text-align: center;
}

.plan-section .image-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.plan-section .main-image {
  height: 340px;
  cursor: pointer;
  transition: opacity 0.3s;
  max-width: 100%;
  object-fit: contain;
}

.plan-section .main-image:hover {
  opacity: 0.8;
}

.plan-section .carousel-container {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 16px 8px;
  margin-top: 16px;
  position: relative;
}

.plan-section .carousel-item {
  transition: none;
}

.plan-section .slide-text {
  font-weight: 600;
  color: black;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
  transition: all 0.2s;
  text-align: center;
}

.plan-section .slide-text:hover {
  color: #000;
}

.plan-section .slide-text.active {
  color: #000;
  font-weight: 600;
}

.plan-section .carousel-control-prev,
.plan-section .carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.plan-section .carousel-control-prev {
  left: -20px;
}

.plan-section .carousel-control-next {
  right: -20px;
}

.plan-section .carousel-control-prev-icon,
.plan-section .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

.plan-section .section_left_heading {
  top: 35%;
  left: -3%;
}

/* Floor Plan End */

/* Amenities Start */

.amenities {
  position: relative;
}

/* Amenities End */

/* Specification Start */

.specification {
  position: relative;
}

.specification .section_left_heading {
  left: -4%;
}

.specification .content {
  background-color: white;
  padding: 18px 30px;
  min-height: 417px;
  overflow-y: auto;
  scrollbar-width: none;
}

.specification .content .box {
  border-bottom: 1px solid var(--grey);
  padding: 19px 0;
}

.specification .content .box .ques {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.specification .content .box .ques h4 {
  font-size: 14px;
  /* font-weight: bold; */
  margin-bottom: 0;
  letter-spacing: 1px;
}

.specification .content .box .ans {
  padding-right: 40px;
  text-align: left;
  margin-top: 20px;
}

.specification .content .box .val {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 12px;
}

.specification .content .box .ans h4 {
  font-size: 13px;
  margin-bottom: 4px;
}

.specification .content .box .ans .val h4:first-child {
  flex: 1;
}

.specification .content .box .ans .val h4:last-child {
  flex: 2;
}

.specification .row .left img {
  object-fit: COVER;
  width: 100%;
  height: 426px;
}

/* Specification End */

/* Location Start */

.location_map {
  position: relative;
  height: 80vh;
  color: white;
}

.location_map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
  height: 100%;
  width: 100%;
}

.location_map .heading {
  max-width: 70%;
}

.location_map .content {
  display: flex;
  align-items: center;
}

.location_map .btn {
  margin-left: auto;
  display: block;
  margin-right: auto;
  margin-top: 40px;
  background: #d4a21f;
}

.location_map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/location/location-bg.webp") no-repeat;
  background-attachment: fixed;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-size: cover;
}

.location_map .section_left_heading {
  left: -4%;
  color: white;
}

.location_map .heading {
  position: relative;
}

.location_map .heading {
  color: white;
}

.location_map .box {
  backdrop-filter: blur(5px);
  padding: 10px;
  border-radius: 20px;
  width: 180px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: auto;
  gap: 20px;
}

.location_map .image-link {
  display: inline-block;
}

.location_map .box h4 {
  color: white;
  font-size: 14px;
  text-transform: capitalize;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 1px;
}

.location_map .box img {
  height: 55px;
  width: 55px;
  margin: auto;
}

.location_map button {
  max-width: 180px;
  width: 100%;
}

.location_map .image-link {
  display: block;
}

/* Location End */

/* Gallery Start */

.gallery {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.gallery .heading {
  position: relative;
  z-index: 1;
  color: white;
}

.gallery .section_left_heading {
  color: white;
  z-index: 1;
}

.gallery .gallery-title {
  z-index: 2;
  font-size: 18px;
  color: black;
  padding: 24px 0;
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 300;
}

.gallery .gallery-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery .gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 700ms ease-in-out;
}

.gallery .gallery-slide.active {
  opacity: 1;
}

.gallery .gallery-slide h2 {
  color: white;
  font-size: 15px;
  line-height: 23px;
  padding: 0 10px;
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
  padding-top: 40px;
  letter-spacing: 1px;
  max-width: 90%;
  margin: 0 auto;
  z-index: 2;
}

.gallery .gallery-slide h2 span {
  display: block;
}

.gallery .gallery-slide h2.playfair {
  font-family: "Playfair Display", serif;
}

.gallery .gallery-controls {
  position: absolute;
  bottom: 108px;
  width: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.gallery .nav-btn {
  background: none;
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
  transition: opacity 0.3s;
  padding: 0 10px;
}

.gallery .nav-btn:hover {
  opacity: 0.7;
}

.gallery #thumbs {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: scroll;
  scrollbar-width: none;
}

.gallery #thumbs::-webkit-scrollbar {
  display: none;
}

.gallery .thumb {
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 300ms;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.gallery .thumb.active {
  border-color: white;
  width: 130px;
  height: 130px;
}

/* Gallery End */

/* Contact Start */

.contact {
  position: relative;
  background: #fbfaf9;
}

.contact .section_left_heading {
  left: -3%;
}

.contact form {
  display: flex;
  flex-direction: column;
}

.contact form .inputs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact form input,
.contact form textarea {
  border: 1px solid black;
  flex: 1;
  padding: 10px;
  font-size: 13px;
}

.contact form textarea {
  flex: 2;
  text-transform: uppercase;
}

.contact form input:focus,
.contact form textarea:focus {
  box-shadow: none;
  border: 1px solid black;
}

.contact form input::placeholder {
  box-shadow: none;
  text-transform: uppercase;
}

.contact .checkbox {
  margin: 26px 0;
  display: flex;
  gap: 5px !important;
}

.contact .checkbox input {
  flex: unset;
}

.contact .inputs .input_box {
  width: 100%;
}

.contact .inputs .input_box label {
  font-size: 12px;
}

.contact .checkbox p {
  font-size: 12px;
}

/* Contact End */

/* Footer Start */

footer {
  background-color: #09142f;
  color: white;
  padding: 60px 0;
  text-align: center;
  letter-spacing: 1px;
}

footer p.rera-dsk {
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 20px;
}

footer .heading {
  color: white;
  margin-bottom: 40px;
}

footer .about_builder {
  font-size: 12px;
  font-weight: 500;
}

footer .copyright {
  color: rgb(255 255 255 / 0.8);
  font-size: 12px;
  margin: 26px 0;
}

footer .copyright a {
  color: white;
  transition: 0.3s linear;
  border-bottom: 1px solid #09142f;
}

footer .copyright a:hover {
  border-bottom: 1px solid white;
}

/* Footer End */

/* Popup Modal Start  */

.modal {
  background-color: #ffffffba;
}

.modal .modal-content {
  background-color: #18233c;
  border-radius: 0;
}

.modal .logo {
  max-width: 150px;
  margin: auto;
  display: block;
  margin-bottom: 20px;
  filter: brightness(14.5);
}

.modal .modal-content .sub_text {
  color: white;
  font-family: "Playflair";
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.modal .modal-body {
  padding: 20px;
}

.modal .modal-content .form-group {
  margin-bottom: 16px;
}

.modal .modal-content input {
  border: 0;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 12px 10px;
}

.modal .modal-content input:focus {
  box-shadow: none;
  border: #18233c;
}

.modal .modal-content input::placeholder {
  color: #c6c6c6;
}

.modal .checkbox-section {
  margin-top: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.modal .btn {
  display: block;
  margin: auto;
  margin-top: 40px;
}

.modal .btn-close {
  filter: brightness(44.5) invert(1);
  color: white;
  opacity: unset;
  display: block;
  margin-left: auto;
}

.modal label {
  font-size: 14px;
}

/* Popup Modal End  */

/* Sticky Contact Actions Start */

.sticky_contact {
  display: flex;
  /* background-color: var(--theme-color); */
  background-image: linear-gradient(to right,rgba(212, 162, 31, 1) 80%,rgb(255, 183, 0));
  justify-content: flex-end;
  padding: 10px 40px;
  color: black;
  font-weight: 500;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease;
  /* smooth hide/show */
  z-index: 10;
}

.sticky_contact .rera {
  display: flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  font-weight: 600;
}

.sticky_contact .action {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sticky_contact .action .call_us,
.sticky_contact .action .enquire_now {
  display: flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.hide-sticky {
  transform: translateY(100%);
  opacity: 0;
}

.show-sticky {
  transform: translateY(0);
  opacity: 1;
}

/* Sticky Contact Actions End */

/* ========================== */

/* Responsive */

@media (max-width: 1440px) {
  nav .nav_links ul {
    gap: 0 50px;
  }

  .hero_section .key_points h4 {
    font-size: 13px;
  }
}

@media (max-width: 1366px) {
  .side-menu ul {
    margin-top: 85px;
  }
  .hero_section .banner_content .logo {
    max-width: 160px;
  }

  .hero_section .banner_content {
    top: 15%;
  }

  .sticky_contact .rera {
    gap: 20px;
  }

  nav .nav_links ul {
    gap: 0 35px;
  }

  .about_us .bottom .location {
    gap: 20px;
  }

  .price_list .bottom .location {
    gap: 20px;
  }

  .about_us .section_left_heading {
    left: -10%;
  }

  .price_list .section_left_heading {
    left: -2%;
  }

  .specification .section_left_heading {
    left: -4%;
  }

  .location_map .section_left_heading {
    left: -4%;
    color: white;
  }

  .plan-section .section_left_heading {
    top: 35%;
    left: -3%;
  }

  .contact .section_left_heading {
    left: -3%;
  }
}

@media (max-width: 1266px) {
  .section_container {
    max-width: 73%;
  }

  .about_us .section_left_heading {
    left: -10%;
    font-size: 32px;
  }

  .price_list .section_left_heading {
    left: -2%;
    font-size: 32px;
  }

  .amenities .section_left_heading {
    left: -2%;
  }

  .specification .section_left_heading {
    left: -6%;
  }

  .location_map .section_left_heading {
    left: -6%;
    color: white;
  }

  .plan-section .section_left_heading {
    left: -4%;
  }

  .gallery .section_left_heading {
    left: 0%;
  }

  .contact .section_left_heading {
    left: -4%;
  }

  .sticky_contact .action .call_us,
  .sticky_contact .action .enquire_now {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .d-view {
    display: none;
  }

  .m-view {
    display: block;
  }

  .hero_section .dsk_view {
    padding: 16px 16px;
  }

  .hero_section .dsk_view .row{
    row-gap: 29px;
  }

  .hero_section .banner_content .logo {
    max-width: 180px;
  }

  .hero_section .banner_content .left,
  .hero_section .banner_content .right {
    flex-direction: column-reverse;
  }

  .hero_section .right .vertical_line,
  .hero_section .left .vertical_line {
    height: 0.5px;
    width: 53%;
  }

  .hero_section .status_box {
    max-width: 100%;
  }

  .hero_section .banner_content .left {
    margin-bottom: 16px;
  }

  .hero_section .status_box .horizontal_line {
    margin-top: 0;
  }

  .hero_section .row .col-md-3 {
    padding: inherit;
  }

  .hero_section .status_box .price {
    font-size: 20px;
    color: black;
  }

  .hero_section .row .col-md-3:first-child .key_points {
    padding: 10px 10px;
  }

  .hero_section .status_box .horizontal_line {
    filter: brightness(1) invert(0);
    height: 0.4px;
  }

  nav .nav_links .menu_btn {
    font-size: 16px;
    text-transform: uppercase;
  }

  nav .nav_links .call_us a {
    display: none;
  }

  nav .nav_logo img {
    max-width: 147px;
  }

  nav .nav_links ul .nav_link {
    display: none;
    color: black;
  }

  .hero_section .key_points h4 {
    font-size: 11px;
    line-height: 23px;
    font-weight: 400;
    padding: 0 5px;
  }

  .hero_section .key_points {
    padding: 30px 10px;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
    margin: 0rem 0;
  }

  .hero_section .no-left {
    border-left: none;
  }

  .hero_section .btn {
    padding: 8px 13px;
  }

  .hero_section .banner_content .left .top,
  .hero_section .banner_content .left .bottom,
  .hero_section .banner_content .right .top,
  .hero_section .banner_content .right .bottom {
    color: white;
    animation: unset;
    text-shadow: 1px 1px #000000b0;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .hero_section .banner_content {
    max-width: 100%;
    top: 13%;
  }

  .section_container {
    max-width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
  }

  .container {
    max-width: 100%;
    margin: auto;
  }

  .section_left_heading {
    position: relative;
    top: 0;
    width: 100%;
    text-align: center;
    left: 0 !important;
    transform: unset;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 5px;
    margin-bottom: 10px;
    font-weight: 400;
  }

  .heading {
    max-width: 90%;
    text-align: center;
    line-height: 25px;
    letter-spacing: 1px;
    font-size: 13px;
  }

  .about_us .left {
    padding-right: 15px;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 30px;
  }

  .about_us .left .para {
    text-align: center;
    padding: 0;
    font-size: 13px;
  }

  .about_us {
    padding-bottom: 0;
  }

  .about_us .left .btn {
    margin: auto;
    margin-top: 30px;
    font-size: 12px;
    letter-spacing: 1.5px;
    max-width: 208px;
    /* margin-bottom: 30px; */
  }

  .about_us .right {
    padding: 0;
    margin-top: 30px;
  }

  .about_us .bottom {
    padding-left: 23px;
    flex-direction: column;
  }

  .about_us .bottom .box {
    width: 100%;
    flex-basis: 50%;
    padding: 16px;
  }

  .about_us .section_left_heading {
    font-weight: 400;
    font-size: 18px;
  }

  .border_right_mob {
    border-left: none !important;
  }

  .hero_section .key_points:nth-child(4) {
    border-left: none;
  }

  .about_us .bottom .location {
    gap: 0;
    flex-wrap: wrap;
  }

  .about_us .bottom h3 {
    margin-bottom: 40px;
    text-align: center;
  }

  .amenities .amenities-heading {
    font-size: 13px;
    line-height: 23px;
  }

  .amenities .amenities-controls {
    bottom: 80px;
    padding: 1rem 20px;
  }

  .amenities .amenities-nav-btn {
    font-size: 24px;
  }

  .amenities .amenities-thumb {
    width: 50px;
    height: 50px;
  }

  .amenities .amenities-thumb.active {
    width: 60px;
    height: 60px;
  }

  .amenities .amenities-view-map-btn {
    bottom: 20px;
    padding: 10px 30px;
    font-size: 12px;
  }

  .price_list .box li {
    flex-direction: column;
    padding: 26px 0;
  }

  .price_list .box li p,
  .price_list .box li button {
    font-size: 16px;
    margin: 12px 0;
  }

  .price_list .key_points .bottom {
    flex-direction: column;
  }

  .price_list .bottom .location {
    flex-wrap: wrap;
    gap: 0 10px;
  }

  .price_list .bottom .location .box {
    flex-basis: 45%;
    padding-bottom: 35px;
  }

  .price_list .bottom h3 {
    margin-bottom: 25px;
    text-align: center;
  }

  

  .price_list .box li button {
    padding: 8px 13px;
    font-size: 13px;
  }

  .price_list .bottom .box p {
    text-transform: capitalize;
  }

  .plan-section .main-image {
    height: auto;
  }

  .plan-section .slide-text {
    font-size: 15px;
  }

  .amenities {
    position: relative;
    padding: 30px 0;
  }

  .amenities .heading {
    color: white;
    position: relative;
  }

  .amenities .box .action_btn h4 {
    font-size: 18px;
    text-align: center;
  }

  .amenities .box .action_btn.active {
    margin-right: 0;
  }

  .amenities .not_active {
    display: none;
  }

  .amenities .section_left_heading {
    color: white;
    font-size: 18px;
    font-weight: 400;
  }

  .amenities .box .action_btn {
    gap: 8px;
  }

  .amenities .content {
    bottom: 7%;
    max-width: 88%;
    padding: 20px 40px;
  }

  .specification .section_left_heading{
    font-size: 18px;
  }

  .location_map {
    height: 100%;
  }

  .location_map .section_left_heading{
    font-size: 18px;
  }

  .location_map .heading {
    max-width: 100%;
  }

  .location_map .box {
    width: 100%;
    height: auto;
    backdrop-filter: unset;
    /* background: white; */
    border-radius: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0 20px;
    padding: 14px 16px;
    border-color: white;
  }

  .location_map .box:first-child {
    padding-top: 0;
  }

  .location_map .row {
    max-width: 90%;
    margin: auto;
  }

  .location_map .box h4 {
    color: black;
    font-size: 13px;
    margin-bottom: 0;
    flex: 2;
    text-align: left;
  }

  .location_map .btn {
    
    background: var(--theme-color);
    font-size: 13px;
    padding: 8px 1px;
    font-weight: 500;
}

  .location_map .box img {
    filter: invert(1);
    margin: unset;
    height: 35px;
    width: 35px;
    flex: 0;
  }

  .location_map .locations {
    background: white;
    max-width: 80%;
    padding: 30px 0;
    margin: auto;
  }

  .location_map .content {
    flex-direction: column;
  }

  .plan-section .section_left_heading{
    font-size: 18px;
  }

  .gallery {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    padding: 40px 0;
  }

  .gallery .thumb {
    width: 55px;
    height: 55px;
  }

  .gallery #thumbs {
    gap: 10px;
  }

  .gallery .thumb.active {
    height: 65px;
    width: 65px;
  }

  .gallery .section_left_heading {
    font-size: 18px;
  }

  .gallery .gallery-controls {
    bottom: 10%;
  }

  .gallery .gallery-slide h2 {
    top: 8%;
    position: absolute;
    font-size: 13px;
    font-family: "Playfair Display";
    max-width: 100%;
  }

  .contact .section_left_heading{
    font-size: 18px;
  }

  .contact form {
    padding: 0 20px;
  }

  .contact form .inputs {
    flex-direction: column;
  }

  .contact form input {
    font-size: 14px;
  }

  .contact .checkbox {
    gap: 10px;
  }

  .contact .checkbox p {
    font-size: 10px;
  }

  .contact .heading {
    margin-bottom: 30px;
  }

  footer {
    padding: 30px 20px;
  }

  footer .heading{
    font-size: 18px;
  }

  footer .about_builder {
    font-size: 12px;
  }

  footer .copyright {
    font-size: 10px;
  }

  footer p.rera-dsk {
    line-height: 20px;
  }

  .sticky_contact {
    padding: 10px 10px;
  }

  .sticky_contact .action .call_us,
  .sticky_contact .action .enquire_now {
    gap: 5px;
    font-weight: 500;
  }

  .sticky_contact .action {
    gap: 0;
    justify-content: space-around;
    width: 100%;
  }

    .mobile_form {
    background-color: #e4e2e24d;
    padding: 30px 10px;
    color: black;
    padding-bottom: 30px;
  }

  .mobile_form label {
    font-size: 12px;
    margin-bottom: 3px;
  }

  .mobile_form .sub_text {
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile_form p {
    font-size: 20px;
  }

  .mobile_form input {
    border-radius: 0;
    margin-bottom: 8px;
    font-size: 16px;
  }

  .mobile_form input:focus {
    box-shadow: none;
  }

  .mobile_form .checkbox-section {
    color: black;
    font-size: 10px;
    gap: 5px;
    padding: 0px 4px;
    margin: 5px 0;
  }

  .mobile_form button {
    display: block;
    margin: auto;
    margin-top: 20px;
  }
}
