@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&family=Parisienne&family=Saira+Stencil+One&display=swap");

/* 
All Sections

1.  #:root
2.  BTN Section
3.  Navbar Section
4.  Slider Section
5.  Overview Section
6.  Highlights Section
7.  Pricelist Section
8.  Amenities Section
9.  Gallery Section
10. Floorplan Section
11. Location Advantages Section
12. Contact Us Section

*/

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: "Nunito Sans", sans-serif;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
img {
  object-fit: cover;
}
:root {
  --bg-color: #000c26;
  --bg-color1: #2fa5fb;
  --bg-color2: #d2edf8;
  --bg-color3: #f6f6f6;
  --bg-color4: #0b2c3d;
  --bg-dark: #000000;
  --text-color: #ffffff;
  --text-color1: #16243e;
  --text-color2: #646569;
  --dark-text-color: #000000;
  --whatsapp: #25d366;
  --font: "Nunito Sans", sans-serif;
  --font1: "Saira Stencil One", sans-serif;
  --font2: "Old Standard TT", serif;
  --font3: "Parisienne", cursive;
}
.pt1 {
  padding: 60px 0px;
}
.pt2 {
  padding: 120px 0px;
}
.pt3 {
  padding: 120px 0px 200px 0px;
}
.pt4 {
  padding: 100px 0px;
}
.pl1 {
  padding: 0px 60px;
}
.pl2 {
  padding: 0px 120px;
}
.pl3 {
  padding: 0px 160px;
}

/* BTN Start */

.primary_btn {
  position: relative;
  display: inline-block;
  padding: 8px 15px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--text-color);
  background: transparent;
  cursor: pointer;
  transition: ease-out 0.5s;
  border: 2px solid var(--text-color);
  border-radius: 0px;
  box-shadow: inset 0 0 0 0 var(--text-color);
}
.primary_btn:hover {
  font-weight: 600;
  color: var(--bg-color);
  box-shadow: inset 0 -100px 0 0 var(--text-color);
}
.primary_btn:active {
  transform: scale(0.9);
}

.secondary_btn {
  position: relative;
  display: inline-block;
  padding: 8px 15px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--bg-color);
  background: transparent;
  cursor: pointer;
  transition: ease-out 0.5s;
  border: 2px solid var(--bg-color);
  border-radius: 0px;
  box-shadow: inset 0 0 0 0 var(--bg-color);
}
.secondary_btn:hover {
  font-weight: 600;
  color: var(--text-color);
  box-shadow: inset 0 -100px 0 0 var(--bg-color);
}
.secondary_btn:active {
  transform: scale(0.9);
}

.info_btn {
  position: relative;
  display: inline-block;
  padding: 8px 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--text-color);
  background: transparent;
  cursor: pointer;
  transition: ease-out 0.5s;
  border: 2px solid var(--text-color);
  border-radius: 0px;
  box-shadow: inset 0 0 0 0 var(--text-color);
}
.info_btn:hover {
  font-weight: 600;
  color: var(--bg-color);
  box-shadow: inset 0 -100px 0 0 var(--text-color);
}
.info_btn:active {
  transform: scale(0.9);
}

/* BTN End */

/* Navbar Section Start */
.navbar {
  position: fixed;
  top: 0px;
  width: 100%;
  background-color: #000c26c3;
  backdrop-filter: blur(8px);
  padding: 15px;
  z-index: 1000;
}
.navbar .navbar-brand img {
  height: 40px;
}
.navbar .nav-item {
  margin: 0px 8px;
}
.navbar .nav-item .nav-link {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
/* Navbar Section End */

/* Slider Section Start */

.slider {
  height: 100vh;
  background-image: url("../images/banner.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: end;
  position: relative;
  padding-bottom: 40px;
  background-attachment: fixed;
}
.slider::after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  background: linear-gradient(to top, #000c26a6, #000c26a6, #000c2600);
  z-index: 1;
}
.slider > * {
  position: relative;
  z-index: 2;
}
.slider .slider_form {
  background-color: var(--text-color);
  padding: 50px 40px;
  width: 90%;
  margin: 0px auto;
}
.slider .slider_form .header_section {
  text-align: center;
  margin-bottom: 10px;
}
.slider .slider_form .header_section .title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bg-color);
  letter-spacing: 3px;
  padding-left: 2px;
}
.slider .slider_form .header_section .back_shadow {
  font-size: 50px;
  margin-top: -50px;
  color: #16243e10;
  font-weight: bolder;
  font-family: "Saira Stencil One", sans-serif;
}
.slider .slider_form .header_section .subtitle {
  font-size: 24px;
  line-height: 1;
  font-family: var(--font2);
  font-weight: 600;
}
.slider .slider_form .header_section .subtitle span {
  font-size: 40px;
  font-family: var(--font3);
  color: var(--bg-color);
}
.slider .slider_form input {
  height: 50px;
}
.slider .slider_details {
  padding-bottom: 80px;
}
.slider .slider_details .p_name {
  font-size: 45px;
  font-weight: 700;
  font-family: var(--font1);
  letter-spacing: 2px;
  color: var(--text-color);
}
.slider .slider_details .p_location {
  font-size: 22px;
  color: var(--text-color);
  line-height: 1;
}
.slider .slider_details .key_points {
  background-color: #000c2640;
  border: 2px solid var(--text-color);
  width: 70%;
  padding: 20px 0px;
  margin: 0px 0px 20px 0px;
  backdrop-filter: blur(8px);
}
.slider .slider_details .key_points ul {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.slider .slider_details .key_points ul li i {
  font-size: 14px;
}
.slider .slider_details .key_points ul li {
  font-size: 17px;
  color: var(--text-color);
  padding-bottom: 5px;
}
.slider .slider_details .p_bhk {
  width: 70%;
  padding: 10px 20px;
  font-size: 24px;
  background-color: var(--text-color);
}
.slider .slider_details .p_price {
  font-size: 24px;
  margin-top: 10px;
  color: var(--text-color);
}
.slider .slider_details .p_price span {
  font-size: 30px;
}

/* Slider Section End */

/* Overview Section Start */

.overview {
  padding: 120px 0px;
}
.overview .header_section .title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bg-color);
  letter-spacing: 3px;
  padding-left: 2px;
}
.overview .header_section .back_shadow {
  font-size: 60px;
  margin-top: -55px;
  color: #16243e10;
  font-weight: bolder;
  font-family: "Saira Stencil One", sans-serif;
}
.overview .header_section .subtitle {
  font-size: 30px;
  line-height: 0;
  font-family: var(--font2);
  font-weight: 600;
}
.overview .header_section .subtitle span {
  font-size: 50px;
  font-family: var(--font3);
  color: var(--bg-color);
}
.overview .header_section .content {
  font-size: 17px;
  color: var(--bg-color);
  margin: 30px 0px;
  font-weight: 600;
}
.overview .overview_details {
  border-bottom: 2px solid var(--bg-color3);
}
.overview .overview_details ul {
  padding-left: 0px;
  margin-bottom: 30px;
}
.overview .overview_details ul li img {
  height: 25px;
}
.overview .secondary_btn {
  margin-top: 30px;
}
.overview .overview_outer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/o_img.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 500px;
  height: 550px;
  margin: 0px auto;
}
.overview .overview_outer img {
  height: 500px;
  width: 450px;
}

/* Overview Section End */

/* Highlights Section Start */

.highlights {
  padding: 60px 0px;
}
.highlights .header_section {
  padding: 60px 0px 220px 0px;
}
.highlights .header_section .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlights .header_section .title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bg-color);
  letter-spacing: 3px;
  padding-left: 2px;
}
.highlights .header_section .back_shadow {
  font-size: 60px;
  margin-top: -55px;
  color: #16243e10;
  font-weight: bolder;
  font-family: "Saira Stencil One", sans-serif;
}
.highlights .header_section .subtitle {
  font-size: 30px;
  line-height: 0;
  font-family: var(--font2);
  font-weight: 600;
}
.highlights .header_section .subtitle span {
  font-size: 50px;
  font-family: var(--font3);
  color: var(--bg-color);
}
.highlights .header_section .content {
  font-size: 16px;
}

.highlights .highlights_points {
  height: 50vh;
  padding: 60px 0px;
  background-image: url("../images/img1.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  z-index: -1;
}
.highlights .highlights_points::after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  z-index: 0;
  background-color: var(--bg-color);
  opacity: 0.8;
}
.highlights .highlights_points > * {
  position: relative;
  z-index: 1;
}
.highlights .highlights_points .highlights_card {
  margin-top: -200px;
  border-radius: 5px;
}
.highlights .highlights_points .highlights_card .card {
  text-align: center;
  border: none;
  margin-bottom: 28px;
}
.highlights .highlights_points .highlights_card .card .card-title {
  font-size: 20px;
}
.highlights .highlights_points .highlights_card .card .card-text {
  font-size: 15px;
}
.highlights .highlights_points .highlights_card .card .bg_icon img {
  height: 120px;
  margin-top: -100px;
}
.highlights .video_section .card {
  border-radius: 0px;
  padding: 10px;
}
.highlights .video_section .card .card-title {
  font-size: 24px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.highlights .video_section .video_btn {
  border-radius: 40px;
  padding: 5px;
  background-color: transparent;
  border: 1px solid var(--text-color);
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: 40px;
  cursor: pointer;
}
.highlights .video_section .video_btn .icon {
  height: 60px;
  width: 60px;
  background-color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px;
  border-radius: 50%;
  border: none;
  position: relative;
  transition: all 0.3s ease;
}
.highlights .video_section .video_btn i {
  font-size: 24px;
  color: var(--bg-color);
}
.video_btn:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--text-color);
}
.video_btn .icon::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: var(--text-color);
  opacity: 0.4;
  z-index: -1;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.highlights .video_section .arrow {
  margin-left: 80px;
  margin-top: -20px;
}
.highlights .video_section .title {
  font-size: 38px;
  font-weight: 600;
  color: var(--text-color);
}

/* Highlights Section End */

/* Pricelist Section Start */

.pricelist {
  position: relative;
  padding: 120px 0px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-image: url("../images/img19.webp");
  /* z-index: -1; */
}
.pricelist::after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  z-index: 0;
  background-color: var(--bg-color);
  opacity: 0.4;
}
.pricelist > * {
  position: relative;
  z-index: 2;
}
.pricelist .pricelist_details {
  padding: 50px;
  background-color: var(--bg-color);
  border-radius: 20px;
}
.pricelist .header_section {
  margin-top: 20px;
}
.pricelist .header_section .title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-color);
  letter-spacing: 3px;
  padding-left: 2px;
}
.pricelist .header_section .back_shadow {
  font-size: 50px;
  margin-top: -50px;
  color: #ffffff2e;
  font-weight: bolder;
  font-family: "Saira Stencil One", sans-serif;
}
.pricelist .header_section .subtitle {
  font-size: 24px;
  line-height: 0;
  font-family: var(--font2);
  font-weight: 600;
  color: var(--text-color);
}
.pricelist .header_section .subtitle span {
  font-size: 45px;
  font-family: var(--font3);
  color: var(--text-color);
}
.pricelist .header_section .content {
  font-size: 15px;
  color: var(--text-color);
  margin: 30px 0px;
  font-weight: 600;
}
.pricelist .card {
  text-align: center;
  background-color: transparent;
  border: none;
  width: 90%;
}
.pricelist .card .card-title {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-color);
  border-bottom: 2px solid #ffffff2e;
}
.pricelist .detail {
  margin: 10px 0px 20px 0px;
}
.pricelist .card .card-text {
  display: flex;
  align-items: center;
  color: var(--text-color);
  justify-content: space-between;
}

/* Pricelist Section End */

/* Amenities Section Start */

.amenities {
  padding: 120px 0px;
}
.amenities .header_section {
  text-align: center;
  margin-bottom: 60px;
}
.amenities .header_section .title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bg-color);
  letter-spacing: 3px;
  padding-left: 2px;
}
.amenities .header_section .back_shadow {
  font-size: 60px;
  margin-top: -55px;
  color: #16243e10;
  font-weight: bolder;
  font-family: "Saira Stencil One", sans-serif;
}
.amenities .header_section .subtitle {
  font-size: 30px;
  line-height: 0;
  font-family: var(--font2);
  font-weight: 600;
}
.amenities .header_section .subtitle span {
  font-size: 50px;
  font-family: var(--font3);
  color: var(--bg-color);
}

.amenities .square_flip {
  perspective: 1000px;
  margin: 0px auto;
  position: relative;
  width: 100%;
  min-height: 350px;
  margin-bottom: 60px;
  transform-style: preserve-3d;
  overflow: hidden;
}
.amenities .square_flip .box_title h4 {
  font-size: 20px;
  font-weight: 600;
}
.amenities .square_flip .box_title h4 span {
  font-size: 30px;
  font-weight: 600;
  font-family: var(--font3);
}
.square1 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-size: cover;
  background-position: center;
  backface-visibility: hidden;
  transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
}

.square_flip:hover .square1 {
  transform: rotateY(-180deg);
}

.square_container {
  padding: 40px;
  text-align: right;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
}
.square_container > * {
  position: relative;
  z-index: 1;
}

.square_flip:hover .square_container {
  transform: translateX(-650px) scale(0.88);
}
.flip_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000000f4, #0000003f, #00000000);
}

.square2 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: var(--bg-color);
  backface-visibility: hidden;
  transform: rotateY(180deg);
  transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
}

.square_flip:hover .square2 {
  transform: rotateY(0deg);
}

.square_container1 {
  padding: 30px;
  text-align: left;
  position: relative;
  top: 50%;
  transform: translateY(-50%) translateX(650px) scale(0.88);
  transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
}

.square_flip:hover .square_container1 {
  transform: translateY(-50%) translateX(0px) scale(1);
}

.square1 h4,
.square_container1 h4 {
  color: #fff;
}

.square_container1 p {
  color: #fff;
  font-size: 16px;
}

/* Amenities Section End */

/* Gallery Section Start */

.gallery {
  background-image: url("../images/bg_img1.webp");
  padding: 120px 0px;
  position: relative;
}
.gallery::after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0px;
  position: absolute;
  z-index: 1;
  background-color: var(--bg-color3);
  opacity: 0.98;
}
.gallery > * {
  position: relative;
  z-index: 2;
}
.gallery .header_section {
  text-align: center;
}
.gallery .header_section .title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bg-color);
  letter-spacing: 3px;
  padding-left: 2px;
}
.gallery .header_section .back_shadow {
  font-size: 60px;
  margin-top: -55px;
  color: #16243e2a;
  font-weight: bolder;
  font-family: "Saira Stencil One", sans-serif;
}
.gallery .header_section .subtitle {
  font-size: 34px;
  line-height: 0.2;
  font-family: var(--font2);
  font-weight: 600;
}
.gallery .header_section .subtitle span {
  font-size: 54px;
  font-family: var(--font3);
  color: var(--bg-color);
}
.gallery .gallery_images {
  margin-top: 60px;
}
.gallery .cover_img {
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
}
.gallery img {
  width: 100%;
  height: 100%;
  display: block;
  box-shadow: 0px 0px 10px #1e2f6e9d;
  border-radius: 10px;
  object-fit: cover;
}
.gallery .img1 {
  height: 250px;
}
.gallery .img2 {
  height: 400px;
}
.gallery .cover_img img {
  transition: 0.4s ease;
}
.gallery .cover_img:hover img {
  transform: scale(1.08);
}

/* Gallery Section End */

/* Floorplan Section Start */

.floorplan {
  padding: 120px 0px;
  background-color: var(--bg-color);
}
.floorplan .header_section {
  margin-bottom: 30px;
}
.floorplan .header_section .title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-color);
  letter-spacing: 3px;
  padding-left: 2px;
}
.floorplan .header_section .back_shadow {
  font-size: 60px;
  margin-top: -55px;
  color: #ffffff35;
  font-weight: bolder;
  font-family: "Saira Stencil One", sans-serif;
}
.floorplan .header_section .subtitle {
  font-size: 30px;
  line-height: 0;
  font-family: var(--font2);
  color: var(--text-color);
  font-weight: 600;
}
.floorplan .header_section .subtitle span {
  font-size: 50px;
  font-family: var(--font3);
  color: var(--text-color);
}
.floorplan .header_section .content {
  font-size: 16px;
  color: var(--text-color);
  margin: 30px 0px;
  font-weight: 600;
}
.floorplan .card {
  background-color: transparent;
  border-radius: 0px;
  border: none;
  width: 96%;
}
.floorplan .card .masterplan {
  height: 360px;
}
.floorplan .card img {
  height: 300px;
  border-radius: 0px;
  border: none;
  filter: blur(4px);
}
.floorplan .card .card-body {
  width: 85%;
  margin: 0px auto;
  margin-top: -50px;
  background-color: var(--text-color);
  padding: 20px;
  z-index: 2;
}
.floorplan .card .card-body .card-title {
  font-size: 20px;
  text-align: left;
}
.floorplan .card .card-body .card-text span {
  font-weight: 700;
  color: var(--bg-color);
  font-family: var(--font2);
}
.floorplan .card .card-body .card-text {
  font-family: sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

/* Floorplan Section End */

/* Location Section Start */

.location {
  padding: 120px 0px;
}
.location .location_map img {
  height: 550px;
  position: relative;
}
.location .location_details {
  width: 700px;
  padding: 50px;
  background-color: var(--bg-color);
  margin-left: -200px;
  margin-top: 50px;
  position: absolute;
  z-index: 1;
}
.location .header_section {
  margin-bottom: 30px;
}
.location .header_section .title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-color);
  letter-spacing: 3px;
  padding-left: 2px;
}
.location .header_section .back_shadow {
  font-size: 60px;
  margin-top: -55px;
  color: #ffffff35;
  font-weight: bolder;
  font-family: "Saira Stencil One", sans-serif;
}
.location .header_section .subtitle {
  font-size: 26px;
  line-height: 0;
  font-family: var(--font2);
  color: var(--text-color);
  font-weight: 600;
}
.location .header_section .subtitle span {
  font-size: 40px;
  font-family: var(--font3);
  color: var(--text-color);
}
.location .location_details .location_content {
  margin-top: 30px;
}
.location .location_details .location_content li i {
  color: var(--text-color);
  margin-right: 10px;
}
.location .location_details .location_content li {
  font-size: 16px;
  color: var(--text-color) !important;
  margin: 5px 0px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Location Section End */

/* Hero Section Start */

.hero_section {
  margin: 20px 100px;
  background-color: var(--bg-color);
  background-image: url("../images/img18.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  border-radius: 30px;
  position: relative;
}
.hero_section::after {
  content: "";
  border-radius: 30px;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  z-index: 2;
  background-color: var(--bg-color);
  opacity: 0.9;
}
.hero_section > * {
  position: relative;
  z-index: 3;
}
.hero_section .header_section {
  width: 100%;
  text-align: center;
  padding: 80px 0px;
}

.hero_section .header_section .title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-color);
  letter-spacing: 3px;
  padding-left: 2px;
}
.hero_section .header_section .back_shadow {
  font-size: 60px;
  margin-top: -55px;
  color: #ffffff35;
  font-weight: bolder;
  font-family: "Saira Stencil One", sans-serif;
}
.hero_section .header_section .subtitle {
  font-size: 26px;
  line-height: 0;
  font-family: var(--font2);
  color: var(--text-color);
  font-weight: 600;
  margin: 10px 0px 20px 0px;
}
.hero_section .header_section .subtitle span {
  font-size: 40px;
  font-family: var(--font3);
  color: var(--text-color);
}
.hero_section .header_section .content {
  font-size: 16px;
  color: var(--text-color);
  margin: 10px 0px;
  font-weight: 600;
}

/* Hero Section End */

/* Contact Us Section Start */

.contactus {
  padding: 120px 0px;
}
.contactus .header_section {
  text-align: center;
}
.contactus .c_details {
  text-align: center;
}
.contactus .c_details .c_logo {
  margin-bottom: 20px;
}
.contactus .c_details .c_logo img {
  height: 50px;
}
.contactus .c_details .c_img {
  height: 550px;
  width: 80%;
  margin: 100px auto 20px auto;
  border: 2px solid var(--bg-color);
  border-radius: 250px 250px 0px 0px;
}
.contactus .c_details .c_img img {
  height: 550px;
  width: 90%;
  margin-top: -80px;
  border-radius: 250px 250px 0px 0px;
}
.contactus .c_title {
  background-color: var(--bg-color);
  margin: 15px 25px;
  padding: 6px;
  font-size: 20px;
  font-family: var(--font1);
  font-weight: 400;
  color: var(--text-color);
  letter-spacing: 4px;
}
.contactus .c_content {
  display: flex;
  height: 100%;
  align-items: center;
}
.contactus .c_content .header_section .title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bg-color);
  letter-spacing: 3px;
  padding-left: 2px;
}
.contactus .c_content .header_section .back_shadow {
  font-size: 60px;
  margin-top: -60px;
  color: #16243e35;
  font-weight: bolder;
  font-family: "Saira Stencil One", sans-serif;
}
.contactus .c_content .header_section .subtitle {
  font-size: 36px;
  line-height: 0;
  font-family: var(--font2);
  color: var(--bg-color);
  font-weight: 600;
  margin: 10px 0px 20px 0px;
}
.contactus .c_content .header_section .subtitle span {
  font-size: 50px;
  font-family: var(--font3);
  color: var(--bg-color);
}
.contactus .c_content .header_section .content {
  font-size: 16px;
  color: var(--bg-color);
  margin: 10px 0px;
  font-weight: 600;
}
.contactus .c_content .form-control {
  height: 55px;
  border: 1px solid var(--bg-color);
  border-radius: 0px;
  margin: 25px 0px;
}
.contactus .c_content .secondary_btn {
  height: 55px;
  font-size: 18px;
}
.contactus .c_content .privacy {
  font-size: 14px;
  color: var(--text-color2);
  margin-top: 15px;
  text-align: center;
}

/* Contact Us Section End */

/* Footer Section Start */

.footer {
  background-color: var(--bg-dark);
  color: var(--text-color);
  padding: 50px 0px;
  text-align: center;
}
.footer b {
  color: var(--text-color);
}
.footer p {
  color: #ffffffb3;
}

/* Footer Section End */

/* whatsapp icon Start */
#whatsappbtn {
  position: fixed;
  bottom: 20px;
  right: 0;
  cursor: pointer;
  display: none;
  z-index: 10;
}

.whatsapp i {
  background: var(--whatsapp);
  color: var(--text-color);
  height: 60px;
  width: 60px;
  line-height: 60px;
  display: inline-block;
  text-align: center;
  font-size: 35px;
  border-radius: 50%;
  transition: 0.5s all ease;
  margin-right: 20px;
}

.whatsapp i:hover {
  transform: scale(1.1);
  background: var(--bg-color);
  color: var(--text-color);
  box-shadow: 0px 5px 50px rgba(13, 24, 32, 0.05);
}

/* call */
#phonebtn {
  position: fixed;
  bottom: 20px;
  left: 10px;
  cursor: pointer;
  display: none;
  z-index: 10;
}

.phone i {
  background: var(--bg-color);
  color: var(--text-color);
  height: 60px;
  width: 60px;
  line-height: 60px;
  display: inline-block;
  text-align: center;
  font-size: 25px;
  border-radius: 50%;
  transition: 0.4s all ease;
  margin-right: 20px;
}

.phone i:hover {
  transform: scale(1.1);
  background: var(--bg-dark);
  color: var(--text-color);
  box-shadow: 0px 5px 50px rgba(13, 24, 32, 0.05);
}

/* whatsapp icon End */

/* Modal Section Start */

.modal .modal-body .card {
  margin: 0px auto;
  width: 100%;
  margin: 10px 0px 20px 0px;
  height: 100px;
  text-align: center;
  border: none;
  background-color: #16243e14;
}
.modal .modal-body .card .card-body .card-title {
  font-size: 20px;
  color: var(--bg-color);
}
.modal .modal-body .card .card-body {
  padding: 0px;
}
.modal .modal-body .card img {
  height: 100px;
  width: 100%;
  border-radius: 15px;
}
.modal .modal-body .main_form_section {
  padding: 20px 8px 0px 20px;
}
.modal .modal-body .header_section {
  text-align: left;
  padding: 20px 0px 0px 0px;
}
.modal .modal-body .header_section .title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bg-color);
  letter-spacing: 3px;
  padding-left: 2px;
}
.modal .modal-body .header_section .back_shadow {
  font-size: 40px;
  margin-top: -45px;
  color: #16243e35;
  font-weight: bolder;
  font-family: "Saira Stencil One", sans-serif;
}
.modal .modal-body .header_section .subtitle {
  font-size: 24px;
  line-height: 0;
  font-family: var(--font2);
  color: var(--bg-color);
  font-weight: 600;
  margin: 10px 0px 30px 0px;
}
.modal .modal-body .header_section .subtitle span {
  font-size: 30px;
  font-family: var(--font3);
  color: var(--bg-color);
}
.modal .modal-body input {
  height: 50px;
}

/* Modal Section End */

/* ThankYou Page  Start*/

.thanks_bg {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("../images/thanks3.png");
}
.thanks_bg .t_title {
  font-weight: 800;
  color: var(--bg-color);
  font-size: 100px;
  font-family: var(--font3);
  line-height: 1.2;
}
.thanks_bg .t_subtitle {
  color: var(--bg-color);
  font-size: 30px;
  letter-spacing: 6px;
  text-transform: capitalize;
}
.thanks_bg .t_content {
  font-size: 20px;
}

/* ThankYou Page End */

/* Responsiveness Section Start */

@media (min-width: 1200px) and (max-width: 1600px) {
  .slider {
    height: 100%;
    padding: 200px 0px 80px 0px;
  }
  .slider::after {
    background: linear-gradient(#000000, #000000);
    opacity: 0.6;
  }
  .slider .slider_details .key_points,
  .slider .slider_details .p_bhk {
    width: 90%;
  }
  .highlights .highlights_points .highlights_card .card .bg_icon img {
    height: 110px;
  }
  .highlights .video_section .card {
    padding: 0px;
    margin-top: 30px;
  }
  .highlights .video_section .card .card-title {
    font-size: 20px;
  }
  .highlights .video_section .video_btn {
    margin-top: 20px;
  }
  .highlights .video_section .video_btn .icon {
    height: 50px;
    width: 50px;
  }
  .highlights .video_section .title {
    font-size: 32px;
  }

  .pricelist {
    padding: 100px 0px;
  }
  .pricelist .header_section .subtitle span {
    font-size: 40px;
  }
  .amenities .square_flip {
    width: 100%;
    min-height: 300px;
    margin-bottom: 40px;
  }

  .floorplan .card {
    width: 100%;
  }
  .floorplan .card .card-body {
    width: 90%;
    margin-top: -40px;
  }

  .location .location_details {
    width: 650px;
  }
  .location .header_section .subtitle {
    font-size: 22px;
  }
  .location .header_section .subtitle span {
    font-size: 35px;
  }

  .hero_section {
    margin: 20px 50px;
  }
  .contactus {
    padding: 100px 0px;
  }
  .contactus .c_details .c_img {
    height: 500px;
  }
  .contactus .c_details .c_img img {
    height: 500px;
  }
  .contactus .c_content .form-control {
    height: 50px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar {
    padding: 15px 5px;
    background-color: var(--bg-color);
  }
  .navbar .navbar-brand img {
    height: 35px;
  }
  .navbar .nav-item {
    margin: 0px 5px;
  }
  .navbar .nav-item .nav-link {
    font-size: 16px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.3rem;
    padding-left: 0.3rem;
  }

  .slider {
    height: 100%;
    padding: 120px 0px;
    margin-top: 60px;
  }
  .slider::after {
    background: linear-gradient(#000000, #000000);
    opacity: 0.6;
  }
  .slider .slider_details {
    padding-bottom: 30px;
  }
  .slider .slider_details .p_location {
    font-size: 20px;
  }
  .slider .slider_details .p_name {
    font-size: 34px;
    font-weight: 500;
    font-family: var(--font);
    letter-spacing: 0px;
  }
  .slider .slider_details .key_points {
    width: 95%;
  }
  .slider .slider_details .key_points ul {
    padding-left: 20px;
  }
  .slider .slider_details .p_bhk {
    width: 100%;
    font-size: 20px;
  }
  .slider .slider_details .p_price {
    font-size: 20px;
  }
  .slider .slider_details .p_price span {
    font-size: 24px;
  }
  .slider .slider_form {
    width: 100%;
    padding: 30px;
  }
  .slider .slider_form .header_section .subtitle {
    font-size: 20px;
  }
  .slider .slider_form .header_section .subtitle span {
    font-size: 24px;
  }
  .modal .modal-body .header_section .subtitle {
    line-height: 1;
    font-size: 20px;
    margin: 5px;
  }
  .modal .modal-body .header_section .subtitle span {
    font-size: 26px;
  }
  .modal .modal-body .main_form_section {
    padding: 15px;
  }

  .highlights .header_section .back_shadow {
    font-size: 50px;
    margin-top: -50px;
  }
  .highlights .header_section .subtitle span {
    font-size: 45px;
  }
  .highlights .highlights_points .highlights_card .card {
    height: 250px;
  }
  .highlights .highlights_points .highlights_card .card .card-title {
    font-size: 18px;
  }
  .highlights .highlights_points .highlights_card .card .icon img {
    height: 60px;
  }
  .highlights .highlights_points .highlights_card .card .bg_icon img {
    height: 100px;
  }
  .highlights .highlights_points .highlights_card .card .card-text {
    font-size: 14px;
  }
  .highlights .video_section .video_btn {
    margin-top: 20px;
  }
  .highlights .video_section .arrow {
    margin-left: 80px;
    margin-top: -30px;
  }
  .highlights .video_section .title {
    font-size: 30px;
  }
  .highlights .video_section .card {
    padding: 0px;
  }
  .highlights .video_section .card .card-body {
    padding: 40px 10px;
  }
  .highlights .video_section .card .card-title {
    font-size: 16px;
  }

  .overview {
    padding: 80px 0px;
  }
  .overview .header_section .back_shadow {
    font-size: 50px;
  }
  .overview .header_section .subtitle {
    font-size: 24px;
  }
  .overview .header_section .subtitle span {
    font-size: 40px;
  }
  .overview .header_section .content {
    font-size: 16px;
    margin: 20px 0px;
  }
  .overview .overview_details p {
    font-size: 15px;
    text-align: justify;
    margin-bottom: 0px;
  }
  .overview .overview_outer {
    width: 450px;
    height: 550px;
  }
  .overview .overview_outer img {
    width: 400px;
    height: 500px;
  }
  .pricelist .col-lg-4 {
    width: 66.6%;
  }
  .pricelist .col-lg-2 {
    width: 33.3%;
  }
  .pricelist .header_section .back_shadow {
    font-size: 45px;
  }
  .pricelist .header_section .subtitle {
    font-size: 22px;
  }
  .pricelist .header_section .subtitle span {
    font-size: 40px;
  }
  .pricelist .card {
    margin-bottom: 26px;
  }
  .pricelist .card .card-text {
    font-size: 17px;
  }

  .amenities .col-lg-3 {
    width: 33.33%;
  }
  .amenities .square_flip {
    width: 100%;
    margin-bottom: 30px;
  }
  .amenities .square_flip .box_title h4 {
    font-size: 30px;
  }

  .gallery .img1 {
    height: 200px;
  }
  .gallery .img2 {
    height: 350px;
  }

  .floorplan .header_section .subtitle {
    font-size: 26px;
  }
  .floorplan .header_section .subtitle span {
    font-size: 40px;
  }
  .floorplan .header_section .back_shadow {
    font-size: 50px;
  }
  .floorplan .card {
    width: 100%;
  }
  .floorplan .card .card-body {
    width: 95%;
  }
  .floorplan .card .card-body .card-text span {
    font-size: 17px;
    font-family: var(--font);
  }

  .location {
    padding: 100px 0px;
  }
  .location .location_details {
    width: 580px;
    padding: 55px 40px;
  }
  .location .header_section .back_shadow {
    font-size: 50px;
    margin-top: -50px;
  }
  .location .header_section .subtitle {
    font-size: 22px;
  }
  .location .header_section .subtitle span {
    font-size: 34px;
  }
  .location .location_details .location_content ul {
    padding-left: 10px;
  }

  .hero_section .header_section {
    padding: 60px 0px;
  }
  .hero_section {
    margin: 0px 40px;
  }

  .contactus .c_details .c_img {
    width: 95%;
  }
  .contactus .c_content .form-control {
    height: 50px;
  }
  .footer p {
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .thanks_bg .t_title {
    font-weight: 800;
    color: var(--bg-color);
    font-size: 80px;
    font-family: var(--font3);
    line-height: 1.2;
  }
  .thanks_bg .t_subtitle {
    color: var(--bg-color);
    font-size: 26px;
    letter-spacing: 4px;
    text-transform: capitalize;
  }
  .thanks_bg .t_content {
    font-size: 18px;
  }

  .navbar {
    background-color: var(--bg-color);
  }
  .navbar .navbar-toggler-icon {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .navbar .navbar-toggler {
    border: 1px solid var(--text-color);
  }
  .slider {
    height: 100%;
    padding: 80px 0px;
    margin-top: 60px;
  }
  .slider::after {
    background: linear-gradient(#000000, #000000);
    opacity: 0.6;
  }
  .slider .slider_details {
    padding-bottom: 30px;
  }
  .slider .slider_details .p_location {
    font-size: 20px;
  }
  .slider .slider_details .p_name {
    font-size: 34px;
    font-weight: 500;
    font-family: var(--font);
    letter-spacing: 0px;
  }
  .slider .slider_details .key_points {
    width: 100%;
  }
  .slider .slider_details .key_points ul {
    padding-left: 20px;
  }
  .slider .slider_details .p_bhk {
    width: 100%;
    font-size: 20px;
  }
  .slider .slider_details .p_price {
    font-size: 20px;
  }
  .slider .slider_details .p_price span {
    font-size: 24px;
  }
  .slider .slider_form {
    width: 100%;
    padding: 30px;
  }
  .slider .slider_form .header_section .subtitle {
    font-size: 20px;
  }
  .slider .slider_form .header_section .subtitle span {
    font-size: 24px;
  }
  .modal .modal-body .header_section .subtitle {
    line-height: 1;
    font-size: 20px;
    margin: 5px;
  }
  .modal .modal-body .header_section .subtitle span {
    font-size: 26px;
  }
  .modal .modal-body .main_form_section {
    padding: 15px;
  }
  .modal .modal-body .card {
    display: none;
  }

  .highlights {
    padding: 40px 0px;
  }
  .highlights .header_section {
    padding: 40px 0px 180px 0px;
  }
  .highlights .header_section .back_shadow {
    font-size: 40px;
    margin-top: -45px;
  }
  .highlights .header_section .content {
    margin-top: 20px;
  }
  .highlights .highlights_points {
    height: 100%;
  }
  .highlights .highlights_points .highlights_card .card {
    box-shadow: 0px 0px 10px #1e2f6e9d;
  }
  .highlights .highlights_points .highlights_card .card .icon img {
    height: 45px;
  }
  .highlights .highlights_points .highlights_card .card .bg_icon img {
    height: 80px;
    margin-top: -60px;
  }
  .highlights .video_section .arrow {
    margin-left: 80px;
    margin-top: -60px;
  }
  .highlights .video_section .title {
    font-size: 28px;
    line-height: 1.2;
  }

  .overview {
    padding: 80px 0px;
  }
  .overview .overview_outer {
    width: 650px;
    height: 450px;
  }
  .overview .overview_outer img {
    width: 600px;
    height: 400px;
  }
  .overview .header_section {
    margin-top: 40px;
  }
  .overview .header_section .back_shadow {
    font-size: 50px;
    margin-top: -50px;
  }
  .overview .header_section .content {
    margin: 25px 0px 20px 0px;
  }
  .overview .overview_details p {
    font-size: 16px;
    margin-bottom: 0px;
    text-align: justify;
  }

  .pricelist .header_section {
    text-align: center;
  }
  .pricelist .card {
    width: 95%;
    margin-bottom: 30px;
  }

  .amenities {
    padding: 80px 0px;
  }

  .gallery {
    padding: 80px 0px;
  }
  .gallery .img1 {
    height: 150px;
  }
  .gallery .img2 {
    height: 300px;
  }

  .floorplan .card {
    width: 100%;
    margin-bottom: 40px;
  }
  .floorplan .card .card-body {
    width: 90%;
  }
  .floorplan .card .card-body .card-text,
  .floorplan .card .card-body .card-text span {
    font-size: 18px;
    font-family: var(--font);
  }
  .floorplan .mt-5 {
    margin-top: 0px !important;
  }

  .location {
    padding: 80px 0px;
  }
  .location .location_map img {
    height: 400px;
  }
  .location .location_details ul {
    padding-left: 10px;
  }
  .location .location_details {
    width: 100%;
    padding: 60px 30px;
    margin: 20px auto 0px auto;
    position: relative;
  }

  .hero_section {
    margin: 0px;
    border-radius: 0px;
  }
  .hero_section::after {
    border-radius: 0px;
  }

  .contactus {
    padding: 60px 0px;
  }
  .contactus .c_content {
    margin-top: 40px;
    justify-content: center;
  }
  .footer p {
    font-size: 14px;
  }

  .phone {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .phone i {
    height: 50px;
    width: 50px;
    font-size: 20px;
    line-height: 45px;
    background-color: var(--text-color);
    border: 2px solid var(--text-color1);
    color: var(--bg-color);
  }
  .whatsapp i {
    height: 50px;
    width: 50px;
    font-size: 30px;
    line-height: 50px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .thanks_bg .t_title {
    font-weight: 800;
    color: var(--bg-color);
    font-size: 60px;
    font-family: var(--font3);
    line-height: 1.2;
  }
  .thanks_bg .t_subtitle {
    color: var(--bg-color);
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: capitalize;
  }
  .thanks_bg .t_content {
    font-size: 16px;
  }

  .navbar {
    background-color: var(--bg-color);
  }
  .navbar .navbar-toggler-icon {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .navbar .navbar-toggler {
    border: 1px solid var(--text-color);
  }
  .slider {
    height: 100%;
    padding: 80px 0px;
    margin-top: 60px;
  }
  .slider::after {
    background: linear-gradient(#000000, #000000);
    opacity: 0.6;
  }
  .slider .slider_details {
    padding-bottom: 30px;
  }
  .slider .slider_details .p_location {
    font-size: 20px;
  }
  .slider .slider_details .p_name {
    font-size: 34px;
    font-weight: 500;
    font-family: var(--font);
    letter-spacing: 0px;
  }
  .slider .slider_details .key_points {
    width: 100%;
  }
  .slider .slider_details .key_points ul {
    padding-left: 20px;
  }
  .slider .slider_details .p_bhk {
    width: 100%;
    font-size: 20px;
  }
  .slider .slider_details .p_price {
    font-size: 24px;
  }
  .slider .slider_details .p_price span {
    font-size: 28px;
  }
  .slider .slider_form {
    width: 100%;
    padding: 30px;
  }
  .slider .slider_form .header_section .subtitle {
    font-size: 20px;
  }
  .slider .slider_form .header_section .subtitle span {
    font-size: 24px;
  }
  .modal .modal-body .header_section .subtitle {
    line-height: 1;
    font-size: 20px;
    margin: 5px;
  }
  .modal .modal-body .header_section .subtitle span {
    font-size: 26px;
  }
  .modal .modal-body .main_form_section {
    padding: 15px;
  }
  .modal .modal-body .card {
    display: none;
  }

  .highlights {
    padding: 40px 0px;
  }
  .highlights .header_section {
    padding: 40px 0px 180px 0px;
  }
  .highlights .header_section .back_shadow {
    font-size: 40px;
    margin-top: -45px;
  }
  .highlights .header_section .subtitle span {
    font-size: 40px;
  }
  .highlights .header_section .content {
    margin-top: 20px;
  }
  .highlights .highlights_points {
    height: 100%;
  }
  .highlights .highlights_points .highlights_card .card {
    box-shadow: 0px 0px 10px #1e2f6e9d;
    padding: 10px;
  }
  .highlights .highlights_points .highlights_card .card .icon img {
    height: 45px;
  }
  .highlights .highlights_points .highlights_card .card .bg_icon img {
    height: 80px;
    margin-top: -60px;
  }
  .highlights .video_section .arrow {
    margin-left: 80px;
    margin-top: -60px;
  }
  .highlights .video_section .title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .highlights .highlights_points .highlights_card .card .card-text {
    font-size: 16px;
  }
  .overview {
    padding: 20px 0px 60px 0px;
  }
  .overview .overview_outer {
    width: 450px;
    height: 450px;
    margin-top: 20px;
  }
  .overview .overview_outer img {
    width: 400px;
    height: 400px;
  }
  .overview .header_section {
    margin-top: 40px;
  }
  .overview .header_section .back_shadow {
    font-size: 50px;
    margin-top: -50px;
  }
  .overview .header_section .subtitle span {
    font-size: 40px;
  }
  .overview .header_section .content {
    font-size: 16px;
    line-height: 1.2;
    margin: 25px 0px 20px 0px;
  }
  .overview .overview_details ul {
    margin-top: 10px;
  }
  .overview .overview_details p {
    font-size: 16px;
    margin-bottom: 0px;
    text-align: justify;
  }

  .pricelist .header_section {
    text-align: center;
  }
  .pricelist .card {
    width: 95%;
    margin: 0px auto;
    margin-bottom: 30px;
    padding: 20px;
    /* border: 1px solid var(--bg-color2); */
    box-shadow: 0px 0px 10px #c5c7d036;
  }

  .amenities {
    padding: 80px 0px;
  }

  .gallery {
    padding: 80px 0px;
  }
  .gallery .img1 {
    height: 250px;
  }
  .gallery .img2 {
    height: 250px;
  }
  .gallery .header_section .subtitle {
    font-size: 30px;
  }
  .gallery .header_section .subtitle span {
    font-size: 40px;
  }

  .floorplan .card {
    width: 100%;
    margin-bottom: 40px;
  }
  .floorplan .card .card-body {
    width: 90%;
  }
  .floorplan .card .card-body .card-text,
  .floorplan .card .card-body .card-text span {
    font-size: 18px;
    font-family: var(--font);
  }
  .floorplan .mt-5 {
    margin-top: 0px !important;
  }

  .location {
    padding: 80px 0px;
  }
  .location .header_section .subtitle {
    font-size: 28px;
    line-height: 1.2;
  }
  .location .header_section .subtitle span {
    font-size: 40px;
  }
  .location .location_map img {
    height: 400px;
  }
  .location .location_details ul {
    padding-left: 10px;
  }
  .location .location_details {
    width: 100%;
    padding: 60px 30px;
    margin: 20px auto 0px auto;
    position: relative;
  }

  .hero_section {
    margin: 0px;
    border-radius: 0px;
  }
  .hero_section::after {
    border-radius: 0px;
  }
  .hero_section .header_section .subtitle {
    font-size: 28px;
    line-height: 1;
  }
  .hero_section .header_section .content {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .contactus {
    padding: 60px 0px;
  }
  .contactus .c_content {
    margin-top: 40px;
    justify-content: center;
  }
  .contactus .c_details .c_img {
    width: 95%;
    height: 450px;
  }
  .contactus .c_details .c_img img {
    height: 450px;
  }
  .footer p {
    font-size: 12px;
  }

  .phone {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .phone i {
    height: 50px;
    width: 50px;
    font-size: 20px;
    line-height: 45px;
    background-color: var(--text-color);
    border: 2px solid var(--text-color1);
    color: var(--bg-color);
  }
  .whatsapp i {
    height: 50px;
    width: 50px;
    font-size: 30px;
    line-height: 50px;
  }
}

@media (max-width: 480px) {
  .thanks_bg .t_title {
    font-weight: 800;
    color: var(--bg-color);
    font-size: 50px;
    font-family: var(--font3);
    line-height: 1.2;
  }
  .thanks_bg .t_subtitle {
    color: var(--bg-color);
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: capitalize;
  }
  .thanks_bg .t_content {
    font-size: 16px;
  }

  .navbar {
    background-color: var(--bg-color);
    padding: 10px;
  }
  .navbar .navbar-brand img {
    height: 35px;
  }
  .navbar .navbar-toggler-icon {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .navbar .navbar-toggler {
    font-size: 16px;
    border: 1px solid var(--text-color);
  }
  .slider {
    height: 100%;
    padding: 80px 0px;
    margin-top: 60px;
  }
  .slider::after {
    background: linear-gradient(#000000, #000000);
    opacity: 0.6;
  }
  .slider .slider_details {
    padding-bottom: 30px;
  }
  .slider .slider_details .p_location {
    font-size: 20px;
  }
  .slider .slider_details .p_name {
    font-size: 34px;
    font-weight: 500;
    font-family: var(--font);
    letter-spacing: 0px;
  }
  .slider .slider_details .key_points {
    width: 100%;
  }
  .slider .slider_details .key_points ul {
    padding-left: 20px;
  }
  .slider .slider_details .p_bhk {
    width: 100%;
    font-size: 20px;
  }
  .slider .slider_details .p_price {
    font-size: 20px;
  }
  .slider .slider_details .p_price span {
    font-size: 24px;
  }
  .slider .slider_form {
    width: 100%;
    padding: 30px;
  }
  .slider .slider_form .header_section .subtitle {
    font-size: 20px;
  }
  .slider .slider_form .header_section .subtitle span {
    font-size: 24px;
  }
  .modal .modal-body .header_section .subtitle {
    line-height: 1;
    font-size: 20px;
    margin: 5px;
  }
  .modal .modal-body .header_section .subtitle span {
    font-size: 26px;
  }
  .modal .modal-body .main_form_section {
    padding: 15px;
  }
  .modal .modal-body .card {
    display: none;
  }
  .highlights {
    padding: 40px 0px;
  }
  .highlights .header_section {
    padding: 40px 0px 180px 0px;
  }
  .highlights .header_section .back_shadow {
    font-size: 40px;
    margin-top: -45px;
  }
  .highlights .header_section .subtitle {
    line-height: 1;
    font-size: 26px;
  }
  .highlights .header_section .subtitle span {
    font-size: 32px;
  }
  .highlights .header_section .content {
    margin-top: 20px;
  }
  .highlights .highlights_points {
    height: 100%;
  }
  .highlights .highlights_points .highlights_card .card {
    box-shadow: 0px 0px 10px #1e2f6e9d;
    padding: 10px;
  }
  .highlights .highlights_points .highlights_card .card .icon img {
    height: 45px;
  }
  .highlights .highlights_points .highlights_card .card .bg_icon img {
    height: 80px;
    margin-top: -60px;
  }
  .highlights .video_section .arrow {
    margin-left: 80px;
    margin-top: -60px;
  }
  .highlights .video_section .title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .highlights .highlights_points .highlights_card .card .card-text {
    font-size: 16px;
  }
  .overview {
    padding: 20px 0px 60px 0px;
  }
  .overview .overview_outer {
    width: 350px;
    height: 350px;
    margin-top: 20px;
  }
  .overview .overview_outer img {
    width: 300px;
    height: 300px;
  }
  .overview .header_section {
    margin-top: 40px;
  }
  .overview .header_section .back_shadow {
    font-size: 36px;
    margin-top: -40px;
  }
  .overview .header_section .subtitle {
    font-size: 24px;
    line-height: 1;
  }
  .overview .header_section .subtitle span {
    font-size: 34px;
  }
  .overview .header_section .content {
    font-size: 16px;
    line-height: 1.2;
    margin: 25px 0px 20px 0px;
  }
  .overview .overview_details ul {
    margin-top: 10px;
  }
  .overview .overview_details p {
    font-size: 16px;
    margin-bottom: 0px;
    text-align: justify;
  }

  .pricelist .header_section {
    text-align: center;
  }
  .pricelist .card {
    width: 100%;
    margin: 0px auto;
    margin-bottom: 30px;
    padding: 20px;
    /* border: 1px solid var(--bg-color2); */
    box-shadow: 0px 0px 10px #c5c7d036;
  }
  .pricelist .header_section .subtitle {
    font-size: 22px;
    line-height: 1.2;
  }
  .pricelist .header_section .subtitle span {
    font-size: 32px;
  }
  .pricelist .header_section .content {
    margin: 10px 0px 30px 0px;
  }
  .pricelist .pricelist_details {
    padding: 30px;
  }
  .amenities {
    padding: 80px 0px;
  }
  .amenities .header_section .back_shadow {
    font-size: 36px;
    margin-top: -40px;
  }
  .amenities .header_section .subtitle {
    font-size: 22px;
    line-height: 1;
  }
  .amenities .header_section .subtitle span {
    font-size: 32px;
  }
  .amenities .square_flip {
    min-height: 300px;
    margin-bottom: 30px;
  }

  .gallery {
    padding: 80px 0px;
  }
  .gallery .img1 {
    height: 250px;
  }
  .gallery .img2 {
    height: 250px;
  }
  .gallery .gallery_images {
    margin-top: 30px;
  }
  .gallery .header_section .back_shadow {
    font-size: 36px;
    margin-top: -40px;
  }
  .gallery .header_section .subtitle {
    font-size: 22px;
    line-height: 1;
  }
  .gallery .header_section .subtitle span {
    font-size: 32px;
  }

  .floorplan .card {
    width: 100%;
    margin-bottom: 40px;
  }
  .floorplan .header_section .back_shadow {
    font-size: 36px;
    margin-top: -40px;
  }
  .floorplan .header_section .subtitle {
    font-size: 22px;
    line-height: 1;
  }
  .floorplan .header_section .subtitle span {
    font-size: 36px;
  }
  .floorplan .header_section .content {
    margin: 10px 0px 20px 0px;
  }
  .floorplan .card .card-body {
    width: 90%;
  }
  .floorplan .card .card-body .card-text,
  .floorplan .card .card-body .card-text span {
    font-size: 18px;
    font-family: var(--font);
  }
  .floorplan .mt-5 {
    margin-top: 0px !important;
  }

  .location {
    padding: 80px 0px;
  }
  .location .header_section .subtitle {
    font-size: 22px;
    line-height: 1.2;
  }
  .location .header_section .subtitle span {
    font-size: 32px;
  }
  .location .location_map img {
    height: 300px;
  }
  .location .location_details ul {
    padding-left: 0px;
  }
  .location .header_section .back_shadow {
    font-size: 36px;
    margin-top: -40px;
  }
  .location .location_details {
    width: 100%;
    padding: 30px 10px;
    margin: 20px auto 0px auto;
    position: relative;
  }
  .location .location_details .location_content li {
    font-size: 14px;
  }

  .hero_section {
    margin: 0px;
    border-radius: 0px;
  }
  .hero_section::after {
    border-radius: 0px;
  }
  .hero_section .header_section .back_shadow {
    font-size: 40px;
    margin-top: -45px;
  }
  .hero_section .header_section .subtitle {
    font-size: 24px;
    line-height: 1;
  }
  .hero_section .header_section .content {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .contactus {
    padding: 60px 0px;
  }
  .contactus .c_content .header_section .back_shadow {
    font-size: 46px;
    margin-top: -50px;
  }
  .contactus .c_content .header_section .subtitle {
    line-height: 1;
    font-size: 26px;
    margin: 0px;
  }
  .contactus .c_content .header_section .subtitle span {
    font-size: 36px;
  }
  .contactus .c_content .header_section .content {
    line-height: 1;
    margin: 0px;
  }
  .contactus .c_content {
    margin-top: 40px;
    justify-content: center;
  }
  .contactus .c_details .c_img {
    width: 95%;
    height: 355px;
  }
  .contactus .c_content .form-control {
    height: 50px;
    margin: 15px 0px;
  }
  .contactus .c_details .c_img img {
    height: 400px;
  }
  .footer p {
    font-size: 10px;
  }

  .phone {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .phone i {
    height: 50px;
    width: 50px;
    font-size: 20px;
    line-height: 45px;
    background-color: var(--text-color);
    border: 2px solid var(--text-color1);
    color: var(--bg-color);
  }
  .whatsapp i {
    height: 50px;
    width: 50px;
    font-size: 30px;
    line-height: 50px;
  }
}

/* Responsiveness Section End */
