* {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('PlayfairDisplay-Regular.woff2') format('woff2'),
        url('PlayfairDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('MyriadPro-Bold.woff2') format('woff2'),
    url('MyriadPro-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('MyriadPro-BoldCond.woff2') format('woff2'),
    url('MyriadPro-BoldCond.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('MyriadPro-BoldCondIt.woff2') format('woff2'),
    url('MyriadPro-BoldCondIt.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('MyriadPro-BoldIt.woff2') format('woff2'),
    url('MyriadPro-BoldIt.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('MyriadPro-Cond.woff2') format('woff2'),
    url('MyriadPro-Cond.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('MyriadPro-Light.woff2') format('woff2'),
    url('MyriadPro-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('MyriadPro-CondIt.woff2') format('woff2'),
    url('MyriadPro-CondIt.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('MyriadPro-Regular.woff2') format('woff2'),
    url('MyriadPro-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('MyriadPro-Semibold.woff2') format('woff2'),
    url('MyriadPro-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('MyriadPro-SemiboldIt.woff2') format('woff2'),
    url('MyriadPro-SemiboldIt.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

section {
  scroll-margin-top: 150px;
}

/* Header Section */

header#header_section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -6px 10px 5px rgba(0, 0, 0, 0.644);
  z-index: 996;
  position: sticky;
  top: 0;
  background-color: white;
}

header .common_container {
  width: 87%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 15px 0;
  position: relative;
}

.contact_nav a {
  font-size: 18px;
  color: black;
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
  font-family: 'Open Sans';
  margin-right: 80px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.contact_nav a img {
  margin-right: 4px;
  width: 20px;
  position: relative;
  top: 4px;
}

.contact_nav a:hover {
  color: #002244;
}

.ham_burger {
  position: absolute;
  right: 0;
}

.ham_burger img {
  width: 30px;
  cursor: pointer;
}

.close_btn img {
  width: 20px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.nav_overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000000b6;
  z-index: 998;
  display: none;
}

.nav_overlay_active {
  display: block;
}

.nav_container {
  width: 300px;
  height: 100%;
  top: 0;
  right: 0;
  position: fixed;
  background-color: #064a75;
  transform: translateX(100%); /* Keep it off-screen */
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smooth easing */
  box-shadow: 10px 10px 11px -6px rgba(0, 0, 0, 0.678);
  z-index: 999;
}

.nav_container.active {
  transform: translateX(0); /* Slide in smoothly */
}



.nav_container ul,
.nav_container li {
  list-style: none;
}

.nav_container ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 20px 20px 20px;
}

.nav_container li {
  margin: 20px 0;
  border-bottom: 1px solid whitesmoke;
}

.nav_container li a {
  display: inline-block;
  font-size: 18px;
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.1s ease-in-out;
}

.nav_container li a:hover {
  color: skyblue;
}

nav.nav_container.active {
  width: 300px;
  right: 0px;
  top: 0;
  z-index: 9999999;
}

/* .banner_container {
    background: url('Banner_img.png') no-repeat center center/cover;
    height: 75vh;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
} */

.banner_container {
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}


	
.banner_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
	object-position: top;
}
@media only screen and (max-width:610px){
	.banner_video{ object-position: top;
	}
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    rgb(6 74 117 / 54%) 0%,
    rgb(255 255 255 / 0%) 100%
  );
  /*background: linear-gradient(90deg, rgba(6, 74, 117, 1) 0%, rgba(255, 255, 255, 0) 100%);*/
}

.banner_container .common_container {
  width: 87%;
  position: relative;
  margin: 0 auto;
}

.content {
  display: flex;
  flex-direction: column;
  margin-top: -10%;
  /* position: absolute; */
  /* z-index: 1; */
}
@media (max-width: 770px) {
  .content {
    margin-top: -35%;
  }
}
@media (max-width: 449px) {
  .content {
    margin-top: 0%;
  }
}

@media (max-width: 377px) {
  .content {
    margin-top: -20%;
  }
}


.header_para1 {
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 3px;
  color: white;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  font-family: 'Playfair Display', serif;
}
.header_para2 {
  font-family: 'Champagne & Limousines Bold';
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 3px;
  color: white;
  margin-bottom: 10px;
  /*margin-left:24px;*/
  display: flex;
  flex-direction: column;
  -webkit-text-stroke: 0.8px rgba(255,255,255,0.8);
}
@media only screen and (max-width:510px){
	.header_para2{
		margin-left:0;
		font-size:14px;
	}
}


a.header_book_btn {
  display: inline-block;
  font-size: 18px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid white;
  border-radius: 5px;
  padding: 10px 20px;
  transition: 0.2s ease-in-out;
  font-family: 'Myriad Pro';
}

a.header_book_btn:hover {
  color: #064a75;
  background-color: whitesmoke;
}

.book_now_btn {
	position: fixed;
    right: 0px;
    writing-mode: vertical-lr;
    width: auto;
  z-index: 12;
  top: 300px;
  right: 0px;
  font-family: 'Myriad Pro';
  font-size: 18px;
  cursor: pointer;
  transition: 0.8s ease-in-out;
  box-shadow: 0px 0px 7px 7px rgba(0, 0, 0, 0.1);
	
	
}

.book_now_btn:hover {
  color: #fff;
}

.book_now_btn {
  color: white;
  background-color: #064a75;
  text-decoration: none;
  padding: 25px 10px;
  border-radius: 10px 0px 0px 10px;
}

/* Counter section */
#counter_section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Myriad Pro';
  margin-top: -6%;
  /* z-index: 99; */
  position: relative;
}

#counter_section .common_container {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter_main_box {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1px;
  background-color: #064a75;
  box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.1);
}

.count {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  background-color: white;
  padding: 30px 0px;
  color: #064a75;
  cursor: pointer;
  transition: 0.4s ease-in-out;
  padding: 15% 10%;
}

.count span {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 15px;
}

.count p {
  font-size: 17px;
  font-weight: 600;
  min-height: 40px;
  text-align: center;
}

.count:hover {
  color: skyblue;
  background-color: #064a75;
}

#overview_section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5%;
}

#overview_section .common_container {
  width: 87%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  background-color: #fff;
}

.overview-text {
  width: 50%;
  padding-right: 20px;
  position: relative;
  top: -11px;
}
@media screen and (min-width: 1280px) and (max-width: 1800px) {
  .overview-text {
    top: -7px !important;
  }
}
.overview-text h1 {
  font-size: 2.5rem;
  color: #064a75;
  margin-bottom: 6%;
}

.overview-text p {
  font-size: 18px;
  color: black;
  margin-bottom: 20px;
  font-family: 'Myriad Pro';
}

.overview-text ul {
  list-style-type: disc;
  margin-left: 20px;
  font-family: 'Myriad Pro';
}

.overview-text ul li {
  font-size: 18px;
  margin-bottom: 30px;
}

.overview-image {
  width: 42%;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
}

.overview-image img {
  width: 100%;
  height: 38vw;
  border: 5px solid #064a75;
  object-fit: cover;
}

@media screen and (max-width: 992px) {
  #overview_section .common_container {
    width: 87%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
  }

  .overview-text {
    width: 100%;
  }

  .overview-image {
    width: 100%;
  }
}

/* Flat types section */
.container {
  display: flex;
  max-width: 1200px;
  margin: 6% auto;
  background-color: #fff;
  border-radius: 10px;
  /* overflow: hidden; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.left-section {
  /*    flex: 1;*/
  width: 40%;
}

.flat-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-section {
  /*    flex: 1;*/
  background-color: #0a507b;
  /*    padding: 30px;*/
  color: white;
  display: flex;
  /*    flex-direction: column;*/
  justify-content: space-between;
  /*width: 60%;*/
  margin-top: 9%;
  margin-bottom: 4%;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.flat-types {
  display: flex;
  /*    column-gap: 1vw;*/
  flex-wrap: wrap;
  justify-content: space-between;
  width: 75%;
}

.flat-type {
  /*    background-color: #174764;*/
  /*    border-radius: 10px;*/
  padding: 20px;
  width: 30%;
  text-align: center;
  border: 1px solid white;
  padding-left: 0;
  padding-right: 0;
}

.flat-type h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.area {
  font-size: 22px;
  font-weight: bold;
  margin-top: 15%;
}

.pricing {
  background-color: #73b3d4;
  border-radius: 10px;
  padding: 17px;
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
}

.book-now {
  text-align: right;
  margin-top: 20px;
}

.book-now button {
  background-color: #0a507b;
  border: none;
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.book-now button:hover {
  background-color: #73b3d4;
}

#flat_types .container {
  max-width: unset;
  border-radius: 0;
  box-shadow: none;
  background: none;
  width: 87%;
}

.left-section {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  /* justify-content: center; */
  position: relative;
}

#flat_types {
  background: linear-gradient(
    to right,
    #ffffff 35%,
    #ffffff 4%,
    /* Red until 100% */ #0a507b 30%,
    #0a507b 101%
  );
}

.title h2 {
  font-size: 37px;
  color: #0a507b;
}

.flat-types div {
  /* width: ; */
}

.pricing {
  width: 100%;
  background-color: #a4dad2;
  border-radius: 0;
}

.flat-type-tit.flat-type {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 66%;
  border: none;
  width: 23%;
  /* padding: 14px; */
  text-align: right;
  align-items: flex-end;
  gap: 8rem;
}

.flat-type h2 {
  font-family: 'Myriad Pro';
  font-weight: 600;
  font-size: 20px;
}

.flat-type p {
  font-family: 'Myriad Pro';
  font-weight: 600;
  font-size: 17px;
}

.pricing p {
  font-family: 'Myriad Pro';
  color: #0a507b;
  font-size: 20px;
  font-weight: 600;
}

.flat-type {
  border: 1px solid #a4dad2;
}

.fl_type_size {
  border-top: 1px solid #a4dad2;
}

.flat-type {
  display: flex;
  flex-direction: column;
  /*row-gap: 1vw;*/
  align-items: center;
}

.fl_type_size {
  width: 100%;
}

.flat_type_tit.title {
  position: absolute;
  /*top: -2%;*/
  margin-top: -6rem;
}
section#awards_section .title {
  text-align: center !important;
}

/*New Added */
.ban-button {
	display: flex;
	column-gap: 20px;
}

.ban-button .header_book_btn {
	color: #064a75;
    background-color: whitesmoke;
	min-width: 110px;
    text-align: center;
	border: 2px solid whitesmoke;
	outline: 1px solid whitesmoke;
}

.ban-button .header_book_btn:hover {
	border: 2px solid #064a75;
}

/*New Added */


@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .awards_listing img {
    width: 100% !important;
  }
}
@media screen and (min-width: 1024px) {
  .gallery_imgs .splide__pagination {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .gallery_imgs .splide__arrows.splide__arrows--ltr {
    display: none !important;
  }
  .gallery_imgs .splide__pagination {
    bottom: -0.8rem;
  }
  .awards_listing {
    width: 50% !important;
  }
  .awards_listing img {
    width: 85% !important;
  }
}
@media screen and (max-width: 768px) {
  .pricing {
    width: auto !important;
  }
  .popup-contents {
    width: 80% !important;
  }
  .mobile_view_only .flat-type-tit.flat-type {
    width: auto !important;
  }
  html body .flat-type h2 {
    font-size: 16px !important;
  }
  .fl_type_img img {
    width: 70% !important;
  }
  .flat-view-btn {
    font-size: 15px !important;
  }
  .gallery_imgs ul.splide__pagination {
    display: flex !important;
  }
  html body .gallery_imgs .splide__arrows {
    display: none !important;
  }
  .contact_nav {
    display: none;
  }
  .awards_listing {
    width: 100% !important;
  }
  .awards_listing img {
    width: 85% !important;
  }
  #flat_types .container {
    flex-direction: column;
  }

  .left-section {
    /* flex: 1; */
    width: 100%;
  }

  .right-section {
    width: 93%;
  }

  .counter_main_box {
    justify-content: center;
  }

  .fl_type_img img {
    width: 100%;
  }

  .fl_type_img {
    width: 69%;
  }

  .flat-type h2 {
    font-size: 13px;
  }

  .flat-type p {
    font-size: 17px;
  }

  .flat-type {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 31%;
  }

  .right-section {
    /* flex: 1; */
    background-color: transparent;
  }

  #flat_types {
    background: linear-gradient(
      to bottom,
      #ffffff 37%,
      #ffffff 4%,
      /* Red until 100% */ #0a507b 30%,
      #0a507b 101%
    );
  }

  .flat-type-tit.flat-type {
    width: 19%;
  }

  .flat-types {
    width: 80%;
  }

  #flat_types .container {
    width: 100%;
  }

  .flat-image {
    width: 87%;
    margin: 0 auto;
  }

  .flat-type-tit.flat-type {
    height: unset;
    justify-content: space-around;
    margin-top: -10vw;
  }

  .flat_type_tit.title {
    position: relative;
    top: 0;
    margin-bottom: 4%;
  }

  .title h2 {
    font-size: 30px;
  }
}

/*-----------floor tqab section------------------*/

/* Style the tab */
.tab {
  overflow: hidden;
  border: 2px solid #064a75c9;
  background-color: #f1f1f1;
  width: 80%;
  /*margin-top: 3rem;*/
}

/* Style the buttons inside the tab */
.tab button,
.tab1 button,
.tab2 button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 23px 16px;
  transition: 0.3s;
  font-size: 17px;
  width: 50%;
  /*border-bottom: 2px solid #064A75 !important;*/
}

/* Change background color of buttons on hover */
.tab button:hover,
.tab1 button:hover,
.tab2 button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active,
.tab1 button.active,
.tab2 button.active {
  background: #064a75;
  color: white;
  font-weight: 500;
}

/* Style the tab content */
.tabcontent {
  display: none;
  /*  padding: 6px 12px;*/
  border: 2px solid #064a75db;
  border-top: none;
  border-bottom: none;
}

.plane_tabcontent {
  display: block;
}
.spec_tabcontent {
  display: none;
}

.floor_plane .common_container {
  width: 87%;
  margin: 0 auto;
}

.floor_plane_tab {
  display: flex;
}

.tab_contants {
  width: 70%;
}

.tab_btns {
  width: 40%;
}

.tab_btns button {
  font-family: 'Myriad Pro';
  font-size: 22px;
  font-weight: 600;
  color: #064a75;
  background: none;
  border: none;
}

button.tablinks {
  background-color: white;
  color: #000;
}

.tab2,
.tab1 {
  display: flex;
  flex-direction: column;
}

.tab2 button,
.tab1 button {
  width: 100%;
}

.tab_contants {
  width: 62%;
}

.tab_btns {
  width: 41%;
}

.floor_plane_tab {
  display: flex;
  justify-content: space-between;
  column-gap: 2vw;
}

.arrows {
  display: flex;
  justify-content: center;
  column-gap: 1vw;
  margin-top: 3%;
}

.owl-nav {
  display: none;
}

.spec_points li {
  padding: 15px;
  background: #fff;
  width: 27%;
  color: #064a75;
  list-style: none;
  text-align: center;
  font-family: 'Myriad Pro';
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 18px;
  flex-grow: 1;
}
.spec_contants {
  margin-left: 25px;
  margin-top: 4rem;
  padding-bottom: 4%;
}
.spec_tabcontent .title h2 {
  font-size: 35px !important;
}
.spec_points ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 0.4vw;
  column-gap: 0.4vw;
}

.title {
  margin-bottom: 3%;
}

.owl-carousel .owl-item img {
  transition: scale 0.5s;
}

.owl-carousel .owl-item img:hover {
  scale: 1.1;
}

.item {
  border: 2px solid #064a75;
  /*margin-left: 20px;
    margin-right: 20px;*/
  /*    width: 105%;*/
}

@media screen and (max-width: 768px) {
  .floor_plane_tab {
    flex-direction: column;
    row-gap: 2vw;
  }

  .tab_btns {
    width: 100%;
  }

  .tab_contants {
    width: 100%;
  }

  .spec_points li {
    padding: 16px;
    width: 41%;
  }
}

/*-------story section----------------*/

.story .common_container {
  text-align: center;
  margin-top: 0%;
  margin-bottom: 7%;
}

.story_video {
  width: 60%;
  margin: 0 auto;
}

.story_video img {
  width: 100%;
  height: 100%;
}

section.gallery {
  background: #064a75;
}

.gallery .title h2 {
  color: white;
}

.gallery .common_container {
  width: 87%;
  margin: 0 auto;
  padding-top: 5%;
  padding-bottom: 5%;
}

/* .gallery_imgs {
    display: flex;
    flex-wrap: wrap;
} */
.gl_img_cont {
  position: relative;
	overflow:hidden;
}
.common_top_bottom {
  width: 96%;
  flex-shrink: 1;
  position: relative;
  overflow: hidden;
  margin-left: 1px;
}
/* .gallery_imgs .splide__list{
    gap: 20px;
} */

.gl_img_cont img {
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 473;
  object-fit: cover;
  object-position: left bottom;
}

/* .gallery_imgs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    column-gap: 1vw;
    row-gap: 2vw;
} */

.gallery .title {
  width: 40%;
}

.tit_disc {
  display: flex;
  margin-bottom: 4%;
}

.galley_para p {
  font-size: 18px;
  color: white;
  font-family: 'Myriad Pro';
  font-weight: 300;
  line-height: 25px;
}

.gl_tit {
  position: absolute;
  bottom: 0;
}

.gl_tit {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  transform: translateY(57%);
  opacity: 0;
  transition: transform 0.7s, opacity 0.1s;
  /* Added for a smooth transition */
  background: linear-gradient(0deg, #00000085, #ffffff00);
}

.gl_img_cont:hover .gl_tit {
  opacity: 1;
  transform: translateY(0);
}

.gl_img_cont img {
  transition: 0.8s ease;
}

/*.gl_img_cont{
     border-bottom: 4px solid white;
}*/
.gl_img_cont:hover img {
  scale: 1.1;
}

.gl_tit p {
  color: white;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Myriad Pro';
}

/*------border-------------*/

.gl_img_cont:after {
  display: block;
  content: '';
  border-bottom: solid 8px #a4dad2;
  transform: scaleX(0);
  transition: transform 800ms ease-in-out;
  margin-top: -2.6%;
}

.gl_img_cont:hover:after {
  transform: scaleX(1);
}
.gl_img_cont {
  margin-bottom: 1rem;
}
.gl_img_cont:after {
  transform-origin: 100% 50%;
}

.gl_img_cont:after {
  transform-origin: 0 50%;
}

@media screen and (max-width: 768px) {
  .gallery_imgs .splide__arrows.splide__arrows--ltr {
    display: none !important;
  }
  .gallery_imgs .splide__pagination {
    bottom: -0.8rem;
  }
  .gallery .title {
    width: 100%;
  }

  .tit_disc {
    flex-direction: column;
  }

  .common_top_bottom {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .common_top_bottom {
    width: 100%;
  }
}

/*------------------map section----------------------*/

.locat_icon {
  width: 25px;
  height: 25px;
}

.locat_icon img {
  width: 100%;
}

.location .common_container {
  width: 87%;
  margin: 0 auto;
  margin-top: 8%;
  margin-bottom: 8%;
}

.map_locations {
  position: absolute;
  top: 0;
  right: 0;
  width: 22%;
  background: white;
  height: 111%;
  box-shadow: 1px 1px 20px 0px #cecece;
  /*    padding-top: 20px;*/
  margin-top: -7%;
  padding: 2.5%;
  padding-top: 1.5%;
  padding-bottom: 1.5%;
  padding-right: 4%;
}

iframe {
  width: 100%;
}

.map_ontents_flex {
  position: relative;
}

.map_locat_title h2 {
  font-size: 20px;
  color: #545454;
  font-family: 'Myriad Pro';
  font-weight: 600;
}

.map_locations {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.locat_desc P {
  border-bottom: 1px solid #9a9a9a66;
  font-family: 'Myriad Pro';
  font-size: 19px;
}

.locat_desc {
  width: 86%;
}

.map_locat {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map_locat_title {
  /*    padding: 20px 0px;*/
  border-bottom: 1px solid #80808094;
  margin-bottom: 3%;
  padding-bottom: 20px;
  padding-top: 5px;
}

.locat_desc.last p {
  border-bottom: none;
}

.location .title {
  margin-bottom: 4%;
}

@media screen and (max-width: 768px) {
  .map_locations {
    position: unset;
    width: -webkit-fill-available;
    padding: 4%;
    margin-top: 1%;
  }

  .map_locat {
    margin: 4% 0%;
  }

  iframe {
    height: 250px;
  }
}

/*--------------------download----------------*/

section.download .title h2 {
  color: white;
  text-align: center;
}

.down_icon_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 3%;
}

.down_icon img {
  width: 100%;
}

.down_icon {
  width: 4%;
}

.down_button {
  text-decoration: none;
  padding: 10px 45px;
  border: 1px solid white;
  color: white;
  font-size: 18px;
  font-family: 'Myriad Pro';
  transition: 0.5s;
}

.download_content {
  padding: 5%;
}

.down_button:hover {
  background: #a4dad2;
  color: #0a507b;
}

/* .download .common_container {
    margin-bottom: 7%;
} */

@media screen and (max-width: 768px) {
  .down_icon {
    width: 12%;
  }

  .download_content {
    padding: 15%;
  }

  .download_content .title {
    margin-bottom: 10%;
  }

  .down_icon_btn {
    column-gap: 7%;
  }

  .down_button {
    padding: 10px 30px;
  }
}

/*----------------testimonials-------------*/

#video-slider-two .splide__arrow {
  background-color: #064a75 !important;
  svg{
    fill: white;
  }
}

.testie_img img {
  width: 100%;
}

.testimonial .common_container {
  width: 87%;
  margin: 0 auto;
}

.testi_slide_cont {
  /*    width: 96%;*/
  position: relative;
  margin: 10px;
}

.testimonial .title {
  text-align: center;
}

.testi_play {
  position: absolute;
  /* top: 41%; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.testi_play img {
  width: 85%;
}

.testimonial .arrows img {
  width: 90%;
}

.testi_play button {
  all: unset;
}

.vid_popup {
  display: none;
}

.vid_popup {
  position: fixed;
  top: 0%;
  width: 100%;
  height: 100%;
  background: #0000009e;
  z-index: 99;
}

.vid_popup_containe {
  width: 70%;
  margin: 0 auto;
  height: 80%;
  margin-top: 9%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  position: relative;
}

/* .vid_popup_containe iframe {
    border-radius: 20px;
    height: 96%;
    width: 98%;
}  */

.vid_popup_containe video {
  border-radius: 20px;
  height: 96%;
  width: 98%;
}

.close_btn {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #084a74;
  padding: 12px;
  border-radius: 34px;
  font-size: 25px;
  padding-top: 0px;
  padding-bottom: 5px;
  color: white;
  font-family: 'Myriad Pro';
	cursor:pointer;
  /* box-shadow: 0px 0px 20px 5px #fff8f880; */
}

@media screen and (max-width: 768px) {
  .vid_popup_containe {
    width: 90%;
    margin: 0 auto;
    height: 40%;
    top: 30%;
  }
}

/*--------------co developers------------*/

.co-developer .common_container {
  width: 87%;
  /*        margin-top: 7%;*/
  text-align: center;
  margin: 0 auto;
  padding-top: 5%;
}

.co-developer_flex {
  display: flex;
  justify-content: space-evenly;
  column-gap: 1vw;
}

.co-flex {
  width: 15%;
  transition: 0.5s;
}

.co-flex img {
  width: 100%;
  position: relative;
  z-index: 9;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

section.co-developer {
  background: linear-gradient(
    to top,
    #ffffff 25%,
    #ffffff 4%,
    /* Red until 100% */ #0a507b 15%,
    #0a507b 101%
  );
  /* margin-top: 7%; */
  margin-bottom: 7%;
}

.co-developer .title h2 {
  color: white;
  margin-bottom: 5%;
}

.co_clex_desc p {
  font-size: 20px;
  font-family: 'Myriad Pro';
  font-weight: 600;
  color: #3f4345;
}

.co_clex_desc {
  transform: translateY(-135%);
  transition: 0.5s;
}

.co-flex:hover .co_clex_desc {
  transform: translateY(50%);
}

.co-flex:hover {
  filter: drop-shadow(2px 4px 16px #00000024);
}

@media screen and (max-width: 768px) {
  .co-flex {
    width: 44%;
  }

  .co-developer_flex {
    flex-wrap: wrap;
  }

  section.co-developer {
    background: linear-gradient(
      to top,
      #ffffff 61%,
      #ffffff 4%,
      /* Red until 100% */ #0a507b 15%,
      #0a507b 101%
    );
  }

  .co-developer_flex {
    row-gap: 6vw;
  }
}

/*-----------------------footer---------------------*/

section.footer {
  background: #3f4345;
  padding-top: 4%;
}

.footer .common_container {
  width: 87%;
  margin: 0 auto;
}

.footer_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4%;
}

.footer_icons {
  width: 26%;
}

.footer_desc {
  width: 40%;
}

.footer_logo {
  width: 20%;
}

.footer_icon_imgs img {
  width: 50%;
  margin: 0 auto;
}

.footer_icon_imgs {
  width: 30%;
  text-align: center;
}

.footer_icon_img_flex {
  display: flex;
}

.footer_desc p {
  font-size: 18px;
  color: white;
  line-height: 25px;
  font-family: 'Myriad Pro';
}

.footer_icon_flex {
  display: flex;
  flex-direction: column;
  row-gap: 1.5vw;
}

.footer_icon_load p,
.footer_icon_others p {
  color: white;
  font-size: 18px;
  /*        margin-top: 10%;*/
  font-family: 'Myriad Pro';
}

.footer_bottom {
  display: flex;
  justify-content: center;
  column-gap: 4vw;
}

.footer_bottom a,
.footer_bottom span {
  color: white;
  font-size: 18px;
  font-family: 'Myriad Pro';
  text-decoration: none;
}

.footer_bottom {
  display: flex;
  justify-content: center;
  column-gap: 4vw;
  padding: 20px;
  border-top: 0.5px solid white;
}

.foot_logo_text p {
  font-size: 16px;
  color: white;
  font-family: 'Myriad Pro';
}

.foot_logo_text {
  margin-top: 15%;
}

.footer_icon_load,
.footer_icon_others {
  padding-left: 3%;
}

.footer_logo img {
  width: 93%;
  margin-top: -15%;
}

.footer_desc {
  /*    width: 40%;*/
  /* height: -webkit-fill-available; */
  display: flex;
  flex-direction: column;
  /* justify-content: space-around; */
  /*    column-gap: 3vw;*/
  row-gap: 3vw;
}

@media screen and (max-width: 768px) {
  .footer_flex {
    flex-direction: column;
    row-gap: 5vw;
  }

  .footer_logo {
    width: 60%;
  }

  .footer_desc {
    width: 100%;
  }

  .footer_icons {
    width: 100%;
    margin-top: 10%;
    margin-bottom: 10%;
  }

  .footer_bottom {
    flex-direction: column;
    align-items: center;
    row-gap: 2vw;
  }

  section.footer {
    padding-top: 15%;
  }

  .footer_icon_flex {
    row-gap: 3.5vw;
  }

  /*-----------banner----------------*/

  .counter_main_box {
    width: 100%;
    display: flex;
    background-color: transparent !important;
    box-shadow: none;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 5px;
  }

  #counter_section .common_container {
    width: 100%;
  }

  .count {
    width: 45%;
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.1);
  }

  .overview-text ul li {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .flat_type_tit.title {
    margin-left: 6%;
  }
}

.story_video:hover img {
  scale: 1.1;
}

.story_video img {
  overflow: hidden;
  transition: 0.5s;
}

.story_video {
  overflow: hidden;
}

.owl-carousel .owl-item {
  width: 100%;
  overflow: hidden;
}

.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.owl-carousel .owl-item {
  width: 100%;
}

/*------------------new form  cods---------------*/

.modal {
  background-color: white;
  padding: 0px;
  max-width: 400px;
  margin: 50px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.modal-header {
  display: flex;
  /*justify-content: center;*/
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  background: #064a75;
  color: white;
  /* text-align: center; */
  padding: 7% 9%;
  margin-bottom: 6%;
}

.modal-header h2 {
  font-size: 1.2em;
}

.close-btn {
  background: none;
  border: none;
  font-size: 2.4em;
  color: white;
  position: absolute;
  right: 5%;
  cursor: pointer;
  transition: 0.1s ease-in-out;
}

.close-btn:hover {
  color: rgb(206, 82, 0);
}

.pre-register-form .form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 0.9em;
  margin-bottom: 5px;
  font-family: 'Myriad Pro';
  color: gray;
  width: 89%;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.phone-group {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: flex-start;
  border-bottom: 1px solid #ccc;
}

.phone-group select {
  max-width: 80px;
  margin-right: 10px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.checkbox-group input {
  margin-right: 10px;
}

.download-btn {
  display: block;
  width: 75%;
  padding: 10px;
  background-color: #064a75;
  color: white;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  font-size: 1em;
  margin: 0 auto;
  margin-top: 30px;
}

.download-btn:hover {
  background-color: #002244;
}

/*.modal {
  width: 420px;
  position: fixed;
  right: -430px;
  bottom: 50px;
  padding-bottom: 2%;
  margin: 50px auto;
  border-radius: 0px;
  transition: 0.5s;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}*/

.modal {
    width: 420px;
	height:fit-content;
    position: fixed;
    right: 0;
    bottom: 50px;
    padding-bottom: 40px;
    margin: 50px auto;
    border-radius: 0px;
    transition: transform 0.4s ease-in-out;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translate3d(100%, 0, 0); 
    will-change: transform;
}




.modal.active {
  right: 0;
  z-index: 999;
	transform: translate3d(0, 0, 0);
	transition: transform 0.4s ease-in-out;
	height:fit-content;
	padding-bottom:40px;
}

.form-group input,
.form-group select {
  width: -webkit-fill-available;
  padding: 8px;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0px;
}

.pre-register-form .form-group {
  width: 81%;
  margin: 0 auto;
  margin-bottom: 18px;
}

#agreement {
  width: 8%;
}

.custom-date-input {
  position: relative;
  display: flex;
  align-items: center;
}

.custom-date-input input {
  padding-right: 40px;
  /* Adjust to make space for the icon */
  box-sizing: border-box;
  /* Ensure padding does not affect the width */
}

.calendar-icon {
  position: absolute;
  right: 10px;
  color: #333;
  /* Change this to your desired color */
  font-size: 18px;
  /* Adjust icon size */
  pointer-events: none;
  /* Prevent the icon from interfering with clicks on the input */
}

.form-group input,
.form-group select {
  color: gray;
  font-size: 15px;
}

#agreement label {
  font-size: 13px;
}

#agreement {
  accent-color: #007bff;
  /* Desired color */
}

.form-group {
  position: relative;
  margin-bottom: 15px;
}

.form-group input {
  /*            padding-left: 25px; /* Space for the red asterisk */
}

.form-group .asterisk {
  color: red;
  position: absolute;
  left: 24%;
  top: 1rem;
  transform: translateY(-50%);
}

.form-group input::placeholder {
  color: gray;
  /* Hide the default placeholder text color */
}

.form-group .asterisk_ph {
  left: 45%;
}
.form-group .asterisk_ft{
	left: 22%;
}
.form-group .asterisk_em {
  left: 20%;
}

@media screen and (min-width: 1280px) and (max-width: 1500px) {
  .form-group .asterisk {
    left: 22%;
  }

  .form-group .asterisk_ph {
    left: 43%;
  }

  .form-group .asterisk_em {
    left: 20%;
  }
}

@media screen and (max-width: 768px) {
  .form-group .asterisk {
    left: 22%;
  }

  .form-group .asterisk_ph {
    left: 45%;
  }

  .form-group .asterisk_em {
    left: 16%;
  }
}

@media screen and (max-width: 450px) {
  .form-group .asterisk {
    left: 22%;
  }

  .form-group .asterisk_ph {
    left: 42%;
  }

  .form-group .asterisk_em {
    left: 20%;
  }
}

@media screen and (max-width: 380px) {
  .form-group .asterisk {
    left: 27%;
  }

  .form-group .asterisk_ph {
    left: 54%;
  }

  .form-group .asterisk_em {
    left: 24%;
  }
}

@media screen and (max-width: 400px) {
  .modal-header h1 {
    font-size: 16px;
  }

  .close-btn {
    font-size: 24px;
    right: 3%;
  }
}

@media screen and (max-width: 768px) {
  .modal {
	  top:0;
    /*right: -126%;
     width: 100%; */
  }
}

@media screen and (min-width: 1920px) {
  .overview-image img {
    height: 34vw;
  }

  #overview_section {
    margin: 6% 0%;
  }

  .galley_para p {
    font-size: 23px;
    line-height: 30px;
  }

  .title h2 {
    font-size: 50px;
  }

  .overview-text h1 {
    font-size: 50px;
  }

  .map_locations {
    height: 111%;
  }

  .map_locat_title h2 {
    font-size: 25px;
  }

  .overview-text h1 {
    margin-bottom: 5%;
  }

  .count {
    padding: 17% 10%;
  }
}

@media screen and (min-width: 1367px) and (max-width: 1441px) {
  .map_locations {
    width: 27%;
  }

  .map_locations {
    height: 110%;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .map_locations {
    width: 26%;
  }

  .map_locations {
    height: 110%;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .map_locations {
    width: 28%;
  }

  .map_locations {
    height: 109%;
  }

  .count span {
    font-size: 30px;
  }
}

.error {
  color: red;
  width: 100%;
}

#phone {
  width: 64%;
}

@media screen and (min-width: 769px) {
  section.floor_plane {
    margin-bottom: 6%;
  }

  .story .title {
    margin-bottom: 4%;
  }

  .gallery .title {
    width: 23%;
  }

  .galley_para {
    width: 100%;
  }

  .map_locations {
    width: 27%;
  }

  iframe {
    height: 550px;
  }

  .locat_desc P {
    font-size: 17px;
  }

  .footer_logo img {
    width: 75%;
  }

  .spec_points li {
    padding: 20px 15px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1600px) {
  iframe {
    height: 450px;
  }

  /* .locat_desc P{
        font-size: 19px;
    } */
}

.splide-1 .splide__slide img {
  width: 100%;
}

.splide-1 .splide__slide {
  border: 2px solid #064a75;
}

.splide-1 .splide__slide img {
  transition: 0.5s;
}

.splide-1 .splide__slide:hover img {
  scale: 1.1;
}

.splide-2 .splide__slide img {
  width: 100%;
}

.splide-2 .splide__slide {
  border: 2px solid #064a75;
}

.splide-2 .splide__slide img {
  transition: 0.5s;
}

.splide-2 .splide__slide:hover img {
  scale: 1.1;
}

.splide-3 .splide__slide img {
  width: 100%;
}

.splide-3 .splide__slide {
  border: 2px solid #064a75;
}

.splide-3 .splide__slide img {
  transition: 0.5s;
}

.splide-3 .splide__slide:hover img {
  scale: 1.1;
}

@media screen and (max-width: 768px) {
  .count {
    width: 25%;
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.1);
  }

  .banner_container {
    /* background: url(Banner_img.png) no-repeat center center / cover; */
    height: 80vh;
    align-items: start;
  }
  .banner_container .common_container {
     margin-top: calc(82px + 5%);
  }
	 
	@media screen and (min-width: 390px) and (max-width: 431px) {
    .banner_container {
        height: 68vh;
    }
}
		@media screen and (max-width: 360px) {
    .banner_container .common_container {
        /* margin-top: calc(82px + 80%); */
                   margin-top: calc(11px + 70%);
    } 
	}

		@media screen and (min-width: 361px) and (max-width: 377px) {
    .banner_container .common_container {
        /* margin-top: calc(82px + 80%); */
                   margin-top: calc(11px + 53%);
    } 
			    .payment-banner {
					top: -45%!important;
			}
	}
	@media screen and (min-width: 377px) and (max-width: 416px) {
    .banner_container .common_container {
        margin-top: calc(82px + 20%);
    }
		  .payment-banner {
					top: -58%!important;
			}
}
@media screen and (min-width: 416px) and (max-width: 767px) {
    .banner_container .common_container {
        margin-top: calc(82px + 35%);
    }
	.payment-banner {
					top: -80%!important;
			}
}
		
  .header_para1 {
    font-size: 24px;
  }

  .modal {
    /* right: -126%; */
    width: 100%;
  }

  .overview-text {
    /* width: 50%; */
    padding-right: 0px;
  }

  .count span {
    font-size: 36px;
  }
}

.footer_bottom a,
.footer_bottom span {
  color: white;
  font-size: 18px;
  font-family: 'Myriad Pro';
  text-decoration: none;
}

nav.nav_container.active {
  width: 300px;
  right: 0px;
  top: 0;
  z-index: 999;
}

.arrows img {
  width: 90%;
}

.story_video button {
  all: unset;
}

form input,
form select {
  font-family: 'Myriad Pro';
}

@media screen and (min-width: 1920px) {
  .pre-register-form .form-group {
    margin-bottom: 32px;
  }

  .download-btn {
    padding: 13px;
  }

  .form-group input,
  .form-group select {
    font-size: 16px;
  }

  .download-btn {
    font-size: 15px;
    margin: 0 auto;
    font-weight: 600;
    font-family: 'Myriad Pro';
  }

  .locat_icon {
    width: 30px;
    height: 30px;
  }

  .footer_icon_imgs img {
    width: 50%;
  }

  .footer_icon_imgs {
    width: 23%;
  }

  nav.nav_container.active {
    width: 400px;
  }

  .gl_img_cont:after {
    margin-top: 6px;
  }
}

.tab2 button,
.tab1 button {
  text-align: left;
}

.tab button,
.tab1 button,
.tab2 button {
  padding: 23px 40px;
}

.form-group label {
  font-weight: 300;
}

@media screen and (min-width: 1367px) and (max-width: 1700px) {
  .overview-image {
    width: 39%;
  }

  .overview-image img {
    height: 34vw;
  }

  .fl_type_img img {
    width: 100%;
  }

  .fl_type_img {
    width: 45%;
  }

  .flat-type {
    row-gap: 2vw;
  }

  .galley_para p {
    font-size: 17px;
    line-height: 23px;
  }

  .modal {
    margin: 25px auto;
  }

  .modal-header {
    padding: 6% 8%;
  }

  .download-btn {
    padding: 13px;
  }
}

@media screen and (min-width: 1367px) and (max-width: 1441px) {
  .overview-text ul li {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .spec_points li {
    font-size: 16px;
  }

  .title h2 {
    font-size: 35px;
  }

  .galley_para p {
    font-size: 16px;
  }

  .overview-text h1 {
    font-size: 35px;
    margin-bottom: 7%;
  }

  #phone {
    width: 63%;
  }

  .header_para1 {
    font-size: 46px;
  }
}

@media screen and (min-width: 1280px) and (max-width: 1366px) {
  .overview-text ul li {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .spec_points li {
    font-size: 16px;
  }

  .title h2 {
    font-size: 35px;
  }

  .galley_para p {
    font-size: 16px;
  }

  .overview-text h1 {
    font-size: 35px;
    margin-bottom: 7%;
  }

  #phone {
    width: 58%;
  }

  .header_para1 {
    font-size: 46px;
    /*margin-bottom: 30px;*/
  }

  .modal {
    margin: 10px auto;
  }

  .pre-register-form .form-group {
    margin-bottom: 8px;
  }

  .checkbox-group {
    flex-wrap: nowrap;
  }

  a.header_book_btn {
    display: inline-block;
    font-size: 16px;
  }

  .book_now_btn {
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .overview-text ul li {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .spec_points li {
    font-size: 16px;
  }

  .title h2 {
    font-size: 35px;
  }

  .galley_para p {
    font-size: 16px;
  }

  .overview-text h1 {
    font-size: 35px;
    margin-bottom: 7%;
  }

  #phone {
    width: 60%;
  }

  .header_para1 {
    font-size: 46px;
    /*margin-bottom: 30px;*/
  }

  .modal {
    margin: 10px auto;
  }

  .pre-register-form .form-group {
    margin-bottom: 8px;
  }

  .checkbox-group {
    flex-wrap: nowrap;
  }

  a.header_book_btn {
    display: inline-block;
    font-size: 16px;
  }

  .book_now_btn {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .floor_plane {
    margin-top: 10%;
  }

  .story_video {
    width: 100%;
  }

  .testi_slide_cont {
    margin: 0;
  }

  .location .common_container {
    margin: 0 auto;
    margin-top: 10%;
    margin-bottom: 10%;
  }

  .tab button,
  .tab1 button,
  .tab2 button {
    padding: 23px 20px;
  }

  .count {
    padding: 10% 10%;
  }

  #counter_section {
    margin-top: -25%;
  }

  .title {
    text-align: left !important;
  }

  .story .common_container {
    width: 87%;
    margin: 0 auto;
    margin-top: 3%;
    margin-bottom: 10%;
  }

  .co-flex {
    width: 48%;
  }

  .footer_icon_imgs {
    width: 20%;
  }

  .count {
    padding: 9% 6%;
  }

  #counter_section {
    margin-top: -16%;
  }
}

@media screen and (max-width: 450px) {
  .tab_btns button {
    font-size: 20px;
  }

  .overview-text ul li {
    font-size: 15px;
  }

  .overview-text p {
    font-size: 15px;
  }

  .overview-text h1 {
    font-size: 27px;
  }

  .title h2 {
    font-size: 27px;
  }

  .title {
    margin-bottom: 6% !important;
  }

  .book_now_btn {
    font-size: 20px;
  }

  .story .common_container {
    margin: 0 auto;
    margin-top: 3%;
    margin-bottom: 10%;
  }

  .location .title {
    margin-bottom: 8%;
  }

  .gallery .common_container {
    padding-top: 8%;
  }

  .galley_para p {
    font-size: 15px;
    line-height: 23px;
  }

  .locat_desc P {
    font-size: 15px;
  }

  .co_clex_desc p {
    font-size: 17px;
  }

  .footer_desc p {
    font-size: 15px;
    line-height: 23px;
  }

  .footer_icon_load p,
  .footer_icon_others p {
    font-size: 16px;
  }

  .footer_icon_load,
  .footer_icon_others {
    padding-left: 0%;
  }

  .footer_icon_imgs {
    text-align: left;
  }

  .footer_bottom a,
  .footer_bottom span {
    color: white;
    font-size: 16px;
  }

  #phone {
    width: 52%;
    /* margin-bottom: 9%; */
  }

  .footer_icon_imgs {
    width: 30%;
  }

  .count {
    padding: 8% 3%;
    width: 42%;
  }

  #counter_section {
    margin-top: -25%;
  }
  .count p {
    font-size: 16px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1919px) {
  .spec_points li {
    font-size: 15px;
  }
}

.phone-group input,
.phone-group select {
  border-bottom: none;
}
a.remove-right {
  margin-right: 2rem;
}
li#nav_link_close img {
  width: 20px;
  margin-right: 5px;
  position: relative;
  top: 5px;
}
/* p.header_para1 span {
    font-style: italic;
} */
.gallery_imgs .splide__arrows {
  display: block !important;
}
.gallery_imgs .splide__arrow--next {
  right: -3em !important;
  background: url(/assets/right-arrow-c.webp);
  width: 40px;
  height: 40px;
  background-size: contain;
  opacity: 1;
}
.gallery_imgs .splide__arrow--prev {
  left: -4em !important;
  background: url(/assets/left-arrow-c.webp);
  width: 40px;
  height: 40px;
  background-size: contain;
  opacity: 1;
}
.gallery_imgs .splide__arrows svg {
  display: none;
}
.flex_section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
section#awards_section .common_container {
  margin: 0 auto;
  width: 87%;
}
.awards_listing {
  width: 23.33%;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 1280px) and (max-width: 1535px) {
  .gl_img_cont:after {
    margin-top: 0 !important;
    position: relative;
    top: 4px;
  }
  .awards_listing img {
    width: 85%;
  }
}
.foot-p p {
  font-size: 18px;
  color: white;
  line-height: 25px;
  font-family: 'Myriad Pro';
}
@media screen and (min-width: 320px) and (max-width: 360px) {
  .header_para1 {
    font-size: 23px !important;
  }
}
@media screen and (min-width: 380px) and (max-width: 399px) {
  .form-group .asterisk {
    left: 24% !important;
  }
  .form-group .asterisk_ph {
    left: 44% !important;
  }
}
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.banner-text {
  opacity: 0;
  position: relative;
  transition: opacity 0.5s ease-in-out;
}
.banner-text.show {
  animation: slideInFromLeft 1s ease forwards;
  opacity: 1; /* Ensure it's visible after animation */
}

.shows {
  z-index: 999;
  display: none;
}
.shows .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.66);
  position: fixed;
  top: 0;
  left: 0;
}
.shows .img-show {
  width: 950px;
  height: 600px;
  background: #fff;
  /*position: relative;
    top: 0;
    left: 0%;*/
  transform: translate(-35%, -113%);
  overflow: hidden;
}
.img-show span {
  position: absolute;
  right: 10px;
  z-index: 99;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  background: #fff;
  width: 20px;
  text-align: center;
  border-radius: 5px;
}
.close {
  top: 10px;
}
.plus {
  top: 35px;
}
.minus {
  top: 60px;
}
.reset {
  top: 85px;
}
.img-show img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.popup-open {
  overflow: hidden;
}
@media screen and (min-width: 994px) and (max-width: 1100px) {
  .shows .img-show {
    width: 746px !important;
    height: 400px !important;
    background: #fff;
    position: relative;
    transform: translate(-40%, -50%);
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) and (max-width: 993px) {
  .shows .img-show {
    width: 700px;
    height: 500px;
    background: #fff;
    position: relative;
    transform: translate(-37%, -50%);
    overflow: hidden;
  }
}
@media screen and (min-width: 320px) and (max-width: 768px) {
  .shows .img-show {
    width: 100%;
    height: 400px;
    background: #fff;
    position: relative;
    top: 0px;
    left: 0%;
    overflow: hidden;
  }
}
.count-flex {
  display: flex;
  align-items: flex-end;
}
.form-content-class {
  color: #8b8b8b;
  font-family: 'Myriad Pro';
  font-size: 12px;
}
/* Popup styling */
.popup-show {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.popup-content {
  margin: auto;
  display: block;
  width: 60%;
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .popup-content {
    width: 85% !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .popup-content {
    width: 75% !important;
  }
}
.closes {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.closes:hover,
.closes:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* priya changes */
section#awards_section {
  margin-top: 3rem;
  padding-top: 1%;
  padding-bottom: 2%;
}
.spec_tabcontent .title h2 {
  color: #fff !important;
}
.flat-view-btn {
  margin-top: 5px;
  padding: 10px;
  background-color: transparent;
  border: 0px;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.popup-contents {
  position: relative;
  margin: auto;
  /*padding: 20px;*/
  width: 34%;
  /*height: 100% !important;*/
  top: 22%;
  background-color: white;
}

.close-btns {
  position: absolute;
  top: 0px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: rgb(206, 82, 0);
  cursor: pointer;
}
#splide .splide__arrows {
  display: block !important;
}
.bhk3-form {
  margin-bottom: 1rem;
}
.bhk3-form h2 {
  margin-bottom: 1rem;
  background: #0a507b;
  color: #fff;
  padding: 15px 15px;
  text-align: center;
}
#bhk3-form .form-group {
  margin: 0px 10px 23px 10px;
}
button.Send-one {
  padding: 15px 50px;
  background-color: #0a507b;
  border: 0px;
  color: white;
  border-radius: 2px;
  margin-left: 10px;
  margin-bottom: 20px;
  cursor: pointer;
}
.submit-btn-popup {
  text-align: center;
}
.popup-contents .close-btns {
  background-color: #fff !important;
  color: #002244 !important;
}
.flat-image {
  margin-top: 1rem !important;
  width: 81% !important;
}
@media screen and (min-width: 1400px) and (max-width: 1800px) {
  .flat-type-tit.flat-type {
    gap: 10rem !important;
  }
  .flat_type_tit.title {
    margin-top: -4rem !important;
  }
}
#flat_types .splide__arrow {
  background: #064a75 !important;
}
#flat_types .splide__arrow svg {
  color: #fff !important;
}
@media screen and (min-width: 1400px) and (max-width: 1535px) {
  .popup-contents {
    width: 40% !important;
  }
  html body .form-group.floor-plan-form .asterisk_name {
    left: 15% !important;
  }
  html body .form-group.floor-plan-form .asterisk_em {
    left: 12% !important;
  }
  html body .form-group.floor-plan-form .asterisk_ph {
    left: 27% !important;
  }
}
@media screen and (min-width: 1360px) and (max-width: 1399px) {
  html body .form-group.floor-plan-form .asterisk_ph {
    left: 31% !important;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1359px) {
  html body .form-group.floor-plan-form .asterisk_ph {
    left: 33% !important;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1399px) {
  .popup-contents {
    top: 15% !important;
  }
  html body .form-group.floor-plan-form .asterisk_name {
    left: 17% !important;
  }
  html body .form-group.floor-plan-form .asterisk_em {
    left: 14% !important;
  }

  .popup-contents {
    width: 35%;
  }
  .flat-type-tit.flat-type {
    gap: 10rem;
  }
  .spec_contants {
    margin-top: 2rem !important;
    margin-bottom: 9rem !important;
  }
  .flat_type_tit.title {
    margin-top: -4rem !important;
  }
  #counter_section .common_container {
    width: 100% !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .popup-contents {
    width: 75%;
  }
  .spec_contants {
    margin-top: 2rem !important;
    margin-bottom: 9rem !important;
  }
  .tab button {
    padding: 23px 0px !important;
  }
  .tab_contants {
    width: 70% !important;
  }
  .flat-type h2 {
    font-size: 17px !important;
  }
  .flat-type p {
    font-size: 15px !important;
  }
  #flat_types .container {
    width: 90% !important;
  }
  .flat_type_tit.title {
    margin-top: -3.2rem !important;
  }
  #counter_section .common_container {
    width: 100% !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  #counter_section .common_container {
    width: 100% !important;
  }
  .count span {
    font-size: 35px !important;
  }
  .count p {
    font-size: 14px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .popup-contents {
    width: 85%;
  }
  #flat_types {
    background: transparent !important;
    margin-top: 6rem;
  }
  .flat_type_tit.title {
    margin-top: -4rem !important;
  }
  #flat_types .container {
    display: flex !important;
    flex-direction: column !important;
  }
  .flat-image {
    width: 100% !important;
  }
  .left-section {
    width: 95% !important;
    margin: 0 auto;
  }
  .tab_contants {
    width: 100% !important;
  }
  .spec_contants {
    background-color: #064a75;
    margin-left: 0px !important;
  }
  .spec_tabcontent {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 320px) and (max-width: 768px) {
  .popup-contents {
    width: 95%;
  }
  #flat_types {
    background: transparent !important;
    margin-top: 6rem;
  }
  .flat_type_tit.title {
    margin-top: -3rem !important;
  }
  #flat_types .container {
    display: flex !important;
    flex-direction: column !important;
  }
  .flat-image {
    width: 100% !important;
  }
  .left-section {
    width: 95% !important;
    margin: 0 auto;
    margin-bottom: 15px !important;
  }
  .tab_contants {
    width: 100% !important;
  }
  .right-section {
    width: 95%;
    margin: 0 auto;
    padding-top: 3rem;
    background-color: #0a507b !important;
    justify-content: space-evenly !important;
    padding-bottom: 3rem;
  }
  .flat-type h2 {
    font-size: 15px !important;
  }
  .flat-type-tit.flat-type {
    margin-top: -5vw !important;
    gap: 0rem !important;
  }
  #overview_section {
    margin-top: 0px !important;
  }
}
@media screen and (max-width: 425px) {
  .close-btns {
    top: 0px !important;
  }
  .bhk3-form {
    width: 80% !important;
    margin: 0 auto;
    padding: 5% 33px !important;
    border: 1px solid #99999969;
  }
}
@media screen and (max-width: 993px) {
  .map_locations {
    width: 94% !important;
    margin-top: 1% !important;
    position: unset !important;
  }
  .map_locat {
    margin: 2% 0% !important;
  }
}
.bhk3-form h2 {
  margin-bottom: 1rem;
}
.white-whatsapp {
  width: 23px !important;
}

#video-slider .splide__arrows {
  display: block !important;
}
#kenytChatBubble.style1 img,
#kenytChatBubble.style3 img {
  max-height: 100% !important;
  max-width: 100% !important;
}
#video-slider .splide__arrow {
  background-color: #064a75 !important;
}
#video-slider .splide__arrow svg {
  fill: #ffffff; /* Change the SVG fill color to a specific color */
  width: 20px; /* Set a different width */
  height: 20px; /* Set a different height */
}
@media screen and (min-width: 768px) {
  h2.mobile_til {
    display: none !important;
  }
  .mobile_view_only .flat-type-tit.flat-type {
    display: none;
  }
  .mobile_view_only .flat-type {
    width: 100% !important;
  }
  .mobile_view_only {
    width: 30%;
  }
  html body .close-btns {
    right: -4px !important;
    background: #0a507b;
    border-radius: 50px;
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    top: -12px !important;
  }
}
@media screen and (max-width: 767px) {
  html body .close-btns {
    right: -2px !important;
    background: #0a507b;
    border-radius: 50px;
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    top: -14px !important;
  }
  /* html body .flat-types{width:100% !important;} */
  .spec_contants {
    width: 95%;
    margin-left: auto !important;
    margin-right: auto;
  }
  .tab_contants {
    background: #064a75;
  }
  .tab {
    width: 100% !important;
  }
  .tab button,
  .tab1 button,
  .tab2 button {
    width: 50% !important;
  }
  html body .bhk3-form {
    width: 93% !important;
    margin: 0 auto;
    padding: 5% 12px !important;
  }
  html body .fl_type_img img {
    width: 51px !important;
  }
  .right-section .flat-type-tit.flat-type {
    display: none;
  }
  .mobile_view_only {
    display: flex !important;
    width: auto;
    padding-right: 10px;
  }
  .flat-type {
    width: 100% !important;
  }
  .mobile_view_only {
    margin-bottom: 10%;
  }
  .flat-types {
    display: block !important;
  }
  .flat-type-tit.flat-type {
    display: none;
  }
  .flat-type {
    width: 100% !important;
  }
  .area {
    margin-top: 1% !important;
  }
  html body h2.mobile_til {
    margin-top: 10px;
    font-size: 19px !important;
  }
  .mobile_view_only .flat-type-tit.flat-type {
    display: none !important;
    justify-content: space-around;
  }
  .mobile_view_only {
    display: flex;
    width: 100%;
  }
  /* .flat-type {
        width: 80% !important;
    } */
  .flat-type-tit.flat-type h2 {
    font-size: 15px !important;
    padding-right: 10px;
  }
  .fl_type_img img {
    width: 60px !important;
  }
  .mobile_view_only {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .awards_listing img {
    width: 50% !important;
  }
}
input {
  outline: none;
}
.count-flex p {
  position: relative;
  top: 10px;
  font-size: 18px !important;
}
#slider-content .splide:not(.is-overflow) .splide__pagination {
  display: flex;
}
#slider-content .splide__pagination__page.is-active {
  background: #002244 !important;
}
.pricing p:hover {
  cursor: pointer;
}
@media screen and (min-width: 1280px) and (max-width: 1390px) {
  .foot-p p {
    font-size: 16px !important;
  }
}
@media screen and (min-width: 800px) and (max-width: 1023px) {
  .foot-p p {
    font-size: 17px !important;
  }
}
#splide .splide__pagination__page.is-active {
  background: #002244 !important;
}
#splide .splide__slide img {
  width: 100% !important;
  /*height: 75% !important;*/
}
#splide ul.splide__pagination {
  display: flex !important;
}
@media screen and (min-width: 1360px) and (max-width: 1535px) {
  .nav_container li {
    margin: 12px 0;
  }
}
a.header_book_btn,
.galley_para p,
.gl_tit p,
.right-section,
.spec_tabcontent,
.map_locations,
.co_clex_desc p,
.footer_desc2,
.footer_flex,
.footer_bottom,
.pre-register-form,
.modal-header h2,
.bhk3-form,
.flat-type h2,
.flat-type p,
.flat-view-btn,
.locat_desc P,
.down_button,
.contact_nav a {
  font-family: 'Champagne & Limousines Bold' !important;
}

.overview-text ul,
.foot-p,
.foot-p p,
.footer_desc p,
.footer_icon_load p,
.footer_icon_others p {
  font-family: 'Champagne & Limousines Bold' !important;
}
.counter_main_box,
.nav_container li a,
.locat_desc,
.locat_desc P,
.foot_logo_text p {
  font-family: 'Champagne & Limousines Bold' !important;
}
.left-section .tab {
  display: flex;
  align-items: center;
  font-family: 'Champagne & Limousines Bold' !important;
}

.form-group.floor-plan-form .asterisk_name {
  left: 12% !important;
}
.form-group.floor-plan-form .asterisk_em {
  left: 11% !important;
}
.form-group.floor-plan-form .asterisk_ph {
  left: 24% !important;
}
@media screen and (min-width: 1440px) and (max-width: 1535px) {
  .form-group.floor-plan-form .asterisk_name {
    left: 15% !important;
  }
  .form-group.floor-plan-form .asterisk_em {
    left: 13% !important;
  }
  .form-group.floor-plan-form .asterisk_ph {
    left: 27% !important;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1439px) {
  .form-group.floor-plan-form .asterisk_name {
    left: 11% !important;
  }
  .form-group.floor-plan-form .asterisk_em {
    left: 9% !important;
  }
  .form-group.floor-plan-form .asterisk_ph {
    left: 19% !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .form-group.floor-plan-form .asterisk_name {
    left: 11% !important;
  }
  .form-group.floor-plan-form .asterisk_em {
    left: 10% !important;
  }
  .form-group.floor-plan-form .asterisk_ph {
    left: 21% !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .form-group.floor-plan-form .asterisk_name {
    left: 14% !important;
  }
  .form-group.floor-plan-form .asterisk_em {
    left: 12% !important;
  }
  .form-group.floor-plan-form .asterisk_ph {
    left: 26% !important;
  }
}
@media screen and (min-width: 360px) and (max-width: 374px) {
  html body .form-group.floor-plan-form .asterisk_name {
    left: 29% !important;
  }
}
@media screen and (min-width: 320px) and (max-width: 359px) {
  html body .form-group.floor-plan-form .asterisk_name {
    left: 34% !important;
  }
  html body .form-group.floor-plan-form .asterisk_em {
    left: 28% !important;
  }
  html body .form-group.floor-plan-form .asterisk_ph {
    left: 64% !important;
  }
  input#phones {
    width: 100% !important;
  }
}
@media screen and (min-width: 376px) and (max-width: 767px) {
  .form-group.floor-plan-form .asterisk_name {
    left: 27% !important;
  }
  .form-group.floor-plan-form .asterisk_em {
    left: 24% !important;
  }
  .form-group.floor-plan-form .asterisk_ph {
    left: 48% !important;
  }
}
@media screen and (min-width: 320px) and (max-width: 375px) {
  .form-group.floor-plan-form .asterisk_name {
    left: 27% !important;
  }
  .form-group.floor-plan-form .asterisk_em {
    left: 24% !important;
  }
  .form-group.floor-plan-form .asterisk_ph {
    left: 52% !important;
  }
}
.book_now_btn:hover {
  background-color: #6abaec !important;
}
.story_video:hover {
  cursor: pointer;
}
.gl_img_cont:hover {
  cursor: pointer;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .desktop_view {
    display: none !important;
  }
  .mobile_view {
    display: block !important;
  }
  .common_container.mobile_view {
    margin-bottom: 25px !important;
  }
  #awardsSplide .splide__slide {
    text-align: center;
  }
  #awardsSplide .splide__slide img {
    width: 90% !important;
  }
  .count-flex p {
    top: 10px !important;
  }
}
@media screen and (min-width: 768px) {
  .desktop_view {
    display: block !important;
  }
  .mobile_view {
    display: none !important;
  }
}
#awardsSplide .splide__pagination {
  display: flex !important;
  margin-bottom: -25px;
}
#awardsSplide .splide__pagination__page.is-active {
  background: #064a75 !important;
}
.flex_section img {
  width: 100% !important;
}
.form-content-class a {
  color: #064a75;
}
@media screen and (max-width: 767px) {
  .gallery .title,
  .flat_type_tit.title,
  #story_section .title,
  #lcn .title,
  #co-developer .title {
    text-align: center !important;
  }
  section.gallery {
    padding-bottom: 23px;
  }
  .spec_contants {
    margin-top: 2rem !important;
    padding-bottom: 3rem !important;
  }
}
@media screen and (min-width: 1536px) and (max-width: 1899px) {
  html body .form-group.floor-plan-form .asterisk_name {
    left: 15% !important;
  }
  html body .form-group.floor-plan-form .asterisk_em {
    left: 14% !important;
  }
  html body .form-group.floor-plan-form .asterisk_ph {
    left: 29% !important;
  }
}

@media screen and (min-width: 320px) and (max-width: 639px) {
  .co-flex:hover .co_clex_desc {
    transform: translateY(20%) !important;
  }
  .co_clex_desc p {
    font-size: 14px !important;
  }
}
.Champagne {
  font-size: 28px !important;
  /*margin-left: 2.6rem;*/
  text-transform: uppercase !important;
  margin-top: 4px;
}
.Champagne-small {
	/* font-family: 'Champagne & Limousines Bold'; */
  font-family: 'Playfair Display', serif;
  font-size: 18px !important;
  
	margin-bottom:5px;
	list-style:disc !important;
}
@media screen and (min-width: 1400px) and (max-width: 1535px) {
  .Champagne {
    font-size: 25px !important;
    /*margin-left: 2.5rem;*/
  }
	.Champagne-small {
    font-size: 16px !important;
    /*margin-left: 2.5rem;*/
  }
}
@media screen and (min-width: 1280px) and (max-width: 1399px) {
  .Champagne {
    font-size: 25px !important;
    /*margin-left: 2.5rem;*/
  }
	.Champagne-small {
    font-size: 16px !important;
    
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .Champagne {
    font-size: 25px !important;
    /*margin-left: 2.5rem;*/
  }
	.Champagne-small {
    font-size: 16px !important;
    
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .Champagne {
    font-size: 30px !important;
    /*margin-left: 2.5rem;*/
  }
	.Champagne-small {
    font-size: 20px !important;
    
  }
}
@media screen and (min-width: 320px) and (max-width: 768px) {
  .Champagne {
    font-size: 14px !important;
    /*margin-left: 0.3rem;*/
    display: flex;
    align-items: center;
  }
	.Champagne-small {
    font-size: 14px !important;
    display: flex;
    align-items: center;
  }
}


@media only screen and (max-width: 510px) {
	.logo_box {
		width: 25%;
	}
	.logo_box img {
		width: 100%;
		height: auto;
	}
	
	
	.ban-button .header_book_btn {
	font-size: 16px;
	min-width: 100px;
	padding: 5px 7px;
	}
	
	.press-release-icon {
		max-width: 40px !important;
	}
	
	.morya-press-slider{
		margin-bottom: 25px;
	}
	
}
.kbubble-container{
	z-index:998 !important;
}
.form-group input{
	font-size:14px;
}
.form-group select{
	font-size:14px;
}
.phone-group input{
	font-size:14px;
}
.phone-group select{
	font-size:14px;
}

/* Dipayan changes */
/* Section Title */
#book_section .title {
  text-align: center;
  margin-top: 5%;
  font-size: 2vw;
}

/* Phase 2 Container */
.phase2_section {
  background-color: #064a75;
  padding: 3% 0%;
}

/* Phase 2 Heading */
.phase2_section h3 {
  font-size: 2.5rem;
  color: #ffffff;
  text-align: center;
  padding: 0% 1%;
}

/* Features Grid */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
	padding: 50px 30px;
}

.feature {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature img {
  width: 80px;
  height: 80px;
  justify-content: center;
}

.feature p {
  margin-top: 10px;
  font-weight: bold;
  color: #ffffff;
  font-size: 1.25rem;
  text-align: center;
  font-family: 'Champagne & Limousines Bold', Arial, sans-serif !important;
  letter-spacing: 1.5px;
}

/* Book Now Button */
.button-wrapper {
  display: flex;
  justify-content: center;
}

.book-btn {
  background-color: #73b3d4;
  color: #064a75;
  border: none;
  padding: 1% 7%;
  font-size: 1.5rem;
  cursor: pointer;
  font-family: 'Champagne & Limousines Bold', Arial, sans-serif !important;
}

/* Responsive Styles */
@media screen and (max-width: 1040px) {
	#book_section{
		padding-top:40px;
	}
	.phase2_section{
		padding: 8% 0;
	}
  .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 40px 20px; /* row and column gap */
    justify-items: center; /* center items horizontally */
  }

  .feature {
    width: 100%;
  }



  .phase2_section h3 {
    font-size: 1.8rem;
  }

 

  .feature img {
    width: 60px;
    height: 60px;
  }

  .feature p {
    font-size: 1rem;
  }

  .book-btn {
    padding: 3% 15%;
    font-size: 1.2rem;
  }
	 #book_section .title h2
    {
    text-align: center;
    padding: 2px 2px;
  }
}
