@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap");

:root {
  --primary-color: #001c4b;
  --third-color: #e4c193;
  --secondary-color: #207751;
  --corp-color: #758544;
  --secondary-colorcorp: #cbcf44;
  --primary-color-gradient: linear-gradient(45deg, #b21e99, #850c70);
  --golden-gradient: linear-gradient(45deg, #ae8625, #f7ef8a 30%, #d2ac47 70%, #edc967 90%);
}

body {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  font-size: 14px;
  background-color: var(--primary-color);
  /* background: linear-gradient(45deg,#2b2f16,#171b05); */
}
ul {
  padding-left: 0;
  margin-bottom: 0;
}

a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}
video{width: 100%;}
/*header*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  transition: all 300ms ease-in-out;
}

.header .mainHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
	padding: 5px 0;
	width: 160px;
	transition: all 300ms ease-in-out;
}

.logo-nbt {
  width: 300px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 300ms ease-in-out;
}

.logo-nbt img {
  width: calc(60% - 10px);
  flex-grow: 1;
}

.logo-nbt img:last-child {
  width: 40%;
}

.header .mainHeader .navi {
}

.header .mainHeader .navi ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header .mainHeader .navi ul li.enqBtn {
  position: relative;
  z-index: 1;
}

.header .mainHeader .navi ul li a {
  font-weight: 500;
  font-size: 13px;
  padding-left: 0;
  padding-right: 20px;
  background-color: #fff;
  color: black;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
}

.header .mainHeader .navi ul li.enqBtn a i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: #fff;
  transform: scale(1.1);
  border-right: 1px solid rgb(255 255 255 / 15%);
}

.header .mainHeader .navi ul li.enqBtn a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.filter-white {
  filter: brightness(50);
}

.header.fixed {
	padding: 5px 0;
  background: var(--primary-color);
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.header.fixed .logo {
  width: 100px;
}

.header.fixed .logo-nbt {
	width: 200px;
}
/*header*/

.banner {
  padding:4rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}


.mahotsav-logo img {
  margin: 0 auto;
}

.first-logo-star
{
	margin-bottom:50px;
}
.nbt-logo
{
	width:200px;
}
.property-logo
{
	width:250px;
}
.first-logo-star img
{
	width:200px;
	margin:auto;
}
.bannerText {
  width: fit-content;
  margin: 2rem auto 0;
  padding: 1rem 2rem;
  background:#faf1c8;
  background: var(--golden-gradient);
  border-radius: 10px;
      display: flex;
    gap: 93px;
}

.bannerText li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  margin: 1rem 0;
  font-weight: 700;
    color: #000;
}

.bannerText li span {
  display: block;
  font-size: 120%;
  line-height: 1.2;
}

.bannerText li span small {
  display: block;
  font-size: 60%;
}

/*FORM*/
.overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(47, 47, 47, 0.95);
  z-index: 9999;
  display: none;
}
.header_form
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.formContainer { 
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    padding: inherit;
}

.form-logo img {
  width: 100px;
  margin: 0 auto 1rem;
}

.form-logo h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
}

.formContainer.formContainerShow {
  opacity: 1;
  top: 50%;
}

.formContainer .formClose {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #8c8c93;
  cursor: pointer;
  display: none;
}

.formContainer .formClose:hover {
  color: #9a0407;
}

.formContainer h5 {
  text-align: center;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  width: 100%;
  float: left;
  margin-bottom: 25px;
}

.fields {
    width: 47%;
    position: relative;
    z-index: 9;
    display: inline-block;
}

.pricing-wrapper .fields
{
    margin: 10px 0;
}
.fields ::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.fields input,
.fields textarea {
  height: 50px;
  width: 100%;
  border: 0;
  background: none;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid rgb(255 255 255 / 27%);
  padding: 10px 2px;
  outline: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.fields input:focus,
.fields textarea:focus {
  border-bottom-color: var(--secondary-color);
}

.fields input.send {
      background: var(--golden-gradient);
    color: #000;
  font-weight: 800;
  border-bottom: 0;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px;
  margin-top: 2rem;
}

.fields input.send:hover {
  background: #fff;
  color: var(--primary-color);
}

.formContainer > a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0 10px;
  font-size: 1rem;
  width: max-content;
  margin: 1rem auto 0;
  padding: 0.5rem 1.25rem;
  border-radius: 40px;
  border: 1px solid rgb(255 255 255 / 0%);
  transition: all 300ms ease-in-out;
}

.formContainer > a:hover {
  border-color: rgb(255 255 255 / 15%);
  background-color: rgb(255 255 255 / 15%);
}

.focus-red:focus {
  border-color: #ff7676 !important;
  color: #ff7676 !important;
}
.focus-red:focus::-webkit-input-placeholder {
  color: #ffffff;
}
.focus-red:focus::-moz-placeholder {
  color: #ffffff;
}
.focus-red:focus:-ms-input-placeholder {
  color: #ffffff;
}
.focus-red:focus:-moz-placeholder {
  color: #ffffff;
}
/*FORM*/

.points-wrapper {
  position: relative;
  z-index: 2;
}

.points-wrapper .points h5 {
  margin-bottom: 0;
  padding: 2rem;
  background: #faf1c8;
  background: var(--golden-gradient);
  text-align: center;
  color: #000;
  border-radius: 5px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.456);
}


/* Properties */
.pricingTable {
  height: 100%;
  margin-top: 30px;
  text-align: center;
  position: relative;
}
.pricingTable .pricing_heading {
  position: relative;
}
.pricingTable .pricing_heading:after {
  content: "";
  width: 36px;
  height: 100%;
  background: #1b5e40;
  position: absolute;
  top: -1px;
  right: -1px;
  z-index: 2;
  transform: skewY(45deg) translateY(19px);
  transition: all 0.4s ease 0s;
}
.pricingTable .pricing_heading .title,
.pricingTable .pricing_heading .main-heading .title-xl,
.main-heading .pricingTable .pricing_heading .title-xl {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  background: var(--secondary-color);
  padding: 15px 0 0;
  margin: 0 35px 0 0;
  transition: all 0.4s ease 0s;
}
.pricingTable .pricing_heading .value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  background: var(--secondary-color);
  padding: 1.5rem 0;
  margin: 0 35px 0 0;
  transition: all 0.4s ease 0s;
}
.pricingTable .pricing_heading .value i {
  font-size: 70%;
}
.pricingTable .pricing_heading .value .month {
  display: block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}
.pricingTable .content {
  border-left: 1px solid #f2f2f2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pricingTable .content:after {
  content: "";
  width: 36px;
  height: 100%;
  background: #f8f8f8;
  box-shadow: 9px 9px 20px #ddd;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transform: skewY(-45deg) translateY(-18px);
  transition: all 0.4s ease 0s;
}
.pricingTable .content ul {
  padding: 0;
  margin: 0 35px 0 0;
  list-style: none;
  background: #fff;
}
.pricingTable .content ul li {
  display: block;
  font-size: 15px;
  color: #333;
  line-height: 23px;
  padding: 1.25rem 0;
  border-bottom: 1px solid #f2f2f2;
}

.pricingTable .content ul li h5{
	margin-bottom: 0;
}

.pricingTable .content ul li h5 i{
	font-size: 80%;
	color: var(--primary-color);;
}

.pricingTable .content .readmore {
	width: auto;
  padding-bottom: 20px;
  margin-right: 35px;
  border-bottom: 1px solid #f2f2f2;
}
.pricingTable:hover .value {
  color: #fff;
  background: #850c70;
}
.pricingTable:hover .title,
.pricingTable:hover .main-heading .title-xl,
.main-heading .pricingTable:hover .title-xl {
  color: #fff;
  background: #850c70;
}
.pricingTable:hover .pricing_heading:after {
  background: #850c70;
}
/* hm projects */
.projectLocationBtn-container{
  margin-bottom: 3rem;
  margin-top: 1rem;
}

.projectLocationBtn-container li,
.projectBtn-container li{
  margin: 0 5px;
}

.projectBtn-container li button{
  font-family: "BentonBold", sans-serif;
  border: none;
  border-bottom: 1px solid transparent;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
  padding: 8px 25px;
  font-size: 13px;
  background-color: transparent;
  color: #5b5b5b;
  outline: none;
}

.projectBtn-container li button:hover{
  border-color: var(--corp-color);
}

.projectBtn-container li button.active,
.projectBtn-container li button.active1{
  border-bottom-color: var(--body-color);
}

.projectLocationBtn-container li button{
  font-family: "BentonBold", sans-serif;
  border: 1px solid rgba(0 0 0 / 10%);
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 300ms ease-in-out;
}

.projectLocationBtn-container li select,
.projectLocationBtn-container li button{
  padding: 5px 23px 4px;
  font-size: 12px;
  letter-spacing: 1px;
  background-color: #fff;
  color: #5b5b5b;
}

.projectLocationBtn-container li button:hover,
.projectLocationBtn-container li button.active,
.projectLocationBtn-container li select:focus{
  background-color: var(--secondary-colorcorp);
  color: var(--body-color);
}

.projectLocationBtn-container li select{
  border-radius: 40px;
  text-transform: uppercase;
  font-weight: 700;
}

.hm-project-slide{
  width: 90%;
}

.hm-project-slide .innerbx{
  padding: 0 7%;
  position: relative;
}

.project-detail-box{
  width: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.project-detail-box a{
  display: flex;
  justify-content: space-between;
  padding: 20px 10%;
  color: #fff;
  background-color: var(--corp-color);
  transition: all 300ms ease-in-out;
}

.hm-project-type{
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 3px;
}

.hm-project-name{
  text-transform: uppercase;
  font-weight: 700;
  transition: all 300ms ease-in-out;
  letter-spacing: 1px;
}
.project-detail-box a:hover .hm-project-name{
  color: var(--secondary-colorcorp);
}

.hm-project-location{
  color: var(--secondary-colorcorp);
  margin-bottom: 0;
  font-size: 14px;
}

.plus{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-colorcorp);
  color: var(--corp-color);
}

.hm-project-config{
  position: absolute;
  right: calc(7% + 11px);
  top: 10px;
  box-shadow: 0 1rem 3rem rgba(0 0 0 / 10%);
  z-index: 9;
  padding: 10px 0;
  background-color: rgb(255 255 255 / 70%);
  backdrop-filter: brightness(3) blur(3px);
}

.hm-project-config ul{
  display: flex;
}

.hm-project-config ul li{
  display: flex;
  align-items: center;
  margin: 10px 0;
  padding: 0 20px;
  border-right: 1px solid rgba(0 0 0 / 10%);
}

.hm-project-config ul li:last-child{
  border-right: none;
}

.hm-project-config ul li .img-fluid{
  max-width: 30px;
  margin-right: 10px;
}

.hm-project-config ul li h6{
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.hm-project-config ul li h6 span{
  font-weight: 600;
  font-size: 130%;
  color: var(--corp-color);
}
.hm-project-config ul li h6 small
{
	color:#000000;
}

.viewall{
  margin-right: 10%;
  margin-left: auto;
  max-width: max-content;
}

.viewall a{
  display: flex;
  align-items: center;
  max-width: max-content;
  color: var(--corp-color);
  font-size: 18px;
}

.viewall a img{
  width: 50px;
}

.viewall a:hover{
  color: var(--secondary-colorcorp);
}
 .project-slider .swiper-button-prev, .project-slider .swiper-rtl .swiper-button-next{left: 10%;}
  .project-slider .swiper-button-next, .project-slider .swiper-rtl .swiper-button-prev{right: 10%;}
  .viewall a{font-size: 20px;}
  .swiper-pagination-bullet {
  background-color: #fff;
}
.swiper-pagination-bullet-active {
  background-color: var(--vibrant-green);
  transform: scale(1.5);
}

.swiper-button-next, .swiper-button-prev{
    width: 40px;
    height: 40px;
    margin-top: -20px;
    transition: all 300ms ease-in-out;
    overflow: hidden;
}

.swiper-button-next:after, .swiper-button-prev:after{
  background: center no-repeat;
  background-size: 40px;
  font-family: initial;
  text-indent: 9999999px;
}

.swiper-button-prev:after{
  background-image: url(../images/arrow-left.png);
}

.swiper-button-next:after{
  background-image: url(../images/arrow-right.png);
}

.project-slider .swiper-button-next, .project-slider  .swiper-rtl .swiper-button-prev{
  right: 10%;
}

.project-slider .swiper-button-prev, .project-slider  .swiper-rtl .swiper-button-next{
  left: 10%;
}

.swiper-controls{
  position: relative;
  margin-top: 10px;
  margin-right: -10px;
  margin-left: auto;
  height: 40px;
  width: 100px;
}

.swiper-pagination{
  width: max-content;
  top: 39%;
  left: auto;
  bottom: auto;
  right: 7%;
  z-index: 2;
  color: var(--primary-color);
  font-size: 12px;
}

.swiper-pagination{right: 11%;}
.swiper-wrapper{transition-timing-function:linear !important; }



.enquiryBtn {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    left: 0;
    z-index: 99999 !important;
    background: #fff !important;
    text-align: center;
    border-top: 1px solid #000;
}
.enquiryBtn a {
    width: 50%;
    height: auto;
    line-height: normal;
    border-radius: 0;
    animation: none;
    box-shadow: none;
    border: none;
    margin: 0;
    padding: 10px 0;
    font-size: 18px;
}
#mobPhone, #mobEnquiry  {
    background:var(--golden-gradient);
    color: #000;
}
.enquiryBtn a.whatsCall {
  color: var(--secondary-color);
}
.modal-content{ background:var(--primary-color);}
.modal-dialog {max-width: 700px;}
.modal-content .modal-header {padding: 0;border: none;}
.modal-content button.close {position: absolute;top: 0;right: 0;padding: 0;margin: 0;width: 40px;height: 40px;z-index: 1;text-shadow: none;color: #ffffff;opacity: 1;}
.btnpopup{    background: #42453a !important; padding: 4px 11px; color: #fff !important;border: none;}
.modal-header .close {color: #775d00;}
.modal-header{ background:none; border:none;}
.modal-body h2, .modal-body h6{color: #ffffff; font-size:14px;}

.fixedform{
	position:absolute;
    right: 20px;
    top: 50px;
    width: 300px;
	padding:20px;
	}
.fixedform .formContainer
{
    border: 1px solid #fff;
}
.fixedform .fields {
    width: 100%;
}
.fixedform .formContainer > a {
    margin: 10px auto 0;
}
.fixedform .fields input.send {
    margin-top: 1rem;
}
select {
    word-wrap: normal;
    width: 100%;
    margin: 11px 0;
    padding: 5px;
    background:#001c4b;
    color: #fff;
    border: none;
    border-bottom: 1px solid rgb(255 255 255 / 27%);
    padding: 10px 2px;
    outline: none;

}
@media only screen and (max-width: 990px) {
  .pricingTable {
    margin-bottom: 35px;
  }
}
/* Properties */
.dev_logos {
  margin-bottom: 2rem;
}
.dev_logos .dev_logo{
	/* margin: 15px 0; */
  width: 20%;
  padding: 15px;
}

.dev_logos .dev_logo .img-fluid{
	height: 140px;
	position: relative;
	background-color: #fff;
	transition: all 300ms ease-in-out;
}
.dev_logos .dev_logo .img-fluid:hover{
	box-shadow: 0 1rem 3rem rgb(0 0 0 / 15%);
	transform: translateY(-5px);
}

.dev_logos .dev_logo .img-fluid img{
	width: auto;
	max-width: 80%;
	max-height: 80%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	padding: 10px;
}

.position-relative {
  z-index: 1;
}

p {
  font-weight: 400;
}

.padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.heading {
  display: table;
  position: relative;
  margin-bottom: 40px;
  z-index: 1;
}

.heading h6 {
  color: var(--secondary-color);
  text-transform: uppercase;
  position: relative;
  padding-left: 70px;
  margin-bottom: 0px;
}

.heading h6::before {
  content: "";
  position: absolute;
  left: 0px;
  top: calc(50% - 1px);
  width: 60px;
  height: 1px;
  background: var(--secondary-color);
  z-index: -1;
}

.heading h6.text-white::before {
  background: #fff;
}

.heading h2,
.heading h4 {
      display: table;
    color: #000;
    background: #f4cd58;
    padding: 5px 15px;
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: -15px;
}

.heading h2.text-white,
.heading h4.text-white {
  background: -webkit-linear-gradient(
    90deg,
    var(--secondary-color) 0%,
    #fcedd5 80%
  );
  background: linear-gradient(90deg, var(--secondary-color) 0%, #fcedd5 80%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}



.heading h4 {
  font: 400 2rem "DM Serif Display", serif;
}

.bg-image {
  background: center no-repeat fixed;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.bg-image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: -1;
}

.text-serif {
  font-family: "DM Serif Display", serif;
}

.bg-secondary {
  background: var(--secondary-color) !important;
}

.readmore {
  width: 100%;
  display: flex;
  margin-top: 30px;
}

.readmore a,
.readmore button {
  display: table;
  padding: 13px 2rem;
  background-color: #fff;
  color:#000;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
}

.readmore a:hover {
  background: var(--secondary-color);
  color: #fff;
}
.readmore button {
  outline: none;
}

.readmore.dark button,
.readmore.dark a {
  background-color: var(--primary-color);
  color: #fff;
}

.readmore.dark button:hover,
.readmore.dark a:hover {
  background-color: var(--secondary-color);
}
.readmorebooknow {
  background-color: var(--secondary-color) !important;
  color: #fff !important;
  margin-left: 10px;
}

/*Footer*/
.footer-area {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: url(../images/footer_background.jpg) center no-repeat;
  background-size: cover;
}

.footer-area .container {
}

.footer-area .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-area .bottom ul {
  display: flex;
}

.footer-area .bottom li {
  font-size: 12px;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0 10px;
  border-right: 1px solid #fff;
  line-height: 1;
}

.footer-area .bottom li:first-child {
  padding-left: 0;
}

.footer-area .bottom li:last-child {
  border-right: 0;
}

.footer-area .bottom li img {
  width: 20px;
}

.button-top {
  background: rgba(0, 0, 0, 0.32);
  position: fixed;
  cursor: pointer;
  right: 10px;
  bottom: 10px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  z-index: 99;
}

.button-top:hover {
  background: #c39f75;
}
/*Footer*/

/*transformation Animation*/

.leftTranslate {
  -webkit-transform: translate(-200px, 0);
  transform: translate(-200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.rightTranslate {
  -webkit-transform: translate(200px, 0);
  transform: translate(200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.topTranslate {
  -webkit-transform: translate(0, -200px);
  transform: translate(0, -200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.bottomTranslate {
  -webkit-transform: translate(0, 200px);
  transform: translate(0, 200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.doneTranslate {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
/*transformation Animation*/

.list li {
  margin-bottom: 10px;
}

.list ul,
.list ol {
  padding-left: 20px;
}

.mob-block {
  display: none !important;
}
.mobheader {
  display: none;
}
.top-developers
{
	border: 2px solid #b79942;
    margin: 8px;
}
/*responsive*/
@media (max-width: 1366px) {
	.first-logo-star {
		margin-bottom: 40px;
	}
	.bannerText li{ margin:0;}
	.points-wrapper .points h5 {
		padding: 1rem;
	}
	
}
@media (max-width:1200px) {
	.mobile-left
	{
		justify-content:flex-start !important;
		
	}
}
@media (min-width: 992px) {
  .hm-project-slide{width: 80%;}
  .videoBox{width: 70%; margin: 20px auto 0;}
}

@media (max-width: 900px) {
	.bannerText {
		flex-wrap: wrap;
		gap:0;
	}
	.bannerText li {
		margin: 5px 0;
		width: 46%;
	}
}

@media (max-width: 1200px) {
}

@media (max-width:900px) {
	.mobile-left{ justify-content:center !important;}
	.fixedform{ display:none;}
}

@media (min-height: 1280px) {
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  .fields {
    width: 49%;
    float: left;
    margin: 5px 1px 20px;
    position: relative;
    z-index: 9;
  }
  .project-detail-box a{padding: 12px 20px;}
  .plus{width: 30px; height: 30px; font-size: 20px;}
  .hm-project-type{letter-spacing: 2px;}
  .hm-project-slide .innerbx{padding: 0 3%;}
  .hm-project-slide .innerbx > .img-fluid > img{height: 50vw; object-fit: cover;}
}

@media (max-width: 767px) {
  .follow {
    text-align: center;
  }
  .follow ul {
    justify-content: center;
  }
  .footer-logo {
    margin: 20px 0;
  }
  .footer-tag {
    text-align: center;
  }
}

@media (max-width: 650px) {
  .location-advantages ul li {
    width: 49%;
  }
}
@media (max-width: 576px) {
  .mob-block {
    display: block !important;
  }
  .mob-none {
    display: none;
  }
}

@media (max-width: 540px) {
  .project-detail-box{width: 100%; position: static;}
  .hm-project-config{right: calc(3% + 11px);}
}

@media (max-width: 480px) {
  .heading h2 {
    font-size:15px;
  }
  .heading h4 {
    font-size: 1rem;
  }
  .heading {
    margin-bottom: 12px;
  }
  .footer-area .bottom ul {
    display: inline-block;
  }
  .footer-area .bottom li {
    width: 100%;
    border-right: none;
  }
  .footer-area .bottom li {
    margin-bottom: 8px;
  }
  .mobheader {
    background: #292929;
    position: fixed;
    text-align: center;
    bottom: 0;
    z-index: 999;
    width: 100%;
  }
  .mobheader .navi ul {
    display: flex;
    align-content: center;
  }

  .mobheader .navi ul li {
    padding: 10px 0;
    width: 50%;
  }
  .mobheader .navi ul li:last-child {
    background: var(--secondary-color);
  }
  .header.fixed .navi ul li a:last-child {
    border-right: none;
  }

  .mobheader .navi ul li a {
    color: rgb(255 255 255 / 65%);
    font-weight: 500;
    font-size: 12px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in-out;
    border-right: 1px solid rgba(255, 255, 255, 0.38);
  }
  .mobheader {
    display: block;
  }
  .mobheader .navi ul li a i {
    margin-right: 5px;
  }
  .mobheader .navi ul li:last-child a {
    border-right: none;
  }
  .header .mainHeader .navi ul {
    display: inline-block;
    align-content: center;
    width: 100%;
  }
  #banner {
    height: 60vh;
  }

  .fields {
    width: 100%;
    float: left;
    margin: 5px 0px 11px;
    position: relative;
    z-index: 9;
  }
  .mahotsav1, .mahotsav{ width:50% !important;}
  .nbt-logo, .property-logo{ width:100% !important;}
  .points{ margin:5px 0;}
  .heading {
    margin-top: -15px;
  }
  .dev_logos .dev_logo .img-fluid {
    width: 100%;
  }
  .form-logo h2 {
    font-size: 15px;
  }
  .dev_logos .dev_logo{
    width: 50%;
	}
	.dev_logos .dev_logo .img-fluid {
		height: 88px;
	}
	.bannerText li {
    margin: 12px 0;
    width: 100%;
}
}

@media (max-width: 425px) {
  .logo {
    width: 90px;
  }
  .padding {
    padding: 40px 0;
  }
  p {
    margin-bottom: 10px;
  }
  .heading {
    text-align: center;
    width: 100%;
  }
  .heading h6 {
    text-align: center;
  }
  .heading h6::before {
    left: 26%;
  }
  .heading h2 {
    margin: auto;
  }
  .scrollDown {
    display: none;
  }
  .hm-project-config ul li .img-fluid{max-width: 26px;}
  .hm-project-config ul li h6 span {
    font-size: 100%;
  }
  .hm-project-slide .innerbx > .img-fluid > img{height: 100vw;}
  .hm-project-name{font-size: 1.5rem;}
  .project-slider .swiper-button-prev, .project-slider .swiper-rtl .swiper-button-next{left: 2%;}
  .project-slider .swiper-button-next, .project-slider .swiper-rtl .swiper-button-prev{right: 2%;}
  .swiper-pagination{right: 4%; background-color: rgb(255 255 255 / 77%); padding: 0 7px; border-radius: 10px;}
}

@media (max-width: 390px) {
  .hm-project-slide .innerbx > .img-fluid > img {height: 82vw;}
  .project-detail-box a{padding: 8px 15px;}
  .hm-project-name{font-size: 20px; margin-bottom: 0;}
}

@media (max-width: 375px) {
  .heading h6::before {
    left: 21%;
  }
}

@media (max-width: 320px) {
  .hm-project-slide{width: 100%;}
  .hm-project-config ul li{margin: 0;}
  .hm-project-config ul li h6 span{font-size: 100%;}
}
