@import url("https://fonts.googleapis.com/css2?family=Source+Serif+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --brown: #bc986b;
  --yellow: #eea54c;
  --lightgray: #f5f5f5;
  --darkgray: #101010;
  --serif: "Source Serif Pro", serif;
}

body {
  color: #222222;
  font: 400 15px/1.4 "Montserrat", sans-serif;
  overflow-x: hidden;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

a,
a:hover {
  text-decoration: none;
}

.padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

img {
  width: 100%;
  display: block;
}

.wrapper {
  width: 100%;
  float: left;
  background: #fff;
  position: relative;
  z-index: 2;
}

/*header*/
.header {
  width: 100%;
  float: left;
  padding: 5px 20px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 9999;
  transition: all 300ms ease-in-out;
}

.logo {
  width: 130px;
  position: relative;
  min-height: 1px;
  transition: all 300ms ease-in-out;
  overflow: hidden;
}

.logo a img {
  height: 100%;
  transition: all 300ms ease-in-out;
}

.menuBtn {
  width: 38px;
  height: 48px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
}

.menuBtn span {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  margin: 3px 0;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn span::before,
.menuBtn span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% - 3px);
  height: 100%;
  background: #fff;
  transform-origin: center center;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform: scaleX(1);
}

.menuBtn span::after {
  left: auto;
  right: 0;
}

.menuBtn.closeMenuBtn span#menuLine1 {
  -webkit-transform: rotate(45deg) translate(5px, 6px);
  transform: rotate(45deg) translate(5px, 6px);
}

.menuBtn.closeMenuBtn span#menuLine2 {
  right: 100px;
}

.menuBtn.closeMenuBtn span#menuLine3 {
  -webkit-transform: rotate(-45deg) translate(5px, -6px);
  transform: rotate(-45deg) translate(5px, -6px);
}

.menuBtn.closeMenuBtn span#menuLine1::after,
.menuBtn.closeMenuBtn span#menuLine3::before {
  transform: scaleX(1);
}

.mbMenuContainer {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /*background:url(../images/banner.jpg) center no-repeat rgb(0 0 0 / 55%);
	  background-size:cover;*/
  z-index: 999;
  display: none;
}

.mbMenuContainer::before,
.mbMenuContainer::after {
  content: "";
  z-index: -1;
  position: absolute;
  height: 100vh;
  width: calc(50vw + 0px);
  background: rgb(0 0 0 / 82%);
  top: 0;
  opacity: 1;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transition: opacity 0ms ease 500ms,
    -webkit-transform 500ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: opacity 0ms ease 500ms,
    transform 500ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: opacity 0ms ease 500ms,
    transform 500ms cubic-bezier(0.42, 0, 0.58, 1),
    -webkit-transform 500ms cubic-bezier(0.42, 0, 0.58, 1);
  will-change: transform;
}

.mbMenuContainer::before {
  left: 0;
}

.mbMenuContainer::after {
  left: 50%;
}

.mbMenuContainer.active::before,
.mbMenuContainer.active::after {
  transition: -webkit-transform 300ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 300ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 300ms cubic-bezier(0.19, 1, 0.22, 1),
    -webkit-transform 300ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  backdrop-filter: blur(4px) brightness(1.3);
}

.mbMenuContainer .mbMenu {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 10px 0;
  margin-right: -1px;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.5s linear;
}

.mbMenuContainer.active .mbMenu {
  opacity: 1;
}

.mbMenuContainer .mbMenu .container {
  margin-top: 3rem;
}

.mbMenuContainer .mbMenu div[class^="col"] {
  display: flex;
  justify-content: center;
}

.mbMenuContainer .mbMenu ul li {
  padding: 10px 0;
  display: table;
}

.mbMenuContainer .mbMenu ul li a {
  display: block;
  color: #fff;
  transition: all 300ms ease-in-out;
}

.mbMenuContainer .mbMenu ul li:hover>a,
.mbMenuContainer .mbMenu ul li a:focus {
  color: var(--brown);
}

.mbMenuContainer .mbMenu .bigMenuList ul li a {
  font: 400 3rem "Source Serif Pro", serif;
}

.mbMenuContainer .mbMenu .smallMenuList ul li a {
  font-size: 1.8rem;
  line-height: 1;
}

.mbMenuContainer .mbMenu .socialMediaLink {
  margin-top: 30px;
}

.mbMenuContainer .mbMenu .socialMediaLink ul {
  display: flex;
  justify-content: center;
}

.mbMenuContainer .mbMenu .socialMediaLink ul li {
  padding: 0 10px;
}

.mbMenuContainer .mbMenu .socialMediaLink ul li a {
  padding: 10px;
  font-size: 1.2rem;
}

.dropdown {
  display: none;
  margin: 10px;
}

.dropdown li a {
  font-size: 30px !important;
}

.hasChild img {
  width: 20px;
  display: inline-block;
}

.hasChild1 img {
  transform: rotate(180deg);
  transition: all ease-in-out 500ms;
}

.header.fixed {
  background: rgb(0 0 0 / 45%);
  backdrop-filter: blur(2px);
  padding: 0 3vw;
}

.imt-residences .header {
  background: rgb(0 0 0 / 45%);

}

.header.fixed .logo {
  width: 80px;
}

/*header*/

.banner {
  height: 100vh;
  position: relative;
  background: #000;
  z-index: 1;
}

.banner .banner-video {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: 1;
}

.banner .carousel-inner,
.banner .carousel-inner .carousel-item {
  position: relative;
  height: 100%;
}

.banner .carousel-inner .carousel-item {
  background: center no-repeat;
  background-size: cover;
  z-index: 1;
}

.banner .carousel-inner .carousel-item picture {
  height: 100%;
  z-index: -99;
  width: 100%;
  position: absolute;
}

.banner .carousel-inner .carousel-item picture img {
  height: 100vh;
}

.banner .carousel-inner .carousel-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.carousel-item section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 1;
}

.banner .carousel-item section {
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translate(-50%);
}

.bannerText {
  width: 50%;
  text-align: center;
  z-index: 9;
  color: #fff;
}

.bannerText p {
  font: 700 14px "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
  background: var(--yellow);
  padding: 2px;
  display: inline-table;
  color: #000;
}

.bannerText p a {
  color: #000;
  display: block;
  padding: 5px 10px;
}

.bannerText h1,
.bannerText h2 {
  font: 40px/1.1 var(--serif);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.insidebanner {
  height: 70vh;
}
.carousel-control-next.banner-next,
.carousel-control-prev.banner-prev {
  top: 50%;
  bottom: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: 1px solid rgb(255 255 255 / 30%);
  opacity: 1;
  z-index: 9;
}

.carousel-control-next.banner-next {
  right: 20px;
}

.carousel-control-prev.banner-prev {
  left: 20px;
}

.carousel-control-next.banner-next .carousel-control-next-icon,
.carousel-control-prev.banner-prev .carousel-control-prev-icon {
  /* background-size: 60%; */
}

.carousel-control-next-icon {
  background-image: url(../images/arrow-right.png);
}

.carousel-control-prev-icon {
  background-image: url(../images/arrow-left.png);
}

.carousel-control-next.banner-next:hover,
.carousel-control-prev.banner-prev:hover {
  border-color: var(--brown);
}

.bannerQuery,
.bannerSocial {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: absolute;
  bottom: 20px;
  z-index: 9;
}

.bannerQuery {
  display: none;
}

.bannerSocial {
  right: 20px;
}

.bannerQuery a,
.bannerSocial a {
  font-size: 16px;
  display: block;
  padding: 5px;
  color: #fff;
}

.bannerSocial a i.fa-facebook-f {
  background-color: #193c9b;
}

.bannerSocial a i.fa-instagram {
  background: linear-gradient(45deg,
      #405de6,
      #5851db,
      #833ab4,
      #c13584,
      #e1306c,
      #fd1d1d);
}

.bannerSocial a i.fa-youtube {
  background-color: #d6020d;
}

.bannerSocial a:hover i {
  background-color: #bc986b;
}

.bannerQuery {
  left: 20px;
}

.chatBtn a i,
.bannerSocial a i,
.bannerQuery a i {
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: all 300ms ease-in-out;
}

.chatBtn a i.fa-whatsapp,
.bannerQuery a i.fa-whatsapp {
  background-color: green;
}

.bannerQuery a i.fa-envelope {
  background-color: var(--brown);
}

.chatBtn a i::after,
.bannerQuery a i::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  transform: scale(1.3);
  z-index: -1;
}

.chatBtn a i:hover:after,
.bannerQuery a i:hover::after {
  animation: breath 0.5s alternate infinite cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

@keyframes breath {
  0% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1.8);
  }
}

.chatBtn a i.fa-whatsapp::after,
.bannerQuery a i.fa-whatsapp::after {
  background-color: rgb(88 255 88 / 40%);
}

.bannerQuery a i.fa-envelope::after {
  background-color: rgb(255 227 191 / 48%);
}

.scrollDown {
  position: absolute;
  height: 100px;
  left: 50%;
  bottom: 80px;
  width: 10px;
  margin-left: -5px;
  cursor: pointer;
  z-index: 9;
  overflow: hidden;
}

.scrollDown::before,
.scrollDown::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  top: 0;
}

.scrollDown::before {
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}

.scrollDown::after {
  background: #fff;
  width: 3px;
  animation: scroll 2s infinite;
  height: 20px;
}

@keyframes scroll {
  100% {
    top: 100%;
    height: 100%;
  }
}

/* modal form */
.modal-backdrop.show {
  opacity: 1;
  background: rgba(51 51 51 / 80%);
  backdrop-filter: blur(4px);
}

.modal-content {
  background: #bc986b;
  box-shadow: 0 8px 32px 0 rgba(0 0 0 / 20%);
  border-radius: 10px;
}

.modal-header {
  border-bottom-color: rgb(0 0 0 / 10%);
}

.modal-footer {
  border-top-color: rgb(0 0 0 / 10%);
}

button.close {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--gold);
  color: #fff;
  opacity: 1;
  text-shadow: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  background-color: rgb(141, 0, 0);
  color: #fff;
  padding: 0;
}

.modal-body {
  padding: 25px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  margin-bottom: 0;
}

.form-control {
  font-size: 14px;
  padding: 12px 0;
  height: auto;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.40);
  color: #fff;
  border-radius: 0;
  transition: all 300ms ease;
}

.form-control:focus {
  background-color: transparent;
  border-bottom-color: var(--gold);
  box-shadow: none;
  color: #fff;
}

.form-control::placeholder {
  color: #fff;
}

textarea.form-control {
  resize: none;
}

.enq-form .form-control {
  border-bottom: 1px solid rgb(24 24 24 / 40%);
  color: #000;
}

.enq-form .form-control::placeholder {
  color: #000;
}

.enq-form .form-check {
  background: #bc986b;
  color: #fff;
  padding: 7px;
}

select.form-control option {
  color: var(--darkgray);
  background: #ffd095;
}

.contact-con select.form-control option {
  text-align: center;
}

.modal-body label {
  color: var(--gray);
}

.modal-body .form-control {
  border-bottom-color: rgba(0 0 0 / 20%);
  color: var(--gray);
}

.modal-body .form-control:focus {
  border-bottom-color: rgba(0 0 0 / 20%);
  border-bottom-color: var(--gold);
}

.object-fit-cover {
  object-fit: cover;
}

.enq-form .btn-gold {
  BACKGROUND: var(--brown);
  TEXT-TRANSFORM: UPPERCASE;
  font-weight: bold;
  color: #fff;
}

.enq-form .btn-gold:hover {
  BACKGROUND: #000;
}

.dispalynone {
  display: none;
}

/* modal form */

/* Fixed form */
.fixed-form {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 300px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.20);
  z-index: 1000;
  transition: all 300ms ease-in-out;
  background: #bc986b;
}

.fixed-form .form-group {
  margin: 5px 0;
  flex-basis: auto;
}

.fixed-form .formFooter {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fixed-form .formFooter button {
  text-align: center;
  background: #3f301f;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  transition: all 300ms ease-in-out;
  outline: none;
}

.fixed-form .formFooter button:hover {
  background: #fff;
  color: var(--darkgray);
}

.closeForm {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50% 0;
  background: var(--brown);
  color: #212121;
  cursor: pointer;
  -webkit-box-shadow: 1px 2px 6px #000;
  box-shadow: 1px 2px 6px #000;
}

.closeForm img {
  padding: 15px;
  width: 100%;
}

.enquirybtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  padding: 5px;
  background: var(--yellow);
  z-index: 9999;
  font-weight: bold;
  display: none;
  letter-spacing: 4px;
  font-size: 21px;
  text-transform: uppercase;
  animation-name: example;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  border-radius: 4px;
  color: #FFFFFF;
}

/*.fixed-form.fixed{
	padding: 2px 40px;
	background-color: var(--brown);
}

.fixed-form.fixed .form-group .form-control{
	padding: 5px 0px;
  color: var(--darkgray);
  border-bottom-color: rgb(0 0 0 / 30%);
}
.fixed-form.fixed .form-group .form-control::placeholder{
  color: var(--darkgray);
}
.fixed-form.fixed .form-group .form-control:focus{
  border-bottom-color: var(--darkgray);
}*/
/* Fixed form */

.text-serif {
  font-family: var(--serif);
}

.text-brown {
  color: var(--brown);
}

.text-darkgray {
  color: var(--darkgray) !important;
}

.bg-lightgray {
  background-color: var(--lightgray);
}

.bg-brown {
  background-color: var(--brown);
}

.heading {
  display: table;
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.heading h2,
.heading h4 {
  display: block;
  color: var(--brown);
}

.heading h2 {
  font: 300 3rem var(--serif);
}

.heading h4 {
  font: 400 2rem var(--serif);
}

.heading p {
  display: block;
  width: 70%;
  margin: 20px auto 0;
}

.heading .hasline {
  position: relative;
  padding-left: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
}

.heading .hasline:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0px;
  left: -20px;
  border-bottom: 1px solid #000;
  transition: all 500ms linear;
  transition-delay: 1s;
}

.heading .hasline.now:before {
  width: 60px;
}

.readmore {
  width: 100%;
  margin-top: 30px;
}

.readmore a,
.readmore button {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0px 15px;
  min-width: 130px;
  min-height: 40px;
  overflow: hidden;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 40px;
  border: 1px solid #000;
  text-transform: uppercase;
  transition: all ease-in-out 0.2s;
}

.readmore button {
  background: none;
}

.readmore a:hover,
.readmore button:hover {
  color: #fff;
  background: #000;
}

.readmore.white.solid a:hover,
.readmore.white.solid button:hover,
.readmore.white a,
.readmore.white button {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}

.readmore.white.solid a,
.readmore.white.solid button,
.readmore.white a:hover,
.readmore.white button:hover {
  color: #000;
  background: #fff;
}

.readmore.center a,
.readmore.center button {
  margin: 0 auto;
}

.readmore.solid a,
.readmore.solid button {
  background-color: #000;
  color: #fff;
}

.readmore.solid a:hover,
.readmore.solid button:hover {
  background-color: transparent;
  color: #000;
  border-color: #000;
}

/* overview */

.hm-overview {
  position: relative;
  overflow: hidden;
}

.hm-overview .absolute {
  position: absolute;
  font-size: 20vw;
  font-weight: 400;
  opacity: 0.03;
  top: 20%;
  left: 100%;
  transition: all 3s ease;
}

.hm-overview .absolute.scroll {
  left: 0;
}

.hm-overviewText section {
  padding-right: 5%;
}

.hm-overviewText section article h5 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
}

.hm-overviewImg .img-fluid {
  height: 450px;
  width: 315px;
  padding-right: 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hm-overviewImg .img-fluid img {
  height: 450px;
  width: 300px;
  object-fit: cover;
  transition: all 1s ease;
}

.hm-overviewImg .img-fluid span {
  position: absolute;
  font-size: 12px;
  letter-spacing: 15px;
  text-transform: uppercase;
  font-weight: 800;
  transform: rotate(90deg);
  transform-origin: left;
  left: calc(100% - 7px);
  bottom: 40%;
}

/* overview */

/*----------------------------------------Client counter---------------------------*/
.stats {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.stats li {
  flex-grow: 1;
}

.stats li section h2 {
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.stats li section h2 .counter {
  font-size: 3vw;
  color: var(--brown);
}

.stats li section h2 small {
  font-size: 70%;
}

.stats li section p {
  font-size: 12px;
  font-weight: 700;
  width: 100%;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*----------------------------------------Client counter end---------------------------*/

/* hm project */
.projectBox a {
  height: 450px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  overflow: hidden;
}

.projectBox a .project-img textarea,
.projectBox a .project-img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  transition: all 2s ease-in-out;
}

.projectBox a .project-img img {
  height: 100%;
  object-fit: cover;
}

.projectBox a:hover .project-img {
  transform: scale(1.2);
}

.projectBox a .project-img::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgb(0 0 0 / 20%);
  transition: all 300ms ease-in-out;
}

.projectBox a:hover .project-img::before {
  opacity: 0;
}

.projectBox a .project-img textarea {
  padding: 0;
  left: auto;
  z-index: 1;
  background: center / cover no-repeat;
  border: none;
  resize: none;
  border-radius: 0;
  outline: none;
  backdrop-filter: grayscale(1) brightness(1.2);
  pointer-events: none;
  width: 100%;
}

.projectBox a .project-img textarea:focus {
  box-shadow: none;
}

.projectBox a:hover .project-img textarea {
  width: 0%;
}

.projectBox a h4 {
  width: 100%;
  padding: 5px 10px;
  background-color: var(--brown);
  text-align: center;
  color: var(--darkgray);
  font: 400 20px var(--serif);
  text-transform: uppercase;
}

.projectBox a span {
  color: var(--darkgray);
  line-height: 1;
  font-weight: 700;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding-left: 10px;
  width: max-content;
  transition: all 300ms ease-in-out;
}

.projectBox a span i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brown);
  color: var(--darkgray);
  margin-left: 10px;
  transition: all 300ms ease-in-out;
}

.projectBox a span:hover {
  background-color: var(--brown);
}

.projectBox a span:hover i {
  background-color: var(--darkgray);
  color: var(--brown);
}

/* hm project */

/*why us*/
.whyUsContainer {
  display: flex;
  flex-wrap: wrap;
}

.whyUsBox {
  flex-grow: 1;
  width: calc(100% / 3);
  text-align: center;
  border: solid rgb(0 0 0 / 10%);
  border-width: 0 1px 1px 0;
}

.whyUsBox:nth-child(3n) {
  border-right-color: transparent;
}

.whyUsBox:nth-last-child(1),
.whyUsBox:nth-last-child(2),
.whyUsBox:nth-last-child(3) {
  border-bottom-color: transparent;
}

.whyUsBox section {
  width: 100%;
  padding: 10px;
}

.whyUsBox .imgBox {
  width: 60px;
  margin: 0 auto;
}

.whyUsBox section:hover .imgBox {}

.whyUsBox section .imgBox svg path,
.whyUsBox section .imgBox svg circle {
  fill: none;
  stroke: var(--brown);
  stroke-width: 1;
  stroke-miterlimit: 20;
  stroke-dasharray: 1400;
  stroke-dashoffset: 0;
}

.whyUsBox section:hover .imgBox svg path,
.whyUsBox section:hover .imgBox svg circle {
  fill: var(--brown);
  stroke: none;
  /*-webkit-animation:path 9s infinite;
	animation:path 9s infinite;*/
}

@-webkit-keyframes path {
  0% {
    stroke-dashoffset: 1400;
  }

  100% {
    stroke-dashoffset: 0;
    fill: var(--brown);
    stroke: none;
  }
}

@keyframes path {
  0% {
    stroke-dashoffset: 1400;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

.whyUsBox .whyUsText {
  width: 100%;
  padding: 10px;
}

.whyUsBox .whyUsText h3 {
  width: 100%;
  color: #191919;
  font-size: 14px;
  text-transform: uppercase;
}

/*why us*/

/* Testimonials */
.testimSlider .swiper-slide {
  height: auto;
}

.testimSlider .swiper-slide article {
  height: 100%;
  position: relative;
  text-align: center;
}

.testimSlider .swiper-slide article i {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown);
  color: var(--darkgray);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto -40px;
  position: relative;
  z-index: 1;
}

.testimSlider .swiper-slide article aside {
  height: 100%;
  padding: 60px 20px 20px;
  background: var(--lightgray);
}

.testimSlider .swiper-slide article aside .testimHead {
  margin-top: 20px;
}

.testimSlider .swiper-slide article aside h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brown);
}

.testimSlider .swiper-slide article aside h4 {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}

.testimSlider .swiper-slide article aside h4 span {
  display: block;
  font-size: 80%;
  font-weight: 500;
}

.testimSlider {
  padding-bottom: 60px;
}

.testimSlider .swiper-pagination {
  bottom: 0;
}

.swiper-pagination-bullet-active {
  background: var(--brown);
  transform: scale(1.5);
}

/* Testimonials */

/*Footer*/
.footer-area {
  background: #000;
  color: var(--brown);
  position: relative;
  z-index: 1;
}

.mainFooter {
  padding-top: 5rem;
}

.mainFooter a {
  color: #fff;
}

.mainFooter a:hover {
  color: var(--brown);
}

.mainFooter .footLinks h4 {
  letter-spacing: 1px;
  padding-bottom: 10px;
  font: 700 20px var(--serif);
}

.mainFooter .footLinks ul li {
  margin: 10px 0;
  display: table;
}

.mainFooter .footLinks>ul li {
  padding-left: 20px;
  position: relative;
}

.mainFooter .footLinks>ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  border-bottom: 2px solid;
}

.mainFooter .footLinks>ul li a {
  font-size: 14px;
  transition: all 300ms ease-in-out;
}

.mainFooter .footLinks .footAbout p {
  color: #fff;
}

.mainFooter .footLinks .social-links {
  margin-top: 20px;
}

.mainFooter .footLinks .social-links li {
  display: inline-block;
  margin-right: 10px;
  padding-left: 0;
}

.mainFooter .footLinks .social-links li:before {
  display: none;
}

.mainFooter .footLinks .social-links li a {
  display: block;
  font-size: 17px;
}

.mainFooter .footLinks .social-links li a i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: block;
  transition: all 300ms ease-in-out;
}

.footer-area .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 0;
}

.footer-area .bottom ul {
  display: flex;
}

.footer-area .bottom li {
  font-size: 13px;
  display: flex;
}

.footer-area .bottom p {
  display: flex;
  font-size: 12px;
  align-items: center;
  margin-bottom: 0;
}

.footer-area .bottom p img {
  width: 20px;
}

.button-top {
  background: rgb(0 0 0 / 60%);
  position: fixed;
  cursor: pointer;
  right: 30px;
  bottom: -60px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  z-index: 99;
  transition: all 300ms ease;
}

.button-top:hover {
  background: var(--brown);
}

/*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;
}

.scaleAnime {
  transform: scale(0);
  opacity: 0;
  transition: all 1000ms ease-in-out;
}

.doneScale {
  transform: translate(0) scale(1, 1) !important;
  opacity: 1;
}

/*transformation Animation*/

/* Inside page */
.insideBanner {
  height: 400px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.insideBanner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgb(0 0 0 / 60%);
  pointer-events: none;
}

.insideBanner img {
  height: 100%;
  object-fit: cover;
}

.breadcrumb {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  margin-bottom: 0;
  padding: 10px 20px;
  background-color: transparent;
  color: var(--brown);
  z-index: 1;
}

.breadcrumb-item.active {
  color: var(--brown);
}

.breadcrumb a {
  color: #fff;
}

.pagemenuContainer {
  border-bottom: 1px dashed var(--brown);
}

.pagemenu {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pageLogo {
  width: 280px;
}

.pagemenu ul {
  margin: 30px 0;
  gap: 10px;
}

.pagemenu ul li a {
  display: block;
  padding: 7px 15px;
  border-radius: 50px;
  color: var(--darkgray);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  transition: all 300ms ease-in-out;
}

.pagemenu ul li a:hover,
.pagemenu ul li a.active {
  background-color: var(--lightgray);
}

.pagemenu ul.fixed {
  position: fixed;
  top: 0;
  margin: 8px 0;
  gap: 1px;
  z-index: 10001;
}

.pagemenu ul.fixed li a {
  color: #fff;
}

.pagemenu ul.fixed li a:hover {
  color: var(--darkgray);
}

.pageTitle h1 {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  color: #838383;
  margin-bottom: 0;
}

.project-details {
  margin-bottom: 25px;
}

.project-details h2 {
  font-weight: 900;
  font-size: 3rem;
  color: var(--brown);
}

.project-details h2 a {
  color: var(--brown);
}

.project-detail-h2 {
  font-weight: 700 !important;
  font-size: 2.5rem !important;
  line-height: 1.2;
}

.project-details h4 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 3px;
}

.overviewText section {
  padding-right: 30px;
}

.overviewText section article {
  text-align: justify;
}

.overviewText section article p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.overviewImg img {
  height: 100%;
  object-fit: cover;
}

.playBtn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 0 10px rgb(255 227 191 / 48%), 0 2px 10px rgb(0 0 0 / 55%);
  border: none;
  color: var(--darkgray);
  z-index: 1;
  transition: all 300ms ease-in-out;
}

.playBtn:hover {
  background-color: var(--darkgray);
  color: #fff;
  box-shadow: 0 0 0 30px rgb(0 0 0 / 48%), 0 2px 10px rgb(0 0 0 / 55%);
}

/* Amenities */
.featBox {
  width: 20%;
  padding: 10px;
}

.featBox section {
  height: 100%;
  padding: 30px 20px;
  background-color: #fff;
  transition: all 300ms ease-in-out;
  text-align: center;
}

.featBox section:hover {
  background-color: var(--brown);
  box-shadow: 0 1rem 2rem rgb(0 0 0 / 7%);
}

.featBox section .img-fluid {
  width: 50px;
  margin: 0 auto 25px;
}

.featBox section:hover .img-fluid {
  filter: hue-rotate(210deg) brightness(0.8);
}

.featBox section p.text-uppercase {
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 8px;
}

.featBox section p {
  font-size: 15px;
  font-weight: 700;
}

/* Amenities */

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--brown);
  color: #fff;
}

.projecsslider .swiper-button-next,
.projecsslider .swiper-button-prev {
  background-color: #ffffff;
  color: var(--brown);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
}

/* Gallery */
.gal-slider .swiper-slide .galImg {
  height: 450px;
  position: relative;
  background: center / cover no-repeat;
  z-index: 1;
}

.gal-slider .swiper-slide .galImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.gal-slider .gal-caps {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  z-index: 9;
}

.gal-slider .swiper-slide .img-type {
  position: absolute;
  right: 10px;
  bottom: 0;
  font-size: 10px;
  color: #fff;
  z-index: 2;
  pointer-events: none;
}

/* Gallery */

/* Floor plans */
.planBx {
  padding: 5px;
}

.planBx a {
  display: block;
  padding: 10px;
  border: 1px solid rgb(0 0 0 / 10%);
}

.planBx a .planBase {
  margin-top: 20px;
  padding: 20px 10px;
  border-top: 1px solid rgb(0 0 0 / 10%);
  color: var(--darkgray);
  text-transform: uppercase;
}

.planBx a .planBase h4 {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 0;
}

.planBx a .planBase p {
  font-size: 13px;
}

.fpHead {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border-bottom: 1px solid #e4e4e4;
}

.fpHead li {
  flex-grow: 1;
}

.fpHead li span {
  display: block;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
}

.fpHead li span:hover {
  background: --brown;
}

.fpHead li span.fpBtn.active {
  color: #fff;
  background-color: var(--brown);
}

.fpContainer:not(#fpContainer1) {
  display: none;
}

.fpContainer .fbBox {
  margin: 15px 0;
}

.fpContainer .fbBox a {
  width: 100%;
  display: block;
  padding: 10px;
  border: 1px solid #E4E4E4;
  text-align: center;
  transition: all 300ms ease;
  color: var(--body-color);
  font-weight: 500;
}

.fpContainer .fbBox a:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.16);
  color: var(--corp-color);
}

.fpContainer .fbBox a .img-fluid img {
  height: 200px;
  object-fit: none;
}

.fpContainer .fbBox a span {
  display: block;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #E4E4E4;
}

/* Floor plans */

/* Downloads */
.downloadBox a {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: #fff;
  color: var(--darkgray);
  transition: all 300ms ease-in-out;
  padding: 15px;
}

.downloadBox a:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.24);
}

.downloadBox a .imgBox {
  max-width: 70px;
  height: auto;
  margin: 0 auto;
}

.construction-updates .downloadBox a .imgBox {
  max-width: 90%;
  height: 130px;
}

.construction-updates .downloadBox a .imgBox img {
  max-height: 130px;
}

.downloadBox a .imgBox svg {
  width: 100%;
  display: block;
}

.downloadBox a .imgBox svg path {
  fill: var(--brown);
}

.downloadBox a p {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 30px;
  text-transform: uppercase;
}

.downloadBox a span {
  font-weight: 700;
  border: 1px solid;
  padding: 5px 20px 7px;
  margin-top: 10px;
  transition: all 300ms ease-in-out;
  text-decoration: none;
}

.downloadBox a span:hover {
  color: #fff;
  background: var(--darkgray);
  border-color: var(--darkgray);
}

/* Downloads */

/* Location map */
.location-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-text section {
  padding: 40px;
  background: var(--darkgray);
  color: #fff;
}

.location-nearby {
  padding-right: 10px;
  height: 330px;
  overflow: auto;
}

.location-nearby li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.location-nearby li .img-fluid {
  max-width: 40px;
  margin-right: 10px;
  filter: contrast(0.5);
}

/* Scroll bar */
.scroller::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #000;
  border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
  background: var(--brown);
  border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: var(--yellow);
}

/* Scroll bar */
/* Location map */

/* Form Btn */
.formBtnContainer {
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.formText p {
  font-size: 16px;
  padding: 0 10%;
}

.formBtns {
  margin-top: 30px;
}

.formBtns li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  text-align: center;
}

.formBtns li .formBtn {
  padding: 10px;
  width: 200px;
  display: block;
  background: var(--brown);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 300ms;
}

.formBtns li .formBtn:hover {
  background: var(--darkgray);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.21);
}

/* Form Btn */
/* Inside page */


/*-----------alam-----*/
.contact-drop {
  background: #000;
}

.contact-drop option {
  background: #ddd;
  color: #000;
}

.careerFormRight {
  margin-top: 30px;
}

.careerFormRight .form-control {
  background: #f7f7f7;
  color: #000;
}

.form-group .form-control.btn {
  background: #bc986b;
  color: #fff;
  border-color: #bc986b;
  padding: 6px 30px;
  border-radius: 7px;
  text-transform: uppercase;
  cursor: pointer;
  width: 48%;
}

.plot-size {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.plot-size-box {
  width: 32%;
  margin-bottom: 15px;
  background: #f5efef;
  padding: 10px;
  box-shadow: 0 0 5px #a5a5a5;
}

.plot-size-icon {
  border-bottom: 1px solid #fff;
  padding: 10px;
  align-items: center;
  text-align: center;
}

.plot-size-icon:nth-last-child(1) {
  border-bottom: none;
}

.plot-size-icon-img {
  margin-right: 21px;
  margin: auto;
}

.plot-size-icon-img img {
  width: 40px;
  margin: auto;
  border: 1px solid #ccc;
  height: 40px;
  padding: 7px;
  border-radius: 50%;
}

.plot-size-icon-text span {
  text-transform: uppercase;
  margin: 10px 0;
  letter-spacing: 3px;
  display: inline-block;
  font-size: 12px;
}

.plot-size-icon-text p {
  margin-bottom: 0;
  font-size: 17px;
  text-transform: capitalize;
}

.contact-con {
  padding: 20px;
  box-shadow: 0 0 3px #e1e1e1;
}

.contact-con a {
  color: #000000;
}


.footer-enquiryBtn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  z-index: 9999;
  background: var(--brown);
  box-shadow: 0 0 10px rgb(0 0 0 / 30%);
  text-align: center;
}

.footer-enquiryBtn a {
  color: #000;
  text-align: center;
  display: block;
  padding: 5px 5px;
  border-right: 1px solid rgb(0 0 0 / 12%);
  width: 100%;
}

.loansyndication-main {
  border-right: 1px solid;
  border-color: #f7ddbc;
  display: block;
  height: 100%;
  width: 100%;
  margin: 5px;
  padding: 5px;

}

.loansyndication-con p {
  text-align: center;
  color: #000;
  min-height: 42px;
}

.loansyndication-img {
  width: 65px;
  margin: 0 auto 12px auto;
}

.border-none {
  border-right: none !IMPORTANT;
}


/*why us*/
.whyUsContainer {
  display: flex;
  flex-wrap: wrap;
}

.our-services {
  flex-grow: 1;
  width: calc(100% / 4);
  text-align: center;
  border: solid rgb(0 0 0 / 10%);
  border-width: 0 1px 1px 0;
}


.our-services:nth-last-child(1) {
  border-right-color: transparent;
}

.our-services .our-servicesText {
  width: 100%;
  padding: 10px;
}

.our-services.border-bottom {
  border-bottom: transparent !important;
}

.our-services .our-servicesText h3 {
  width: 100%;
  color: #191919;
  font-size: 14px;
  text-transform: uppercase;
}

.our-services section {
  width: 100%;
  padding: 10px;
}

.our-services .imgBox {
  width: 60px;
  margin: 0 auto;
}

.our-services section:hover .imgBox {}

.our-services section .imgBox svg path,
.our-services section .imgBox svg circle {
  fill: none;
  stroke: var(--brown);
  stroke-width: 1;
  stroke-miterlimit: 20;
  stroke-dasharray: 1400;
  stroke-dashoffset: 0;
}

.why-estate-consultancy-featSlider {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
}

.why-estate-consultancy {
  display: flex;
  border: 1px solid #bc986b;
}

.why-estate-consultancyinc-icon {
  width: 38px;
  background: #bc986b;
  padding: 8px;
  height: 100%;
  display: flex;
  align-items: center;
}

.why-estate-consultancyinc-con h4 {  
  margin: 0;
  padding: 7px;
  font-size: 17px;
}
.list
{
  margin-left:2rem;
  margin-bottom: 10px;
}
.list li
{
  margin-bottom: 8px;
}
.susBox .inner{
  padding: 1rem;
}
.susBox p strong, .susBox p b, .susBox li b{
  color: var(--brown);
  font-weight: 600;
}
/* team */
.teamBox {
  margin: 30px 0 50px;
}
.teamBox .innerBox {
  height: 100%;
  padding: 20px;
  background-color: #fff;
  border: 1px solid rgb(0 0 0 / 10%);
  transition: all 300ms ease-in-out;
  position: relative;
  z-index: 1;
}
.teamBox .innerBox:hover {
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 10%);
}
.teamBox .innerBox .img-fluid {
  width: 100px;
  margin: -70px 0 20px;
  transition: all 300ms ease-in-out;
  position: relative;
  z-index: 2;
}
.teamBox .innerBox .img-fluid img {
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgb(0 0 0 / 10%);
}
.teamHead{
  margin-bottom: 1.25rem;
}
.teamHead h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 0;
  color: var(--primary-color);
  text-transform: uppercase;
}
.teamHead h6 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.teamBox .innerBox p {
  font-size: 13px !important;
  line-height: 1.4 !important;
}
.teamText {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--primary-color);
  color: #fff;
  padding: 30px 20px 20px;
  transition: all 300ms ease-in-out;
  transition-delay: 200ms;
  opacity: 0;
  visibility: hidden;
}
.teamText p {
  font-size: 14px !important;
  line-height: 1.5 !important;
}
.teamBox .innerBox:hover .teamText {
  opacity: 1;
  visibility: visible;
}
/* team */
/* -----Accordion----- */
.accordion-header {
	margin-bottom: 1px;
  }
  
  .accordion-wrapper .accordion-header {
	padding: 0;
	background-color: transparent;
	border-radius: 0;
  }
  
  .accordion-button {
	width: 100%;
	padding: 14px 20px;
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 700;
	background-color: var(--primary-color);
	border-radius: 0;
	border: 1px solid rgb(0 0 0 / 10%);
  }
  
  
  .accordion-button.collapsed {
	color: var(--primary-color);
	background-color: #fff;
  }
  
  .accordion-button i {
	transition: all 300ms ease-in-out;
	transform: rotate(225deg);
	color: var(--secondary-color);
  }
  
  .accordion-button.collapsed i {
	transform: rotate(0deg);
	color: var(--primary-color);
  }
  
  .accordion-wrapper .card-body {
	border: 1px solid rgb(0 0 0 / 10%);
	background-color: #fff;
	margin-bottom: 1rem;
	padding: .5rem 1.5rem;
  }
  /* -----Accordion----- */

/*responsive*/
@media (max-width: 1200px) {
  .logo {
    width: 100px;
  }

  .stats li {
    flex-basis: 0;
  }

  .projectBox a {
    height: 300px;
  }

  .stats li section p {
    letter-spacing: normal;
  }
}

@media (min-height: 1024px) {}

@media (min-height: 1280px) {}

@media (max-width: 1024px) {
  .pagemenu ul.fixed {
    left: 0;
    width: 100%;
    margin: 0;
    top: 49px;
    background-color: rgba(0, 0, 0, 0.60);
    backdrop-filter: blur(4px);
    justify-content: center;
    z-index: 99;
  }

  .pagemenu ul.fixed li a {
    color: #fff;
  }

  .pagemenu ul.fixed li a:hover {
    color: var(--darkgray);
  }
}

@media (max-width: 1000px) {
  .fixed-form .form-group {
    margin: 5px 0;
    flex-basis: auto;
    WIDTH: 49%;
  }

  .fixed-form {
    position: FIXED;
    top: AUTO;
    right: 0;
    width: 100%;
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    z-index: 1000;
    transition: all 300ms ease-in-out;
    background: var(--darkgray);
    BOTTOM: 0;
  }
}

@media (max-width: 912px) {
  .hm-overviewImg {
    display: none;
  }

  .hm-projectWrapper.padding {
    padding-top: 0;
  }

  .projectBox {
    max-width: 50%;
    flex-basis: auto;
  }

  .heading p {
    width: 100%;
  }

  .downloadBox a p {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .downloadBox,
  .location-text,
  .location-map {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin: 5px 0;
  }

  .featBox {
    width: 33%;
  }

  .location-text section {
    padding: 20px;
  }

  .pagemenu ul li a {
    padding: 4px 6px;
    border-radius: 30px;
    font-size: 12px;
  }

  .plot-size-box {
    width: 48%;
    padding: 10px;
    margin: 1%;
  }

  .plot-size-icon-text p {
    font-size: 14px;
  }

  .plot-size-icon-img img {
    width: 29px;
    height: 29px;
  }
}


@media (max-width: 768px) {
  body {
    font-size: 12px;
  }

  .mbMenuContainer .mbMenu div[class^="col"] {
    text-align: center;
  }

  .mbMenuContainer .mbMenu ul li {
    margin: 0 auto;
  }

  .mbMenuContainer .mbMenu .bigMenuList ul li a {
    font-size: 10vw;
    line-height: 1;
    font-weight: 300;
  }

  .mbMenuContainer .mbMenu .smallMenuList ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 15px 0;
    margin: 15px 0;
    border: solid rgb(255 255 255 / 50%);
    border-width: 1px 0;
  }

  .mbMenuContainer .mbMenu .smallMenuList ul li {
    padding: 0;
    margin: 0;
  }

  .mbMenuContainer .mbMenu .smallMenuList ul li a {
    font-size: 20px;
  }

  .mbMenuContainer .mbMenu .socialMediaLink {
    margin-top: 0;
  }

  .mbMenuContainer .mbMenu .socialMediaLink ul li a {
    font-size: 1rem;
  }

  .banner {
    height: 70vh;
  }

  .bannerText {
    width: 97%;
}
.bannerText h2 {
  font-size: 25px;
}
  .bannerText p,
  .heading .hasline {
    font-size: 12px;
  }

  .bannerText h1,
  .bannerText h2 {
    font-size: 30px;
  }

  .bannerQuery {
    display: flex;
  }

  .hm-overviewText section article h5 {
    font-size: 22px;
  }

  .readmore a,
  .readmore button {
    line-height: 28px;
    min-height: 30px;
    min-width: 110px;
    font-size: 11px;
  }

  .hm-overviewText section {
    padding-right: 0;
  }

  .hm-overviewText section article {
    display: flex;
    flex-wrap: wrap;
  }

  .hm-overviewText section article h5 {
    width: 100%;
  }

  .hm-overviewText section article p {
    width: 50%;
    margin-bottom: 0;
    padding: 0 10px;
  }

  .stats {
    flex-wrap: wrap;
  }

  .stats li {
    flex-basis: auto;
  }

  .hm-overviewImg,
  .fixed-form {
    POSITION: inherit;
    FLOAT: LEFT;
  }

  .hm-projectWrapper.padding {
    padding-top: 0;
  }

  .projectBox {
    max-width: 50%;
    flex-basis: auto;
    padding: 2px !important;
  }

  .heading h2 {
    font-size: 2.4rem;
  }

  .heading p {
    width: 90%;
  }

  .whyUsBox .whyUsText h3 {
    font-size: 11px;
  }

  .featBox {
    width: calc(100% / 2);
  }
}

/* Samsung S8+ landscape */
@media (max-width: 740px) {
  .mbMenuContainer .mbMenu .smallMenuList {
    padding: 8px 15px;
  }

  .mbMenuContainer .mbMenu .bigMenuList ul li a {
    font-size: 8vw;
  }

  .mbMenuContainer .mbMenu .smallMenuList ul li a {
    font-size: 16px;
  }

  .mbMenuContainer .mbMenu .smallMenuList ul li a br {
    display: none;
  }

  .bannerQuery a {
    font-size: 14px;
  }

  .bannerQuery a i {
    width: 30px;
    height: 30px;
  }

  .heading .hasline:before {
    left: 0;
  }

  .heading .hasline.now:before {
    width: 40px;
  }

  .hm-overviewText section article p {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }

  .readmore {
    margin-top: 20px;
  }

  .readmore a,
  .readmore button {
    font-size: 10px;
  }

  .stats {
    margin-top: 30px;
    gap: 10px;
  }

  .stats li {
    flex-grow: unset;
  }

  .stats li section h2 .counter {
    font-size: 5vw;
  }

  .stats li section h2 small {
    font-size: 50%;
  }

  .stats li section p {
    font-size: 11px;
  }

  .projectBox a {
    height: 380px;
  }

  .testimSlider {
    padding-bottom: 20px;
  }

  .testimSlider .swiper-slide article aside {
    height: auto;
    padding: 60px 15px 20px;
  }

  .testimSlider .swiper-slide article aside h3 {
    font-size: 15px;
  }

  .testimSlider .swiper-slide article aside h4 {
    font-size: 13px;
  }

  .footLinks {
    margin-bottom: 30px;
  }

  .mainFooter .footLinks ul li {
    display: inline-block;
    margin: 10px 15px 10px 0;
  }

  .mainFooter .footLinks>ul li {
    padding-left: 13px;
  }

  .mainFooter .footLinks>ul li:before {
    margin-top: -1px;
  }

  .footer-area .bottom {
    padding: 3rem 0;
    border-top: 1px solid rgb(255 255 255 / 10%);
  }

  .pageLogo {
    width: 60%;
  }

  .pagemenu ul {
    width: 100%;
    overflow: auto;
  }

  .overviewImg img {
    width: 61%;
    margin: auto;
  }

  .mulberry-county img {
    width: 100%;
  }

  .gal-slider .swiper-slide .galImg {
    height: 250px;
  }

  .button-top {
    bottom: 30px !important;
  }
}

@media (max-width: 667px) {
  .dropdown li a {
    font-size: 20px !important;
  }

  .heading h2 {
    font-size: 2rem;
  }

  .project-details h2 {
    font-size: 24px !important;
  }

  .formText p {
    padding: 0;
  }

  .featSlider {
    flex-wrap: wrap;
  }

  .formBtnContainer {
    padding: 0;
  }

  .featBox {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .formText p {
    ont-size: 15px;
    padding: 0 0%;
  }

  .teamBox h2 {
    font-size: 20px;
  }

  .downloadsContainer .downloadBox {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 10px;
  }

  .plot-size-box {
    width: 48%;
  }
}

@media (max-width: 540px) {
  .header {
    padding: 5px 15px;
  }

  .bannerQuery {
    left: 15px;
    bottom: 10px;
  }

  .scrollDown {
    bottom: 10px;
    height: 80px;
  }

  .projectBox {
    max-width: 100%;
  }

  .downloadBox,
  .location-text,
  .location-map {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 5px 0;
  }
}

@media (max-width: 480px) {
  .fixed-form .form-group {
    WIDTH: 100%;
  }
}

@media (max-width: 425px) {
  .insideBanner {
    height: 60vh !important;
  }

  .heading p {
    width: 100%;
  }

  .whyUsBox {
    width: 50%;
  }

  .whyUsBox:nth-child(3n) {
    border-right-color: rgb(0 0 0 / 10%);
  }

  .whyUsBox:nth-last-child(3) {
    border-bottom-color: rgb(0 0 0 / 10%);
  }

  .whyUsBox:nth-child(2n) {
    border-right-color: transparent;
  }

  .featBox {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .formBtnContainer {
    padding: 10px 5px;
  }

  .overviewText section {
    padding-right: 0;
  }

  .teamBox h2 {
    font-size: 18px;
  }

  .teamBox p {
    font-size: 15px;
  }

  .formBtns li .formBtn {
    width: 100%;
  }

  .downloadsContainer .downloadBox {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }

  .plot-size-box {
    width: 1008%;
  }

  .pagemenu ul.fixed {
    justify-content: flex-start;
  }

  button.close {
    right: 17px;
    top: -35px;
  }

  .downloadBox {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .banner .carousel-inner .carousel-item picture img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 390px) {
  .logo {
    width: 80px;
  }

  .header.fixed .logo {
    width: 70px;
  }

  .menuBtn {
    height: 28px;
  }

  .mbMenuContainer .mbMenu .smallMenuList ul {
    gap: 15px;
  }

  .mbMenuContainer .mbMenu .smallMenuList ul li a {
    font-size: 14px;
  }

  .banner {
    height: 90vh;
  }

  .carousel-control-next.banner-next,
  .carousel-control-prev.banner-prev {
    width: 35px;
    height: 35px;
    top: auto;
    bottom: 10px;
    transform: translateY(0);
  }

  .carousel-control-prev.banner-prev {
    left: auto;
    right: 15px;
    bottom: 50px;
  }

  .carousel-control-next.banner-next {
    right: 15px;
  }

  .bannerText {
    width: 95%;
  }

  .bannerText p {
    letter-spacing: 1px;
    font-weight: 600;
  }

  .bannerText h1,
  .bannerText h2 {
    font-size: 25px;
  }

  .bannerQuery {
    flex-direction: column;
  }

  .padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .heading h2 {
    font-size: 26px;
  }

  .hm-overviewText section article h5 {
    font-size: 20px;
  }

  .stats li section h2 .counter {
    font-size: 8vw;
  }

  .stats li section p {
    font-weight: 600;
  }

  .projectBox a h4 {
    font-size: 18px;
  }

  .projectBox a span i {
    height: 34px;
  }

  .testimSlider .swiper-slide article i {
    width: 50px;
    height: 50px;
    margin-bottom: -25px;
  }

  .testimSlider .swiper-slide article aside {
    padding-top: 40px;
  }

  .testimSlider .swiper-slide article aside h3 {
    font-size: 14px;
    font-weight: 600;
  }

  .testimSlider .swiper-slide article aside h4 {
    font-weight: 600;
  }

  .footer-area .bottom {
    flex-wrap: wrap;
  }
}

@media (max-width: 330px) {
  .formBtns li {
    width: 100%;
    margin: 5px 0;
  }
}

@media (max-height: 540px) {
  .logo {
    width: 70px;
  }

  .menuBtn {
    height: 30px;
  }

  .banner {
    height: 100vh;
  }

  .scrollDown {
    bottom: 10px;
  }

  .bannerQuery {
    display: flex;
  }

  .hm-overviewImg,
  .fixed-form {
    display: none;
  }
}

@media (max-width: 767px) {
  .fixed-form {
    display: none;
  }
}
@media (max-width: 600px) {
  .loansyndication-main {
    border-bottom: 1px solid #f7ddbc;
    border-right: none;
    margin-top: 5px;
    padding-bottom: 11px;
    padding-top: 20px;
  }
  .our-services {
    flex-grow: 1;
    width: calc(100% / 2);
  }
  .our-services:nth-of-type(even) {
    border-right: none;
  }
  .our-services.border-bottom{
    border-bottom: 1px solid #f7ddbc !important;
  }
  .our-services.border-bottom:nth-last-of-type(1), .our-services.border-bottom:nth-last-of-type(2){
    border-bottom: none !important;
  }
}

@media (max-height: 414px) {
  .mbMenuContainer .mbMenu div[class^="col"] {
    width: 50%;
    flex-grow: 1;
  }

  .mbMenuContainer .mbMenu .bigMenuList ul li a {
    font-weight: 300;
    line-height: 1;
  }

  .mbMenuContainer .mbMenu .smallMenuList ul li a {
    font-size: 15px;
  }

  .mbMenuContainer .mbMenu .smallMenuList ul li a br {
    display: none;
  }

  .banner {
    height: 120vh;
  }

  .bannerText {
    width: 60%;
  }

  .bannerText h1,
  .bannerText h2 {
    font-size: 36px;
  }

  .bannerText p {
    margin-bottom: 0;
    letter-spacing: 1px;
    font-weight: 600;
  }

  .scrollDown {
    height: 80px;
  }

  .bannerQuery a {
    font-size: 14px;
  }

  .bannerQuery a i {
    width: 30px;
    height: 30px;
  }

  .projectBox a {
    height: 90vh;
  }
}

@media (max-height: 390px) {
  .mbMenuContainer .mbMenu {
    align-items: flex-start;
  }

  .mbMenuContainer .mbMenu div[class^="col"] {
    width: 100%;
  }

  .mbMenuContainer .mbMenu .bigMenuList ul li a {
    font-size: 6.5vw;
  }

  .bannerText {
    width: 80%;
  }

  .bannerText h1,
  .bannerText h2 {
    font-size: 32px;
  }
}