/* Sticky CTA */
.enquiryWrapper {
  --width: 40px;
  position: fixed;
  isolation: isolate;
  right: 1rem;
  bottom: 1rem;
  background-color: var(--secondary-color);
  overflow: hidden;
  border-radius: 100px;
  z-index: 4;
  transition: all 300ms ease-in-out;
  /* animation: hithere 1s ease infinite; */
}

.enquiryWrapper.hide {
  opacity: 0;
  bottom: -5rem;
}

/* @keyframes hithere {
  30% { transform: scale(1.2); }
  40%, 60% { transform: rotate(-10deg) scale(1.2); }
  50% { transform: rotate(10deg) scale(1.2); }
  70% { transform: rotate(0deg) scale(1.2); }
  100% { transform: scale(1); }
} */

.enquiryWrapper:hover {
  animation: none;
}

.enquiryWrapper .inner {
  display: flex;
}

.enquiryWrapper a i {
  width: var(--width);
  height: var(--width);
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.enquiryWrapper .inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background-color: var(--primary-color);
  transition: all 300ms ease-in-out;
}

.enquiryWrapper .inner a:not(:last-child) {
  border-right: 1px solid rgb(0 0 0 / 12%);
}

.enquiryWrapper .inner a:hover {
  color: var(--primary-color);
  background-color: var(--secondary-color);
}

/* Sticky CTA */

.chatBtn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  transform: scale(1.5, 1.5);
  background-color: transparent;
  border: 0;
  padding: 0;
  z-index: 9;
}

.chatBtn i.icon-circular {
  box-shadow: 0 0 0 1px var(--primary-color);
}

.chatBtn i.icon-circular:hover {
  background-color: var(--secondary-color);
}

/*header*/
.header {
  position: fixed;
  width: 100%;
  padding: 5px 0;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 300ms ease-in-out;
  background-color: #fff;
  border-bottom: 1px solid;
  border-image-source: linear-gradient(45deg, var(--secondary-gradient));
  border-image-slice: 1;
}

.header.fixed {
  box-shadow: 0 0 2rem rgb(0 0 0 / 15%);
}

.header .container-lg {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header ul {
  display: flex;
  align-items: center;
}

.navi ul li+li {
  margin-left: 40px;
}

.header li {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header li a {
  display: table;
  overflow: hidden;
  padding-top: 5px;
  padding-bottom: 5px;
  transition: all 300ms ease-in-out;
  position: relative;
}

/* .header:hover li a,
.header.fixed li:not(.topIcons) a {
  color: var(--body-color);
} */

.header li:not(.topIcons) a:hover {
  color: var(--primary-color);
}

.header .topChat li+li {
  padding-left: 1rem;
  margin-left: 1rem;
  border-left: 1px solid rgb(0 0 0 / 8%);
}

.header .topIcons {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.header.fixed .logo {
  width: 50px;
  height: 50px;
}

.logo img {
  transition: all 300ms ease-in-out;
  width: 120px;
  height: auto;
}

.header.fixed .logo img {
  height: 80px;
  object-position: -34px 0;
}

.menuBtn {
  padding: 0;
  border: 0;
  background-color: transparent;
}

.menuBtn span {
  width: 2rem;
  height: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.menuBtn span:after,
.menuBtn span:before {
  content: "";
  display: block;
  height: 2px;
  background-color: var(--primary-color);
  left: 0;
  width: 100%;
  transition: transform .8s cubic-bezier(.6, 0, 0, 1);
}

.header.fixed .menuBtn span:after,
.header.fixed .menuBtn span:before,
.header.notfixed .menuBtn span:after,
.header.notfixed .menuBtn span:before {
  background-color: var(--body-color);
}

.menuBtn.closeMenuBtn span {
  border-top: 0;
  transition: border-top 300ms linear;
}

.menuBtn.closeMenuBtn span::before {
  -webkit-transform: skewY(45deg) translate(0, -11px);
  transform: skewY(45deg) translate(0, -11px);
  background-color: var(--primary-color);
  transform-origin: left;
}

.menuBtn.closeMenuBtn span::after {
  -webkit-transform: skewY(-45deg) translate(0, -18px);
  transform: skewY(-45deg) translate(0, -18px);
  background-color: var(--primary-color);
  transform-origin: right;
}

/* menu modal */
.menu-modal-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .7);
  overflow: auto;
  display: none;
  z-index: 999;
}

.menu-modal {
  width: 70%;
  height: 100%;
  padding: 5vw 8vw 3vw;
  color: #fff;
  background-color: var(--bs-dark);
  position: relative;
  transform: translateX(-100%);
  text-align: left;
  transition: all 700ms cubic-bezier(.17, .67, .83, .67);
}

.menu-modal-wrapper.active .menu-modal {
  transform: translateX(0);
}

.menu-modal ul li a {
  color: #fff;
  position: relative;
  transition: all 300ms ease-in-out;
}

.menu-modal ul li:hover>a {
  color: var(--primary-color);
}

.menu-modal .bigMenu {
  margin: 3.5vw 0 5vw;
}

.menu-modal .bigMenu ul li a {
  width: fit-content;
  font-size: 3rem;
  letter-spacing: 2px;
  font-family: var(--midsun);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-modal .bigMenu ul li a i {
  font-size: 50%;
  color: var(--primary-color);
  transition: all 300ms ease-in-out;
}

.menu-modal #closeMenu {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

/* menu modal */
/*header*/

/* Hero Banner */
.banner {
  height: 100vh;
  position: relative;
  background-color: #000;
  overflow: hidden;
  z-index: 1;
}

/* .banner::after {
  top: calc(100% - 30px);
  background: url(../images/bg.png) bottom var(--light);
  border-top: 4px solid var(--primary-color);
  width: 300%;
  left: -100%;
  border-radius: 50%;
} */

.cloud {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 31%;
  background: url(../images/cloud.png) top left repeat-x;
  animation: animateclouds 80s linear infinite;
  pointer-events: none;
  opacity: 0.2;
  z-index: 4;
}

@keyframes animateclouds {
  0% {
    background-position: 0px;
  }

  100% {
    background-position: -3000px;
  }
}

.carousel.carousel-fade .carousel-item {
  display: block;
  opacity: 0;
  transition: opacity ease-out .7s;
}

.carousel.carousel-fade .carousel-item.active {
  opacity: 1 !important;
}

.banner .carousel-item::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(0 0 0 / 25%);
  background: linear-gradient(transparent 70%, rgba(0, 0, 0, 0.5));
  z-index: 1;
  pointer-events: none;
}

.heroText {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  word-spacing: 1.5rem;
  z-index: 2;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  width: max-content;
}


.banner-video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) rotate(45deg);
  }

  40% {
    transform: translateY(-10px) rotate(45deg);
  }

  60% {
    transform: translateY(-5px) rotate(45deg);
  }
}

/* Hero Banner */

/* hm overview */
.building-sketch,
.building-sketch::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.building-sketch {
  width: 320px;
  transition: transform 500ms linear;
  mix-blend-mode: multiply;
  opacity: 0.2;
}

.building-sketch[data-position='top left'] {
  inset: 0 auto auto 0;
}

.building-sketch[data-position='bottom right'] {
  inset: auto 0 0 auto;
}

.hm-overview .decoration-dots {
  margin: 3rem auto;
  color: var(--primary-color);
}

/* hm overview */

/* Work Section */
.toggleHeader {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2.5rem;
  margin-bottom: 2rem;
}

.toggleHeader li button {
  background: none;
  text-align: center;
  font-size: 87.5%;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 0;
  color: var(--primary-color);
  filter: grayscale(1);
  border-width: 0 0 1px !important;
  transition: all 300ms ease-in-out;
  outline: none;
}

.toggleHeader li button.sm {
  font-size: 1rem;
  border-top: 1px solid #ececec;
}

.toggleHeader li button:hover,
.toggleHeader li button.active {
  filter: grayscale(0);
}

.toggleHeader li button.active {
  font-size: 100%;
}

.toggleContainer:not(.show) {
  display: none;
}


.workBox .inner {
  position: relative;
  z-index: 1;
}

.workBox .inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 53%);
  background: linear-gradient(rgb(0 0 0 / 80%), transparent, transparent, rgb(0 0 0 / 65%));
  pointer-events: none;
  z-index: 2;
}

.workBox img {
  aspect-ratio: 5/4;
  object-fit: cover;
}

.workBox .box-title {
  color: #fff;
  inset: 0;
  background-image: linear-gradient(transparent 70%
70%
, rgb(0 0 0 / 83%));
  padding: 2rem 1rem 1rem 1rem;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 300ms ease-in-out;
  z-index: 2;
}

.workBox .box-title .workBox-list-item {
  display: flex;
  flex-direction: column;
  font-size: 80%;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* .workBox .box-title .workBox-list-item+.workBox-list-item {
  border-left: 1px solid rgb(255 255 255 / 25%);
} */

.artistic-impression {
  position: absolute;
  bottom: 2rem;
  right: 10px;
  writing-mode: sideways-lr;
  transition: all 300ms ease-in-out;
  text-shadow: 1px 1px 1px #000;
}
.client-workBox-main
 {
    font-size: 10px;
}
.client-workBox
{
    background: #ffffff;
    color: #000;
    padding: 0 3px;
    margin-right: 5px;
    border-radius: 4px;
    box-shadow: 0 0 1px #000;
    font-size: 10px;
}
.client-workBox-n
{
    letter-spacing: 2px;
    font-size: 10px;
}
.workBox-list-item .text-primary
{
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 0 2px #000000;
}
/* projectDropdownContainer */
.projectDropdownContainer {
  position: relative;
  display: inline-block;
  justify-content: center;
  margin-bottom: 2rem;
}

.projectBtn {
  /* background-color: var(--secondary-color-light); */
  background-color: #d9a76d29;
  border: 1px solid #d9a76d29;
      box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
  color: var(--body-color);
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.projectBtn i {
  margin-left: 10px;
}


.projectDropdonwMenu {
  display: none;
  position: absolute;
  background-color: var(--secondary-color-light);
  top: 90%;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.10);
  z-index: 1000;
  margin-top: 5px;
  width: 100%;
}

.projectDropdonwMenu button {
  width: 100%;
  padding: 10px 15px;
  background: none;
  border: none;
  text-align: left;
  border-bottom: 1px solid #d9a76d29;
  cursor: pointer;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--body-color);
}

.projectDropdonwMenu button:hover {
  background-color: #f0f0f0;
}

/* Work Section */

/* Location */

.connectivity {
  margin-top: 2rem;
  padding-top: 2rem;
  border-width: 1px 0 0 !important;
}

.connectivity-box .in {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.connectivity-box .in .img-fluid {
  max-width: 50px;
  flex: 0 0 50px;
  padding: 8px;
  border: 1px solid var(--primary-color);
}

.connectivity-box .in .h5 {
  margin-bottom: .25rem;
  font-family: var(--serif);
}

/* Location */

/* stats */
/* .hm-stats-container{
  background: url(../images/stocks/building1.jpg) center / cover no-repeat;
}
.hm-stats-container::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(255 255 255 / 50%);
  z-index: -1;
} */

.statsWrapper {
  margin-top: 2rem;
  padding-top: 2rem;
  border-width: 1px 0 0 !important;
}

.statsBox p {
  font-size: 13px;
  text-transform: uppercase;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-width: 1px !important;
  padding: 2rem;
}

.logo-icon img {
  max-width: 300px;
}
/* stats */


/* customerHandover */
.customerHandover-slide .img-fluid img {
  aspect-ratio: 1 / 1;
}

/* gallery */
.galBox.swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 53%);
  /* background-image: linear-gradient(rgb(0 0 0 / 80%), transparent, transparent, rgb(0 0 0 / 65%)); */
}

.galBox img {
  aspect-ratio: 16/7;
  object-fit: cover;
}

.galBox .box-title {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  height: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-image: radial-gradient(circle at 50% 50%, rgb(0 0 0 / 53%), transparent); */
  transition: all 300ms ease-in-out;
}

.galBox.swiper-slide.swiper-slide-active .box-title {
  opacity: 1;
}

.galBox .box-title::before,
.galBox .box-title::after {
  content: '';
  position: absolute;
  width: 20px;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(45deg, var(--secondary-gradient), var(--secondary-gradient));
  inset: 2rem auto;
  z-index: 5;
}

.galBox .box-title::before {
  left: 0;
  border-right-width: 0;
}

.galBox .box-title::after {
  right: 0;
  border-left-width: 0;
}

.artistic-impression {
  position: absolute;
  bottom: 2rem;
  right: 10px;
  writing-mode: sideways-lr;
  transition: all 300ms ease-in-out;
  text-shadow: 1px 1px 1px #000;
}

/* gallery */

/* Why choose us */
.whyContent .bg-image {
  width: 50vw;
  inset: 0 0 0 auto;
  z-index: -1;
}

.whyContent .inner {
  max-width: 500px;
  color: rgb(255 255 255 / 95%);
}

.why-icons.iconsContainer .iconBox {
  border: solid rgb(0 0 0 / 15%);
  border-width: 0 1px 1px 0;
}

.why-icons.iconsContainer .iconBox:nth-child(2n) {
  border-right: 0;
}

.why-icons.iconsContainer .iconBox:nth-last-child(1),
.why-icons.iconsContainer .iconBox:nth-last-child(2) {
  border-bottom: 0;
}

.why-icons.iconsContainer .iconBox .inner {
  border: 0;
  padding: 2rem;
}
/* Why choose us */

/* Certificates */
.certificateBox{
  text-align: center;
  padding: 2rem;
  border-width: 1px !important;
}

.certificateBox .img-fluid{
  max-width: 200px;
  margin: 0 auto 1rem;
}

.certificateBox span{
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Certificates */


/*Footer*/
.footer-area {
  /* position: fixed;
  bottom: 0;
  left: 0; */
  background: var(--secondary-color);
  color: #fff;
}

.footer-area a {
  display: inline-block;
  color: #fff;
  font-size: .875rem;
  padding: 5px 0;
}

.footer-area p {
  font-size: .875rem;
}

.footer-area a:hover {
  color: var(--primary-color);
}

.foot-logo img {
  max-width: 170px;
  margin-bottom: 1rem;
}

.footer-links {
  margin: 5rem 0;
  position: relative;
  z-index: 1;
}

.footerSocial {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.footerSocial i.icon-circular {
  background-color: var(--body-bg);
}

.footer-bottom {
  padding: 1rem 0;
  border-width: 1px 0 0 !important;
}

.footer-bottom a {
  color: initial;
}

.footer-bottom .d-flex {
  gap: 10px;
}

.copyrights {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

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

.copyrights p img {
  width: 13px;
  margin-left: 5px;
}

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

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

/*Footer*/


/* Inside page */
.emptyBox {
  background-color: var(--secondary-color);
  height: var(--header-height);
}

.emptyBox+.header {
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
}

.inside-banner {
  height: 400px;
  /* margin-top: var(--header-height); */
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #0003;
}

.inside-banner.project-banner {
  height: calc(100vh - var(--header-height));
}

.inside-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.75));
  z-index: 1;
}

.inside-banner img {
  mix-blend-mode: multiply;
}

.inside-banner .container-lg.position-absolute {
  top: 0;
  bottom: 0;
  z-index: 1;
}

.bannerText {
  height: 100%;
  padding: calc(var(--header-height) + 2rem) 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bannerText .title {
  font-size: 4rem;
  font-family: var(--midsun);
  letter-spacing: 3px;
  text-align: left;
}

.breadcrumb {
  background-color: transparent;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
  margin-bottom: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: var(--bs-breadcrumb-item-padding-x);
}

.breadcrumb li a {
  color: rgb(255 255 255 / 50%);
  font-weight: 600;
}

.breadcrumb li a:hover {
  color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: '';
  background-color: #bfbfbd;
  height: .125rem;
  width: .125rem;
  padding-right: 0;
}

.breadcrumb li.active {
  color: #fff;
}

/* contact Us*/
.contact .contactRightbox {
  height: 100%;
  padding: 2rem;
}

.contactRightbox .contact-method {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}

.contactRightbox .contact-method:last-child {
  margin-bottom: 0;
}

.contactRightbox .contact-method .contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--body-color);
}

.contactRightbox .contact-method .contact-details {
  flex: 1;
}

.contactRightbox .contact-method .contact-details .method-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--body-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.contactRightbox .contact-method .contact-details p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--body-color);
  margin-bottom: 0;
}

/* End Contact*/