.demo-btn {
  display: inline-block;
  margin: 0 2.5px 4vh 2.5px;
  text-decoration: none;
  color: grey;
  padding: 15px;
  line-height: 1;
  min-width: 140px;
  background: rgba(0,0,0, 0.07);
  border-radius: 6px;
}

.demo-btn:hover {
  background: rgba(0,0,0,0.12);
}
.location_iframe iframe{
  width: 100% !important;
  height: 348px !important;
  border-radius: 13px;
  margin-top: 2px;
  border: 1px solid #ccc !important;
}


@media (max-width: 640px) {

  .demo-btn {
      min-width: 0;
      font-size: 14px;
  };
}
p:last-child {
  margin-bottom: 8px !important;
}

/*
==========================================
2. Responsive Photo Gallery
========================================== 
*/
.m-p-g {
  /* max-width: 860px;
  margin: 0 auto; */
}

.m-p-g__thumbs-img {
  margin: 0;
  float: left;
  vertical-align: bottom;
  cursor: pointer;
  z-index: 1;
  position: relative;
  opacity: 1;
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
  -webkit-tap-highlight-color: transparent;
  will-change: opacity,transform;
  -webkit-transition: all .5s cubic-bezier(.23,1,.32,1);
  transition: all .5s cubic-bezier(.23,1,.32,1);
  width: 100%;
    height: 199px;
}

.m-p-g__thumbs-img.active {
  z-index: 50;
}

.m-p-g__thumbs-img.layout-completed {
  opacity: 1;
}

.m-p-g__thumbs-img.hide {
  opacity: 0;
}

.m-p-g__thumbs-img:hover {
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
}

.m-p-g__fullscreen {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: 0 0;
  visibility: hidden;
  -webkit-transition: background .25s ease-out,visibility 10ms .5s linear;
  transition: background .25s ease-out,visibility 10ms .5s linear;
  will-change: background,visibility;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.m-p-g__fullscreen.active {
  -webkit-transition: background .25s ease-out,visibility .01s 0s linear;
  transition: background .25s ease-out,visibility .01s 0s linear;
  visibility: visible;
  background: rgba(0,0,0,.95);
}

.m-p-g__fullscreen-img {
  pointer-events: none;
  position: absolute;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  top: 50%;
  left: 50%;
  max-height: 100vh;
  max-width: 100%;
  visibility: hidden;
  will-change: visibility;
  -webkit-transition: opacity .5s ease-out;
  transition: opacity .5s ease-out;
}

.m-p-g__fullscreen-img.active {
  visibility: visible;
  opacity: 1!important;
  -webkit-transition: -webkit-transform .5s cubic-bezier(.23,1,.32,1),opacity .5s ease-out;
  transition: transform .5s cubic-bezier(.23,1,.32,1),opacity .5s ease-out;
}

.m-p-g__fullscreen-img.almost-active {
  opacity: 0;
  -webkit-transform: translate3d(0,0,0)!important;
  transform: translate3d(0,0,0)!important;
}

.m-p-g__controls {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  height: 20vh;
  background: -webkit-linear-gradient(bottom,transparent 0,rgba(0,0,0,.55) 100%);
  background: linear-gradient(to top,transparent 0,rgba(0,0,0,.55) 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .5s cubic-bezier(.23,1,.32,1);
  transition: all .5s cubic-bezier(.23,1,.32,1);
}

.m-p-g__controls-arrow,.m-p-g__controls-close {
  position: absolute;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.m-p-g__controls.active {
  opacity: 1;
  visibility: visible;
}

.m-p-g__controls-arrow,.m-p-g__controls-close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: 0 0;
}

.m-p-g__controls-arrow:focus,.m-p-g__controls-close:focus {
  outline: 0;
}

.m-p-g__controls-arrow {
  z-index: 1;
  top: 0;
  width: 20%;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
}

.m-p-g__controls-arrow:hover {
  opacity: 1;
}

.m-p-g__controls-arrow--prev {
  left: 0;
  padding-left: 3vw;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.m-p-g__controls-arrow--next {
  right: 0;
  padding-right: 3vw;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.m-p-g__controls-close {
  top: 3vh;
  left: 3vw;
  z-index: 5;
}

.m-p-g__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  -webkit-transition: all .25s ease-out;
  transition: all .25s ease-out;
}

.m-p-g__btn:hover {
  background: rgba(255,255,255,.15);
}

.m-p-g__alertBox {
  position: fixed;
  z-index: 999;
  max-width: 700px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  background: #fff;
  padding: 25px;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0,0,0,.23),0 10px 40px rgba(0,0,0,.19);
  color: grey;
}

.m-p-g__alertBox h2 {
  color: red;
}
/*end*/

.property_details{
  /* padding:25px 25px 0px 25px; */
  position: relative;
}
.property_details1{
  padding: 26px;
  padding-top: 0px !important;
  position: relative;
}

.sticky-part {
  position: fixed;
  top: 90px;
  bottom: 230px;
  z-index: -88;
  right: 0;
  width: 100%;
  margin:20px; 

}

.scrolling-part {
  overflow-y: auto;
  overflow-x: hidden;
}
.images_p{
  box-shadow: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  /* border-radius: 10px; */
}

/* Product Slider start*/
.background-container {
  position: relative;
  height: 100svh;
}

.background-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.background-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #00000060;
  background: linear-gradient(rgba(255,255,255,0.1), rgba(0,0,0,0.8));
}

.copyright {
  position: absolute;
  padding: 8px;
  bottom: 8px;
  right: 16px;
  opacity: 0.8;
  user-select: none;
}

.content-wrapper {
  display: flex;
  position: absolute;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.content-title {
  width: calc(100% - 48px);
  font-size: 36px;
  color: white;
  line-height: 1.5;
  text-align: center;
}

.content-title span {
  display: inline-block;
}

.content-title pre {
  display: inline;
  position: relative;
  top: -1px;
  padding: 4px 8px;
  font-size: 30px;
  color: #3b3beb;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 8px #00000060;
}

.s-slider {
  display: flex;
  position: relative;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 20px !important;
  pointer-events: auto;
  padding-top: 0px !important;
}

body[data-sliding] .slider-container {
  cursor: grabbing;
 
}

.slider-container {
  display: flex;
  position: relative;
  width: calc(100% + 48px);
  left: -24px;
  cursor: grab;
  
  padding: 5px;
  margin: 2px;

}

body[data-sliding] .slider-items {
  scroll-snap-type: none;
}

.slider-items {
  display: flex;
  position: relative;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 39px;
  width: 100%;
  padding: 20px;
  scroll-snap-type: x mandatory;
  scroll-padding: 24px;
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: none;
}

.slider-items::-webkit-scrollbar {
  display: none;
}

.slider-item {
  flex-shrink: 0;
  width: 150px;
  scroll-snap-align: start;
}

.slider-item img {
  position: relative;
  max-width: 100%;
  height: 150px;
  border-radius: 8px;
  box-shadow: 0 2px 12px #00000080;
  object-fit: cover;
}

.slider-arrows {
  display: none;
  
}

@media (min-width: 901px) {
  .slider-container {
    left: -10px;
  }

  .slider-item {
    width: 207px;
    max-width: calc(100% / 4 - 18px);
  }

  .slider-item img {
    height: 207px;
  }
  
  .slider-arrows {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    top: -1px;
    left: -9px;
    padding-inline: 12px;
    pointer-events: none;
  }
  
  .slider-arrow {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 6px #00000060;
    cursor: pointer;
    pointer-events: auto;
  }
  
  @media (min-width: 1101px) {
    .slider-arrows {
      width: calc(100% + 128px);
      padding-inline: 0;
 
    }

    .slider-arrow {
      height: 35px;
      width: 35px;
      font-size: 22px;
      font-weight: 300;
 
    }
  }
}
.flat-block{
  width: 100%;
  height: 200px;
  border-radius: 8px;
   background-color: #fff;
   border:1px solid #ccc;
    
}
.flat-title{
  
  padding: 5px;
  background-color:#05335e;
  cursor: pointer;

}

.slider-container{
  padding:0;
}
.broucher_c{
  padding: 18px 20px;
  border-radius: 6px;
  color: #fff !important;
  background-color: #353e4e !important;
  border-color: #353e4f !important;
  display: block;
  text-align: center;
  /* margin: 5px; */
}
.flat-details p{
    margin:0;
    padding:0;
}
.flat-title h3{
  margin-bottom: 1px !important;
  /* text-align: center !important; */
  font-size:13px;
    color: #fff !important;
}
.flat-title h3 span{

 font-size:14px !important;
 color:  #605b5b !important;
}
.flat-details{
  padding: 10px;
}
.flat-price{
  padding: 10px;
}
.flat-text{
    font-size: 17px;
    color: #605b5b !important;
    line-height: 26px;
    font-weight: 600;
}
.flat-block hr{
    margin:0;
}
.flat-price h3{

    font-size: 17px;
    color: #05335e;
}
    
.flat-price p{
    margin:0;
}
.all-flat-title h3{
  color: #605b5b !important;
}
.title-flats{
  padding:25px;
}
/* Product Slider End*/

/* Tab Section Start */
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap");


.container {
  width: 980px;
  margin: 0 auto;
  max-width: 100%;
  padding-right: 16px;
  padding-left: 16px;
}


.tab__list {
  display: flex;
  margin-bottom: 24px;
}
.tab__item {
  overflow: hidden;
  cursor: pointer;
  padding: 12px 8px;
  margin-right: 24px;
  text-shadow: 0 0 0.5px currentColor;
  letter-spacing: 1px;
  transition: 0.2s;
  font-size: 18px;
  position: relative;
  color: #777777;

    border-color: #dab365;
    border-radius: 10px;
}
.tab__item:before {
  content: "";
  position: absolute;
  top: 95%;
  left: 0;
  height: 2px;
  width: 100%;
  /* background: #19d9b4; */
  transition: 0.2s;
  visibility: hidden;
  opacity: 0;
}
.tab__item.is--active {
  color: #fff;
  position: relative;
  background-color: #0c1828;
}
.tab__item.is--active:before {
  visibility: visible;
  opacity: 1;
}
.tab__content {
  
  background: #ffffff;
  border-radius: 0 10px 10px;
}
.tab__content-item {
  display: none;

}
.tab__content-item.is--active {
  display: block;
}
.tab__content-title {
  padding: 24px 24px 24px 0;
}

.tab .tab .tab__item {
  font-size: 16px;
}
.tab .tab .tab__content {
  padding: 0;
}

/* Tab Section End */
/* slider in tab start*/


/* Slieder In tab end */


.vnbtn{
  border-radius: 6px;
  color: #fff;
    background-color: #051a28 !important;
    border: 1px solid;
    border-color: #091928 !important;
    padding: 10px 15px;

}
.btn-primary:not(:disabled):not(.disabled):active{
  color: #fff !important;

}
.btn-primary:focus {
  color: #fff !important;
}
.ptitle{
  padding: 20px 25px;
}
.rera{
  color: #fff;
  border-color: #091928;
  background: #091928;
  padding: 5px;
  border-radius: 3px;
  text-align: center;

}
.pd-10{
  padding: 10px !important;
}

.nb{
color: #317A36;
    background-color: #D7F2E3;
  
    padding: 5px;
    border-radius: 3px;
    text-align: center;
}
.df{
  padding: 5px;
  border-radius: 3px;
  text-align: center;
  color: #757398;
    background-color: #F5F5FF;

}
.tp{
  padding: 5px;
  border-radius: 3px;
  text-align: center;
  color: #757398;
    background-color: #d9d9d9;

}
.flat-block-details
{
  background-color: #fff;
  width: 100%;
  margin: 10px;
  padding-bottom: 15px;
  border-radius: 8px;
    box-shadow: 0 2px 12px #00000080;
  
   
    
}
.flat-title-block{
  background-color: #dab365;

  padding: 10px;
 
  border-radius: 6px;
  margin: 20px;

}



.fixed{
  position:fixed;
  top:140px;
 
  right:0;
}

.bottom{
  top:auto;
  bottom:50px;
  position:absolute;
}

.button.is-checked {
  background-color: #001072  !important;
}
.button.is-checked {
  color: #fff !important;
}

.image-container {
  position: relative;
}

.image-text {
  position: absolute;
  left: 0;
  right: 0;
  background-color: rgb(9 25 40 / 77%);
  color: #fff;
  text-align: center;
  z-index: 2;
  bottom: 0;
}
.image-text p{

    margin: 0 !important;
    /* text-align: left; */
    padding: 12px 15px;
}
.image-text3 p{
     margin: 0 !important;
    /* text-align: left; */
    padding: 6px 15px;
}
.image-text1 p{

    margin: 0 !important;
  
    padding: 12px 8px;
}
    
.image-text1 {
  position: absolute;
  left: 0px;
  right: 0;
  background-color: rgb(9 25 40 / 77%);
  color: #fff;
  text-align: center;

  z-index: 2;
  bottom: 2px;

  margin-left: 15px;
  margin-right: 15px;
}
.image-text2 {
  position: absolute;
  left: 0px;
  right: 0;
  background-color: rgb(9 25 40 / 77%);
  color: #fff;
  text-align: center;

  z-index: 2;
  bottom: 2px;
  padding: 4px 0px;

  margin-left: 0px;
  margin-right: 15px;
}
.image-text3 {
  position: absolute;
  left: 0px;
  right: 0;
  background-color: rgb(9 25 40 / 77%);
  color: #fff;
  text-align: center;

  z-index: 2;
  bottom: 0px;

  margin-left: 15px;
  margin-right: 15px;
}
iframe{
    border:none;
}
.image-text4 {
  position: absolute;
  left: 0px;
  right: 0;
  background-color: rgb(9 25 40 / 77%);
  color: #fff;
  text-align: center;

  z-index: 2;
  bottom: 0px;

  margin-right: 15px;
}
.image-text4 p{
    
    margin: 0 !important;
    text-align: left;
    padding: 5px 8px;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.3s ease-out;
}

.slider-slide {
  flex-shrink: 0;
  width: 100%;
}

.slider-nav {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.slider-prev,
.slider-next {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
}

.slider-prev {
  margin-right: 10px;
}
.layer_area{
    border:none !important;
}

.slider-prev:hover,
.slider-next:hover {
  cursor: pointer;
}
.notbtn{
  /* background-color: #a1a3a5 !important; */

}

.ama{
  background-color: #f1f3f4;
  margin: 5px;
  height: 90%;
  border-radius: 10px;
  padding: 10px 10px;
  cursor: pointer;
  text-align: center;
}
.ama_main{
  padding: 0px;
}
.ama:hover{
  background-color: #d8dbdd;
}
.am{
  height:35px;
}
.ama h4{
    font-size:12px;
    margin:0;
}
.floor_plan_ara .tab__list{
  display:none;
}
.floor_plan_ara img{
  max-width: 100%;
  display: block;
}
.bg_area{
  background: #f5f3f0 !important;
  padding: 20px;
}
.nd{
  max-width: 30% !important;
}
.pd10{
  padding: 10px !important;
}
.baneer1 {
 max-width:100%;
 height:auto;
 /* height:419px !important; */
}
.main_image{
    height: 100%;
}
.banner2{
  height:199px; width: 100%; margin-bottom:5px;
}
.video{
  width: 100% ;
  height: 199px;
 
}
.banner3{
  height:222px; width: 100%;
}
.banner4{
  height:217px; width: 100%;
}
.cdate{
text-align: end;
}
.floor_b1{
  padding:20px;
  background-color: #f2f0ed;
}
.imgbanners{
  /* padding-left: 18px;
 padding-right: 18px; */
}
.bthb{
  width: 100%!important;
  padding: 10px !important;
  margin: 5px !important;
}
.imgg{
  margin: 10px 10px 10px 5px;
}
.port_img img{
  max-height: 200px !important;

  
}
.port_img {
 

  text-align: center;
  border: 1px solid #f1f3f4;
    padding:10px;
    margin:5px;
  
}

.tw {
  padding: 5px;
  border-radius: 3px;
  text-align: center;
  color: #757398;
  background-color: #7573984a;
}

.ta {
  padding: 5px;
  border-radius: 3px;
  text-align: center;
  color: #ff6d6d;
  background-color: #f9c7c7;
}
.layer_area h3{
  padding-left: 7px;
}





/* Responsive Code */
@media screen and (max-width: 768px) {
  .baneer1{
    height: auto ;
  }
  .image-container {
    position: relative;
    width: 50%;
  }
  .image-text {
    padding: 6px;
    bottom: 1px;
}
.main_image{
  width: 100% !important;
}
.baneer2 {
  height: 90px;
  width: 166px;
}
.image-text1{
  bottom: 5px;
}
.video{
  
  height: 89px;
 
}
.banner3{
  height:105px; 
}

.banner4{
  height: 96px;
}
 .image-text2{
  padding: 2px !important;
  
  line-height: 0.5rem !important; 
 }
 .image-text3{
  padding: 2px;
 }


.form_box{
  display: none;
}
.navbar-brand>img {

  height: 53px !important;
  top: 3px !important;
}
.p_name {
  padding-left: 0px !important;
}
/* .building_icon{
width: 33%;
} */
.broucher_c.b{
  font-size: 12px;
  padding: 7px 10px !important;
}
.vnbtn {

  width: 100%;
  border-radius: 7px;
  font-size: 12px;
  padding: 5px 10px;
}
.pd0{
 padding-right: 0px; 
   padding-left: 0px;
}
.container1 {
  width: 914px;
  margin: 0 auto;
  max-width: 100%;
  padding-right: 16px;
  padding-left: 16px;
}
/* .alltitles{
  text-align: center;
} */
.cdate {
  display:none;
}
.centre{
  text-align: center;
}
.notbtn{
  border-color: #15315e;
 
}
.bhkbtn
{
  margin: 4px;
  width: 165px !important;
}
.slider-item {

  width: 100%;
}
.floor_b{
  padding-left: 0px;
}
.floor_b1{
  padding-right: 21px;
    padding-left: 7px;
}
.tab_btn{
 
  width: 47% !important;
    padding: 8px !important;
    margin: 4px !important;
    height: 55px !important;
    
}

.revGallery-anchor {
  margin: 11px !important;
  width: 41% !important;
}
.pdbhk{
  padding: 5px !important;
}
.bthb{
  width: 100%!important;
  margin: 5px !important;
}
.imgbanners{
    padding-left: 0px;
   padding-right: 0px;
}
.slider-container {

  left: 5px !important;
}

.port_img {
 

  text-align: center;
  border: 1px solid #f1f3f4;
    padding:10px;
    margin:5px;
  
}


}






