#disclaimersaya {
  background: #0000009e;
}

#disclaimersaya .modal-close {
  width: 100%;
  font-size: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 10px;
  color: var(--body-color);
  background-color: var(--secondary-color);
  text-align: left;
  border: 0;
}

#disclaimersaya .modal-close:hover {
  background-color: var(--body-color);
  color: #fff;
}

.disclaimerbody {
  max-height: 350px;
  overflow: auto;
}

.disclaimerbody::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track */
.disclaimerbody::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.disclaimerbody::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.disclaimerbody::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Disclaimer */

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

/*header*/
.header {
  position: fixed;
  width: 100%;
  padding: 10px 0;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 300ms ease-in-out;
  /* border-bottom: 1px solid rgb(255 255 255 / 40%); */
}

.header:hover,
.header.fixed {
  background-color: var(--light);
  box-shadow: 0 0 2rem rgb(0 0 0 / 15%);
}

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

.header .navi {
  width: calc(50% - 130px);
}

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

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

.navi ul li:last-child {
  margin-right: 0px;
}

.header li {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  position: relative;
}

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

.dropdown {
  background: #ffffff none repeat scroll 0 0;
  box-shadow: 0 1px 21px 0 rgba(48, 48, 48, 0.2);
  left: 0;
  padding: 4px 0;
  position: absolute;
  text-align: left;
  top: 125%;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  visibility: hidden;
  width: 203px;
  z-index: -999;
  opacity: 0;
  display: block !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-bottom: 1px solid #e1e1e1;
}

.dropdown li {
  display: block;
  margin-right: 0px !important;
}

.subdropdown {
  background: #ffffff none repeat scroll 0 0;
  box-shadow: 0 1px 21px 0 rgba(48, 48, 48, 0.2);
  left: 160px;
  padding: 4px 0;
  position: absolute;
  text-align: left;
  top: 90%;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  visibility: hidden;
  width: 203px;
  z-index: -999;
  opacity: 0;
  display: block !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-bottom: 1px solid #e1e1e1;
}

.subdropdown li {
  display: block;
  margin-right: 0px !important;
}

.dropdown li a {
  border-bottom: 1px solid #e1e1e1;
  color: #303030;
  display: block;
  font-size: 12px;
  line-height: 18px;
  padding: 11px 22px;
  height: auto;
  text-transform: uppercase;
}

.subdropdown li a {
  border-bottom: 1px solid #e1e1e1;
  color: #303030;
  display: block;
  font-size: 12px;
  line-height: 18px;
  padding: 11px 22px;
  height: auto;
  text-transform: uppercase;
}

.header li:hover .dropdown {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  top: 90%;
  visibility: visible;
  z-index: 9999;
}

.dropdown li:hover .subdropdown {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  top: 100%;
  visibility: visible;
  z-index: 9999;
}

.dropdown li:last-child a {
  border-bottom: 0px;
}

.header:hover a,
.header.fixed a {
  color: var(--body-color);
}

.header a div {
  display: inline-block;
  position: relative;
  transition: all 300ms ease-in-out;
}

.header a .link-hover-hover {
  left: 0;
  position: absolute;
  transform: translateY(40px);
  color: var(--primary-color);
}

.header.fixed a .link-hover-hover {
  color: var(--primary-color);
}

.header a:hover .link-hover-text {
  transform: translateY(-40px);
}

.header a:hover .link-hover-hover {
  transform: translateY(0px);
}

.header .Enquire_btn a:hover .link-hover-hover {
  color: #FFF;
}

.logo {
  width: 250px;
  height: 55px;
  margin: 0 10px;
  position: relative;
  min-height: 1px;
  transition: all 300ms ease-in-out;
  overflow: hidden;
}

.logo a {
  height: 100%;
  padding: 0;
  display: block;
}

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

.header:hover .logo a img,
.header.fixed .logo a img {
  transform: translateY(-100%);
}

.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: #fff;
  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: 380px;
  height: 100%;
  padding: 15px 33px 42px;
  color: #fff;
  background-color: var(--bs-dark);
  position: relative;
  transform: translateX(-100%);
  text-align: left;
  transition: all 700ms cubic-bezier(.17, .67, .83, .67);
  overflow: auto;
}

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

.modal-top-menu ul {
  display: flex;
  justify-content: right;
}

.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);
}

.modal-top-menu ul li a {
  font-size: 11px;
  text-transform: uppercase;
}

.modal-top-menu ul li a.menuBtnClose {
  /* padding-right: 22px; */
}

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

.menu-modal .bigMenu ul li a {
  width: fit-content;
  font-size: 26px;
  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 .subdropdown {
  z-index: 1;
  border-bottom: 0;
}

.menu-modal .dropdown2 {
  display: block;
  padding-left: 25px;
  margin: 1rem 0 2rem;
  border-left: 2px solid var(--primary-color);
}

.menu-modal .dropdown2 ul li:not(:last-child) {
  margin-bottom: 1rem;
}

.menu-modal .bigMenu .dropdown2 ul li a {
  font-size: 1rem;
  flex-direction: column;
  font-family: var(--sans);
  align-items: flex-start;
  gap: 0;
}

.menu-modal .bigMenu .dropdown2 ul li a small {
  font-size: 75%;
  color: rgb(255 255 255 / 30%);
}

.menu-modal .smallMenu ul li a {
  line-height: 2;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
}

.menu-modal .downloadMenu ul li {
  margin-bottom: 10px;
}

.menu-modal .downloadMenu ul li a {
  display: flex;
  align-items: center;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu-modal .downloadMenu ul li a i {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  margin-right: 10px;
  transition: all 300ms ease-in-out;
}

.menu-modal .downloadMenu ul li a:hover i {
  filter: brightness(50);
}

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

/* menu modal */
/*header*/

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

.banner::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  /* background: rgb(0 0 0 / 25%); */
  /* background: linear-gradient(rgb(26 112 184 / 83%), transparent 40%); */
  z-index: 2;
  pointer-events: none;
}

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

.banner picture img {
  -webkit-animation: zoom 30s infinite alternate;
  animation: zoom 30s infinite alternate;
}

@-webkit-keyframes zoom {
  50% {
    transform: scale(1.25, 1.25);
    transform-origin: center bottom;
  }
}

@keyframes zoom {
  50% {
    transform: scale(1.25, 1.25);
    transform-origin: center bottom;
  }
}

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

@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;
}

.heroText {
  max-width: 700px;
  width: 94%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  background: rgb(0 0 0 / 50%);
  padding: 30px 20px;
  border-radius: 10px;
}

.heroText .text-anglecia {
  font-size: 30px;
}


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

.scrollDown {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  cursor: pointer;
  width: 35px;
  height: 35px;
  font-size: .875rem;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(0 0 0 / 50%);
  border-radius: 50%;
  z-index: 1;
  -webkit-animation: bounce 1s ease-in-out infinite alternate;
  animation: bounce 1s ease-in-out infinite alternate;
}

@keyframes bounce {
  0% {
    transform: translate(-50%, -5px);
  }

  100% {
    transform: translate(-50%, 5px);
  }
}

/* hm overview */
.hm-overview-container {
  padding: 5rem 0 7rem;
  position: relative;
}

.hm-overview-container2 {
  padding: 4rem 0 0;
}

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

.building-sketch {
  transition: transform 500ms linear;
  background: url(../images/landing-bg.jpg) center top / cover no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.2;
}

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

/* hm overview */

/* stats */
.statsWrapper {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px dashed rgb(0 0 0 / 25%);
}

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

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* stats */

/* Projects */
.projects-slider .swiper-controls {
  position: absolute;
  right: 0;
  bottom: 2rem;
  left: 0;
  margin-top: 0;
  z-index: 99;
}

.hm-projectBox {
  height: 90vh;
  width: 100%;
  background: center bottom / cover no-repeat var(--body-color);
  padding: 2rem 0;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* .hm-projectBox::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 40%);
  background: linear-gradient(transparent 50%, rgb(0 0 0 / 100%));
  z-index: -1;
} */

.hm-projectBox .container-lg {
  position: relative;
}

.hm-projectBox .hm-projectLogo {
  width: 140px;
  position: absolute;
  height: 80px;
  right: 45px;
}

.hm-projectBox .hm-projectLogo img {
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
}

.hm-projectBox .hm-project-details {}

.hm-projectBox .project-icons {
  position: absolute;
  top: 0;
  padding: 0 7% 0 2%;
  height: 100%;
  background: linear-gradient(to left, transparent 0%, rgb(0 0 0 / 60%), rgb(0 0 0 / 100%));
  display: flex;
  align-items: center;
}


.hm-projectBox .project-icons ul {}

.hm-projectBox .project-icons li {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  margin: 20px 0 30px 0;
}

.hm-projectBox .project-icons li:last-child {
  margin-bottom: 0;
}

/* .hm-projectBox .project-icons li + li{
  border-left: 1px dashed rgb(255 255 255 / 50%);
} */

.hm-projectBox .project-icons li i {
  max-width: 40px;
  flex: 0 0 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 50%) inset;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.hm-projectBox .project-icons li p {
  margin-bottom: 0;
  padding-left: 10px;
  font-weight: 300;
  text-transform: uppercase;
}

.hm-projectBox .project-icons li p small {
  display: table;
  font-size: 75%;
  color: rgb(255 255 255 / 70%);
  letter-spacing: 1px;
}

/* Projects */


.scrollto.hm-overview-container::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url(../images/logo/element.png);
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  opacity: 0.1;
  left: 0;
  bottom: -26%;
  background-size: 20%;
}

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

/* section-gallery */
/* .gall-slide{
  height: 80vh;
} */

.section-gallery {
  margin: 0;
  padding: 0;
}

.section-gallery .gall-slide.swiper-slide {
  height: 90vh;
}

.section-gallery .gall-slide.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-heading {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 3rem 2rem 5rem;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(rgb(0 0 0 / 75%), transparent);
  z-index: 1;
}

.gallery-heading h5 {
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-gallery .gall-slide .inner {
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.section-gallery .gall-slide .img-fluid {
  transition: all 300ms ease-in-out;
}

/* 
.section-gallery .gall-slide .img-fluid img {
  aspect-ratio: 3/2;
} */

.section-gallery .gall-slide .gall-slide-footer {
  position: absolute;
  inset: auto 0 0;
  padding: 2rem 1.25rem 1.25rem;
  background-image: linear-gradient(transparent, rgb(0 0 0 / 90%));
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #fff;
  transition: all 500ms linear;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px #000;
}

.section-gallery .gall-slide .gall-slide-footer .project-slide-title {
  margin-bottom: 0;
  font-size: 1.125rem;
}

.shot_on {
  display: block;
  width: max-content;
  position: relative;
  isolation: isolate;
  padding: 8px;
}

.shot_on::before,
.shot_on::after,
.shot_on .border-corner::before,
.shot_on .border-corner::after {
  content: '';
  position: absolute;
  border: solid #fff;
  width: 8px;
  height: 8px;
}

.shot_on::before {
  left: 0;
  top: 0;
  border-width: 1px 0 0 1px;
}

.shot_on::after {
  right: 0;
  top: 0;
  border-width: 1px 1px 0 0;
}

.shot_on .border-corner::before {
  right: 0;
  bottom: 0;
  border-width: 0 1px 1px 0;
}

.shot_on .border-corner::after {
  left: 0;
  bottom: 0;
  border-width: 0 0 1px 1px;
}

.section-gallery .swiper-pagination {
  width: auto;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 2rem;
  backdrop-filter: blur(2px);
}

.section-gallery .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #c4c4c4;
  border: 1px solid #ddd;
}

.section-gallery .swiper-pagination-bullet-active {
  background-color: #fff;
  width: 10px;
  border-radius: 10px;
}

/* Gallery */



/* Awards */
.side-text {
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(-90deg) translate(50%, -40%);
  transform-origin: right;
  font-size: 10vw;
  color: color-mix(in srgb, var(--primary-color), transparent 80%);
}

.award-card {
  padding: 4rem 0 4rem;
  position: relative;
  z-index: 1;
}

.award-card .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  margin: 0 auto;
}

.award-card .inner .award-body {
  margin-top: 1rem;
  letter-spacing: 1px;
}

.award-card .inner .award-body .winner {
  text-transform: uppercase;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: 10px;
}

.award-card .inner .award-title {
  font-size: 1.5rem;
  /* font-family: var(--midsun); */
  color: var(--primary-color);
}

.award-card .inner .award-provider {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* *** */
.award-slider-container::before {
  content: '';
  position: absolute;
  inset: 50% 0 0;
  background-color: color-mix(in srgb, var(--secondary-color), var(--primary-color) 10%);
  z-index: -1;
}

.award-slider .swiper-button-prev {
  left: 0;
}

.award-slider .swiper-button-next {
  right: 0;
}

.award-slide.swiper-slide {
  height: auto;
}

.award-slide .inner {
  position: relative;
  text-align: center;
}

.award-slide .inner:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background: rgb(125, 74, 52);
  height: 1px;
  top: 50%;
  z-index: -1;
}

.award-slide .award-img {
  width: 100px;
  margin: 0 auto;
  border-radius: 50%;
}

.award-slide .award-img::before {
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
  box-shadow: 0 0 0 10px color-mix(in srgb, var(--primary-color), transparent 80%);
}

.award-slide .award-img img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  background-color: var(--body-bg);
  padding: 8px;
  transform: scale(0, 0);
  transition: all 300ms ease-in-out;
}

.award-slide.swiper-slide-active img {
  transform: scale(1, 1);
}

.award-slide.swiper-slide .award-project-name {
  white-space: nowrap;
  display: block;
  margin-top: 1rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 300ms ease-in-out;
}

.award-slide.swiper-slide-active .award-project-name {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* Awards */

/* Blogs / News */
.sideBlogBox .blogBox:not(:first-child) .inner {
  padding-top: var(--bs-gutter-y);
  border-top: 1px dashed rgb(0 0 0 / 12%);
}

.blogBox .inner {
  height: 100%;
  display: block;
  position: relative;
  text-align: left;
  z-index: 1;
}

.blogBox .img-fluid {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.blogBox .img-fluid::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.blogBox .img-fluid img {
  transition: all 1s linear;
  aspect-ratio: 1000/667;
  object-fit: cover;
}

.blogBox .inner:hover .img-fluid img {
  transform: scale(1.125, 1.125);
}

.blogBox .inner .blog-title {
  font-weight: 400;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* .blogBox .inner .blog-title:hover {
  text-decoration: underline 1px var(--primary-color);
} */

.date {
  display: block;
  color: rgb(0 0 0 / 30%);
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Blogs / News */

/* Parent speak */
#testimonials button[class^='carousel-control'] {
  top: 30%;
}

.parent-speak-slide {
  text-align: center;
  /* background-color: var(--secondary-color-dark); */
  transition: all 1s linear;
}

.parent-speak-slide .inner {
  padding: 0 0;
  /* max-width: 800px; */
  width: 100%;
  margin: 0 auto;
}

.parent-speak-box {
  margin-bottom: 2rem;
  /* height: 120px; */
}

.parent-speak-slide .inner p:last-child {
  margin-bottom: 0;
}

.parent-speak-box p {
  text-align: left;
}

.parent-speak-info {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}

.parent-speak-info span {
  border-right: 1px solid rgb(0 0 0 / 25%);
  padding-right: 10px;
  line-height: 1;
  color: var(--primary-color);
  /* font-family: var(--midsun); */
}

.parent-speak-box p {
  text-align: justify;
}

.section-blogs .heading.testi {
  margin-bottom: 3rem;
}

.testimonials {
  padding-bottom: 90px;
}

.testimonials .carousel-control-prev {
  position: absolute;
  left: 0;
  bottom: 0;
}

.testimonials .carousel-control-next {
  left: 50px;
}

.testimonials .carousel-control-prev,
.testimonials .carousel-control-next {
  top: auto !important;
  bottom: 0 !important;
}

/* Parent speak */


/*Footer*/
.help_wrapper {
  padding: 2rem 0;
  background-color: #ffffff;
  border-top: 2px solid #c2c2c2;
  position: relative;
}

.list_anchor a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 1rem;
  font-size: 13px;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
}

.list_anchor a:hover {
  background-color: #fff;
  color: var(--body-color);
}

.list_anchor a .img-fluid {
  width: 30px;
}

.footer-area {
  background: #ffffff;
  position: relative;
}

.footer-area:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/client-bg.png);
  background-repeat: no-repeat;
  background-position: center top 30%;
  background-size: 100% 200%;
  opacity: .04;
}

.footer-area .list-inline li {
  position: relative;
  padding-left: 18px;
}

.footer-area .list-inline li:before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #bf8a44;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-area a {
  display: inline-block;
  color: #a2a2a2;
  font-size: 13px;
  padding: 3px 0;
}

.footer-area a:hover {
  color: #000;
}

.footer-bottom a {
  color: #515151;
}

.foot-contact {
  background-color: var(--body-color);
  margin-bottom: 50px;
}

.foot-contact li:not(:last-child) {
  border-right: 1px solid rgb(255 255 255 / 15%);
}

.foot-contact li a {
  display: flex;
  gap: 10px;
  padding: 1rem;
  color: var(--light);
  font-size: 1rem;
  justify-content: center;
}

.foot-contact li a:hover {
  color: #fff;
}

.foot-contact li a p {
  line-height: 1.2;
}

.foot-contact li a:hover span {
  text-decoration: 1px underline;
}

.foot-contact li a i {
  height: 40px;
  max-width: 40px;
  flex: 0 0 40px;
  background-color: var(--light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo>img {
  width: 110px;
}

.gmap {
  border: 3px solid #f1f1f1;
  padding: 2px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

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

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

.footerSocial li {
  list-style: none;
}
 
.footerSocial li a i {
  margin-right: 0px !important;
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
}

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

.footer-bottom {
  padding: 10px 0;
  background-color: rgb(241 241 241 / 50%);
  border-top: 1px solid #ccc;
  position: relative;
  z-index: 1;
}

.footer-bottom>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

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

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

.footer-widget {
  margin-bottom: 30px;
}

.footer-widget h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 0px;
}

.footer-widget .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
  font-size: 13px;
}

.footer-widget .contact-item>i {
  width: 21px;
}

.footer-widget .contact-item a {
  display: inline-block;
  color: #a2a2a2;
  font-size: 13px;
  padding: 0px;
}

.footer-widget .contact-item a:hover {
  color: #000;
}

.footer-widget .contact-item i {
  color: #bf8a44;
  font-size: 14px;
  margin-right: 12px;
  margin-top: 3px;
}

.footer-widget .contact-item span {
  color: color-mix(in srgb, #1f2327, transparent 30%);
  line-height: 1.5;
} 

.button-top {
  background: rgb(70 70 70 / 32%);
  position: fixed;
  right: 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;
}

.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;
}

.project-title-container ul {
  margin-top: 2rem;
  font-size: .875rem;
  display: flex;
  gap: 10px;
}

.project-title-container ul li:not(:last-child) {
  padding-right: 10px;
  border-right: 1px solid rgb(255 255 255 / 50%);
}

.bannerText-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}

.bannerText-footer .banner-tagline {
  max-width: 700px;
}

.bannerText-footer .banner-tagline .h2 {
  /* font-weight: 700; */
  font-family: var(--midsun);
  letter-spacing: 2px;
}

/* Brands */
.brand-slider .swiper-wrapper {
  transition-timing-function: linear;
}

.brand-slider .brandLogo {
  width: 145px;
}

.brandLogo .img-fluid {
  height: 100%;
  /* filter: grayscale(1) opacity(0.5); */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Brands */

.project-text-img {
  aspect-ratio: 3/2;
  background: center 0 / 100% no-repeat;
}

/* gallery */
.gallery-slider .swiper-controls {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: auto;
  gap: 5px;
  z-index: 1;
}

.gallery-slide img {
  aspect-ratio: 3/1;
  object-fit: cover;
}

.gallery-slide .gallery-caption {
  position: absolute;
  left: 0;
  bottom: 10px;
  background-color: var(--secondary-color);
  padding: 10px 1rem 10px 2rem;
  border-radius: 0 20px 20px 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.gallery-thumb-slider {
  padding-top: 10px;
}

.gallery-thumb-slider .swiper-slide {
  opacity: 0.4;
  filter: grayscale(1);
  transition: all 400ms ease-in-out;
}

.gallery-thumb-slider .swiper-slide:hover {
  filter: grayscale(0);
}

.gallery-thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
  filter: grayscale(0);
}

/* gallery */

/* Amenities */
.amenity-wrapper {
  max-width: 1100px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.amenity-wrapper::before {
  content: '';
  position: absolute;
  width: 100vw;
  inset: 0 auto 0 0;
  background: var(--primary-color);
  background: radial-gradient(circle at 120% -30%, #ffdac2, transparent), linear-gradient(45deg, #fff4ed, #fffdfc, var(--secondary-color));
  z-index: -1;
  transition: all 500ms linear;
  transform: scaleX(0);
  transform-origin: right;
}

.amenity-wrapper.active::before {
  transform: scaleX(1);
}

.amenity-wrapper .animate {
  transform: translateX(-200px);
  opacity: 0;
  pointer-events: none;
  transition: all 500ms linear;
}

.amenity-wrapper .animate.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.amenity-text>.inner {
  padding: 3rem 4rem;
  /* color: var(--secondary-color); */
}

.amenityIconSlider {
  padding-right: 1px;
}

.amenity-slider {
  height: 500px !important;
}

.amenity-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-box.swiper-slide {
  opacity: 0;
  transition: all 400ms linear;
}

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

.amenity-box .img-fluid {
  width: 380px;
  overflow: hidden;
  border-radius: 50%;
  margin: auto;
  text-align: center;
  position: relative;
}

.amenity-box .img-fluid img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}

.amenity-box .img-fluid .caption {
  position: absolute;
  inset: auto 0 0;
  padding: 10px 20px 20px;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: .875rem;
  text-transform: uppercase;
  font-weight: 600;
}

/* Amenities */

/* Floorwise */
.floorwise-listing {
  position: absolute;
  inset: 0 auto 0 0;
  width: 420px;
  padding: 2rem;
  z-index: 2;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  /* background-color: color-mix(in srgb, var(--primary-color), transparent 00%); */
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 12%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}

.floorwise-listing .list li {
  padding-bottom: 10px;
  border-bottom: 1px dashed rgb(0 0 0 / 20%);
}

.floorwise-imgContainer {
  counter-reset: floors;
}

.floorwise-imgContainer>img {
  opacity: 0.6;
}

.floorwise-count {
  position: absolute;
  width: 130px;
  height: 130px;
  transform: scale(0.2, 0.2);
  z-index: 1; 
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgb(0 0 0 / 25%);
  transition: all 300ms ease-in-out;
}

.floorwise-count.active {
  transform: scale(1, 1);
  box-shadow: 0 0px 20px rgb(0 0 0 / 65%), 0 0 0 12px rgb(255 255 255 / 90%);
}

.floorwise-count[data-count='1'] {
  bottom: 3%;
  right: 40%;
}

.floorwise-count[data-count='2'] {
  bottom: 8%;
  right: 35%;
}

.floorwise-count[data-count='3'] {
  bottom: 14%;
  right: 30%;
}

.floorwise-count[data-count='4'] {
  bottom: 20%;
  right: 37%;
}

.floorwise-count[data-count='5'] {
  bottom: 24%;
  right: 27%;
}

.floorwise-count[data-count='6'] {
  bottom: 32%;
  right: 33%;
}

.floorwise-count[data-count='7'] {
  bottom: 38%;
  right: 42%;
}

.floorwise-count[data-count='8'] {
  bottom: 35%;
  right: 15%;
}

.floorwise-count[data-count='9'] {
  top: 25%;
  right: 15%;
}

.floorwise-count::before {
  content: counter(floors);
  counter-increment: floors;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  color: var(--body-color);
  font-size: 4.5rem;
  line-height: .1;
  box-shadow: 0 0 10px rgb(0 0 0 / 30%);
  animation: breathe 1s infinite alternate var(--delay);
}

@keyframes breathe {
  25% {
    transform: scale(1.25, 1.125);
  }

  50% {
    transform: scale(1.125, 1.25);
  }

  75% {
    transform: scale(1.25, 1.25);
  }
}

.floorwise-count.active::before {
  width: 30px;
  height: 30px;
  font-size: 100%;
  content: 'X';
  background-color: maroon;
  color: var(--secondary-color);
  animation: none;
}

.floorwise-count span {
  position: absolute;
  top: 100%;
  width: max-content;
  padding: 8px 10px 6px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--secondary-color);
  color: var(--darkgray);
  border: 1px solid;
  box-shadow: 0 10px 30px rgb(0 0 0 / 45%);
  display: none;
}

.floorwise-count.active span {
  display: block;
}

/* Floorwise */


.vision_head h2 {
  color: #000000;
}


/* Location */
.map-hld {
  position: relative;
  width: 100%;
  padding-bottom: 49.48%
}

.circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: color-mix(in srgb, var(--primary-color), transparent 50%) 1.5px solid;
  border-radius: 100%
}

.circle-1 {
  width: 7%;
  padding-bottom: 7%
}

.circle-2 {
  width: 18%;
  padding-bottom: 18%
}

.circle-3 {
  width: 30%;
  padding-bottom: 30%
}

.circle-4 {
  width: 42%;
  padding-bottom: 42%
}

.circle-5 {
  width: 54%;
  padding-bottom: 54%
}

.circle-6 {
  width: 66%;
  padding-bottom: 66%
}

.circle-7 {
  width: 78%;
  padding-bottom: 78%
}

.distance-count {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-color);
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 100%;
  z-index: 1
}

.distance-count span {
  font-size: 2rem;
  font-weight: 500;
  text-transform: none
}

.loc-pointer {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center
}

.loc-pointer .loc-icon {
  position: relative;
  max-width: 49px;
  flex: 0 0 49px;
  height: 49px;
}

.loc-pointer .loc-icon img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: #fff 1px solid;
  box-shadow: 0 4px 61px -17px rgba(0, 0, 0, 0.9);
  object-fit: cover;
}

.loc-pointer p {
  font-size: .75rem;
  color: #000;
  line-height: 100%;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0 0 0 5px;
  text-align: left;
  margin: 0
}

.loc-pointer i {
  font-size: 25px;
  color: var(--primary-color)
}

.row-reverse {
  flex-direction: row-reverse
}

.row-reverse p {
  text-align: right;
  padding: 0 5px 0 0
}

.loc-pointer .loc-icon img.no-shadow {
  box-shadow: none;
  border: 0
}

@keyframes growProgressBar {

  0%,
  33% {
    --pgPercentage: 0;
  }

  100% {
    --pgPercentage: var(--value);
  }
}

@property --pgPercentage {
  syntax: '<number>';
  inherits: false;
  initial-value: 0;
}

div[role="progressbar"] {
  --size: 12rem;
  --fg: var(--primary-color);
  --bg: transparent;
  --pgPercentage: var(--value);
  animation: growProgressBar 3s 1 forwards; 
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(closest-side, white 80%, transparent 0 99.9%, white 0), conic-gradient(var(--fg)calc(var(--pgPercentage) * 1%), var(--bg) 0);
  font-family: Helvetica, Arial, sans-serif;
  font-size: calc(var(--size) / 5);
  color: var(--fg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
}

div[role="progressbar"]::before {
  display: none;
  counter-reset: percentage var(--value);
  content: counter(percentage) '%'
}

.loc-nh44 {
  right: 33%;
  bottom: 40%
}

.loc-ecm {
  right: 39%;
  bottom: 29%
}

.loc-kgAirport {
  right: 26%;
  top: 54%
}

.loc-crossingRepublik {
  right: 29%;
  top: 31%
}

.loc-techPark {
  left: 25%;
  top: 41%
}

.loc-clarksExotica {
  left: 25%;
  bottom: 28%
}

.loc-collinsAerospace {
  left: 16%;
  top: 30%
}

.bkcomplex {
  left: 32%;
  top: 24%
}

.bandrasealink {
  right: 40%;
  top: 17%
}

.loc-narimanpoint {
  right: 22%;
  top: 8%;
}

.loc-weh {
  right: 20%;
  top: 65%;
}

.loc-Eeh {
  right: 45%;
  top: 82%;
}

.loc-shipra {
  right: 43%;
  top: 27%;
}

.loc-nh24 {
  right: 29%;
  top: 42%;
}

.loc-school {
  right: 59%;
  top: 44%;
}

.loc-emc {
  right: 50%;
  top: 35%;
}

.loc-jewar {
  right: 60%;
  bottom: 25%;
}

.loc-gc {
  right: 40%;
  bottom: 10%;
}

/* Location */

/* Project enquiry form */
.enquiry-container .inner {
  padding: 2rem;
  background-color: var(--secondary-color);
}

/* Project enquiry form */

/* contact */
.contact-card .inner {
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .875rem;
}

.contact-card .inner>i {
  max-width: 50px;
  flex: 0 0 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-color);
  border: 1px solid;
}

.contact-card .card-title {
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-family: var(--midsun);
  letter-spacing: 2px;
  color: var(--primary-color);
}

.contact-card ul li:not(:last-child) {
  margin-bottom: 7px;
}

.contact-form .inner {
  padding: 2rem;
  background-color: var(--body-bg);
}

/* contact */

/* Career page */
.career-card .inside {
  border-radius: 0px;
  height: 100%;
  padding: 20px;
  border: 0;
  transition: all 300ms ease-in-out;
}

.career-card .inside:hover {
  transform: translateY(-5px);
  box-shadow: 0 50px 30px -40px rgb(0 0 0 / 10%);
}

.career-card .card-header {
  background-color: transparent;
  text-align: left;
}

.career-card .card-header .job-role {
  font-family: var(--midsun);
  color: var(--primary-color);
  letter-spacing: 1.5px;
  font-weight: 600;
}

.career-card p {
  line-height: normal;
}

.career-card .list-group .list-group-item {
  font-size: 14px;
  line-height: normal;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
}

.career-card .list-group .list-group-item strong {
  max-width: 100px;
  flex: 0 0 100px;
}

.career-card .list-group .list-group-item span {
  max-width: calc(100% - 100px);
  flex: 0 0 calc(100% - 100px);
}

/* Career page */
.careers {
  padding: 60px 0px;
}

.careers ul.job-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.careers ul.job-list>li.job-preview {
  background: #fff;
  border: 1px solid #d7e2e9;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  border-radius: 0.4rem;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  float: left;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.careers ul.job-list>li.job-preview:hover {
  /* cursor: pointer; */
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.careers .job-title {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}

.careers .company {
  color: #96a4b1;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}

.careers .job-preview .btn {
  margin-top: 0.3rem;
}

.careers .btn-apply {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  background-color: transparent;
  color: #000000;
  border: 1px solid #ba7d43;
  padding: 0.6rem 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  border-radius: 2rem;
}

.careers .btn-apply:hover {
  background-color: #ba7d43;
  color: #fff;
  border: 1px solid #ba7d43;
}

@media (max-width: 575px) {
  .careers .job-preview .content {
    width: 100%;
  }
}










/* Blogs */
.playBtn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.25rem;
  border: 0;
  background-color: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
  z-index: 1;
}

.playBtn:hover {
  background-color: var(--body-color);
}

.inside-blogs-aside .inner {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.blog-asideBox:not(:last-of-type) {
  margin-bottom: 1rem;
}

.blog-asideBox {
  padding: 2rem;
  background-color: var(--secondary-color);
}

.blog-asideBox .inlineBtn {
  border: 0;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 13px;
  padding: 5px 8px;
  min-width: 80px;
}

.blog-asideBox .inlineBtn:hover {
  background-color: var(--body-color);
}

.blogsPage-control {
  margin-top: 2.5rem;
}

.blogsPage-control a {
  color: initial;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blogsPage-control a span {
  color: var(--secondary-color-dark);
}

.blogsPage-control a:hover p {
  color: var(--body-color);
}

.main-blog-body :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--serif);
  color: var(--primary-color);
}

.main-blog-body :is(ul, ol),
.main-blog-body .list {
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding-left: 20px;
}

.main-blog-body :is(ul, ol) li:not(:last-of-type) {
  margin-bottom: 10px;
}

.main-blog-body :is(ul, ol) li::marker {
  color: var(--primary-color);
}

/* Blogs */

/*--faqs-css--*/
.faqs-box {
  position: relative;
  z-index: 2;
}

.faqs-box .faqs_question {
  width: 100%;
  display: block;
  padding: 1rem 2.5rem 1rem 1rem;
  border: 1px solid rgb(0 0 0 / 8%);
  cursor: pointer;
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  transition: all 300ms ease-in-out;
}

.faqs-box .faqs_question:hover,
.faqs-box .faqs_question.active {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 1rem 2.5rem 1rem 1rem;
}

.faqs-box .faqs_question.active {
  border-bottom-color: transparent;
}

.faqs-box .faqs_question span {
  position: absolute;
  right: 15px;
  top: 15px;
  transition: transform 300ms ease-in-out;
}

.faqs-box .faqs_question.active span {
  transform: rotate(180deg);
}

.faqs-box .faqs_answer {
  width: 100%;
  display: block;
  background-color: var(--secondary-color);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faqs-box .faqs_question.active+.faqs_answer {
  margin-bottom: 10px;
  border: solid rgb(0 0 0 / 8%);
  border-width: 0 1px 1px;
}

.faqs-box .faqs_answer article {
  width: 100%;
  padding: 1.25rem;
}

.faqs-box>h4 {
  font-family: var(--midsun);
  margin: 2.5rem 0 1rem;
  padding-left: 10px;
  color: var(--primary-color);
  letter-spacing: 2px;
  border-left: 2px solid var(--primary-color);
}

/*--faqs--*/
/* Media */
.printMedia-container:not(.show),
.digital-container:not(.show) {
  display: none;
}

.blogBox.newsBox .inner {
  border-bottom: 1px solid var(--primary-color);
}

.blogBox.newsBox article {
  padding: 1rem 0;
}

.blogBox.newsBox .blog-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Media */

/* About Page */
.vmBox .inner {
  padding: 2rem;
}

.vmBox .inner article:not(:last-child) {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed rgb(0 0 0 / 15%);
}

/* Founder */
.chairman-textarea .inner {
  height: 100%;
  padding: 2rem 1rem 2rem 2rem;
  background-color: #fff;
}

.chairman-textarea .chairman-text {
  height: 340px;
  padding-right: 2rem;
}

/* Founder */
/* Customer Relationship */
.relationBox.swiper-slide .inner {
  padding: 2.5rem;
}

.relationBox.swiper-slide .inner::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scale(0.25, 0.25);
  background-color: rgb(255 255 255 / 70%);
  transition: all 300ms ease-in-out;
  z-index: -1;
}

.relationBox.swiper-slide.swiper-slide-active .inner::before {
  background-color: #fff;
  transform: scale(1, 1);
  border-radius: 0;
}

.relationBox .img-fluid {
  width: 60px;
  margin-bottom: 1rem;
}

.partners-container:not(.show) {
  display: none;
}

.partners-container {
  text-align: center;
}

.partners-container .inner {
  margin-bottom: 2rem;
}

.brandLogo .img-fluid {
  height: 80px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brandLogo .img-fluid img {
  height: 100%;
  object-fit: contain;
}

/* Customer Relationship */

.appreciation-video video {
  padding: 1rem;
}

.appreciation-letter-box>.inner {
  height: 100%;
  padding: 1rem;
  background-color: var(--secondary-color-dark);
}

.blogBox.appreciation-slide .img-fluid img {
  aspect-ratio: unset;
}

.blogBox.appreciation-slide .img-fluid::before {
  display: none;
}

/* About Page */
/* CSR */
.csrBox {
  transition: all 300ms ease-in-out;
}

.csrBox:hover {
  background-color: var(--secondary-color);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 10%);
}

.csrBox:not(:last-of-type) {
  margin-bottom: 2rem;
}

.csr-details .inner {
  height: 100%;
  padding: 2rem;
  background-color: var(--secondary-color);
  border-right: 2px solid var(--primary-color);
}

.csr-details .csr-date {
  padding: 10px; 
  margin-bottom: 1rem;
  font-size: 13px;
  background-color: var(--secondary-color-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.csr-details .csr-date span {
  font-size: 150%;
  font-weight: 700;
}

/* CSR */

.heading .subheading img {
  width: 25px;
  margin-right: 12px;
}

.heading .subheading img.mar-left {
  width: 25px;
  margin-left: 12px;
}

.heading .subheading img.mar-right {
  width: 25px;
  margin-right: 12px;
}

.Enquire_btn a .link-hover-text {
  background: #bc7c3c;
  width: 140px;
  padding: 8px 0;
  color: #fff;
  text-align: center;
  border-radius: 50px;
}

.Enquire_btn a .link-hover-hover {
  background: #bc7c3c !important;
  width: 140px;
  padding: 8px 0;
  color: #fff;
  text-align: center;
  border-radius: 50px;
}

.hm-overview-container2 .heading .subheading {
  justify-content: center;
}

/* Inside page */

.blogBox {
  display: flex;
  padding-bottom: 15px;
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  margin-bottom: 15px;
}

/* .blogBox img {
  width: 180px;
  margin-right: 22px;
  border-radius: 10px;
} */
.blogBox img {
  width: 180px;
  margin-right: 22px;
  border-radius: 10px;
  height: 110px;
  object-fit: cover;
  object-position: top;
  border: 1px solid #CCC;
}

.section-blogs {
  position: relative;
}

.section-blogs:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #eee;
  top: 0;
}


.templines-container {
  width: 100%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  max-width: 84rem;
  margin: 0 auto;
}

.templines-about-us-content {
  background-image: url(../images/about-bg-in.png);
  background-size: 100%;
  background-position: center top;
}


.templines-title-content-wrap .templines-title {
  margin-bottom: 0.9375rem;
  color: var(--primary-color);
  font-family: var(--midsun);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 2rem;
}

.gap-100 {
  padding-top: 6.25rem;
}

.gap-70 {
  padding-top: 4.375rem;
}

.gap-50 {
  padding-top: 3.125rem;
}

.about-us-text-section.style-home-page-four {
  max-width: none;
  padding-left: 1.6875rem;
  padding-right: 1.6875rem;
  text-align: justify;
}

.about-us-text-section {
  max-width: 22.25rem;
  font-size: 1.5rem;
  line-height: 2.125rem;
  color: var(--dark-light-color-two);
}

.templines-decor-rotate-img-wrap.small-style {
  border: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 9.25rem;
  height: 9.25rem;
  border-radius: 100%;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.templines-decor-rotate-img-wrap .rotate-text-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  z-index: 1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

}

.templines-decor-rotate-img-wrap .logotype-rotate-img img {
  width: 100px;
}


.text-circle {
  position: relative;
  /*  top: 0%;
    left: 68%;
    width: 80%; */
  -webkit-animation: cir36 10s linear infinite;
  animation: cir36 10s linear infinite;
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}


.templines-info-item-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 1;
}

.templines-info-item-wrap+.templines-info-item-wrap {
  padding-left: 2.1875rem;
  margin-left: 2.1875rem;
  border-left: 0.0625rem solid #e8e8e9;
}

.templines-info-item-wrap .top-info-text-content {
  margin-bottom: 0.9375rem;
  color: #181a20;
}  

.floor-plan {
  padding: 80px 0px;
}

.floor-plan h5 {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 18px;
  display: flex;
}

.floor-plan h2 {
  color: var(--primary-color);
  font-family: var(--midsun);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 2rem;
}

.floor-plan h5 img {
  width: 25px;
  margin-right: 12px;
}

.card {
  height: 480vh;
  border-radius: 2rem;
}

.card:nth-child(1) {
  height: 480vh;
}

.card:nth-child(2) {
  margin-top: -400vh;
  height: 400vh;
}

.card:nth-child(3) {
  margin-top: -320vh;
  height: 320vh;
}

.card:nth-child(4) {
  margin-top: -240vh;
  height: 240vh;
}

.card:nth-child(5) {
  margin-top: -160vh;
  height: 160vh;
}

.card:nth-child(6) {
  margin-top: -80vh;
  height: 80vh;
}

.cards_wrap__card-stick {
  top: 5rem;
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 2rem;
  background-position: center;
  background: #ffffff;
  background-size: cover;
  height: 80vh;
}

.card h2 {
  font-size: 3vw;
  text-align: center;
}

.card h2 span {
  margin-top: 1rem;
  display: block;
  font-size: 1rem;
  font-weight: normal;
}

.color2 {
  background: #584796;
}

.color3 {
  background: #4a84a1;
}

.color4 {
  background: #65b4b4;
}

.last {
  background: #424292;
}


.pageHeader {
  padding: 20px 0;
  border-bottom: 1px solid #ececec;
}

.pageMenu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 1.5rem 50px;
}

/* .pageMenu li {
  flex-grow: 1;
} */

.pageMenu li .pageMenuBtn {
  color: #000;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  padding: 0;
  border: 0;
  background-color: transparent;
}

.pageMenu li .pageMenuBtn .img-fluid {
  width: 35px;
  margin: 0 auto 5px;
}


/**----------------------------------------
START: Theme Amenities CSS
----------------------------------------*/
@media (max-width: 991px) {
  .amenities-section {
    padding-bottom: 30px;
  }
}

.amenities-section .section-heading {
  margin-bottom: 30x;
}

@media (max-width: 991px) {
  .amenities-section .section-heading {
    margin-bottom: 40px;
  }
}

.amenities-section .section-heading .sub-heading {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 18px;
  display: flex;
}

.amenities-section .section-heading .sub-heading img {
  width: 25px;
  margin-right: 12px;
}

.amenities-section .section-heading .section-title {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-family: var(--midsun);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 2rem;
}

@media (max-width: 991px) {
  .amenities-section .section-heading .section-title {
    width: 100%;
    line-height: 1.2;
  }
}

.amenities-item {
  border: 0.0625rem solid #e6e6ea;
  height: 100%;
}

.top-gap-enable {
  margin-top: 1.5rem;
}

.arrow-enable {
  position: relative;
}

.arrow-enable:before {
  content: "";
  background: var(--border-color);
  width: 1.5rem;
  height: 0.0625rem;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -1.5rem;
}

@media (max-width: 991px) {
  .amenities-item {
    margin-bottom: 40px;
  }
}

.amenities-item .amenities-icon {
  color: #333;
  font-size: 65px;
  height: 75px;
  width: 75px;
  padding: 25px 0 0px;
  line-height: 1;
  display: inline-block;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}

.amenities-item .amenities-item-title {
  margin: 15px 0 25px 0;
  line-height: 1;
  font-size: 18px;
  font-weight: 400;
}

.amenities-item p:last-child {
  margin-bottom: 0;
}

.amenities-item:hover .amenities-icon {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

.amenities-2 {
  padding-bottom: 95px;
}

@media (max-width: 991px) {
  .amenities-2 {
    padding-bottom: 45px;
  }
}

@media (max-width: 767px) {
  .amenities-2 {
    padding-bottom: 35px;
  }
}

@media (max-width: 991px) {
  .amenities-2 .section-heading {
    padding-bottom: 25px;
  }
}

.amenities-2 .section-heading .section-title {
  line-height: 1.2;
}

.amenities-box {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  border: 1px solid var(--tj-color-theme-primary);
  margin-bottom: 25px;
  overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 991px),
(max-width: 767px),
(max-width: 575px) {
  .amenities-box {
    padding: 40px 20px;
  }
}

.amenities-box .amenities-icon {
  color: var(--tj-color-theme-primary);
  font-size: 75px;
  height: 75px;
  width: 75px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 30px;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}

.amenities-box .amenities-item-title {
  margin-bottom: 25px;
  line-height: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .amenities-box .amenities-item-title {
    font-size: 20px;
  }
}

.amenities-box .amenities-thumb {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}

.amenities-box .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}

.amenities-box p:last-child {
  margin-bottom: 0;
}

.amenities-box:hover .overlay,
.amenities-box:hover .amenities-thumb {
  visibility: visible;
  opacity: 1;
}

.amenities-box:hover .amenities-icon {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

/* !END: Theme Amenities CSS */


/* -------- Landing page ------- */
.game-section {
  padding: 60px 50px;
}

.game-section h2 {
  color: var(--primary-color);
  font-family: var(--midsun);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 2rem;
}

.game-section h2.line-title {
  text-align: center;
}

.game-section .owl-stage {
  margin: 15px 0 0 0;
  display: flex;
  display: -webkit-flex;
}


/* .game-section .item {
   margin: 0 15px 60px;
  width:100%;
  height:100%;
  /*display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  background: #343434 no-repeat center center / cover;
  border-radius:0px;
  overflow: hidden;
  position: relative; *
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.game-section .item.active {
  width: 500px;
  /* box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25); *
}
.game-section .item:hover {
  width: 500px;
  /* box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25); 
} 
*/
.game-section .item img {
    width: 100%;
    border-radius: 8px;
}

.game-section .item:after {
  /*content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
   background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)); */
}

.game-section .item-desc {
  padding: 0 24px 12px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform: translateY(calc(100% - 50px));
  -webkit-transform: translateY(calc(100% - 50px));
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.game-section .item.active .item-desc {
  transform: none;
  -webkit-transform: none;
}

.game-section .item-desc p {
  opacity: 0;
  -webkit-transform: translateY(32px);
  transform: translateY(32px);
  transition: all 0.4s ease-in-out 0.2s;
  -webkit-transition: all 0.4s ease-in-out 0.2s;
}

.game-section .item.active .item-desc p {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.game-section .owl-theme.custom-carousel .owl-dots {
  margin-top: 20px;
  position: relative;
  z-index: 5;
  text-align: center;
}

.game-section .owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;

}

.game-section .owl-theme .owl-dots .owl-dot span {
  width: 30px;
  height: 5px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 0px;
}

.game-section .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #ba7d43;
}


/******** Middle section CSS End *******/

/***** responsive css Start ******/

@media (min-width: 992px) and (max-width: 1199px) {

  /* -------- Landing page ------- */
  .game-section {
    padding: 50px 30px;
  }

  /* 
  .game-section .item {
    margin: 0 12px 60px;
    width: 260px;
    height: 360px;
  } */

  /* .game-section .item.active {
    width: 400px;
  } */

  .game-section .item-desc {
    transform: translateY(calc(100% - 46px));
    -webkit-transform: translateY(calc(100% - 46px));
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* .line-title {
    width: 330px;
  } */

  /* -------- Landing page ------- */
  .game-section {
    padding: 50px 30px 40px;
  }

  /* 
  .game-section .item {
    margin: 0 12px 60px;
    width: 240px;
    height: 330px;
  }

  .game-section .item.active {
    width: 360px;
  } */

  .game-section .item-desc {
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
}

@media (max-width: 767px) {
  /* .line-title {
    width: 250px;
  } */

  /* -------- Landing page ------- */
  .game-section {
    padding: 30px 15px 20px;
  }

  /* .game-section .item {
    margin: 0 10px 40px;
    width: 200px;
    height: 280px;
  }

  .game-section .item.active {
    width: 270px;
    box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
  }

  .game-section .item-desc {
    padding: 0 14px 5px;
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  } */
}

/*----------------------------------------*/
/*  7.  Feature CSS
/*----------------------------------------*/
.feature-area {
  background-image: url(../images/feature-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.feature-area::before {
  background-color: #c3904f;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 59.8%;
  opacity: 0.9;
  z-index: -1;
}

.single-feature img {
  margin-bottom: 10px;
  width: 38px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .feature-area::before {
    width: 63.5%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .feature-area::before {
    width: 65%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-area::before {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .feature-area::before {
    width: 100%;
  }
}

.section-padding-sm {
  padding-top: 90px;
  padding-bottom: 90px;
}

/*-- Feature Wrapper --*/
.feature-wrapper>h2 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

@media only screen and (max-width: 479px) {
  .feature-wrapper>h2 {
    font-size: 24px;
  }
}

.feature-wrapper>p {
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 45px;
  color: #fff;
  font-weight: 500;
}

.feature-wrapper h2 {
  color: #fff;
  font-family: var(--midsun);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 2rem;
}

.feature-wrapper p {
  color: #fff;
}

.mb-n50 {
  margin-bottom: -50px;
}

/*-- Single Feature --*/
.single-feature {
  padding-right: 110px;
}

.single-feature img {
  margin-bottom: 10px;
}

.single-feature h4 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  font-weight: 500;
  position: relative;
  padding-bottom: 11px;
  margin-bottom: 17px;
}

.single-feature h4::before,
.single-feature h4::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  background-color: #fff;
  height: 1px;
  width: 38px;
}

.single-feature h4::after {
  bottom: 4px;
  width: 56px;
}

.single-feature p {
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  line-height: 23px;
  color: #fff;
  text-align: justify;
  font-weight: 400;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-feature {
    padding-right: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .single-feature {
    padding-right: 15px;
  }
}



.plan-section {
  background: #f1f1f1;
}

.plan-section h2 {
  color: var(--primary-color);
  font-family: var(--midsun);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 2rem;
}

.plan-section .plan-content {
  margin-right: 32.5px;
}

.plan-content ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.plan-content ul li:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

.plan-content ul li h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}

.plan-content .pdf-box {
  margin-top: 55px;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.plan-content .pdf-box h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 0;
}

.amenities-item .amenities-icon img {
  margin-bottom: 25px;
  display: inline-block;
  width: 60px;
}

/* 
.brand_logo ul {list-style: none;padding: 0;margin: 0;display: flex;gap: 0 20px;margin-top: 20px;}

.brand_logo ul li {width: 14%;padding: 15px;border: 1px dashed #CCC;} */




/*-- popup COde --*/

/* -- enquire popup -- */
.popup_module {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}

.popup_module .popup_module_in {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 80%);
}

.popup_module .popup_container {
  width: 490px;
  max-width: calc(100% - 30px);
  background: var(--secondary-color-light);
  padding: 30px;
  position: relative;
  border-radius: 10px;
}

.popup_module .popup_container:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url('../images/logo/element.png');
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  opacity: 0.2;
  left: 0;
  bottom: 0;
  background-size: 75% auto;
  background-position: center;
}

.enquire_title {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  line-height: 1.25em;
  margin: 0 0 20px 0;
  color: #222;
  letter-spacing: .6px;
}

.enquire_form h2,
.enquire_title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 22px;
}

.enquire_form input {
  margin-bottom: 0;
  background: transparent;
  height: 45px;
  padding: 0 10px;
}

.enquire_form textarea {
  background: transparent;
  padding: 0 10px;
  height: 90px;
  margin-bottom: 0;
}

.enquire_form .form-check .form-check-input {
  margin-top: 3px;
}

.enquire_form .form-group {
  margin-bottom: 15px;
  position: relative;
}

div#lblProcessForm,
div#spanidbut {
  color: red;
  font-size: 13px;
  line-height: 14px;
  padding-top: 4px;
}


.enquire_form select.form-control:focus {
  box-shadow: none;
}

.enquire_form .form-check .form-check-input {
  box-shadow: none !important;
}

.enquire_form .form-check .form-check-input:before {
  opacity: 0;
}

.enquire_form .form-check .form-check-input:checked:before {
  opacity: 1;
}

.enquire_form .form-check-inline {
  margin-bottom: 0;
}

.popup_module span.pop_close {
  position: absolute;
  right: 14px;
  top: 9px;
  font-weight: 600;
  color: #000;
  opacity: 0.4;
  cursor: pointer;
}

.popup_module span.pop_close:hover {
  opacity: 0.7;
}

.form-check.form-check-inline {
  display: flex;
}

.enquire_form .form-check-inline .form-check-label {
  display: block;
  position: relative;
  padding-left: 6px;
}

input[type=checkbox] {
  position: relative;
  border: 2px solid var(--primary-color) !important;
  border-radius: 2px;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0 .6em 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 18px;
  width: 18px;
  -webkit-appearance: none;
  opacity: .5;
  background-color: #0000 !important;
}

input[type=checkbox]:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  width: 4px;
  height: 10px;
  border: solid var(--primary-color);
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
}

.enquire_form .form-check .form-check-input:checked:before {
  opacity: 1;
}

.form_control.main-cpt {
  display: flex;
  align-items: center;
  gap: 0 15px;
  position: relative;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.form_control.main-cpt img {
  width: 80px;
}

.form_control.main-cpt a {
  color: var(--primary-color);
}

.form_control.main-cpt span {
  font-size: 14px;
  color: #333;
}

.main-cpt input {
  width: 127px;
  height: 37px;
  margin: 0;
  padding: 0 2px;
  border-bottom: 1px solid #CCC;
}

.main-cpt input::placeholder {
  letter-spacing: 0;
}

.popup_error_mgs {
  color: red;
  font-size: 13px;
  letter-spacing: 0.5px;
  line-height: normal;
  position: absolute;
  bottom: -20px;
  display: block;
  left: 8px;
}

.butn-dark2 {
  font-weight: 400;
  text-transform: uppercase;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 22px;
  margin: 0;
  position: relative;
  font-size: 15px;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  overflow: hidden;
}

.butn-dark2:after {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 100%;
  z-index: 1;
  background: #222;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.butn-dark2:hover:after {
  width: 100%;
  left: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.butn-dark2 span {
  position: relative;
  z-index: 2;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
  border: 0px solid transparent;
}

/*-- end popup --*/



.media_card .media_img {
  border: 1px solid #CCC;
  height: 310px;
  overflow: hidden;
  margin-bottom: 20px;
}

.media_card .media_content .date {
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}

.media_card .media_content .date span {
  background: var(--primary-color);
  color: #FFF;
  padding: 1px 5px;
  font-weight: 500;
}

.media_card .media_content h4 {
  font-size: 15px;
  text-align: justify;
}

.media_card .media_content a {
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 13px;
}

.media_section {
  padding-bottom: 70px;
}

.media_card_row {
  gap: 40px 0;
}

.media_card .media_content a {
  position: relative;
  transition: all 0.5s ease;
}

.media_card .media_content a i {
  margin-left: -14px;
  transition: all 0.5s ease;
  opacity: 0;
}

.media_card .media_content a:hover i {
  margin-left: 0;
  opacity: 1;
}

.media_card .media_content a:hover {
  margin-left: 5px;
}

.inside_banner {
  height: 500px;
}


.project_img {
  padding: 0;
}

/* .project_img img {
  height: 450px;
  object-fit: cover;
  object-position: bottom;
} */

.project_content {
  background: #fbf8f6;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 57px;
  position: relative;
}

.project_content h2 {
  text-align: left;
}

.project_content .templines-info-item-wrap {
  width: auto;
  margin-left: 0;
}

.project_content a {
  background: var(--primary-color);
  width: 140px;
  padding: 8px 0;
  color: #fff;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  margin-top: 50px;
  transition: all 0.5s ease;
}

.project_content a:hover {
  color: #FFF;
  background: #555;
}

.project_content .shape1 {
  width: 50px;
  height: 50px;
  background: #fbf8f6;
  position: absolute;
  top: 10px;
  left: -25px;
  transform: rotate(45deg);
}

.project_content .heading .h2 {
  margin-bottom: 17px;
}

.project_row.reverse {
  flex-direction: row-reverse;
}

.project_row.reverse .project_content .shape1 {
  left: auto;
  right: -25px;
}

.project_content:before {
  content: '';
  background-image: url('../images/about-bg-in.png');
  background-size: auto 133%;
  background-position: center top;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.project_content>div {
  position: relative;
  z-index: 2;
}

.thankyou_section {
  padding-top: 100px;
}

.thankyou_section .content {
  padding: 60px 15px;
  margin: 0 auto;
  text-align: center;
  width: 70%;
}

.thankyou_section .content img {
  max-width: 250px;
  margin: auto;
  margin-bottom: 25px;
}

.thankyou_section .content h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.thankyou_section .content p {
  color: #000;
  text-align: center;
  font-size: 18px;
  margin-bottom: 7px;
}

.thankyou_section a {
  background: var(--primary-color);
  padding: 10px 29px;
  color: #fff;
  text-align: center;
  border-radius: 50px;
  margin-top: 10px;
  display: inline-block;
  transition: all 0.5s ease;
}

.thankyou_section a:hover {
  background: #333;
}

.thankyou_page .logo a img:nth-child(1) {
  display: none;
}

.thankyou_page .header:hover .logo a img,
.thankyou_page .header.fixed .logo a img {
  transform: translateY(0);
}

.disclaimer_section {
  padding-bottom: 70px;
}

.disclaimer_section h1 {
  text-align: left;
  margin-bottom: 20px;
}

.disclaimer_content {
  text-align: justify;
}

.disclaimer_content h4 {
  margin-bottom: 15px;
  font-size: 21px;
}

.disclaimer_content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.disclaimer_content ul li:not(:last-child) {
  margin-bottom: 15px;
}

.hm-overview p {
  text-align: center;
}

.hm-overview-ab p {
  text-align: left;
}

.theme_btn {
  background: #bc7c3c !important;
  min-width: 140px;
  padding: 8px 15px;
  color: #fff;
  text-align: center;
  border-radius: 50px;
}

.theme_btn:hover {
  background: #58595b;
  color: #fff;
}

.image_content_section .content_side p {
  text-align: justify;
}

.sustainability_section .heading p {
  text-align: justify;
}

.project-carousel .owl-nav {
  position: absolute;
  bottom: 30px;
  z-index: 9;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0 20px;
}

.project-carousel .owl-nav button {
  position: relative;
}

.project-carousel .owl-nav button .div {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
}

.project-carousel .owl-nav button div {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
}

.hm-overview-container .caption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #FFF;
  background: rgb(0 0 0 / 76%);
  font-size: 14px;
  padding: 2px 10px;
  border-radius: 20px;
}

.brands-carousel {
  margin-bottom: 10px;
}

.contact_get_in_touch {
  padding-bottom: 60px;
}
 

.blog_details_section .feature_blog img {
  width: 100%;
  border-radius: 15px;
}

.blog_details_section .feature_blog {
  margin-bottom: 40px;
}

.blog_details_section .blog_dd_content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog_details_section .blog_dd_content ul li:not(:last-child) {
  margin-bottom: 8px;
}

.blog_details_section .blog_dd_content h4 {
  font-size: 26px;
  color: #000;
  font-family: var(--midsun);
  letter-spacing: 4px;
  margin-bottom: 10px;
  margin-top: 40px;
}


.blog_card .blog_img {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.blog_card:hover .blog_img img {
  transform: scale(1.1);
}

.blog_card .blog_img img {
  transition: all 0.5s ease;
}

.blog_card .blog_content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.blog_card .blog_content .date,
.blog_details_section h6.date {
  color: #bc7c3c;
  font-weight: 700;
  margin-bottom: 9px;
  border-left: 4px solid;
  padding-left: 7px;
}

.blog_card .blog_content .date span,
.blog_details_section h6.date span {
  color: #000;
}

.blog_card .blog_content .link {
  color: #bc7c3c;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.blog_card .blog_content .link i {
  margin-left: 5px;
}

.blog_card .blog_content .link:hover {
  margin-left: 5px;
}

.blog_card_row {
  gap: 30px 0;
}

.heroText a.button {
  background: #bc7c3c !important;
  width: 140px;
  padding: 8px 0;
  color: #fff;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
}


/* testimonials - start  */

.testimonials-section .t-img {

  border-radius: 16px;

}

.testimonials-section .thumbnail {

  position: relative;
  display: inline-block;

}


/* video play btn - start */

.testimonials-section .play-btn {
  position: absolute;
  inset: 0;
  margin: auto;

  width: 90px;
  height: 90px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 40px;
  color: white;
  background: rgb(188, 124, 60, 0.5);
  border-radius: 50%;
  padding-left: 6px;
  transition: .2s ease;
}

.testimonials-section .play-btn::before,
.testimonials-section .play-btn::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: pulseRing 1.8s infinite ease-out;
}

.testimonials-section .play-btn::before {
  inset: -10px;
}

.testimonials-section .play-btn::after {
  inset: -25px;
  animation-delay: 0.4s;
}

.testimonials-section .play-btn {
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
  transform: scale(1.08);
  transition: 0.3s ease;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* video play btn - end */


/* testimonials - end  */


/* our projects - start */

.our-projects-section h4 {

  padding-inline: 32px;

}

.our-projects-section .viewmore {

  right: auto;
  left: 40px;
  bottom: 60px;

}

.our-projects-section .explore-btn {

  margin-left: 32px;
  font-size: 14px;

}


.our-projects-section .hm-projectBox {

  height: 540px;

}
.our-projects-section.project_page .hm-projectBox {
    height: 420px;
    border-radius: 25px;
    overflow: hidden;
}


.our-projects-section.project_page .theme_btn {
    margin-right: 15px;
}

.our-projects-section.project_page .hm-projectBox .project-icons li .theme_btn i {
    height: auto;
    width: auto;
    box-shadow: none !important;
    min-width: auto !important;
    margin: 0;
    max-width: none;
    display: inline-block;
}


.our-projects-section .hm-projectBox .hm-projectLogo {

  right: auto;
  /* inset: 0 0 0 auto; */

}

.our-projects-section .hm-projectBox .project-icons li {

  margin: 20px 0 23px 0;

}

.our-projects-section .logo-central-50 {

  inset: -1px 20px 0 auto !important;
  width: 61px;
}

.our-projects-section .logo-central-ikon {

  inset: -6px 20px 0 auto !important;
  width: 87px;

}

.our-projects-section .logo-central-market {

  inset: -18px 20px 0 auto !important;
  width: 108px;

}

.our-projects-section .enquire-btn {

  font-size: 14px;

}

.our-projects-section .list-inline h4 {

  font-size: 27px;

}

.our-projects-section .theme_btn {

  min-width: 133px;
  padding: 8px 0px;
  font-size: 13px !important;

}

.projects-section h1 { 

margin-bottom: 40px;

 }


/* our projects - end */


/* project overview - start */

.project-overview-section .project-info-icon {

  margin-bottom: 20px;
  width: 54px;

}

.project-overview-section .templines-row {

  margin-top: 50px;

}

.project-overview-section .project-icon {

  width: 220px;

}

.project-overview-section .templines-info-item-wrap .top-info-text-content {

  font-weight: 500;

}

/* project overview - end */


/* location map - start */

.location-map-section .project-map {

  border-radius: 14px;

}

.location-map-section .mil-map-frame {
    border-radius: 14px;
    height: calc(100vh - 110px );
}

.location-map-section .near-locations .item {
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 36%);
    border-radius: 15px;
    padding: 6px;
    border: 1px solid #dadada;
    background: #F9F9FF;
    color: #001B3E;
    margin-bottom: 15px;
}
.location-map-section .near-locations .item p {
    line-height: 15px;
    font-size: 12px;
}
.location-map-section .near-locations .item p br {
    display: none;
}
.location-map-section .map-tab {

  cursor: pointer;

}
.near-locations {
    padding: 20px 8% 0;
    width: 58%;
    margin: 0 21%;
}
.location-carousel .owl-stage-outer {
    text-align: center;
}
.location-carousel .owl-stage {
    margin-inline: auto;
}
/* location map - end */


/* why invest with westway - start */



.why-invest-section .mil-img-frame img {

  position: relative;

}

.why-invest-section .mil-img-frame {

  padding-bottom: 0;

}



/* why invest with westway - end */


.highlights_section {
  padding-top: 60px;
}

.highlights_slider .items {
  padding: 0 15px;
}

.highlight_card .content h4 {
  font-size: 22px;
  color: var(--primary-color);
  font-family: var(--midsun);
  letter-spacing: 3px;
  line-height: 1.3;
}

.highlight_card .highlight_image {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.highlights_slider_wrap {
  padding: 0 30px;
  margin-top: 20px;
}

.highlight_card {
  transform: scale(0.95) translateY(0px);
  transition: all 0.5s ease;
}

.highlight_card:hover {
  transform: scale(1) translateY(10px);
  transition-delay: 0.1s;
  transform-origin: center;
}

.highlight_card p { 
  color: var(--body-color);
}

 


.highlights_slider .owl-prev,
.highlights_slider .owl-next {
  width: 40px;
  height: 40px;
  top: 50%;
  bottom: auto;
  margin-top: -60px;
  border-radius: 50%;
  background-color: var(--primary-color) !important;
  opacity: 1;
  position: absolute;
  right: -22px;
  color: #FFF !important;
}

.highlights_slider .owl-prev {
  right: auto;
  left: -20px;
}

.highlights_slider .owl-prev span,
.highlights_slider .owl-next span {
  font-size: 28px;
  line-height: 26px;
}


.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 40%);
}

.banner .overlay h1 {
  color: #FFF;
  margin: 0;
  transform: translateY(50px);
  transition: all 1.5s ease;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0.4s;
  font-size: 60px;
}

.banner .carousel-item.active .overlay h1 {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
} 

.virtual_tour_video {
    border-radius: 10px;
    overflow: hidden;
} 

.virtual_tour_video .play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: white;
    background: rgb(188, 124, 60, 0.5);
    border-radius: 50%;
    padding-left: 6px;
    transition: .2s ease;
}

.virtual_tour_video .play-btn {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
    transform: scale(1.08);
    transition: 0.3s ease;
}

.virtual_tour_video .play-btn::before, .virtual_tour_video .play-btn::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: pulseRing 1.8s infinite ease-out;
}
.virtual_tour_video .play-btn::before {
    inset: -10px;
}
.virtual_tour_video .play-btn::after {
    inset: -25px;
    animation-delay: 0.4s;
}


.whats_div {
    position: fixed;
    right: 10px;
    bottom: 55px;
    z-index: 9;
}
.whats_div a {
    color: #FFF;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 33px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 20px 0px;
    background: rgb(76, 175, 80);
    border-radius: 50%;
    transition: 0.5s;
}
.whats_div a i,
.whats_div a:hover i {
    color: #FFF;
} 
.whats_div a:hover {
    transform: scale(0.95);
}

.popup_error_mgs1 {
    color: red;
    font-size: 13px;
    bottom: 6px;
    position: absolute;
    left: 14px;
}

#contactForm > div {
    position: relative;
}
/* 1922 */


/* home - start */

.heroText {
            max-width: 638px;
            width: 94%;
            position: absolute;
            top: auto;
            /* right: 50%; */
            /* transform: translateX(-50%); */
            left: 30px;
            bottom: 30px;
            transform: none;
            color: #fff;
            text-align: center;
            background: rgb(0 0 0 / 50%);
            padding: 30px 30px;
            border-radius: 10px;
        }

        .home .heading.hasline::before {

            left: auto;

        }

        .heroText {

            text-align: start;

        }

        /* home hero section - start */

.heroText {
    max-width: fit-content;
    padding: 22px;
  }

  .heroText h3{

line-height: 1.2;

  }

.heroText .heading{

margin-bottom: 0;

  }

  .heroText h4{

font-size: 18px;

  }

  
.heading.hasline {

    padding-bottom: 14px;

}

.project-banner .heroText .text-anglecia {
    font-size: 35px;
}

/* home hero section - end */

.enquire-popup-section .captcha-and-refresh {

gap: 15px;

}

.enquire-popup-section .txt-with-input {

display: flex;
align-items: center;
gap: 15px;

}

/* home - end */


/* media - start */

.media-section h1 {

margin-bottom: 40px;

}

/* media - end */


/* contact - start */

.contact-form-section h3 {

margin-bottom: 50px;

} 

/* contact - end */


/* Central Ikon - start */

.game-section h2 {

margin-bottom: 15px;

}

.virtual-tour-section .heading {

margin-bottom: 0;

}

/* Central Ikon - end */