.wow {
  visibility: hidden;
}

@-webkit-keyframes fade_top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fade_top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fade_top {
  -webkit-animation-name: fade_top;
  animation-name: fade_top;
}

.swiper-pagination-progressbar {
  background: rgb(0 0 0 / 3%);
}

@-webkit-keyframes slide_left {
  0% {
    left: 0%;
  }

  100% {
    left: -30%;
  }
}

@keyframes slide_left {
  0% {
    left: 0%;
  }

  100% {
    left: -30%;
  }
}

.slide_left {
  -webkit-animation-name: slide_left;
  animation-name: slide_left;
}

@-webkit-keyframes slide_right {
  0% {
    right: 0%;
  }

  100% {
    right: -30%;
  }
}

@keyframes slide_right {
  0% {
    right: 0%;
  }

  100% {
    right: -30%;
  }
}

.slide_right {
  -webkit-animation-name: slide_right;
  animation-name: slide_right;
}

@font-face {
  font-family: "Montserrat-Medium";
  src: url("../fonts/montserrat/Montserrat-Medium.woff2") format("woff2"),
    url("../fonts/montserrat/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Regular";
  src: url("../fonts/montserrat/Montserrat-Regular.woff2") format("woff2"),
    url("../fonts/montserrat/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("../fonts/montserrat/Montserrat-SemiBold.woff2") format("woff2"),
    url("../fonts/montserrat/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Bold";
  src: url("../fonts/montserrat/Montserrat-Bold.woff2") format("woff2"),
    url("../fonts/montserrat/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  /* colors */
  --primary-color: #1e1e1e;
  /* --secondary-color: #ef8617; */
  /* --brown-color: #ef8617; */
  --white-color: #ffffff;
  --highlight-color: #1e1e1e;
  --gray-color: #909090;
  --background-smoke: #fafafa;
  --background-gray: #f6f8fa;
  /* --secondary-highlight-color: #0366D6; */
  --black-color: #000000;
  /* font-sizes */
  --banner-title-font-size: 3.5rem;
  --banner-big-font-size: 7.5rem;
  --section-title-big-font-size: 3.5rem;
  --section-title-font-size: 2.5rem;
  --section-subtitle-font-size-2: 2rem;
  --section-subtitle-font-size: 1.5rem;
  --paragraph-font-size: 1.5rem;
  --content-font-size: 1rem;
  --content-font-big: 1.25rem;
  --link-font-size: 1rem;
  /* font-families */
  --light-font-family: "Montserrat-Regular";
  --regular-font-family: "Montserrat-Regular";
  --medium-font-family: "Montserrat-Medium";
  --semibold-font-family: "Montserrat-SemiBold";
  --bold-font-family: "Montserrat-Bold";
  --black-font-family: "Montserrat-Regular";
  /* other */
  --common-transition: all 0.6s ease;
  --web-border-radius: 0.625rem;
  --mobile-border-radius: 0.6rem;
  --common-gap-size: 1rem;
  --small-gap-size: 1.5rem;
  --medium-gap-size: 3rem;
  --big-gap-size: 5rem;
}

.semibold-fonts {
  font-family: var(--semibold-font-family);
}

.bold-fonts {
  font-family: var(--bold-font-family) !important;
}

.light-fonts {
  font-family: var(--regular-font-family) !important;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: var(--regular-font-family);
  color: var(--primary-color);
}

html {
  height: auto;
  font-size: 16px;
  scroll-behavior: smooth;
}

* {
  line-height: 1.2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1.2;
  width: 100%;
}

::-webkit-scrollbar {
  width: 5px !important;
  cursor: pointer;
}

::-webkit-scrollbar-track {
  background: #cccccc !important;
}

::-webkit-scrollbar-thumb {
  background: #000000 !important;
}

::-webkit-scrollbar-thumb:hover {
  background: #000000 !important;
}

body.no-scroll-body {
  overflow-y: hidden;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  background-color: transparent;
  color: unset;
  outline: none;
  text-decoration: none;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

a:focus,
a:hover {
  outline: 0;
  text-decoration: unset;
  color: unset;
}

img {
  max-width: 100%;
  transition: var(--common-transition);
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
}

.relative {
  position: relative;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

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

.p0 {
  padding: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.main-container-fluid {
  width: 100%;
  margin: 0 auto;
  padding: 0 5rem;
}

.main-container {
  width: 85%;
  margin: 0 auto;
}

.mini-container {
  width: 70%;
  margin: 0 auto;
}

.content_accordian {
  display: none;
}

.section-padding {
  padding: 8rem 0;
}

.section-padding-bottom {
  padding-bottom: 8rem;
}

.section-padding-small {
  padding: 2rem 0;
}

.hover-enable {
  display: none;
}

.hover-disable {
  display: inline-block;
}

.mobile-image {
  display: none;
}

.web-image {
  display: block;
}

div:focus-visible,
img:focus-visible,
button:focus-visible {
  outline: none;
  border: none;
}

body.no-scroll-body {
  overflow-y: hidden;
}

.visible-tab-mobile {
  display: none !important;
}

.hide-tab-mobile {
  display: block !important;
}

.flex-row {
  display: flex;
  flex-direction: row;
  gap: var(--common-gap-size);
  /* gap: 0.5rem; */
}

.inner-flex {
  display: flex;
  flex-direction: column;
  gap: var(--common-gap-size);
  /* gap: 0.5rem; */
}

.inner-flex-smallest {
  gap: 0.25rem !important;
}

.inner-flex-zero {
  gap: 0;
}

.inner-flex-small {
  gap: var(--small-gap-size);
}

.inner-flex-medium {
  gap: var(--medium-gap-size);
}

.inner-flex-big {
  gap: var(--big-gap-size);
}

.inner-flex-large {
  gap: 10rem;
}

.inner-flex-common {
  gap: var(--common-gap-size);
}

.inner-flex-center {
  text-align: center;
  align-items: center;
}

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

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

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

/* .secondary-color {
    color: var(--secondary-color) !important;
} */

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

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

.secondary-highlight-color {
  color: var(--secondary-highlight-color) !important;
}

.j-c-sb {
  justify-content: space-between;
}

.mlauto {
  margin-left: auto;
}

.mrauto {
  margin-right: auto;
}

.m0auto {
  margin: 0 auto;
}

.wfc {
  width: fit-content;
}

.w100 {
  width: 100% !important;
}

.w50 {
  width: 50% !important;
}

.h100 {
  height: 100%;
}

.j-c-c {
  justify-content: center;
}

.alc {
  align-items: center;
}

.alend {
  align-items: end;
}

.alstart {
  align-items: start;
}

.filterIcon {
  filter: invert(1);
}

.overflow {
  overflow: hidden;
}

.transition {
  transition: var(--common-transition);
}

.scaleOne {
  scale: 1;
  transition: var(--common-transition);
}

.scaleOne:hover {
  scale: 1.1;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* fonts css */

/* .material-symbols-outlined.filled-icon {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
} */

.material-symbols-outlined {
  font-family: "Material Symbols Outlined" !important;
  cursor: pointer;
}

.regular-fonts {
  font-family: var(--regular-font-family) !important;
}

.medium-fonts {
  font-family: var(--medium-font-family) !important;
}

.semibold-fonts {
  font-family: var(--semibold-font-family) !important;
}

.banner-title h1,
.banner-title h1 span,
.banner-title h2,
.banner-title h2 span {
  font-size: var(--banner-title-font-size);
  font-family: var(--medium-font-family);
}

.banner-title-big h1,
.banner-title-big h1 span,
.banner-title-big h2,
.banner-title-big h2 span {
  font-size: var(--banner-big-font-size);
  font-family: var(--medium-font-family);
}

.banner-title h1 span,
.banner-title h2 span {
  /* color: var(--secondary-color); */
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #614228 -355.3%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title h1,
.section-title h1 span,
.section-title h2,
.section-title h2 span {
  font-size: var(--section-title-font-size);
  font-family: var(--bold-font-family);
}

.section-title-big h1,
.section-title-big h1 span,
.section-title-big h2,
.section-title-big h2 span {
  font-size: var(--section-title-big-font-size);
  font-family: var(--bold-font-family);
  text-transform: uppercase;
}

.section-title h1 span,
.section-title h2 span {
  /* color: var(--secondary-color); */
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #614228 -355.3%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-paragraph p,
.section-paragraph p span {
  font-size: var(--paragraph-font-size);
  line-height: 1.5;
}

.section-paragraph p span {
  /* color: var(--secondary-color); */
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-content p,
.section-content p span {
  font-size: var(--content-font-size);
  line-height: 1.5;
}

/* .section-content p span {
    /* color: var(--secondary-color); 
    background: rgb(97, 66, 40);
    background: linear-gradient(90deg, #B38966 0.66%, #E8B388 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.section-text p,
.section-text p span {
  font-size: 1.15rem;
  line-height: 1.5;
}

.section-text p span {
  /* color: var(--secondary-color); */
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle h4,
.section-subtitle h4 span {
  font-size: var(--section-subtitle-font-size);
  font-family: var(--semibold-font-family);
  color: var(--primary-color);
}

.section-subtitle h4 span {
  /* color: var(--secondary-color); */
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.smallest-font p {
  font-size: 0.85rem;
}

.link-font-size a p,
.link-font-size a p span.material-symbols-outlined,
.link-font-size p {
  font-size: var(--link-font-size);
}

.sunday-button,
.reecosys-template-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* padding: 1.15rem 1.5rem; */
  padding: 0 1.5rem;
  height: 3rem;
  transition: var(--common-transition);
  border-radius: 0;
  width: fit-content;
  min-width: 11.25rem;
  justify-content: center;
}

.sunday-button p,
.sunday-button span {
  line-height: 1 !important;
}

.button-style-primary {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
}

.button-style-primary span,
.button-style-primary p {
  color: var(--white-color);
  transition: var(--common-transition);
  font-size: 1.15rem;
}

.button-style-primary:hover {
  border: 1px solid var(--primary-color);
  background-color: transparent;
  transition: var(--common-transition);
}

.button-style-primary:hover span,
.button-style-primary:hover p {
  color: var(--primary-color);
  transition: var(--common-transition);
}

.button-style-secondary {
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
}

.button-style-secondary span,
.button-style-secondary p {
  color: var(--white-color);
  transition: var(--common-transition);
  font-size: 1.15rem;
}

.button-style-secondary:hover {
  border: 1px solid var(--secondary-color);
  background-color: transparent;
  transition: var(--common-transition);
}

.button-style-secondary:hover span,
.button-style-secondary:hover p {
  /* color: var(--secondary-color); */
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--common-transition);
}

.button-style-white {
  border: 1px solid var(--white-color);
  background-color: transparent;
}

.button-style-white span,
.button-style-white p {
  color: var(--primary-color);
  transition: var(--common-transition);
  font-size: 1.15rem;
}

.button-style-white.white-text span,
.button-style-white.white-text p {
  color: var(--white-color);
  font-size: 1.15rem;
}

.button-style-white:hover {
  border: 1px solid var(--white-color);
  background-color: var(--white-color);
  transition: var(--common-transition);
}

.button-style-white:hover span,
.button-style-white:hover p {
  color: var(--primary-color);
  transition: var(--common-transition);
}

.border-black {
  border: 1px solid var(--primary-color);
}

.button-blackborder {
  border: 1px solid var(--black-color);
  background-color: transparent;
  position: relative;
}

.button-blackborder.black-text span,
.button-blackborder.black-text p {
  color: var(--primary-color);
  transition: var(--common-transition);
}

.button-blackborder::after {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: var(--common-transition);
  background: var(--primary-color);
  z-index: 1;
}

.button-blackborder:hover::after,
.button-blackborder.activebutn::after {
  width: 100%;
  transition: var(--common-transition);
}

/* .button-blackborder:hover {
    background-color: var(--primary-color);
} */

.button-blackborder:hover span,
.button-blackborder:hover p,
.button-blackborder.activebutn span,
.button-blackborder.activebutn p {
  color: var(--white-color);
  transition: var(--common-transition);
  position: relative;
  z-index: 2;
}

.button-style-white-trans {
  border: 1px solid var(--white-color);
  background-color: transparent;
}

.button-style-white-trans span,
.button-style-white-trans p {
  color: var(--white-color);
  transition: var(--common-transition);
  font-size: 1.15rem;
}

.button-style-white-trans:hover {
  border: 1px solid var(--white-color);
  background-color: var(--white-color);
  transition: var(--common-transition);
}

.button-style-white-trans:hover span,
.button-style-white-trans:hover p {
  color: var(--primary-color);
  transition: var(--common-transition);
}

.visible-tab-mobile {
  display: none !important;
}

.hide-tab-mobile {
  display: block !important;
}

/* CSS STarts here */

.sunday-page-wrapper,
.reecosys-main-wrapper {
  padding-top: 0rem;
}

.header-wrapper {
  position: fixed;
  background-color: var(--white-color);
  transition: var(--common-transition);
  top: 0%;
  border-bottom: 0px solid var(--primary-color);
  left: 0;
  width: 100%;
  /* padding: 0.75rem 0; */
  z-index: 999;
}

.header-wrapper.webmenu_hidden2,
.header-wrapper.webmenu_hidden {
  top: -100% !important;
}

.header-wrapper.header_change .header-flex,
.header-wrapper.black_header .header-flex {
  background-color: var(--white-color);
}

.header-wrapper.header_change .bar,
.header-wrapper.black_header .bar {
  background-color: var(--primary-color);
}
.header-call-icon .filter-invert {
  filter: brightness(20);
}
.header-wrapper.header_change .header-call-icon .filter-invert,
.header-wrapper.black_header .header-call-icon .filter-invert {
  filter: unset;
}

.header-wrapper.header_change .header-links-ul ul li a,
.header-wrapper.header_change .header-links-ul ul li span,
.header-wrapper.header_change .header-links-ul ul li p,
.header-wrapper.black_header .header-links-ul ul li a,
.header-wrapper.black_header .header-links-ul ul li span,
.header-wrapper.black_header .header-links-ul ul li p {
  color: var(--primary-color);
  transition: var(--common-transition);
}

.header-wrapper.header_change .white-logo,
.header-wrapper .black-logo,
.header-wrapper.black_header .white-logo,
.header-logo.active .white-logo {
  display: none;
}

.header-logo.active .black-logo,
.header-wrapper .white-logo,
.header-wrapper.header_change .black-logo,
.header-wrapper.black_header .black-logo {
  display: block;
}

.header-links-ul ul li:hover a,
.header-links-ul ul li:hover span,
.header-links-ul ul li:hover p,
.header-links-ul ul li a.active_page p {
  color: unset;
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--common-transition);
}

/* .header-wrapper.black-header {
	background-color: transparent;
	border-bottom: 0px solid transparent;
} */

.header-flex {
  display: flex;
  justify-content: space-between;
  gap: var(--small-gap-size);
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  padding: 1.25rem 5rem;
  min-height: 6.25rem;
}

.header-links-ul ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header-links-ul ul li a,
.header-links-ul ul li span,
.header-links-ul ul li p {
  font-size: 0.875rem !important;
  color: var(--white-color);
}

.header-links-ul ul li a {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--white-color);
}

.header-links-ul.active_link ul li a,
.header-links-ul.active_link ul li span,
.header-links-ul.active_link ul li p {
  color: var(--primary-color);
}

.header-logo {
  width: 14rem;
}

.header-logo.header-logo-shimmer {
  height: 5.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.shimer-block {
  display: none;
  background-repeat: no-repeat;
  animation: shimmer 2s infinite linear;
  background: linear-gradient(to right, #eff1f3 4%, #e2e2e2 25%, #eff1f3 36%);
  background-size: 1000px 100%;
}

.shimer-block.shimer-visible {
  display: block;
}

.woshimer-block {
  display: none;
}

.woshimer-block.shimer-disable {
  display: block;
}

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

  100% {
    background-position: 1000px 0;
  }
}

.offer-strip-icon {
  width: 1rem;
}

.header-top-strip {
  background: #f5f5f5;
  padding: 0rem 1.5rem;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: var(--medium-gap-size);
}

.location-div-header-strip,
.offer-strip-header {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.location-div-header-strip .link-font-size span,
.offer-strip-header .link-font-size span {
  /* color: var(--secondary-color) !important; */
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
  font-family: var(--semibold-font-family);
  text-transform: uppercase;
}

.bar {
  width: 1.5rem;
  height: 2px;
  background-color: #ffffff;
  transition: var(--common-transition);
}

.menubar {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 9999;
}

.menubar.active .bar {
  background-color: var(--primary-color) !important;
}

.menubar.active .bar.bar-top {
  transform: translateY(8px) rotate(-45deg);
}

.menubar.active .bar.bar-bottom {
  transform: translateY(-8px) rotate(45deg);
}

.menubar.active .bar.bar-middle {
  opacity: 0;
}

.navigationWrapper {
  padding: 9rem 1rem 1rem;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9;
  width: 30%;
  max-height: 70vh;
  overflow-y: scroll;
  background-color: var(--white-color);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.navigationWrapper.active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.mobile_menu_wrapper {
  position: fixed;
  height: 100%;
  width: 30%;
  padding: 6rem 1rem 1rem;
  background-color: #ffffff;
  top: 0;
  right: -100%;
  z-index: 105;
  transition: all 0.5s ease;
}

.mobile_menu_wrapper.mobileMenuActive {
  right: 0%;
  transition: all 0.5s ease;
}

.header-navigation-links ul {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  gap: 0;
  flex-direction: column;
}

.projectList_li > div,
.header-navigation-links ul li {
  padding: 1rem 0;
  border-bottom: 1px solid #dedede20;
}

.projectList_li > div:last-child,
.header-navigation-links ul li.no-border {
  border-bottom: 0px solid #dedede20;
  padding-bottom: 0px;
}

.header-navigation-links ul li a p {
  transition: var(--common-transition);
}

.header-navigation-links ul li a:hover .progress-value p {
  color: var(--primary-color) !important;
}

.header-navigation-links ul li a:hover p {
  /* color: var(--secondary-color) !important; */
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--common-transition);
}

.header-navigation-links ul li.active a p {
  /* color: var(--secondary-color) !important; */
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--common-transition);
}

.header-acc-btn {
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
}

.navigation-mobile-icon img {
  width: 2rem;
}

.flex-70 {
  flex-basis: 70%;
}

.flex-30 {
  flex-basis: 30%;
}

.progress-consctruction.white {
  width: var(--content-size);
  margin-bottom: 4px;
}

.progress-consctruction.white {
  filter: invert(1);
}

.progress-consctruction {
  width: var(--content-size);
  margin-bottom: 4px;
}

.progress {
  width: 28px;
  height: 28px;
  line-height: 150px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}

.progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #b9b9b982;
  position: absolute;
  top: 0;
  left: 0;
}

.progress > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress .progress-left {
  left: 0;
}

.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 2px;
  border-style: solid;
  position: absolute;
  top: 0;
  border-color: #00ff68;
}

.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 75px;
  border-bottom-right-radius: 75px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress .progress-right {
  right: 0;
}

.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 75px;
  border-bottom-left-radius: 75px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.progress .progress-value {
  display: grid;
  place-content: center;
  height: 100%;
}

.progress .progress-value p {
  font-size: 0.8rem !important;
  color: var(--black-color);
}

.progress.progress_banner .progress-value p {
  color: var(--white-color);
}

/* This for loop creates the 	necessary css animation names 
  Due to the split circle of progress-left and progress right, we must use the animations on each side. 
  */
.progress[data-percentage="10"] .progress-right .progress-bar {
  animation: loading-1 1.5s linear forwards;
}

.progress[data-percentage="10"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="15"] .progress-right .progress-bar {
  animation: loading-15 1.5s linear forwards;
}

.progress[data-percentage="15"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="20"] .progress-right .progress-bar {
  animation: loading-2 1.5s linear forwards;
}

.progress[data-percentage="20"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="25"] .progress-right .progress-bar {
  animation: loading-25 1.5s linear forwards;
}

.progress[data-percentage="25"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="30"] .progress-right .progress-bar {
  animation: loading-3 1.5s linear forwards;
}

.progress[data-percentage="30"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="35"] .progress-right .progress-bar {
  animation: loading-35 1.5s linear forwards;
}

.progress[data-percentage="35"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="40"] .progress-right .progress-bar {
  animation: loading-4 1.5s linear forwards;
}

.progress[data-percentage="40"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="45"] .progress-right .progress-bar {
  animation: loading-45 1.5s linear forwards;
}

.progress[data-percentage="45"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="50"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="50"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="55"] .progress-right .progress-bar {
  animation: loading-55 1.5s linear forwards;
}

.progress[data-percentage="55"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="60"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="60"] .progress-left .progress-bar {
  animation: loading-1 1.5s linear forwards 1.5s;
}

.progress[data-percentage="65"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="65"] .progress-left .progress-bar {
  animation: loading-1 1.5s linear forwards 1.5s;
}

.progress[data-percentage="70"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="70"] .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.5s;
}

.progress[data-percentage="75"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="75"] .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.5s;
}

.progress[data-percentage="80"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="80"] .progress-left .progress-bar {
  animation: loading-3 1.5s linear forwards 1.5s;
}

.progress[data-percentage="85"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="85"] .progress-left .progress-bar {
  animation: loading-3 1.5s linear forwards 1.5s;
}

.progress[data-percentage="90"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="90"] .progress-left .progress-bar {
  animation: loading-4 1.5s linear forwards 1.5s;
}

.progress[data-percentage="95"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="95"] .progress-left .progress-bar {
  animation: loading-4 1.5s linear forwards 1.5s;
}

.progress[data-percentage="100"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="100"] .progress-left .progress-bar {
  animation: loading-5 1.5s linear forwards 1.5s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(36);
    transform: rotate(36deg);
  }
}

@keyframes loading-15 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(54);
    transform: rotate(54deg);
  }
}

@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(72);
    transform: rotate(72deg);
  }
}

@keyframes loading-25 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(90);
    transform: rotate(90deg);
  }
}

@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(108);
    transform: rotate(108deg);
  }
}

@keyframes loading-35 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(126);
    transform: rotate(126deg);
  }
}

@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(144);
    transform: rotate(144deg);
  }
}

@keyframes loading-45 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(162);
    transform: rotate(162deg);
  }
}

@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(180);
    transform: rotate(180deg);
  }
}

@keyframes loading-55 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(198);
    transform: rotate(198deg);
  }
}

/* circle animation update end */

.header_accordion.active .manu-accordian-downarrow,
.manu-accordian-uparrow {
  display: none;
}

.header_accordion.active .manu-accordian-uparrow {
  display: block;
}

.iconimg {
  width: 1.8rem;
  min-width: 1.8rem;
}

.ellipsis-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ellipsis-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mobile_menu_wrapper {
  overflow: scroll;
  scrollbar-width: none;
}

.click-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: #00000050;
  z-index: -1;
  pointer-events: none;
  transition: var(--common-transition);
}

.click-overlay.active {
  z-index: 4;
  opacity: 1;
  pointer-events: all;
}

.black_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all ease 0.4s;
  background: rgb(0 0 0 / 35%);
  z-index: 0;
}

.project_banner_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background-image: linear-gradient(#ffffff00, #000000eb);
  /* background-image: linear-gradient(#f6921e00, #000); */
}

.project_gallery_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background-image: linear-gradient(#ffffff00, #00000050);
  /* background-image: linear-gradient(#f6921e00, #000); */
}

.subscribe_section .form-control {
  padding: 1rem 1.25rem;
}

.subscribe_inner_flex {
  display: flex;
  align-items: center;
}

.inquiry-label {
  position: relative;
  width: 100%;
}

.md-label {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  background: var(--white-color);
  transform: translateY(-50%);
  font-size: var(--link-font-size);
  transition: var(--common-transition);
  color: #000000;
}

.inquiry-label textarea ~ .md-label {
  top: 1.25rem;
  transform: translateY(0);
}

.inquiry-label input,
.inquiry-label textarea {
  position: relative;
  border-radius: var(--border-radius);
  font-size: var(--link-font-size);
  font-family: var(--regular-font-family);
  border: 1px solid #999999;
  border-radius: 0.5rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  resize: none;
}

.inquiry-label.contact-label .md-label {
  left: 7rem;
}

.inquiry-label.contact-label input {
  padding-left: 7rem;
}

.inquiry-label input.ng-not-empty ~ .md-label,
.inquiry-label input:focus ~ .md-label,
.inquiry-label textarea:focus ~ .md-label,
.inquiry-label textarea.ng-not-empty ~ .md-label,
.inquiry-label input:focus-visible ~ .md-label,
.inquiry-label textarea:focus-visible ~ .md-label {
  top: 0;
  transition: all 0.2s ease;
  left: 1rem;
  transform: translateY(-50%);
  font-size: 0.875rem;
  color: #000000;
  background: var(--white-color);
}

.conatct_number_input {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 1.25rem 0;
}

.display_country_code {
  width: 45px;
}

.display_country_name {
  font-size: 0.875rem;
}

.country_code_data {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  font-size: var(--moblink-size);
}

.country_code_list_data ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.country_code_list_data ul li {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  transition: all ease 0.2s;
}

.country_code_list_data ul li:hover {
  background-color: #dddddd;
}

.country_code_list_data li > div {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.country_code_list_data {
  position: absolute;
  top: 100%;
  left: 0;
  height: 40vh;
  overflow-y: scroll;
  width: 350px;
  z-index: 99999;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  border: 1px solid #999999;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.search_c-code {
  padding: 0 1rem;
  padding-bottom: 0.5rem;
}

.search_c-code input {
  position: relative;
  border-radius: var(--border-radius);
  border: 1px solid #999999;
  width: 100%;
  padding: 0.7rem;
}

.country_code_overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  display: none;
}

.country_code_overlay.code_overlay {
  display: block;
  /* z-index: 999; */
}

.country_code_list_data {
  display: none;
}

.country_code_list_data.active {
  display: block;
}

.country_code_list_data img {
  width: 25px !important;
}

.inquiry-label ::-webkit-scrollbar {
  width: 8px !important;
  cursor: pointer;
}

.inquiry-label ::-webkit-scrollbar-track {
  background: #ffffff !important;
}

.inquiry-label ::-webkit-scrollbar-thumb {
  background: #000000 !important;
}

.inquiry-label ::-webkit-scrollbar-thumb:hover {
  background: #000000 !important;
}

.footer-subscribe {
  flex-basis: 30%;
}

.inquiry-label.subscribe-label input:focus-visible,
.inquiry-label.subscribe-label input {
  height: 4rem;
  min-height: 4rem;

  border-radius: 0;
}

.inquiry-btn {
  margin-top: 1.5rem;
}

label.error {
  display: none !important;
}

.submitbtn button {
  height: 4rem;
  min-height: 4rem;
  width: 4rem;
  background-color: var(--white-color);
  border: 1px solid #555555;
  border-left: 0px;
}

.common-icon {
  width: 2rem;
  min-width: 2rem;
}

.project_app_image {
  width: 9rem;
}

.reecosys_footer_copyright {
  border-top: 1px solid #dedede;
}

.banner-text-abs {
  width: 90%;
  position: absolute;
}

.swiper-pagination.home_banner_pagination {
  position: absolute;
  bottom: 9%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

.home_banner_pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--white-color);
}

/* .swiper-pagination-bullet.active{
    background-color: var(--white-color);
} */

.scroll-btn {
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--white-color);
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 99;
  border-radius: 50%;
  cursor: pointer;
}

.scroll-btn img {
  height: auto;
  width: 50%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: -5px;
  transform: translateX(-50%);
  animation: move 2s linear infinite;
}

@keyframes move {
  0% {
    transform: translate(-50%, 10px);
    opacity: 0;
  }

  50% {
    transform: translate(-50%, 20px);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 35px);
    opacity: 0.5;
  }
}

.home-listing-banner img {
  height: 95svh;
  object-fit: cover;
}

.home-listing-banner {
  width: 100%;
}

.line-after-text::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: var(--primary-color);
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  right: -40px;
}

.homes-content-abs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  text-align: center;
}

.footer-hover p {
  transition: var(--common-transition);
}

.footer-hover p:hover {
  transition: var(--common-transition);
  /* color: var(--secondary-color); */
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-inquiryForm {
  display: flex;
}

/* List Page CSS Starts Here  */
.project-list-grid-1-column .project-info-list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
}

.project-info-flex {
  width: max-content;
}

.otherDetailSwiper .project_status_lable,
.project-list-grid-2-column .project_status_lable {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #ffffff70;
  padding: 0.5rem 0.5rem;
}

.project-list-grid-2-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--small-gap-size);
}

.project-arrow-icon {
  transform: translateX(-50%);
  transition: var(--common-transition);
}

.project-list-card:hover .project-arrow-icon {
  transform: translateX(0%);
}

.project-img-list img {
  transition: var(--common-transition);
}

.project-list-card:hover .project-img-list img {
  transform: scale(1.1);
}

.list-panel-ul ul li::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1.5rem;
  height: 100%;
  width: 1px;
  background-color: var(--black-color);
}

.list-panel-ul ul li:last-child::after {
  display: none;
}

.list-change-button-icon {
  padding: 0.5rem;
  width: 3rem;
  border: 1px solid var(--black-color);
  border-radius: 50%;
}

.list-change-ul {
  background-color: var(--white-color);
  border: 1px solid var(--gray-color);
  padding: 0;
  position: absolute;
  width: 200px;
  z-index: 55;
  left: 0%;
  top: 2rem;
  transform: translateX(-60%);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: var(--common-transition);
}

.list-change-button-icon:hover ~ .list-change-ul,
.list-change-ul:hover {
  opacity: 1;
  visibility: visible;
}

.list-change-ul .columntab {
  padding: 1rem 0.5rem;
  border-bottom: 1px solid #00000050;
}

/* List Page CSS Ends Here  */

/* Detail Page CSS Start Here  */

/* .projectBannerFlex {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
} */

.highlightGrid > div {
  padding: 2rem 0 1rem 0;
  border-bottom: 1px solid #1e1e1e20;
  flex-direction: row;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* .highlightGrid>div:last-child {
    padding-bottom: 0;
    border-bottom: 0px solid #DEDEDE;
} */

/* .section-content.readmoreText p span {
    color: inherit;
} */

.walkthrough-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.walkthrough-project-thumb:hover .play_walkthrough_icon img {
  filter: invert(1);
}

/* 
.walkthrough-project-thumb:hover .sunday-button.button-style-white.white-text {
    background-color: var(--white-color);
}

.walkthrough-project-thumb:hover .sunday-button.button-style-white.white-text p {
    color: var(--black-color);
} */

.walkthrough-project-thumb .walk-thumbnail-image iframe {
  aspect-ratio: 1;
}

.project_gallery_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.project_gallery_hover .galleryFonts {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  opacity: 0;
  transition: var(--common-transition);
}

.project_gallery_hover:hover img {
  scale: 1.1;
}

.project_gallery_hover:hover .galleryFonts {
  opacity: 1;
  transition: var(--common-transition);
}

.rera-text {
  word-break: break-all;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.amenities-grid > div:nth-child(1),
.amenities-grid > div:nth-child(4) {
  border-left: 0px;
}

.amenities-grid > div:nth-child(3),
.amenities-grid > div:nth-child(6) {
  border-right: 0px;
}

.amenities-grid > div:nth-child(1),
.amenities-grid > div:nth-child(2),
.amenities-grid > div:nth-child(3) {
  border-top: 0px;
}

.amenities-grid > div:nth-child(4),
.amenities-grid > div:nth-child(5),
.amenities-grid > div:nth-child(6) {
  border-bottom: 0px;
}

.project-amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--medium-gap-size);
  padding: 2rem;
  border: 1px solid #dedede;
}

.amenities-grid > div {
  padding: 0rem;
  /* background-color: #F7F7F7; */
  border: 1px solid #dedede;
  /* border-radius: 0.5rem; */
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: var(--common-gap-size);
  align-items: center;
  min-height: 177px;
  justify-content: center;
  padding: 1rem;
}

.amenities-icon {
  width: 3rem;
}

.all-amenites-list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}

.amenities_popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80%;
  max-height: 80%;
  transform: translate(-50%, -50%) scale(0);
  background-color: var(--white-color);
  z-index: -1;
  padding: 3rem;
  overflow-y: scroll;
  transition: var(--common-transition);
}

.amenities_popup.active {
  transform: translate(-50%, -50%) scale(1);
  z-index: 4;
}

.amenities_popup::-webkit-scrollbar {
  width: 0px !important;
}

.amenities-close-icon {
  position: absolute;
  top: -2rem;
  right: -2rem;
}

.amenities-close-icon span {
  font-size: 1.5rem;
  border: 1px solid #000000;
  border-radius: 50%;
  padding: 0.5rem;
}

.specs_data {
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 300px;
  width: 100%;
  align-items: start;
  text-align: left;
}

.specs_image {
  width: 2.25rem;
}

.specs-text .readmore_click {
  opacity: 0.6;
  text-decoration: underline;
}

.project-map-iframe iframe {
  width: 100%;
  /* filter: grayscale(1); */
  aspect-ratio: 16 / 7;
}

/* .project_detail_inquiry_form {
    width: 50%;
} */

/* Detail Page CSS End Here  */

.contact_country_flag {
  width: 25px;
}

.common-listing-banner img,
.common-listing-banner {
  height: 60lvh;
  min-height: 60lvh;
}

.inquiry_popup {
  padding: 3rem 1.5rem;
  position: fixed;
  top: 0;
  right: -100%;
  width: 30%;
  background: var(--white-color);
  height: 100%;
  overflow-y: scroll;
  scrollbar-width: none;
  z-index: 99999;
  transition: var(--common-transition);
}

.inquiry_popup.inqury_active {
  right: 0%;
}

.career_position_list {
  padding: 2rem;
  background-color: var(--white-color);
  width: fit-content;
  /* border: 1px solid var(--gray-color); */
}

/* thanku page */
.thankyou-title h1 {
  /* line-height: 0.4; */
  font-size: 7rem;
  font-family: var(--bold-font-family);
}

.thankyou_wrapper {
  height: 100svh;
}

.BacktoHome a p {
  transition: var(--common-transition);
}

.BacktoHome a p:hover {
  transition: var(--common-transition);
  /* color: var(--secondary-color); */
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reecosys-banner-section .swiper-slide > div {
  width: 100%;
}

.close_icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

/* about */
.readmore-span-color p span {
  color: var(--primary-color);
}

.title-after-line::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 1px;
  background-color: var(--black-color);
  top: 50%;
  transform: translateY(-50%);
  right: -2.5rem;
}

.person_about_designation p a {
  font-family: var(--medium-font-family);
  text-decoration: underline;
  transition: var(--common-transition);
}

.person_about_designation p a:hover {
  /* color: var(--secondary-color); */
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--common-transition);
}

.awards-swiper-card {
  padding: 1.5rem;
  border: 1px solid #999999;
  height: 100%;
  min-height: 25rem;
  width: 100%;
}

.awards_swiper_outer .swiper-container {
  padding: 0rem 9rem;
}

.swiper-scrollbar {
  height: 3px;
}

.profile_info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}

.profilepage_designation p,
.profilepage_designation span {
  color: var(--white-color);
}

.profile_video_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--small-gap-size);
}

.play_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
}

.blog-grid {
  display: grid;
  gap: var(--medium-gap-size);
  grid-template-columns: calc(100% - 30% - 1.5rem) calc(100% - 70% - 1.5rem);
}

.recent_blogs_details {
  padding: 1rem;
  border: 1px solid var(--black-color);
  display: flex;
  gap: 1rem;
}

.blog_bind_data p,
.blog_bind_data strong {
  font-size: var(--paragraph-font-size);
  line-height: 1.5;
}

.blog_bind_data strong {
  font-family: var(--semibold-font-family);
}

.header-hover:hover .header-title {
  /* color: var(--secondary-color); */
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-navigation-link a.active_page p,
.header-navigation-links a.active_page p,
.header-navigation-links li.active a p {
  /* color: var(--secondary-color); */
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header_contact_dropdown {
  position: fixed;
  bottom: -100%;
  background: #fff;
  z-index: 10;
  width: 100%;
  padding: 2rem 1rem;
  transition: var(--common-transition);
}

.header_contact_dropdown.active {
  bottom: 0%;
}

.close_contact {
  width: 2.2rem;
  padding: 0.5rem;
  background: #222222;
  border-radius: 50%;
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
}

.md-toast.error {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 0.5rem 1rem;
  color: #00000050;
  z-index: 999999999999999;
}

.menubar {
  cursor: pointer;
}

.fancybox-container * {
  color: var(--white-color) !important;
}

.overview-new-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--medium-gap-size);
}

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

.brijgroup-main-wrapper {
  padding-top: 8rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: var(--secondary-color);
}

.banner-sect-text {
  width: 60%;
  margin-left: auto;
}

.about-vector-abs {
  position: absolute;
  right: -20%;
  top: 10%;
}

.coreValueGridContent p,
.coreValueTitle {
  color: #a4a4a4;
  position: relative;
  z-index: 2;
}

.highlight-icon-home {
  /* filter: invert(1); */
  width: 2.5rem;
  height: 2.5rem;
}

.coreValueGrid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  grid-template-areas:
    "one one . . . . ."
    ". two two . . . ."
    ". . three three . . ."
    ". . . four four . ."
    ". . . . five five ."
    ". . . . . six six";
  row-gap: 2rem;
}

.coreValueGridContent {
  position: relative;
  padding: 0 0 3.5rem 3.5rem;
  background-color: #231f20;
}

.coreValueGridContent::after {
  content: "";
  position: absolute;
  bottom: -3.5rem;
  left: 1.5rem;
  background-color: transparent;
  height: 100%;
  width: 35%;
  border-bottom-left-radius: 20px;
  border-left: 1px solid var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
}

.coreValueGrid > div:nth-child(1) {
  grid-area: one;
}

.coreValueGrid > div:nth-child(2) {
  grid-area: two;
}

.coreValueGrid > div:nth-child(3) {
  grid-area: three;
}

.coreValueGrid > div:nth-child(4) {
  grid-area: four;
}

.coreValueGrid > div:nth-child(5) {
  grid-area: five;
}

.coreValueGrid > div:nth-child(6) {
  grid-area: six;
}

/* .center-dot-relative::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #FFFFFF;
    position: absolute;
    left: -1rem;
    top: 0.7rem;
} */
.footer-wrapper,
.subscribe_section {
  background-color: var(--highlight-color);
}

.footer-wrapper .common-icon {
  filter: invert(1);
}

.footer-wrapper p,
.subscribe_section p {
  color: var(--white-color) !important;
}

.footer-wrapper .section-paragraph p {
  font-size: 1.2rem;
}

.footer-hover p:hover {
  transition: var(--common-transition);
  color: unset !important;
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-inquiryForm .md-label {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
}

.footer-inquiryForm .inquiry-label.subscribe-label input {
  background-color: transparent !important;
  color: var(--white-color) !important;
  border-color: #555555 !important;
}

.footer-inquiryForm .submitbtn button {
  background-color: transparent !important;
}

.footer-inquiryForm .submitbtn button .common-icon {
  filter: invert(1);
}

.project_filter_block {
  margin-bottom: 1rem !important;
}

.header-links-ul li a span.material-symbols-outlined {
  transition: var(--common-transition);
}

.header-links-ul li a.active span.material-symbols-outlined {
  rotate: 180deg;
  /* color: var(--secondary-color); */
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accordion_click {
  cursor: pointer;
}

.galleryItem {
  display: none;
}

.galleryItem.gallery-active {
  display: block;
}

.fancybox-image {
  object-fit: unset;
}

.statusTag {
  padding: 0.5rem 0.5rem;
  border: 1px solid var(--white-color);
}

.statusTag {
  padding: 0.5rem 0.5rem;
  line-height: 1 !important;
  background: #ffffff40;
  border: 1px solid var(--white-color);
}

.footer-content-accordian .flex-30,
.header-navigation-links .flex-30 {
  flex-basis: 35%;
  max-width: 100%;
}

.footer-content-accordian .flex-70,
.header-navigation-links .flex-70 {
  flex-basis: 65%;
  max-width: 100%;
}

.header-flex.webmenu_hidden {
  transform: translateY(-100%);
}

.highlights-grid {
  display: flex;
  gap: 5rem;
  width: 100%;
}

.highlights-grid .counter-value::after {
  content: "+";
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.completed-project-list-grid {
  display: flex;
  /* grid-template-columns: repeat(3, 1fr); */
  flex-wrap: wrap;
  align-items: center;
  gap: var(--medium-gap-size);
  justify-content: center;
}

.completed-project-list-grid > div {
  padding: 1.5rem;
  width: calc(100% / 3 - 3rem);
  border-radius: 1rem;
  flex-basis: calc(100% / 3 - 3rem);
  border: 1px solid var(--gray-color);
  position: relative;
  transition: var(--common-transition);
}

.completed-project-list-grid > div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #1e1e1ed9;
  border-radius: 1rem;
  transform-origin: right;
  transition: var(--common-transition);
}

/* .completed-project-list-grid>div:hover {
    border-radius: 1rem;
    /* border-color: var(--secondary-color); *
}

.completed-project-list-grid>div:hover::after {
    transform-origin: left;
    width: 100%;
}

.completed-project-list-grid>div .project-information-div,
.completed-project-list-grid>div .charter_regular {
    transition: var(--common-transition);
} */

/* .completed-project-list-grid>div:hover .charter_regular {
    background: rgb(97, 66, 40);
    background: linear-gradient(90deg, #B38966 0.66%, #E8B388 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

/* .completed-project-list-grid>div:hover .project-information-div {
    filter: invert(1);
} */

.whatsapp_connect {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 9;
  transition: var(--common-transition);
}

.whatsapp-icon {
  width: 3.5rem;
}

.whatsapp_connect.active {
  bottom: 6rem;
  right: 15px;
}

.readmore_text span.readmore_click,
span.readmore_click {
  cursor: pointer;
  display: block;
  /* color: var(--secondary-color) !important; */
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contactPageDescription p span {
  font-family: var(--semibold-font-family);
  font-size: var(--paragraph-font-size);
  color: var(--primary-color);
  padding-bottom: 1rem;
  display: block;
}

.SpecificationBLock {
  padding: 1rem 0;
  border-bottom: 1px solid #dedede;
}

.SpecificationBLock:last-of-type {
  border-bottom: 0px solid #dedede;
}

.specificationAccordion .content_accordian.section-content p {
  line-height: 2;
  padding-top: 1rem;
  padding-left: 3rem;
}

/* .specificationImage img,
.specificationImage{
    height: 100%;
} */

.specificationGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--medium-gap-size);
}

.SpecificationBLock .accordion_click .specificationArrow {
  transition: var(--common-transition);
}

.SpecificationBLock .accordion_click.active .specificationArrow {
  transform: rotate(180deg);
}

.date_picker_input_text {
  font-size: var(--content-font-size);
  border-radius: 0.5rem;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 1.25rem 1.5rem;
}

.date_picker_input {
  opacity: 0;
  position: relative;
  z-index: 2;
  padding: 0.8rem 1.5rem !important;
}

.date_picker_input_text {
  z-index: 1;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.swiper-scrollbar.other-project-scrollbar {
  height: 3px;
  width: 50%;
  margin: 1.5rem auto 0;
}

:focus,
:focus-visible {
  outline: none;
}

.footer-inquiryForm .inquiry-label.subscribe-label.inquiry-label input.error {
  border-color: #f00 !important;
}

.inquiry-label input.error ~ .md-label {
  color: #f00 !important;
}

.loading_btn {
  width: 1.4rem;
  height: 1.4rem;
  margin: 0;
  background: transparent;
  border-top: 2px solid var(--white-color);
  border-right: 2px solid transparent;
  border-radius: 50%;
  -webkit-animation: 1s spin linear infinite;
  animation: 1s spin linear infinite;
  transition: var(--common-transition);
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.backArrowProject {
  position: absolute;
  top: 50%;
  left: -5rem;
  padding: 0.6rem;
  transform: translateY(-50%);
  background: #dedede;
  border-radius: 50%;
}

.gradient-font {
  color: unset !important;
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.secondary-color {
  color: unset !important;
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.filter-invert {
  filter: invert(1);
}

.banner-button {
  margin-top: 2.5rem;
}

.section-information {
  width: 75%;
}

.two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.highlights-left-line {
  padding-left: 2rem;
  position: relative;
  margin-top: 5rem;
}

.highlights-left-line::after {
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(97, 66, 40);
  background: linear-gradient(
    0deg,
    rgba(97, 66, 40, 1) 0%,
    rgba(232, 179, 136, 1) 87%
  );
}

.highlights-grid > div:nth-child(2) .counter-value::after {
  content: "M+";
}

.button-style-gradient {
  position: relative;
  background-color: transparent;
  border: 0px solid;
  border-image-slice: 1;
  border-width: 1px;
  border-image-source: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  transition: var(--common-transition);
}

.button-style-gradient.black-border {
  border: 1px solid var(--primary-color);
  border-image-source: unset;
  transition: var(--common-transition);
}

.button-style-gradient.black-border:hover {
  border: 0px solid;
  border-image-slice: 1;
  border-width: 1px;
  border-image-source: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  transition: var(--common-transition);
}

.button-style-gradient.black-border.active {
  border: 0px solid;
  border-image-slice: 1;
  border-width: 1px;
  border-image-source: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  transition: var(--common-transition);
}

.button-style-gradient.active p,
.button-style-gradient.active span {
  color: var(--white-color) !important;
  background: unset;
  background: unset;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  position: relative;
  z-index: 2;
  /* transition: var(--common-transition); */
}

.button-style-gradient.active::after {
  width: 100%;
  transition: var(--common-transition);
}

.button-style-gradient p,
.button-style-gradient span {
  color: unset !important;
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
  /* transition: var(--common-transition); */
}

.button-style-gradient.black-text p,
.button-style-gradient.black-text span {
  color: var(--primary-color);
  background: unset;
  background: unset;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  position: relative;
  z-index: 2;
}

.button-style-gradient:hover p,
.button-style-gradient:hover span {
  color: var(--white-color) !important;
  background: unset;
  background: unset;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  position: relative;
  z-index: 2;
  /* transition: var(--common-transition); */
}

.button-style-gradient::after {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: var(--common-transition);
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  z-index: 1;
}

.button-style-gradient:hover::after {
  width: 100%;
  transition: var(--common-transition);
}

.about-btn-home {
  padding-left: 2rem;
}

/* .project-info-list {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 2.5rem;
} */

.hover-ovarlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -100%;
  transition: var(--common-transition);
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 30) 0%, rgba(0, 0, 0, 0) 87%);
}

.project-list-card {
  transition: var(--common-transition);
}

/* .project-list-card:hover {
    transition: var(--common-transition);
    box-shadow: 0px 4px 4px #00000025;
} */

.project-list-card:hover .hover-ovarlay {
  bottom: 0%;
  transition: var(--common-transition);
}

.grid-3-col {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
}

.iamHover:hover img {
  transform: scale(1.1);
  transition: var(--common-transition);
}

.ellips3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cp-abs-text {
  width: 95%;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-us-btn {
  padding: 0 3rem;
}

.accordian-title {
  padding: 0;
}

.accordion_click {
  cursor: pointer;
}

.accordion_click.accordion_click_relative.active .minusimg,
.accordion_click.accordion_click_relative .plusimg {
  display: block;
}

.accordion_click.accordion_click_relative .minusimg,
.accordion_click.accordion_click_relative.active .plusimg {
  display: none;
}

.accordian-title .accordion_click {
  padding: 2.5rem 0 2.5rem 0;
  border-bottom: 1px solid #ededed;
  position: relative;
}

.accordian-title .accordion_click::after {
  content: "";
  width: 0%;
  height: 1px;
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: var(--common-transition);
}

.accordian-title:last-child .accordion_click {
  border-bottom: 0 !important;
}

.accordian-title:last-child .accordion_click::after {
  border-bottom: 0 !important;
  height: 0 !important;
}

.accordian-title .accordion_click:hover::after,
.accordian-title .accordion_click.active::after {
  width: 100%;

  transition: var(--common-transition);
}

.accordian-title:last-child .accordion_click.active::after {
  height: 1px !important;
}

.accordian-title .accordion_click.active {
  padding: 2.5rem 0 2rem 0;
}

.accordian-icon img {
  height: 1.5rem;
  width: 1.5rem;
}

.accordion-dec-padding {
  padding-top: 1.5rem;
  /* padding-left: 1.5rem; */
}

.section-content-big p,
.section-content-big span {
  font-size: var(--content-font-big);
}

.sect-2-hand {
  width: 82%;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
}

.project-information-div {
  padding: 0.5rem 1.5rem;
  width: fit-content;
  background-color: #fafafa;
}

.project-list-card:hover .project-title h2 {
  color: unset !important;
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-list-grid.home-project-grid {
  display: unset;
  /* grid-template-columns: repeat(3,1fr); */
}

.swiper-pagination.common-swiper,
.swiper-scrollbar.common-swiper {
  position: relative;
  top: unset;
  bottom: unset;
  left: unset;
  transform: unset;
  right: unset;
  margin: unset;
  background-image: unset;
}

.swiper-pagination.project_listPagination {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  gap: 5px;
  margin-top: 2rem;
}

.swiper-pagination.project_listPagination .swiper-pagination-bullet {
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
}

.swiper-pagination.project_listPagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
}

.gradient-text-btn {
  padding: 1rem 0;
  border: 0px solid;
  border-image-slice: 1;
  border-bottom-width: 1px;
  border-image-source: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  cursor: pointer;
}

#reecosys-detail-wrapper {
  padding-top: 6.25rem;
}

.banner-logo {
  width: 20.5%;
  margin: 0 auto;
}

.homebanner-logo {
  width: 23rem;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}

.gap0 {
  gap: 0 !important;
}

.walkthrough-padding {
  margin-top: 40%;
}

.wlakthroughBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-icon {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon img {
  width: 1.25rem;
  height: 1.25rem;
}

.hover-underline p {
  color: #8d8d8d;
  position: relative;
  width: fit-content;
}

.hover-underline:hover p {
  color: unset !important;
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--bold-font-family);
}

.hover-underline p::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0%;
  height: 2px;
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%);
  transition: var(--common-transition);
}

.hover-underline:hover p::after {
  width: 100%;
  transition: var(--common-transition);
}

@keyframes grow {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }

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

.wlak-throughanimation .circle {
  position: absolute;
  top: 0;
  left: 0;
  /* -webkit-transform: translate(-50%, -50%); */
  /* transform: translate(-50%, -50%); */
  width: 100%;
  height: 100%;
  background-color: #c7c8cc;
  color: #fff;
  border-radius: 50%;
  opacity: 0.5;
  z-index: -1;
}

.wlak-throughanimation .circle::after {
  background: rgba(200, 199, 204);
}

.wlak-throughanimation .circle::before {
  background: rgba(200, 199, 204);
  /* -webkit-animation-delay: -.5s; */
  animation-delay: -0.5s;
}

.wlak-throughanimation .circle::after,
.wlak-throughanimation .circle::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  /* -webkit-animation: 1s ease-in-out infinite grow; */
  animation: 1s ease-in-out infinite grow;
}

.mix-font {
  font-family: var(--regular-font-family) !important;
}

.mix-font span {
  font-family: var(--bold-font-family) !important;
}

.black-bg {
  background-color: #1e1e1e;
}

.swiper-scrollbar.gallrey_Swiperscrollbar .swiper-scrollbar-drag {
  background-color: var(--white-color);
}

.swiper-scrollbar.gallrey_Swiperscrollbar,
.swiper-scrollbar.floorPlan_Swiperscrollbar {
  margin-top: 2.5rem;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff20;
}

.swiper-scrollbar.floorPlan_Swiperscrollbar {
  background-color: #00000020;
}

.swiper-scrollbar.floorPlan_Swiperscrollbar .swiper-scrollbar-drag {
  background-color: var(--primary-color);
}

.overview-split {
  width: 100%;
  overflow: unset;
  scrollbar-width: none;
}

.overview-split p {
  width: max-content;
}

.sunday-banner-section {
  min-height: 100svh;
}

.floorPlan-swiper .swiper-slide {
  width: fit-content;
}

.floorPlan-swiper .swiper-container {
  padding: 0 2.5%;
}

.amenities-btn-flex .sunday-button {
  height: 4.5rem;
}

.amenities-btn-flex .sunday-button span,
.amenities-btn-flex .sunday-button span img {
  height: 2.5rem;
  width: 2.5rem;
  min-height: 2.5rem;
  min-width: 2.5rem;
  object-fit: contain;
}

.amenities-btn-flex .sunday-button:hover span img {
  filter: brightness(27);
}

.amenities-btn-flex .sunday-button.active span img {
  filter: brightness(27);
}

.icon-img-amenities {
  width: 7rem;
  height: 7rem;
  min-width: 7rem;
  background-color: #614228;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-img-amenities img {
  width: 4rem;
  /* height: 4rem; */
  /* min-width: 4rem; */
  object-fit: contain;
}

.amenities-icon-box {
  width: 70%;
  gap: 6rem;
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.specification-accordion .three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
}

.specification-accordion .accordion_click {
  padding: 2rem 0 1rem 0;
  border-bottom: 1px solid #8d8d8d;
}

.specification-accordion .content_accordian ul {
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 2rem;
}

.specification-accordion .content_accordian ul li {
  font-size: var(--content-font-size);
}

.flex65 {
  flex-basis: 65%;
}

.flex35 {
  flex-basis: 35%;
}

.site-address-width {
  width: 80%;
}

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

.section-subtitle-font-size-2 h4 {
  font-size: var(--section-subtitle-font-size-2);
}

.amenities-icon-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.channelform-box {
  padding: 6rem;
  background-color: var(--background-smoke);
}

.commonPageTitle h2 {
  color: var(--primary-color);
}

.commonPageTitle h2 span {
  font-family: var(--bold-font-family);
  color: unset !important;
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.sticky-div {
  height: fit-content;
  position: sticky;
  top: 8rem;
}

.sticky-split {
  position: sticky;
  top: 0;
  background: var(--white-color);
  z-index: 5;
}

.w70 {
  width: 70%;
}

.career-text-box {
  gap: 4rem;
}

.career-text-abs {
  width: 50%;
  padding: 3rem 11.5rem;
  background-color: #fafafa50;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.career_position_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.career_position_grid > div {
  min-height: 20.25rem;
  width: 100%;
  padding: 2rem;
  background-color: var(--white-color);
}

.career-popup-wrapper {
  position: fixed;
  padding: 4rem;
  transform: translate(-50%, -50%) scale(0);
  width: 75%;
  height: 80svh;
  overflow: scroll;
  scrollbar-width: none;
  background-color: var(--white-color);
  top: 50%;
  left: 50%;
  z-index: 9999;
  transition: var(--common-transition);
}

.career-popup-wrapper.active {
  transform: translate(-50%, -50%) scale(1);
}

.close-btn {
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 1rem;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
}

.form-icon {
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
}

.footer-logo-ree {
  width: fit-content;
  margin: 0 auto;
}

.swiper-pagination.white-color span {
  color: var(--white-color);
}

.swiper-pagination.gallery-pagination,
.swiper-pagination.gallery-pagination span {
  font-size: var(--content-font-big);
}

.swiper-pagination,
.swiper-button-next,
.swiper-button-prev {
  position: relative;
  top: unset;
  background-image: unset;
  bottom: unset;
  height: auto;
  left: unset;
  right: unset;
  margin: 0;
  width: auto;
}

.visivle-mobile-only {
  display: none !important;
}

.cursor-pointer {
  cursor: pointer;
}

/* contact */

.contactPageIframe iframe,
.contactPageIframe {
  width: 100%;
  height: 100%;
}

.contactPageIframeflex {
  gap: 5rem;
}

.contactPageIframeflex > div:nth-child(1) {
  flex-basis: 65%;
}

.contactPageIframeflex > div:nth-child(1) iframe {
  aspect-ratio: 1.5;
}

.contactPageIframeflex > div:nth-child(2) {
  flex-basis: 35%;
}

.conatct_number_input {
  border-radius: 5rem;
  background-color: #fafafa;
  padding: 0.75rem 1rem;
}

.conatct_number_input.white-bg {
  background-color: #ffffff;
}

@media screen and (max-width: 767px) {
  .contactPageIframeflex.flex-row {
    flex-direction: column;
    gap: 3rem;
  }
}

.timelineYear.section-title h2 {
  font-family: var(--bold-font-family);
  color: unset !important;
  background: rgb(97, 66, 40);
  background: linear-gradient(90deg, #b38966 0.66%, #e8b388 100%) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.mobile_menu_wrapper .inqbtn,
.mobile_menu_wrapper > div > ul > li {
  /* display: none; */

  opacity: 0;
  visibility: hidden;
  transition: all 2s ease;
  transition-delay: 1s;
}

.mobile_menu_wrapper.mobileMenuActive .inqbtn,
.mobile_menu_wrapper.mobileMenuActive > div > ul > li {
  opacity: 1;
  visibility: visible;
  transition: all 2s ease;
  transition-delay: 1s;
  display: flex;
}

.leaderImage img,
.leaderImage {
  height: 50vh;
  object-position: center;
}

.project-logo-abs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.megamenuImg .project-logo-abs {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.project-logo-abs img {
  height: auto !important;
  background-color: unset !important;
  aspect-ratio: unset !important;
}

.walk-thumbnail-image {
  aspect-ratio: 10/4.5;
}

.walk-thumbnail-image iframe {
  height: 100%;
  width: 100%;
}

.projectListGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--small-gap-size);
}

.megamenuText .progress .progress-value p {
  font-size: 0.75rem !important;
  color: var(--black-color);
}

.megamenuText .progress {
  width: 25px;
  height: 25px;
}

.megamenuText .project_list_icon {
  width: 25px;
  min-width: 25px;
}

.footer_logo_web img {
  width: 65%;
  /* margin: 0 auto; */
}
.bannerCard.white-font {
  background-image: unset !important;
  background-color: #dedede;
}
.bannerCard.white-font .homeBannerOverlaytwo,
.bannerCard.white-font .homeBannerOverlayOne {
  display: none !important;
}

.bannerCard.white-font .white-color {
  color: #000000 !important;
}

.bannerCard.white-font .filter-invert {
  filter: unset !important;
}

.bannerCard.white-font .banner-button .sunday-button p,
.bannerCard.white-font .banner-button .sunday-button span {
  font-size: 1.15rem;
}

.white-font.swiper-pagination.homeSwiperPagination .swiper-pagination-bullet {
  background-color: #00000020;
}

.white-font.swiper-pagination.homeSwiperPagination
  .swiper-pagination-bullet::after {
  background-color: #000000;
}
.floorPlansimg {
  display: none;
}
.floorPlansimg img{
  width: fit-content;
  margin: 0 auto;
}
.floorPlansimg.active {
  display: block;
}
.floor-tabpannel {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  height: fit-content;
}
/* .mobile_menu_wrapper.mobileMenuActive */
