* {
 margin: 0;
 padding: 0;
 font-family: 'Gotham';
 font-size: 15px;
}
html{
  scroll-behavior: smooth;
}
html, body{
  overflow-x: hidden;  
}
@font-face {
    font-family: 'Berkshire Swash';
    src: url('../fonts/BerkshireSwash-Regular.woff2') format('woff2'),
        url('../fonts/BerkshireSwash-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.woff2') format('woff2'),
        url('../fonts/Gotham-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.woff2') format('woff2'),
        url('../fonts/Gotham-Book.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Garamond';
    src: url('../fonts/Garamond-Italic.woff2') format('woff2'),
        url('../fonts/Garamond-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Zapfino Extra LT Pro';
    src: url('../fonts/ZapfinoExtraLTPro.woff2') format('woff2'),
        url('../fonts/ZapfinoExtraLTPro.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Light.woff2') format('woff2'),
        url('../fonts/Gotham-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.woff2') format('woff2'),
        url('../fonts/Gotham-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
.btn-whatsapp-pulse-border:hover{ transform: scale(1.2);color: white; text-decoration: none;
 }
.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 25px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 25px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}
.btn-whatsapp-pulse-border {
    bottom: 150px;
    right: 15px;
    animation-play-state: paused;
    z-index: 100;
}
.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}
@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }
    75% {
        padding: 50px;
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
.logo,
.content {
  color: #fafafa;
}
.nav {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 3;
}
.logo,
#hamburger {
  margin: 3%;
}
#hamburger {
 /* opacity: 0.5;*/
  cursor: pointer;
  transition: opacity 0.25s linear;
  width: clamp(1.5rem, 2vw + 1.1rem, 6rem);
  height: clamp(2rem, 1.4vw + 1.7rem, 5rem);
  display: flex;
  align-items: center;
}
#hamburger:hover {
  opacity: 1;
}
#hamburger div,
#hamburger div:after,
#hamburger div:before {
  background-color: #fff;
  border-radius: 10px;
  width: clamp(1.5rem, 2vw + 1.1rem, 2.5rem);
  height: clamp(0.1rem, 0.3vw + 0.1rem, 0.3rem); 

  /*width: clamp(1.5rem, 2vw + 1.1rem, 6rem);
  height: clamp(0.2rem, 0.3vw + 0.1rem, 0.8rem);*/
  transition: all 0.15s linear;
}
#hamburger div:before,
#hamburger div:after {
  content: "";
  position: absolute;
}
#hamburger div:before {
  transform: translateY(-200%);
}
#hamburger div:after {
  transform: translateY(200%);
}
#hamburger.open div {
  background: transparent;
}
#hamburger.open div:before {
  transform: rotate(45deg);
}
#hamburger.open div:after {
  transform: rotate(-45deg);
}
#overlay {
  position: fixed;
  width: 100%;
  min-height: 100%;
  background-color:#442b20d6;
  z-index: 2;
  transform: translateY(-100%);
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#overlay.menu {
  transform: translateY(0%);
}
#overlay a {
  text-decoration: none;
  color: #fafafa;
  /*font-size: clamp(1rem, 4.1vw + 0.2rem, 10rem);*/
  margin: 2%;
  /*opacity: 0.5;*/
  transition: opacity 0.2s linear;
}
#overlay a:hover {
  opacity: 1;
}
/* slider css start */
.carousel-item {
  background-repeat: no-repeat ;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 1920px;
  height: 1080px;
}
.carousel-item-bgimage2{ background-image: url('../images/banner-02.jpg'); }
.carousel-item-bgimage3{ background-image: url('../images/banner-3.jpg'); }
.carousel-item-bgimage4{ background-image: url('../images/banner-04.jpg'); }
.carousel-item-bgimage5{ background-image: url('../images/banner-05.jpg'); }

#indicators{ 
  margin-top:-273px;
 }
@media (min-width: 300px) and (max-width: 768px) { 
.carousel-item-bgimage2{ 
    background-image: url('../images/mobile-02.jpg'); 
    height: 100vh;
  }
  .carousel-item-bgimage3{ 
    background-image: url('../images/mobile-03.jpg'); 
    height: 100vh;
  } 
  .carousel-item-bgimage4{ 
    background-image: url('../images/mobile-04.jpg');
    height: 100vh;
  }  
.carousel-item-bgimage5{ 
  background-image: url('../images/mobile-05.jpg'); 
  height: 100vh;
  } 
#indicators{ 
  margin-top:-130px;
 } 
 #hamburger{
  margin-right: 35px;
 }  
}
/* slider css end */

.gotopbtn{  
 display: none;
  position: fixed;
  width: 50px;
  height: 50px;
  background: #000000;
  bottom: 40px;
  right: 15px;
  border: none;
  text-decoration: none;
  text-align: center;
  line-height: 50px;
  color: white;
  font-size: 22px;
  z-index: 999;
  border-radius: 30px;
}
/* section two */
.secton_two{ 
 background-image: url('../images/About-Project-BG.jpg');
 background-repeat: no-repeat;
 background-size: cover;
 background-position: center;
 position: relative;
 width: 100%;
 height: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 column-gap: 100px; 
 flex-wrap: wrap;
 padding: 100px; 
}
/* section two end*/

/* section three Gallery start */
.secton_three_Gallery{ 
  background-image: url('../images/GALLERY_BG.jpg');
  position: relative;
  width: 100%;
  height: 1150px;
  /*padding: 50px;*/
}
.uk-text-center{ 
  color: #ffffff; 
  font-size: 30px;
  font-family: 'Khand';
  /*padding-top: 30px;*/
  margin-top: 30px;
  font-weight: 400;
  line-height: 1;
}
/* section three Gallery end */

/* section four amenities start */
.secton_four_Amenities{ 
 background-image: url('../images/Amenities_BG_mob.jpg');
 position: relative;
 width: 100%;
 height: auto;
 padding: 50px 0px;
 background: #fff;
 margin-top: -250px; 
}
.amenities_bottom_images{ 
  margin-top: 30px; 
}
.uk-text-center_amenities { 
  color: #442B20; 
  font-size: 50px;
  font-family: 'Khand';
 /* margin-top: 30px;*/
}
.ameneties_para1{ 
  color: #414042; 
  font-size: 18px;
  font-family: 'Khand';
  font-weight: bold;
  padding-top: 30px;
  text-align: center;
}
.ameneties_heading1{
  color: #414042; 
  font-size: 22px;
  font-family: 'Khand';
  font-weight: bold;
  padding-top: 30px;
  text-align: center;
}
.ameneties_para2{ 
  color: #414042; 
  font-size: 18px;
  font-family: 'Khand';
  font-weight: bold;
  text-align: center;
}
/* section four amenities start */

/* section 5 spacification start */
.Secton_Fifth_SPECIFICATIONS{
 background-image: url('../images/SPECIFICATIONS_BG.jpg');
 position: relative;
 width: 100%;
 height: auto;
 padding: 50px;
}
.uk-text-uppercase_Specification{
  color: #ffffff; 
  font-size: 30px;
  font-family: 'Khand';
  margin-top: 30px;
  text-align: center;
  line-height: 1;
}
/* section 5 spacification end */
.columns {
  display:flex;
  justify-content: center;
  flex-direction:row;
  width:100%;
  flex-wrap:wrap;
  column-gap: 40px;
}
.column{ margin-top: 5px; }
@media (min-width: 48em) {
  .columns {
    flex-wrap: nowrap;  
  }
}
/* specification text section  */
.filler1 {
  width: 100%;
  font-size: 18px;
  color: #fff;
  text-align: left;
  font-weight: 500;
}
.filler {
  width: 100%;
  font-size: 12px;
  margin: 5px 5px;
  padding: 5px 5px;
  color: #fff;
  text-align: left;
}
/* amenities  text section  */
.filler12 {
  width: 100%;
  font-size: 18px;
  color: #000;
  text-align: left;
  font-weight: 500;
}
.filler13 {
  width: 100%;
  font-size: 12px;
  margin: 5px 5px;
  padding: 5px 5px;
  color: #000;
  text-align: left;
}
.wrap {
  max-width: 1630px;
  margin: 0 auto;
  padding-top: 24px;
}
.row1 {
  margin-bottom: 24px;
}
.col--group > .row {
  margin-bottom: 0;
}
.row {
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  flex-wrap: wrap;
}
@media only screen and (min-width: 640px) {
  .row {
    flex-direction: row;
  }
}
.col1 {
  flex: 0 0 auto;
  padding: 0 12px;
  flex-basis: 1 !important;
  flex-basis: 100%;
  max-width: 100%;
}
.col--1of1,
.col--2of2,
.col--3of3,
.col--6of6 {
  flex-basis: 100%;
  max-width: 100%;
}
@media only screen and (min-width: 640px) {
  .col--1of2,
  .col--3of6 {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media only screen and (min-width: 640px) {
  .col--1of3,
  .col--2of6 {
    flex-basis: 33.3333333%;
    max-width: 33.3333333%;
  }
}
@media only screen and (min-width: 640px) {
  .col--1of6 {
    flex-basis: 16.6666667%;
    max-width: 16.6666667%;
  }
}
@media only screen and (min-width: 640px) {
  .col--2of3,
  .col--4of6 {
    flex-basis: 66.6666667%;
    max-width: 66.6666667%;
  }
}
@media only screen and (min-width: 640px) {
  .col--5of6 {
    flex-basis: 83.3333333%;
    max-width: 83.3333333%;
  }
}
.col--group {
  padding: 0;
}
.wrap .ul{ margin-left: 10px; }

/* image section greenery start */
.hero-image {
  background-image:url("../images/Most dense.jpg");
  width: 100%;
  height: 850px;
  /*background-position: center;*/
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
.hero-text {
  text-align: left;
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: #ffffff; 
}
.hero-text_h1{ 
  font-size:50px;  
  font-family: 'Khand';
  line-height: 1.1;
}
/* image section greenery end */

/* location map section start */
.location_map_section{
  background-image: url("../images/LOCATION_BG.jpg");
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-bottom: 100px;
}
.flex-container {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}
.flex-item-left {
  background-color: #fff;
  padding: 10px;
  flex: 50%;
}
.flex-item-right {
  background-color: #fff;
  padding: 10px;
  flex: 50%;
}
/* Responsive layout - makes a one column-layout instead of a two-column layout */
@media (max-width: 800px) {
  .flex-item-right, .flex-item-left {
    flex: 100%;
  }
}
.filler_map_mainHeading { 
  margin-top: 100px;
  /*margin-left:275px ;*/
  text-align: center;
  color: #442C1F;
  font-size: 50px;
  font-family: 'Khand';
  font-weight: 400;
  }
  .filler1_map {
    font-family: 'Khand';
    font-weight: bold;
    width: 100%;
    font-size: 18px;
    color: #000;
    text-align: left;
  }
  .filler_map {
    width: 80%;
    font-size: 12px;
    margin: 5px 5px;
    padding: 5px 5px;
    color: #000;
    text-align: left;
  }
/* location map section end */

/* contact section start */
.contact_section{
  background-image: url("../images/Contact us_BG.jpg");
  height: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
/* contact section start */

/*FOOTER*/
footer {
  font-family: 'Khand';
  background-color: #ffffff;
  color: white;
}
footer a {
  font-family: 'Khand';
  color: #212121;
  font-size: 14px;
  transition-duration: 0.2s;
}
footer a:hover {
  color: #442C1F;
  text-decoration: none;
}
.footer-middle {
  font-family: 'Khand';
  padding: 4em 0em;
  color: #000;
}
.list-unstyledd{ 
  font-family: 'Khand';
  color: #000 !important;
  padding-left: 0;
  list-style: none;
}
.icon_social_All{ 
  font-size: 30px; 
  font-family: 'Khand';
  color: #666060; 
  padding-right: 15px; 
  text-decoration: none; 
  border: none; 
}
.Download_brochure{ 
  font-family: 'Khand';
  font-weight: 400; 
  background-color: #fff;
  border: none;color: #212121;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 15px; 
  margin-top: 55px; 
}
.Gallery_head_text{
  padding-top: 40px;
  /*margin-left:400px ;*/
  text-align: center;
  color: #fff;
  font-size: 50px;
  font-family: 'Khand';
  font-weight: 400;
}
.Amenities_head_text{
   /* margin-left:400px ;*/
   text-align: center;
    color: #442B20;
    font-size: 50px;
    font-family: 'Khand';
    font-weight: 400;
}
.Specification_head_text{
  margin-top: 55px;
  /*margin-left:400px ;*/
  text-align: center;
  color: #fff;
  font-size: 45px;
  font-family: 'Khand';
  font-weight: 400;
}
.About-Project-left{ 
  width: 500px; 
  margin-top: 0px; 
}
#certificate{
  margin-bottom: 50px;
}

/* mobile screen css satrt */
@media (min-width: 350px) and (max-width: 768px) {
  .Gallery_head_text {
   margin-top: 0px;
   margin-left:0px;
   text-align: center;
 }
 .Amenities_head_text {
   margin-top: 0px;
   margin-left:0px ;
   text-align: center;
 }
 .Specification_head_text {
   margin-top: 0px;
   margin-left:0px ;
   text-align: center;
 }
 .filler_map_mainHeading{ 
   margin-top: 0px;
   margin-left:0px ;
   text-align: center;
 }
 .wrap {
    margin-left: 20px;
}
.secton_three_Gallery {
    background-image: url(../images/GALLERY_BG_Mob.jpg);
    height: auto;
    padding-bottom: 50px
}
  .secton_four_Amenities {
    background-image: url(../images/Amenities_BG.jpg);
    height: auto;
}
.secton_two {
    background-image: url(../images/Amenities_BG_mob.jpg);
    height: auto;
}
.About-Project-left{ 
  width: 500px; 
  margin-top: 0px; 
  text-align: center;
}
.Secton_Fifth_SPECIFICATIONS {
    background-image: url('../images/GALLERY_BG_Mob.jpg');
    height: auto;
    padding: 50px;
  }
  .hero-image {
    background-image: url('../images/Most dense.jpg');
    height: 300px;
    background-position: top;
    background-color: #212121;; 
  }
  .hero-text {
    text-align: left;
    position: absolute;
    text-align: left;
    position: absolute;
    top: 76%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
  }
  .hero-text_h1 {
    font-size: 33px;
    font-family: 'Khand';
    line-height: 1.1;
    text-align: center;
}
.location_map_section {
    background-image: url(../images/Amenities_BG_mob.jpg);
    padding: 50px;
}
.secton_four_Amenities{
  margin-top: -50px;
}
}/*media qr close*/

.youtube-embed {
  position: relative;
  padding-bottom: 60%;
  width: 100%;
}
.youtube-embed iframe {
  width: 100%;
  position: absolute;
  height: 75%;
  overflow: hidden;
}
.footer-pad li {
  font-size: 14px;
}
.footer-pad li a {
  font-size: 14px;
}