
@font-face {
    font-family: 'mdbt';
    src: url(./fonts/futura\ medium\ bt.woff2);
  }
  @font-face {
    font-family: 'futura';
    src: url(./fonts/futura\ light\ bt.woff2);
  }copyright
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  'mdbt';
    scroll-behavior: smooth;
  }
  
  html, body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    /* background-color: var(--lightbg);
    3 */
  }
  
  *::selection {
    background-color: transparent;
    color: var(--maincolor);
  }
  
  body::-webkit-scrollbar{
      background-color: #dadada;
      width: 5px;
      z-index: 2;
  }
  
  body::-webkit-scrollbar-thumb{
      background: var(--maincolor);
      border-radius: 50px;
  }
  
  
  :root {
    --maincolor: #7e1f49;
    --maincolor2:#7e1f4ada;
    --lightmaincolor:#7e1f4a27;
    --lightpink: #f3d4e1;
    --lightbgtext: #0000009c;
    --bordertop: #dee2e6;
    --white: #fff;
    --transparent: #ffffffac;
    --nav_bg: #ffffff96;
    --white2: #ffffffc0;
    --light: #f5f5f5;
    --black: #020d26;
    --black2: #000000c5;
    --blacktransparent: #00000062;
    --blacktransparent2: #00000050;
    --collapsetransparent: #ffffff7a;
  }
  
  .mdbt {
    font-family: 'mdbt';
  }
  
  .futura {
    font-family: 'futura';
  }
  
  .maincolor {
    color: var(--maincolor);
  }

  .maincolor2 {
  color: var(--maincolor2);
  }

  .transparent {
    color: var(--transparent);
  }

  .letter_spacing {
    letter-spacing: .5rem;
  }


  /*----FIXED---ICONS---START---*/

  .fixed_icons_main {
    width: fit-content;
    position: fixed;
    top: 30%;
    right: 0%;
    transform: translateY(-30%);
    transition: all ease .7s;
    z-index: 99;
    pointer-events: none;
  }

  .fixed_icons {
    width: auto;
    margin: .3rem 0;
    transform: translateX(77%);
    transition: all ease .7s;
    pointer-events: all;
  }
  
  .fixed_icons a {
    background-color: var(--lightpink);
    color: var(--maincolor)!important;
    padding: .5rem 2rem .5rem 1rem;
    font-size: .8rem;
  }

  .fixed_icons:hover {
    transform: translateX(15%);
  }

  .fixed_icons:hover:nth-child(2) {
    transform: translateX(30%);
  }

  .brochure {
    font-size: 1rem;
    margin-top: .35rem;
  }
  
  /*----FIXED---ICONS---END---*/

  #main {
    position: relative;
    z-index: 10;
    background-color: var(--white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

/*--------------------NAVBAR---START---------------------*/

.navbar {
    width: 95%!important;
    margin: 1rem auto 0 auto!important;
    border-radius: 10px;
    padding: .5rem 1rem!important;
  }

  .nav_bg {
    background-color: var(--maincolor2);
    /* backdrop-filter: blur(10px); */
  }

  .top_logo {
    width: 10%;
    transition: all ease .5s;
  }
  
  .toggler {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
  
  .toggler span {
    width: 100%;
    height: 2px;
    background-color: var(--black);
    transition: all 0.3s ease-in-out;
  }
  
  .toggler.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .toggler.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
  }
  
  .toggler.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* .navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-xl, .navbar>.container-xxl {
    display: initial!important;
  } */
  
  .navbar-toggler {
    border: none!important;
    padding: .5rem!important;
  }
  
  .navbar-toggler:focus {
    outline: none!important;
    box-shadow: none!important;
  }
  
  .link_hover {
      width: fit-content;
      position: relative;
      transition: all ease .3s!important;
      color: var(--lightpink)!important;
      font-size: .8rem!important;
      text-transform: uppercase;
      margin-left: 1rem!important;
  }

  .link_hover::after {
      content: '';
      position: absolute;
      /* display: block;
      margin: auto; */
      width: 0%;
      height: 2px;
      background-color: var(--lightpink);
      border-radius: 20px;
      bottom: 0%;
      left: 8%;
      transition: all ease .4s;
  }
  
  .link_hover:hover::after {
      width: 85%;
  }
  
  #navbar {
    transition: transform 0.7s ease;
  }

  #navbar.hide {
    transform: translateY(-150%);
  }


/*--------------------NAVBAR---START---------------------*/


/*--------------------BANNER---START---------------------*/

.slide1 {
    width: 100%;
    height: 100vh;
    background: var(--maincolor);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.slide2 {
    width: 100%;
    height: 100vh;
    background: url('images/banner_img1.jpg')no-repeat;
    background-size: 100% 100%;
}

.slide3 {
    width: 100%;
    height: 100vh;
    background: url('images/banner_img2.jpg')no-repeat;
    background-size: 100% 100%;
}

.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--lightbg);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    width: auto!important;
    left: 50%!important;
    transform: translateX(-50%)!important;
    bottom: 1.5%!important;
    background-color: var(--lightpink);
    border-radius: 5px!important;
    padding: 0rem .5rem!important;
  }

  .swiper-pagination-bullet {
    width: 11px!important;
    height: 8px!important;
    border-radius: .2rem!important;
    transition: width .7s ease;
  }

  .swiper-pagination-bullet-active {
    width: 25px!important;
    border-radius: 2px!important;
    background-color: var(--maincolor)!important;
  }

  .slide1 h3 {
    color: var(--lightpink);
    margin-bottom: 5rem;
    /* transition: all ease .5s; */
  }

  .banner_logo {
    width: 30%;
  }

  .logo_part1 {
    width: 40%;
    margin: auto;
  }
  .logo_part2 {
    width: 50%;
    margin: auto;
  }
  .logo_part3 {
    width: 80%;
    margin: auto;
  }
  
  .overlay1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--maincolor);
  }

  .banner_heading {
    width: fit-content;
    position: absolute;
    bottom: 5%;
    left: 20%;
    transform: translate(-20%, -5%);
    overflow: hidden;
  }
  
  .banner_heading h1 {
    /* background-color: var(--blacktransparent2); */
    color: var(--lightpink);
    border-radius: .5rem;
    opacity: 0;
    transform: translateY(-50%);
    font-size: 1.7rem;
    padding: .5rem 1rem;
    transition: all ease .5s;
  }

  .swiper-slide-active .banner_heading h1 {
    opacity: 1;
    transform: translateY(0%);
  }

  .banner_heading h4 {
    color: var(--lightpink);
    border-radius: .5rem;
    opacity: 0;
    transform: translateY(-50%);
    font-size: 1.7rem;
    padding: .5rem 1rem;
    transition: all ease .5s;
    transition-delay: .1s;
  }

  .swiper-slide-active .banner_heading h4 {
    opacity: 1;
    transform: translateY(0%);
  }


/*--------------------BANNER---END---------------------*/


/*--------------------INTRO---START---------------------*/

.section_wrapper {
  width: 95%;
  margin: auto;
}

.intro_content_bg {
  background-color: var(--maincolor);
  border-radius: 1rem;
}

.smile_img {
  width: 50%;
  height: 100%;
}

.intro_content_text::selection {
  background-color: var(--lightpink);
  color: var(--maincolor);
}

.intro_content {
  width: 80%;
  margin: auto;
}

.intro_content h3 {
  color: var(--lightpink);
  transition: all ease .5s;
}

.intro_content p {
  color: var(--lightpink);
  transition: all ease .5s;
}

/*--------------------INTRO---END---------------------*/

/*--------------------OVERVIEW---START---------------------*/

.overview_logo {
  width: 80%;
  transition: all ease .5s;
}

.overview_txt {
  width: fit-content;
  background-color: var(--maincolor);
  color: var(--lightpink);
  padding: .5rem 1rem;
  border-radius: .5rem;
  font-size: 2.4rem;
  text-transform: uppercase;
  transition: all ease .5s;
}

.counter_bg {
  width: 97%;
  margin: auto;
  border-radius: 1rem;
  background-color: var(--maincolor);
  color: var(--lightpink);
}

.counter-section {
  padding: 60px 0;
  background: var(--white);
}

.counter-box {
  min-height: 250px;
  text-align: center;
  margin: 20px 0;
  opacity: 0; 
  /* border: 1px solid var(--black2); */
  /* border-bottom-right-radius: 3.5rem; */
  background-color: var(--maincolor);
  border-radius: 1rem;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all ease .5s;
}

.counter-box:hover {
/* box-shadow: 0px 0px 5px 2px var(--gold); */
  border: 1px solid var(--red);
}

.counter {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--lightpink);
  display: inline-flex;
  align-items: center; 
  font-family: 'futura'!important;
}

.counter-text {
  margin-left: 5px; 
  font-size: 2rem; 
  font-family: 'futura'!important;
}

.counter-title {
  font-size: 1.2rem;
  color: var(--lightpink);
  font-family: 'futura'!important;
}

.welcome_txt h3 {
  width: fit-content;
  color: var(--lightpink);
  background-color: var(--maincolor);
  border-radius: .5rem;
  padding: .5rem 1rem;
  transition: all ease .5s;
}

.welcome_right_content p {
  transition: all ease .5s;
}

/*--------------------OVERVIEW---END---------------------*/


/*--------------------ALL---PLANS---START---------------------*/

.master_plan_smile {
  width: 40%;
  margin: auto;
  transition: all ease .5s;
}

.master_plan_txt {
  width: fit-content;
  margin: auto;
  padding: .5rem 3rem;
  border-radius: .5rem;
  font-size: 2rem;
  background-color: var(--maincolor);
  color: var(--lightpink);
  text-transform: uppercase;
}

.accordion {
  width: 100%;
}

.accordion-item {
  border: 1px solid var(--green)!important;
  margin-top: 1rem;
  border-radius: 20px!important;
  overflow: hidden;
  background-color: var(--lightmaincolor)!important;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  background: var(--lightmaincolor)!important;
  border: none;
  cursor: pointer;
  outline: none;
  /* transition: all ease .5s; */
}

.accordion-title {
  font-size: 1.5rem;
  color: var(--black);
  transition: all ease .5s;
}

.accordion-icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accordion-icon span {
  position: absolute;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.accordion-icon .vertical {
  width: 3px;
  height: 80%;
}

.accordion-icon .horizontal {
  width: 80%;
  height: 3px;
}

.accordion-header.active .vertical {
  transform: scaleY(0);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

.accordion-content p {
  margin: 15px 0;
  color: #555;
}

.accordion-header.active + .accordion-content {
  max-height: 150px; /* Adjust based on content size */
  padding: 15px 20px;
}

.tabs-container {
  width: 100%;
  overflow: hidden;
}

.tabs-nav {
  width: fit-content;
  margin: auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 30px;
  position: relative;
}

.tab-btn {
  padding: .7rem 1.5rem;
  font-weight: 700;
  border: none;
  background: none;
  color: var(--maincolor);
  border: 1px solid var(--maincolor);
  letter-spacing: .5px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}


.tab-btn.active {
  color: var(--lightpink);
}

.slide-bg {
  position: absolute;
  background: var(--maincolor);
  height: 100%;
  width: 0;
  left: 0;
  top: 0;
  border-radius: 5px;
}

.hover-bg {
  position: absolute;
  background: var(--lightmaincolor);
  height: 100%;
  width: 0;
  left: 0;
  top: 0;
  border-radius: 5px;
  z-index: 0;
}

.tab-content {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  /* max-height: 300px; */
  height: auto;
  display: none;
  opacity: 0;
}

.tab-content.active {
  display: block;
}

@media (max-width: 992px) {
  .tabs-nav {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* IE/Edge */
      padding-bottom: 5px;
      gap: 10px;
      width: 100%;
  }

  .tabs-nav::-webkit-scrollbar {
      width: 0;
      height: 0;
      display: none; /* Chrome/Safari/Opera */
  }
  
  .tab-btn {
      width: 100%;
      text-align: center;
  }
  
  .tab-content {
      padding: 20px;
  }
}

/*--------------------ALL---PLANS---END---------------------*/


/*--------------------TABLE---START---------------------*/

.table-container {
  width: 100%;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.table-wrapper {
  width: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  background: #fff;
  overflow-x: auto;
  transition: all 0.3s ease;
  border: 1px solid var(--maincolor);
  border-radius: 10px;
}

.table-wrapper:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}

.custom-table thead {
  background: linear-gradient(135deg, #F4D9E7 0%, #fce1ec 100%)!important;
}

.custom-table th,
.custom-table td {
  padding: 18px 25px;
  text-align: left;
  border-right: 1px solid var(--maincolor);
  border-bottom: 1px solid var(--maincolor);
  text-align: center;

}

.custom-table th:last-child,
.custom-table td:last-child {
  border-right: none;
}

.custom-table tbody tr:last-child td {
  border-bottom: none;
}

.custom-table th {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.custom-table tbody tr {
  transition: all 0.3s ease;
}

.custom-table tbody tr:hover {
  background: linear-gradient(135deg, #FFF5F9 0%, #fff9fb 100%)!important;
  transform: scale(1.01);
}

.custom-table td {
  color: #555;
  font-size: 0.95rem;
}

@media screen and (max-width: 991px) {
   .table-wrapper {
      overflow: visible;
      border-radius: 8px;
  }
  
  .custom-table {
      display: block;
  }
  
  .custom-table thead {
      float: left;
      display: block;
      background: linear-gradient(180deg, #F4D9E7 0%, #fce1ec 100%);
  }
  
  .custom-table tbody {
      display: block;
      width: auto;
      overflow-x: scroll;
      white-space: nowrap;
      scrollbar-width: thin;
      scrollbar-color: var(--maincolor) #fff;
  }
  
  .custom-table tbody::-webkit-scrollbar {
      height: 8px;
      display: block;
  }
  
  .custom-table tbody::-webkit-scrollbar-track {
      background: var(--maincolor)!important;
  }
  
  .custom-table tbody::-webkit-scrollbar-thumb {
      background-color: var(--maincolor)!important;
      border-radius: 20px;
  }
  
  .custom-table thead tr {
      display: block;
  }
  .custom-table th {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 120px;
      padding: 5px;
      text-align: center;
      border: 1px solid #eee;
  }
  
  .custom-table th span {
      display: block;
      font-size: .83rem;
      white-space: nowrap;
      transition: all 0.3s ease;
  }
  
  .custom-table tbody tr {
      display: inline-block;
      vertical-align: top;
      border-right: 1px solid #eee;
  }
  
  .custom-table td {
      display: block;
      height: 120px;
      padding: 15px;
      text-align: center;
      border: 1px solid #eee;
  }

  .custom-table tbody tr:hover td {
      background: rgba(244,217,231,0.1);
  }
}

/*--------------------TABLE---END---------------------*/


/*--------------------INTERIORS---START---------------------*/

.img_heading {
  top: 0;
  left: 0;
  background-color: var(--maincolor);
  color: var(--lightpink);
  padding: .5rem 1rem;
  transition: all ease .5s;
}

.interior_content {
  width: 100%;
  margin: auto;
}

.interior_content h4 {
  width: fit-content;
  margin: auto;
  background-color: var(--maincolor);
  color: var(--lightpink);
  padding: .5rem 1rem;
  transition: all ease .5s;
}

.interior_content p {
  width: 80%;
  margin: auto;
  transition: all ease .5s;
}

.interior_content_img {
  width: 50%;
  margin: auto;
}



/*--------------------INTERIORS---END---------------------*/


/*--------------------CLUBHOUSE---AND---AMENITIES---START---------------------*/

.clubhouse_logo {
  width: 40%;
  margin: auto;
}

.clubhouse_content {
  width: 65%;
  margin: auto;
}

.clubhouse_content_img {
  width: 60%;
  margin: auto;
}

.amenities {
  width: 100%;
  height: 450px;
  padding: 0 1rem;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  position: relative;
  border: 1px solid var(--maincolor);
  overflow: hidden;
  transition: all ease .5s;
}

.amenities h4 {
  font-size: 1.1rem;
  transition: all ease .5s;
}

.amenities h3 {
  font-size: 1.5rem;
  transition: all ease .5s;
}

.amenities p {
  transition: all ease .5s;
}

.amenities .hover_img {
  height: 450px;
  opacity: 0;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: all ease .5s;
}

.amenities:hover .hover_img {
  scale: 1.05;
  opacity: 1;
  z-index: 9;
}

.amenities:hover {
  border: none;
}

.amenities_icon {
  width: 20%;
  margin: 0 auto;
}


/*--------------------CLUBHOUSE---AND---AMENITIES---END---------------------*/


/*--------------------SPECIFICATIONS---START---------------------*/

.specification_icon {
  width: 100%;
  transition: all ease .5s;
}

.specification_h3 {
  font-size: 1.2rem;
  transition: all ease .5s;
}

.content_height {
  height: fit-content!important;
}

/*--------------------SPECIFICATIONS---END---------------------*/


/*--------------------LOCATION---START---------------------*/

.location_content {
  width: 70%;
  margin: auto;
}

.location_content h4 {
  width: fit-content;
  margin: auto;
  background-color: var(--maincolor);
  color: var(--lightpink);
  padding: .5rem 1rem;
  border-radius: 10px;
  transition: all ease .5s;
}

.location_content p {
  transition: all ease .5s;
}

.location_smile_img {
  width: 50%;
  margin: auto;
}

/*--------------------LOCATION---END---------------------*/


/*--------------------ABOUT---US---START---------------------*/

.about {
  width: 80%;
  margin: auto;
}

.about_logo {
  width: 30%;
  margin: auto;
}

.completed_content {
  width: 80%;
  margin: auto;
}

.completed_content h4 {
  color: var(--lightpink);
  transition: all ease .5s;
}

.completed_logo_symbol {
  width: 20%;
  margin: auto;
}

.completed_project {
  width: 100%;
  height: 100%;
}

.completed_project img {
  width: 100%;
  height: fit-content;
  object-fit: cover;
}

.sahasra_heigthts {
  width: 50%;
  margin: 0 auto;
}

.sahasra_heights_content {
  width: 100%;
  height: 100%;
}

.sahasra_heights_content h2 {
  font-size: 1.5rem;
  transition: all ease .5s;
}

.sahasra_heights_content h5 {
  font-size: .9rem;
  transition: all ease .5s;
}

/*--------------------ABOUT---US---END---------------------*/


/*--------------------FOOTER---START---------------------*/

.footer_section_bg {
  width: 100%;
  height: 60vh;
  background: transparent;
  z-index: -999;
  pointer-events: none;
}

.footer_bg {
  width: 100%;
  height: 60vh;
  background-color: var(--maincolor);
  position: fixed;
  bottom: 0;
  left: 0;
}

.footer_logo {
  width: 90%;
}

.copyright {
  font-size: .8rem;
  transition: all ease .5s;
}

.copyright:nth-child(3) {
  font-size: 1rem;
  transition: all ease .5s;
}

.footer_icon {
  font-size: 1.5rem;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 50%;
  padding: .5rem;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all ease .5s;
}

.footer_icon:hover {
  color: var(--maincolor);
}

.footer_icon::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background-color: var(--white);
  border-radius: 50%;
  bottom: -200%;
  left: -45%;
  transition: all ease .5s;
  z-index: -1;
}

.footer_icon:hover::after {
  bottom: -100%;
}

.footer_icon icon:nth-child(2){
  font-size: .7rem!important;
}

.address {
  width: 90%;
  transition: all ease .5s;
}

.connect_icon {
  position: relative;
  width: fit-content;
}

.connect_icon::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: var(--white);
  bottom: 10%;
  left: 0;
  transition: all ease .5s;
}

.connect_icon:hover::after {
  width: 100%;
}

.form-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-content {
  width: 100%;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 1rem;
  position: relative;
}

.form-input {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--white);
  color: var(--lightpink);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: transparent;
}

.form-input:focus {
  border-color: var(--white)!important;
  outline: none;
}

.form-label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--maincolor);
  padding: 0 5px;
  color: var(--white);
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: 0;
  font-size: 0.85rem;
  color: var(--white);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  border-radius: 10px;
  color: var(--lightpink);
}

.form-textarea + .form-label {
  top: 20px;
}

.form-textarea:focus + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label {
  top: -5px;
}

.form-button {
  width: fit-content;
  padding: 1rem;
  border: 1px solid var(--white);
  border-radius: 10px;
  background: none;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 2;
transition: all ease 1s;
}

.form-button:hover {
color: var(--maincolor);
}

.form-button::after{
content: '';
position: absolute;
width: 400%;
height: 500%;
background-color: var(--white);
border-radius: 50%;
top: -500%;
left: -150%;
transition: all ease 1s;
z-index: -1;
}

.form-button:hover::after {
  top: -250%;
}

.error-message {
  color: var(--lightpink);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.form-input.error {
  border-color: var(--lightpink);
}

/*--------------------FOOTER---END---------------------*/


/*--------------------RESPONSIVE---CODES---------------------*/


@media screen and (min-width: 300px) and (max-width: 450px){

  .navbar {
    width: 97%!important;
    margin: .4rem auto 0 auto!important;
    padding: .5rem!important;
  }

  .top_logo {
    width: 30%;
  }

  .link_hover {
    margin: 0!important;
  }

  .toggler span {
    background-color: var(--lightpink);
  }

  .logo_part1 {
    width: 50%;
  }

  .logo_part2 {
    width: 80%;
  }

  .logo_part3 {
    width: 100%;
  }

  .banner_logo {
    width: 40%;
  }

  /* .banner_margin {
    margin-top: 21%;
  } */
  #main {
    padding-top: 21%;
  }

  .slide1 {
    height: 100%;
    /* background: none; */
  }

  .slide2 {
    height: 100%;
    background: none;
  }

  .slide3 {
    height: 100%;
    background: none;
  }

  .banner_heading h1 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .banner_heading h4 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .slide1 h3 {
    font-size: .7rem;
    margin-bottom: 1.5rem;
  }

  .overview_logo {
    width: 60%;
  }

  .interiors_pagination .swiper-pagination {
    width: 67%!important;
  }
  
  .clubhouse_content {
    width: 100%;
  }

  .specification_h3 {
    font-size: 1rem;
  }
  
  .specification_icon img {
    width: 100%!important;
  }

  .footer_section_bg {
    height: 105vh;
  }

  .footer_bg {
    height: 105vh;
  }

  .footer_logo {
    width: 30%;
    margin-top: 3rem;
  }

  .copyright {
    font-size: .6rem;
  }

  .address h3 {
    font-size: 1rem;
    margin-bottom: .2rem;
  }

  .address h6 {
    font-size: .9rem;
  }

  .address p {
    font-size: .8rem;
  }

  .footer_icons h3 {
    font-size: 1rem;
  }

  .footer_icons {
    font-size: 1rem;
  }

  .footer_icon {
    font-size: .8rem;
  }

  .connect {
    margin: .5rem 0 0 0;
  }

  .connect h3 {
    font-size: 1rem;
  }

  .connect a {
    font-size: .8rem;
  }

  .contact_form {
    margin: .5rem 0 0 0;
  }

  .form-input {
    padding: 7px;
    font-size: .8rem;
  }

  .form-label {
    font-size: .8rem;
  }

  .form-button {
    padding: .5rem;
    font-size: .8rem;
  }
  
}

@media screen and (min-width: 451px) and (max-width: 560px){
  .navbar {
    width: 97%!important;
    margin: .4rem auto 0 auto!important;
    padding: .5rem!important;
  }

  .top_logo {
    width: 25%;
  }

  .toggler span {
    background-color: var(--lightpink);
  }

  .link_hover {
    margin: 0!important;
  }

  .logo_part1 {
    width: 50%;
  }

  .logo_part2 {
    width: 80%;
  }

  .logo_part3 {
    width: 100%;
  }

  .banner_logo {
    width: 50%;
  }

  /* .banner_margin {
    margin-top: 18.5%;
  } */
  #main {
    padding-top: 18.5%;
  }

  .slide1 {
    height: 100%;
    /* background: none; */
  }

  .slide2 {
    height: 100%;
    background: none;
  }

  .slide3 {
    height: 100%;
    background: none;
  }

  .banner_heading h1 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .banner_heading h4 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .slide1 h3 {
    font-size: .7rem;
    margin-bottom: 1.7rem;
  }

  .overview_logo {
    width: 50%;
  }

  .clubhouse_content {
    width: 100%;
  }
  
  .specification_icon img {
    width: 100%!important;
  }

  .footer_section_bg {
    height: 105vh;
  }

  .footer_bg {
    height: 105vh;
  }

  .footer_logo {
    width: 30%;
    margin-top: 3.5rem;
  }

  .copyright {
    font-size: .6rem;
  }

  .address h3 {
    font-size: 1rem;
    margin-bottom: .2rem;
  }

  .address h6 {
    font-size: .9rem;
  }

  .address p {
    font-size: .8rem;
  }

  .footer_icons h3 {
    font-size: 1rem;
  }

  .footer_icons {
    font-size: 1rem;
  }

  .footer_icon {
    font-size: .8rem;
  }

  .connect {
    margin: .5rem 0 0 0;
  }

  .connect h3 {
    font-size: 1rem;
  }

  .connect a {
    font-size: .8rem;
  }

  .contact_form {
    margin: .5rem 0 0 0;
  }

  .form-input {
    padding: 7px;
    font-size: .8rem;
  }

  .form-label {
    font-size: .8rem;
  }

  .form-button {
    padding: .5rem;
    font-size: .8rem;
  }
  
}

@media screen and (min-width: 561px) and (max-width: 600px){
  .navbar {
    width: 97%!important;
    margin: .4rem auto 0 auto!important;
    padding: .5rem!important;
  }

  .top_logo {
    width: 20%;
  }

  .toggler span {
    background-color: var(--lightpink);
  }

  .link_hover {
    margin: 0!important;
  }

  .logo_part1 {
    width: 50%;
  }

  .logo_part2 {
    width: 80%;
  }

  .logo_part3 {
    width: 100%;
  }

  .banner_logo {
    width: 45%;
  }

  /* .banner_margin {
    margin-top: 14.5%;
  } */
  #main {
    padding-top: 14.5%;
  }

  .slide1 {
    height: 100%;
    /* background: none; */
  }

  .slide2 {
    height: 100%;
    background: none;
  }

  .slide3 {
    height: 100%;
    background: none;
  }

  .slide1 h3 {
    font-size: .7rem;
    margin-bottom: 2rem;
  }

  .banner_heading h1 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .banner_heading h4 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .overview_logo {
    width: 50%;
  }

  .clubhouse_content {
    width: 100%;
  }
  
  .specification_icon img {
    width: 100%!important;
  }

  .footer_section_bg {
    height: 105vh;
  }

  .footer_bg {
    height: 105vh;
  }

  .footer_logo {
    width: 30%;
    margin-top: 3.5rem;
  }

  .copyright {
    font-size: .6rem;
  }

  .address h3 {
    font-size: 1rem;
    margin-bottom: .2rem;
  }

  .address h6 {
    font-size: .9rem;
  }

  .address p {
    font-size: .8rem;
  }

  .footer_icons h3 {
    font-size: 1rem;
  }

  .footer_icons {
    font-size: 1rem;
  }

  .footer_icon {
    font-size: .8rem;
  }

  .connect {
    margin: .5rem 0 0 0;
  }

  .connect h3 {
    font-size: 1rem;
  }

  .connect a {
    font-size: .8rem;
  }

  .contact_form {
    margin: .5rem 0 0 0;
  }

  .form-input {
    padding: 7px;
    font-size: .8rem;
  }

  .form-label {
    font-size: .8rem;
  }

  .form-button {
    padding: .5rem;
    font-size: .8rem;
  }
  
}

@media screen and (min-width: 601px) and (max-width: 700px){
  .navbar {
    width: 97%!important;
    margin: .4rem auto 0 auto!important;
    padding: .5rem!important;
  }

  .top_logo {
    width: 17%;
  }

  .toggler span {
    background-color: var(--lightpink);
  }

  .link_hover {
    margin: 0!important;
  }

  .logo_part1 {
    width: 50%;
  }

  .logo_part2 {
    width: 80%;
  }

  .logo_part3 {
    width: 100%;
  }

  .banner_logo {
    width: 45%;
  }
  
  /* .banner_margin {
    margin-top: 13%;
  } */
  #main {
    padding-top: 13%;
  }

  .slide1 {
    height: 100%;
    /* background: none; */
  }

  .slide2 {
    height: 100%;
    background: none;
  }

  .slide3 {
    height: 100%;
    background: none;
  }

  .banner_heading h1 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .banner_heading h4 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .slide1 h3 {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .overview_logo {
    width: 40%;
  }

  .clubhouse_content {
    width: 100%;
  }

  .specification_icon img {
    width: 100%!important;
  }

  .footer_section_bg {
    height: 110vh;
  }

  .footer_bg {
    height: 110vh;
  }

  .footer_logo {
    width: 30%;
    margin-top: 5rem;
  }

  .copyright {
    font-size: .6rem;
  }

  .address h3 {
    font-size: 1rem;
    margin-bottom: .2rem;
  }

  .address h6 {
    font-size: .9rem;
  }

  .address p {
    font-size: .8rem;
  }

  .footer_icons h3 {
    font-size: 1rem;
  }

  .footer_icons {
    font-size: 1rem;
  }

  .footer_icon {
    font-size: .8rem;
  }

  .connect {
    margin: .7rem 0 0 0;
  }

  .connect h3 {
    font-size: 1rem;
  }

  .connect a {
    font-size: .8rem;
  }

  .contact_form {
    margin: .7rem 0 0 0;
  }

  .form-input {
    padding: 7px;
    font-size: .8rem;
  }

  .form-label {
    font-size: .8rem;
  }

  .form-button {
    padding: .5rem;
    font-size: .8rem;
  }
  
}

@media screen and (min-width: 701px) and (max-width: 767px){
  .navbar {
    width: 97%!important;
    margin: .4rem auto 0 auto!important;
    padding: .5rem!important;
  }

  .top_logo {
    width: 17%;
  }

  .toggler span {
    background-color: var(--lightpink);
  }

  .link_hover {
    margin: 0!important;
  }

  .logo_part1 {
    width: 50%;
  }

  .logo_part2 {
    width: 80%;
  }

  .logo_part3 {
    width: 100%;
  }

  .banner_logo {
    width: 45%;
  }

  /* .banner_margin {
    margin-top: 11%;
  } */
  #main {
    padding-top: 11%;
  }

  .slide1 {
    height: 100%;
    /* background: none; */
  }

  .slide2 {
    height: 100%;
    background: none;
  }

  .slide3 {
    height: 100%;
    background: none;
  }

  .banner_heading h1 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .banner_heading h4 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .overview_logo {
    width: 35%;
  }

  .clubhouse_content {
    width: 100%;
  }

  .specification_icon img {
    width: 100%!important;
  }

  .footer_section_bg {
    min-height: 115vh;
  }

  .footer_bg {
    min-height: 115vh;
  }

  .footer_logo {
    width: 30%;
    margin-top: 7.3rem;
  }

  .copyright {
    font-size: .6rem;
  }

  .address h3 {
    font-size: 1rem;
    margin-bottom: .2rem;
  }

  .address h6 {
    font-size: .9rem;
  }

  .address p {
    font-size: .8rem;
  }

  .footer_icons h3 {
    font-size: 1rem;
  }

  .footer_icons {
    font-size: 1rem;
  }

  .footer_icon {
    font-size: .8rem;
  }

  .connect {
    margin: .5rem 0 0 0;
  }

  .connect h3 {
    font-size: 1rem;
  }

  .connect a {
    font-size: .8rem;
  }

  .contact_form {
    margin: .5rem 0 0 0;
  }

  .form-input {
    padding: 7px;
    font-size: .8rem;
  }

  .form-label {
    font-size: .8rem;
  }

  .form-button {
    padding: .5rem;
    font-size: .8rem;
  }
  
}

@media screen and (min-width: 768px) and (max-width: 799px){
  .navbar {
    width: 98%!important;
    margin: .4rem auto 0 auto!important;
    padding: .5rem!important;
  }

  .top_logo {
    width: 15%;
  }

  .link_hover {
    margin: 0!important;
  }
  
  .toggler span {
    background-color: var(--lightpink);
  }

  .logo_part1 {
    width: 50%;
  }

  .logo_part2 {
    width: 80%;
  }

  .logo_part3 {
    width: 100%;
  }

  .banner_logo {
    width: 45%;
  }  

  /* .banner_margin {
    margin-top: 11%;
  } */
  #main {
    padding-top: 11%;
  }

  .slide1 {
    height: 100%;
    /* background: none; */
  }

  .slide2 {
    height: 100%;
    background: none;
  }

  .slide3 {
    height: 100%;
    background: none;
  }

  .banner_heading h1 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .banner_heading h4 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .overview_logo {
    width: 35%;
  }

  .specification_icon img {
    width: 100%!important;
  }
  
  .footer_section_bg {
    height: 88vh;
  }

  .footer_bg {
    height: 88vh;
  }

  .footer_logo {
    width: 80%;
    /* margin-top: 3.5rem; */
  }

  .copyright {
    font-size: .6rem;
  }

  .connect {
    margin: 1rem 0 0 0;
  }

  .contact_form {
    margin: 1rem 0 0 0;
  }

  .form-input {
    padding: 7px;
    font-size: .8rem;
  }

  .form-label {
    font-size: .8rem;
  }

  .form-button {
    padding: .5rem;
    font-size: .8rem;
  }
  
}

@media screen and (min-width: 800px) and (max-width: 820px){
  .navbar {
    width: 97%!important;
    margin: .4rem auto 0 auto!important;
    padding: .5rem!important;
  }

  .top_logo {
    width: 15%;
  }

  .link_hover {
    margin: 0!important;
  }

  .toggler span {
    background-color: var(--lightpink);
  }

  .logo_part1 {
    width: 50%;
  }

  .logo_part2 {
    width: 80%;
  }

  .logo_part3 {
    width: 100%;
  }

  .banner_logo {
    width: 45%;
  }

  /* .banner_margin {
    margin-top: 11%;
  } */

  #main {
    padding-top: 11%;
  }

  .slide1 {
    height: 100%;
    /* background: none; */
  }

  .slide2 {
    height: 100%;
    background: none;
  }

  .slide3 {
    height: 100%;
    background: none;
  }

  .banner_heading h1 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .banner_heading h4 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .overview_logo {
    width: 30%;
  }
  
  .specification_icon img {
    width: 100%!important;
  }

  .footer_section_bg {
    height: 87vh;
  }

  .footer_bg {
    height: 87vh;
  }

  .connect {
    margin: 1rem 0 0 0;
  }

  .contact_form {
    margin: 1rem 0 0 0;
  }

  .form-input {
    padding: 7px;
    font-size: .8rem;
  }

  .form-label {
    font-size: .8rem;
  }

  .form-button {
    padding: .5rem;
    font-size: .8rem;
  }
  
}

@media screen and (min-width: 821px) and (max-width: 868px){

  .navbar {
    width: 97%!important;
    margin: .4rem auto 0 auto!important;
    padding: .5rem!important;
  }

  .top_logo {
    width: 15%;
  }

  .link_hover {
    margin: 0!important;
  }

  .toggler span {
    background-color: var(--lightpink);
  }

  .logo_part1 {
    width: 50%;
  }

  .logo_part2 {
    width: 80%;
  }

  .logo_part3 {
    width: 100%;
  }

  .banner_logo {
    width: 40%;
  }

  /* .banner_margin {
    margin-top: 10.5%;
  } */

  #main {
    padding-top: 10.5%;
  }

  .slide1 {
    height: 100%;
    /* background: none; */
  }

  .slide2 {
    height: 100%;
    background: none;
  }

  .slide3 {
    height: 100%;
    background: none;
  }

  .banner_heading h1 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .banner_heading h4 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .overview_logo {
    width: 30%;
  }

  .specification_icon img {
    width: 100%!important;
  }

  .footer_section_bg {
    height: 87vh;
  }

  .footer_bg {
    height: 87vh;
  }

  .connect {
    margin: 1rem 0 0 0;
  }

  .contact_form {
    margin: 1rem 0 0 0;
  }

  .form-input {
    padding: 7px;
    font-size: .8rem;
  }

  .form-label {
    font-size: .8rem;
  }

  .form-button {
    padding: .5rem;
    font-size: .8rem;
  }

}

@media screen and (min-width: 869px) and (max-width: 940px){

  .navbar {
    width: 97%!important;
    margin: .4rem auto 0 auto!important;
    padding: .5rem!important;
  }

  .top_logo {
    width: 15%;
  }

  .link_hover {
    margin: 0!important;
  }
  
  .toggler span {
    background-color: var(--lightpink);
  }

  .logo_part1 {
    width: 50%;
  }

  .logo_part2 {
    width: 80%;
  }

  .logo_part3 {
    width: 100%;
  }

  .banner_logo {
    width: 40%;
  }

  /* .banner_margin {
    margin-top: 10.5%;
  } */
  #main {
    padding-top: 10.5%;
  }

  .slide1 {
    height: 100%;
    /* background: none; */
  }

  .slide2 {
    height: 100%;
    background: none;
  }

  .slide3 {
    height: 100%;
    background: none;
  }

  .banner_heading h1 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .banner_heading h4 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .overview_logo {
    width: 30%;
  }

  .specification_icon img {
    width: 100%!important;
  }

  .footer_section_bg {
    height: 87vh;
  }

  .footer_bg {
    height: 87vh;
  }

  .connect {
    margin: 1rem 0 0 0;
  }

  .contact_form {
    margin: 1rem 0 0 0;
  }

  .form-input {
    padding: 7px;
    font-size: .8rem;
  }

  .form-label {
    font-size: .8rem;
  }

  .form-button {
    padding: .5rem;
    font-size: .8rem;
  }
  
}

@media screen and (min-width: 941px) and (max-width: 991px){
  .navbar {
    width: 97%!important;
    margin: .4rem auto 0 auto!important;
    padding: .5rem!important;
  }

  .top_logo {
    width: 15%;
  }

  .link_hover {
    margin: 0!important;
  }

  .toggler span {
    background-color: var(--lightpink);
  }

  .logo_part1 {
    width: 50%;
  }

  .logo_part2 {
    width: 80%;
  }

  .logo_part3 {
    width: 100%;
  }

  .banner_logo {
    width: 40%;
  }

  /* .banner_margin {
    margin-top: 10.5%;
  } */
  #main {
    padding-top: 10.5%;
  }

  .slide1 {
    height: 100%;
    /* background: none; */
  }

  .slide2 {
    height: 100%;
    background: none;
  }

  .slide3 {
    height: 100%;
    background: none;
  }

  .banner_heading h1 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .banner_heading h4 {
    background-color: var(--blacktransparent2);
    font-size: 1rem;
  }

  .overview_logo {
    width: 30%;
  }

  .specification_icon img {
    width: 100%!important;
  }

  .footer_section_bg {
    height: 85vh;
  }

  .footer_bg {
    height: 85vh;
  }

  .connect {
    margin: 1rem 0 0 0;
  }

  .contact_form {
    margin: 1rem 0 0 0;
  }

  .form-input {
    padding: 7px;
    font-size: .8rem;
  }

  .form-label {
    font-size: .8rem;
  }

  .form-button {
    padding: .5rem;
    font-size: .8rem;
  }
  
}

@media screen and (min-width: 992px) and (max-width: 1025px){

  .link_hover {
    font-size: .5rem!important;
    margin: 0!important;
  }

  .overview_logo {
    width: 100%;
  }
  
  .overview_txt {
    font-size: 1.5rem;
  }

  .counter-box {
    min-height: 150px;
  }

  .counter {
    font-size: 1rem;
  }
  
  .counter-text {
    font-size: 1rem; 
  }
  
  .counter-title {
    font-size: 1rem;
    color: var(--lightpink);
  }
  
  .tabs-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-bottom: 5px;
    gap: 10px;
    width: 100%;
  }

  .tabs-nav::-webkit-scrollbar {
      width: 0;
      height: 0;
      display: none; /* Chrome/Safari/Opera */
  }

  .tab-btn {
      width: 100%;
      text-align: center;
  }

  .custom-table th {
    font-size: .7rem!important;
  }

  .custom-table td {
    font-size: .7rem;
    padding: 18px 21px;
  }

  .interior_content h4 {
    font-size: 1rem;
  }

  .interior_content p {
    font-size: .8rem;
  }

  .amenities {
    height: 370px;
  }

  .amenities .hover_img {
    height: 370px;
  }

  .amenities h3 {
    font-size: 1rem;
  }

  .amenities p {
    font-size: .8rem;
  }

  .specification_h3 {
    font-size: .8rem;
  }

  .sahasra_heights_content h2 {
    font-size: 1rem;
  }

  .sahasra_heights_content h5 {
    font-size: .48rem;
  }

  .footer_section_bg {
    height: 65vh;
    padding-bottom: 1rem;
  }

  .footer_bg {
    height: 65vh;
  }
  
  .footer_logo {
    width: 85%;
  }

  .copyright {
    font-size: .6rem;
  }

  .address h3 {
    font-size: 1rem;
    margin-bottom: .2rem;
  }

  .address h6 {
    font-size: .9rem;
  }

  .address p {
    font-size: .8rem;
  }

  .footer_icons h3 {
    font-size: 1rem;
  }

  .footer_icons {
    font-size: 1rem;
  }

  .footer_icon {
    font-size: .8rem;
  }

  .connect_main {
    padding: 0!important;
  }

  .connect {
    margin: 1rem 0 0 0;
  }

  .connect h3 {
    font-size: 1rem;
  }

  .connect a {
    font-size: .8rem;
  }

  .contact_form {
    margin: 1rem 0 0 0;
  }

  .form-input {
    padding: 7px;
    font-size: .8rem;
  }

  .form-label {
    font-size: .8rem;
  }

  .form-button {
    padding: .5rem;
    font-size: .8rem;
  }
  
}

@media screen and (min-width: 1026px) and (max-width: 1111px){

  .link_hover {
    font-size: .5rem!important;
    margin: 0!important;
  }

  .overview_logo {
    width: 100%;
  }
  
  .overview_txt {
    font-size: 1.5rem;
  }

  .counter-box {
    min-height: 150px;
  }

  .counter {
    font-size: 1rem;
  }
  
  .counter-text {
    font-size: 1rem; 
  }
  
  .counter-title {
    font-size: 1rem;
    color: var(--lightpink);
  }

  .tabs-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-bottom: 5px;
    gap: 10px;
    width: 100%;
  }

  .tabs-nav::-webkit-scrollbar {
      width: 0;
      height: 0;
      display: none; /* Chrome/Safari/Opera */
  }

  .tab-btn {
      width: 100%;
      text-align: center;
      padding: .7rem 2rem;
  }

  .custom-table th {
    font-size: .7rem!important;
  }

  .custom-table td {
    font-size: .7rem;
    padding: 18px 21px;
  }

  .interior_content h4 {
    font-size: 1rem;
  }

  .interior_content p {
    font-size: .8rem;
  }
    
  .amenities {
    height: 370px;
  }

  .amenities .hover_img {
    height: 370px;
  }

  .amenities h3 {
    font-size: 1rem;
  }

  .amenities p {
    font-size: .8rem;
  }

  .specification_h3 {
    font-size: .9rem;
  }

  .sahasra_heights_content h2 {
    font-size: 1rem;
  }
  
  .sahasra_heights_content h5 {
    font-size: .5rem;
  }

  .footer_section_bg {
    height: 65vh;
    padding-bottom: 1rem;
  }

  .footer_bg {
    height: 65vh;
  }
  
  .footer_logo {
    width: 85%;
  }

  .copyright {
    font-size: .6rem;
  }

  .address h3 {
    font-size: 1rem;
    margin-bottom: .2rem;
  }

  .address h6 {
    font-size: .9rem;
  }

  .address p {
    font-size: .8rem;
  }

  .footer_icons h3 {
    font-size: 1rem;
  }

  .footer_icons {
    font-size: 1rem;
  }

  .footer_icon {
    font-size: .8rem;
  }

  .connect_main {
    padding: 0!important;
  }

  .connect {
    margin: 1rem 0 0 0;
  }

  .connect h3 {
    font-size: 1rem;
  }

  .connect a {
    font-size: .8rem;
  }

  .contact_form {
    margin: 1rem 0 0 0;
  }

  .form-input {
    padding: 7px;
    font-size: .8rem;
  }

  .form-label {
    font-size: .8rem;
  }

  .form-button {
    padding: .5rem;
    font-size: .8rem;
  }

}

@media screen and (min-width: 1112px) and (max-width: 1164px){
    
    .link_hover {
    font-size: .5rem!important;
    margin: 0!important;
  }

  .overview_logo {
    width: 100%;
  }
  
  .overview_txt {
    font-size: 1.5rem;
  }

  .counter-box {
    min-height: 150px;
  }

  .counter {
    font-size: 1rem;
  }
  
  .counter-text {
    font-size: 1rem; 
  }
  
  .counter-title {
    font-size: 1rem;
    color: var(--lightpink);
  }

  .tab-btn {
    padding: 0.3rem 0.5rem;
  }

  .custom-table th {
    font-size: .7rem!important;
  }

  .custom-table td {
    font-size: .7rem;
    padding: 18px 21px;
  }

  .interior_content h4 {
    font-size: 1.1rem;
  }

  .interior_content p {
    font-size: .85rem;
  }

  .amenities {
    height: 370px;
  }
  
  .amenities .hover_img {
    height: 370px;
  }
  
  .amenities h3 {
    font-size: 1rem;
  }
  
  .amenities p {
    font-size: .8rem;
  }

  .specification_h3 {
    font-size: .98rem;
  }

  .sahasra_heights_content h2 {
    font-size: 1rem;
  }
  
  .sahasra_heights_content h5 {
    font-size: .5rem;
  }

  .footer_section_bg {
    height: 65vh;
    padding-bottom: 1rem;
  }

  .footer_bg {
    height: 65vh;
  }
  
  .footer_logo {
    width: 85%;
  }

  .copyright {
    font-size: .6rem;
  }

  .address h6 {
    font-size: .9rem;
  }

  .address p {
    font-size: .8rem;
  }

  .footer_icons {
    font-size: 1rem;
  }

  .footer_icon {
    font-size: .8rem;
  }

  .connect_main {
    padding: 0!important;
  }

  .connect a {
    font-size: .8rem;
  }

  .form-input {
    padding: 7px;
    font-size: .8rem;
  }

  .form-label {
    font-size: .8rem;
  }

  .form-button {
    padding: .5rem;
    font-size: .8rem;
  }
  
}

@media screen and (min-width: 1165px) and (max-width: 1199px){

  .link_hover {
    font-size: .6rem!important;
    margin: 0!important;
  }

  .overview_logo {
    width: 100%;
  }
  
  .overview_txt {
    font-size: 1.5rem;
  }

  .counter-box {
    min-height: 150px;
  }

  .counter {
    font-size: 1rem;
  }
  
  .counter-text {
    font-size: 1rem; 
  }
  
  .counter-title {
    font-size: 1rem;
    color: var(--lightpink);
  }

  .tab-btn {
    padding: 0.3rem 0.5rem;
  }

  .interior_content h4 {
    font-size: 1.1rem;
  }

  .interior_content p {
    font-size: .85rem;
  }

  .amenities {
    height: 370px;
  }
  
  .amenities .hover_img {
    height: 370px;
  }
  
  .amenities h3 {
    font-size: 1rem;
  }
  
  .amenities p {
    font-size: .8rem;
  }

  .specification_h3 {
    font-size: .98rem;
  }

  .sahasra_heights_content h2 {
    font-size: 1rem;
  }
  
  .sahasra_heights_content h5 {
    font-size: .5rem;
  }

  .footer_section_bg {
    height: 63vh;
    padding-bottom: 1rem;
  }

  .footer_bg {
    height: 63vh;
  }
  
  .footer_logo {
    width: 85%;
  }

  .copyright {
    font-size: .7rem;
  }

  .address h3 {
    font-size: 1.3rem;
    margin-bottom: .2rem;
  }

  .address h6 {
    font-size: .9rem;
  }

  .address p {
    font-size: .8rem;
  }

  .footer_icons {
    font-size: 1rem;
  }

  .footer_icon {
    font-size: .8rem;
  }

  .connect_main {
    padding: 0!important;
  }

  .connect a {
    font-size: .8rem;
  }

  .form-input {
    padding: 7px;
    font-size: .85rem;
  }

  .form-label {
    font-size: .85rem;
  }

  .form-button {
    padding: .5rem;
    font-size: .85rem;
  }
  
}

@media screen and (min-width: 1200px) and (max-width: 1270px){

  .link_hover {
    font-size: .7rem!important;
    margin: 0!important;
  }

  .overview_logo {
    width: 90%;
  }
  
  .overview_txt {
    font-size: 1.5rem;
  }

  .counter-box {
    min-height: 200px;
  }

  .counter {
    font-size: 1.2rem;
  }
  
  .counter-text {
    font-size: 1.2rem; 
  }
  
  .counter-title {
    font-size: 1.2rem;
    color: var(--lightpink);
  }

  .tab-btn {
    padding: 0.3rem 0.5rem;
  }

  .interior_content h4 {
    font-size: 1.5rem;
  }

  .interior_content p {
    font-size: .9rem;
  }
  
  .amenities {
    height: 370px;
  }
  
  .amenities .hover_img {
    height: 370px;
  }
  
  .amenities h3 {
    font-size: 1rem;
  }
  
  .amenities p {
    font-size: .8rem;
  }

  .specification_h3 {
    font-size: .98rem;
  }

  .sahasra_heights_content h2 {
    font-size: 1rem;
  }
  
  .sahasra_heights_content h5 {
    font-size: .6rem;
  }

  .footer_section_bg {
    height: 63vh;
    padding-bottom: 1rem;
  }

  .footer_bg {
    height: 63vh;
  }
  
  .footer_logo {
    width: 85%;
  }

  .copyright {
    font-size: .7rem;
  }

  .address h3 {
    font-size: 1.3rem;
    margin-bottom: .2rem;
  }

  .address h6 {
    font-size: .9rem;
  }

  .address p {
    font-size: .8rem;
  }

  .footer_icons {
    font-size: 1rem;
  }

  .footer_icon {
    font-size: .8rem;
  }

  .connect_main {
    padding: 0!important;
  }

  .connect a {
    font-size: .8rem;
  }

  .form-input {
    padding: 7px;
    font-size: .85rem;
  }

  .form-label {
    font-size: .85rem;
  }

  .form-button {
    padding: .5rem;
    font-size: .85rem;
  }
  
}

@media screen and (min-width: 1271px) and (max-width: 1350px){

  .link_hover {
    font-size: .7rem!important;
    margin: 0!important;
  }

  .overview_logo {
    width: 90%;
  }
  
  .overview_txt {
    font-size: 1.5rem;
  }

  .counter-box {
    min-height: 200px;
  }

  .counter {
    font-size: 1.2rem;
  }
  
  .counter-text {
    font-size: 1.2rem; 
  }
  
  .counter-title {
    font-size: 1.2rem;
    color: var(--lightpink);
  }

  .tab-btn {
    padding: 0.3rem 0.5rem;
  }

  .amenities {
    height: 370px;
  }
  
  .amenities .hover_img {
    height: 370px;
  }
  
  .amenities h3 {
    font-size: 1rem;
  }
  
  .amenities p {
    font-size: .8rem;
  }

  .sahasra_heights_content h2 {
    font-size: 1rem;
  }
  
  .sahasra_heights_content h5 {
    font-size: .61rem;
  }

  .footer_section_bg {
    height: 63vh;
    padding-bottom: 1rem;
  }

  .footer_bg {
    height: 63vh;
    padding-bottom: 1rem;
  }

  .form-input {
    padding: 7px;
    font-size: .85rem;
  }

  .form-label {
    font-size: .85rem;
  }

  .form-button {
    padding: .5rem 1rem;
    font-size: .85rem;
  }
  
}

@media screen and (min-width: 1351px) and (max-width: 1399px){

  .link_hover {
    font-size: .8rem!important;
    margin: 0!important;
  }

  .overview_logo {
    width: 90%;
  }
  
  .overview_txt {
    font-size: 2rem;
  }

  .counter-box {
    min-height: 200px;
  }

  .counter {
    font-size: 1.5rem;
  }
  
  .counter-text {
    font-size: 1.5rem; 
  }
  
  .counter-title {
    font-size: 1.5rem;
    color: var(--lightpink);
  }

  .tab-btn {
    padding: 0.3rem 0.5rem;
  }

  .amenities {
    height: 400px;
  }
  
  .amenities .hover_img {
    height: 400px;
  }
  
  .amenities h3 {
    font-size: 1.3rem;
  }
  
  .amenities p {
    font-size: .9rem;
  }

  .sahasra_heights_content h2 {
    font-size: 1rem;
  }
  
  .sahasra_heights_content h5 {
    font-size: .65rem;
  }

  .footer_section_bg {
    height: 63vh;
    padding-bottom: 1rem;
  }

  .footer_bg {
    height: 63vh;
    padding-bottom: 1rem;
  }

  .form-input {
    padding: 7px;
    font-size: .85rem;
  }

  .form-label {
    font-size: .85rem;
  }

  .form-button {
    padding: .5rem 1rem;
    font-size: .85rem;
  }

}

@media screen and (min-width: 1400px) and (max-width: 1500px){

  .link_hover {
    font-size: .8rem!important;
    margin: 0!important;
  }

  .overview_txt {
    font-size: 1.7rem;
  }

  .counter-box {
    min-height: 200px;
  }

  .counter {
    font-size: 1.5rem;
  }
  
  .counter-text {
    font-size: 1.5rem; 
  }
  
  .counter-title {
    font-size: 1.5rem;
    color: var(--lightpink);
  }

  .tab-btn {
    padding: 0.3rem 0.5rem;
  }

  .sahasra_heights_content h2 {
    font-size: 1.3rem;
  }
  
  .sahasra_heights_content h5 {
    font-size: .65rem;
  }

  .footer_section_bg {
    height: 63vh;
    padding-bottom: 1rem;
  }

  .footer_bg {
    height: 63vh;
    padding-bottom: 1rem;
  }

  .form-input {
    padding: 7px;
    font-size: .85rem;
  }

  .form-label {
    font-size: .85rem;
  }

  .form-button {
    padding: .5rem 1rem;
    font-size: .85rem;
  }

}

@media screen and (min-width: 1501px) and (max-width: 1608px){

  .link_hover {
    font-size: .8rem!important;
    margin: 0!important;
  }

  .overview_txt {
    font-size: 1.7rem;
  }

  .counter-box {
    min-height: 200px;
  }

  .counter {
    font-size: 1.5rem;
  }
  
  .counter-text {
    font-size: 1.5rem; 
  }
  
  .counter-title {
    font-size: 1.5rem;
    color: var(--lightpink);
  }

  .tab-btn {
    padding: 0.3rem 0.5rem;
  }

  .sahasra_heights_content h2 {
    font-size: 1.3rem;
  }
  
  .sahasra_heights_content h5 {
    font-size: .65rem;
  }

}

@media screen and (min-width: 1600px) and (max-width: 1799px){

  .tab-btn {
    padding: 0.3rem 0.7rem;
  }

  .sahasra_heights_content h2 {
    font-size: 1.5rem;
  }
  
  .sahasra_heights_content h5 {
    font-size: .75rem;
  }
  
}

@media screen and (min-width: 1609px) and (max-width: 1660px) {
  .footer_section_bg {
    height: 65vh;
    padding-bottom: 1rem;
  }

  .footer_bg {
    height: 65vh;
    padding-bottom: 1rem;
  }
}