@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

html {
  width: 100%;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 16px;
  position: relative;
}

:root {
  --color-blur1: #184f78;
  --color-blur2: #12609b;
  --color-green1: #5c7221;
  --color-green2: #add420;
  --color-green3: #89a32a;
  --color-black: #000;
  --color-black2: #4d4d4d;
  --color-white: #fff;
  --bg-1: #fff;
  --bg-2: #f9fce9;
  --bg-3: #184f78;
  --bg-4: #265a80;
  --title-font: "Merriweather", serif;
  --body-font: "Montserrat", sans-serif;
  --roboto-font: "Roboto", sans-serif;
}
.them-bg1 {
  background: var(--bg-1) !important;
}
.them-bg2 {
  background: var(--bg-2) !important;
}
.them-bg3 {
  background: var(--bg-3) !important;
}
.them-bg4 {
  background: var(--bg-4) !important;
}
a {
  display: inline-block;
  text-decoration: none;
  outline: none;
}
a:hover,
a:focus,
a:active {
  outline: none;
}
.btn-them {
  display: inline-block;
  border: 1px;
  border-style: solid;
  padding: 0.56rem 1.5rem;
  border-radius: 1.5rem;
  font-family: var(--body-font);
  background: transparent;
  overflow: hidden;
  transition: color 0.4s ease;
  cursor: pointer;
  position: relative;
  z-index: 999;
}

.btn-them::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-blur1);
  transition: left 0.4s ease;
  z-index: -9;
}

.btn-them:hover::before {
  left: 0;
}

.btn-them:hover {
  color: white;
  /* font-weight: 500; */
}

/* Button 2nd hover  */
.sbtn2 {
  /* display: inline-block;
  border: 1px;
  border-style: solid; */
  overflow: hidden;
  transition: color 0.4s ease;
  cursor: pointer;
  position: relative;
  z-index: 999;
}

.sbtn2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-green2);
  transition: left 0.4s ease;
  z-index: -9;
}

.sbtn2:hover::before {
  left: 0;
}

.sbtn2:hover {
  color: white;
  /* font-weight: 500; */
  /* border: transparent !important; */
  transition: all 0.5s;
}
.sbtn2:hover.sbtn2 i {
  color: var(--color-white) !important;
}
/* End Button 2nd hover  */

.btn-them .fa-arrow-right-long {
  margin-left: 0.625rem;
}
.btn-them .fa-circle-play {
  font-size: 18px;
  margin-right: 10px;
}
.btn-white {
  color: var(--color-white);
  border-color: var(--color-white);
}
/* Global  */
.icon-card-item {
  padding: 0.75rem;
  text-align: center;
  display: inline-block;
  border-radius: 0.93rem;
  background: #fff;
  font-size: 1rem;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
}
.icon-card-icon {
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
  cursor: context-menu;
}
.icon-card-item h6 {
  font-size: 0.8375rem;
  font-weight: 500;
  line-height: 21px;
  cursor: context-menu;
  color: var(--color-black2);
  cursor: pointer;
}
.txt-clr-grn1 {
  color: var(--color-green1) !important;
}
.txt-clr-grn2 {
  color: var(--color-green2) !important;
}
.txt-clr-grn3 {
  color: var(--color-green3) !important;
}
.txt-clr-black {
  color: var(--color-black) !important;
}
.txt-clr-white {
  color: var(--color-white) !important;
}
.txt-clr-blue {
  color: var(--color-blur2) !important;
}
.box-shadow1 {
  box-shadow: 0px 0px 3px 0.5px #dcdcdc !important;
}
.mt-2_5 {
  margin-top: 2.5rem !important;
}
main {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
/* Header  */
.main-header {
  position: fixed;
  width: 100%;
  padding: 30px 0;
  /* background: #5786c1; */
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.align-cont {
  align-content: center;
}
.header-logo {
  width: 13rem;
  transition: all 0.3s ease-in-out;
}
.header-logo img {
}
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-right .btn-them {
  margin-right: 1.25rem;
}
.header-amb-icon {
  transition: all 0.3s ease-in-out;
  width: 11.56rem;
}
.enq-btn1 {
  font-family: var(--roboto-font) !important;
}
.is-sticky {
  padding: 10px 0;
  transition: all 0.3s ease-in-out;
  background-color: var(--color-white);
  /* box-shadow: 0px 0px 4px 1px #ddd; */
  z-index: 9999;
  border-bottom: 1px solid var(--color-white);
}
.is-sticky .header-logo {
  width: 11rem;
  transition: all 0.3s ease-in-out;
}
.is-sticky .header-amb-icon {
  width: 10rem;
  transition: all 0.3s ease-in-out;
}
.top-brit-logo {
  filter: brightness(0) invert(1);
}
.is-sticky .top-brit-logo {
  filter: invert(0);
  transition: all 0.3s ease-in-out;
}
.main-header.is-sticky .enq-btn1 {
  background: var(--color-blur1);
}
/* End Header  */
/* Hero  */
.hero {
  background: url(../images/hero-image.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding-top: 45%;
  padding-bottom: 5%;
  position: relative;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgb(0 0 0 / 12%));
  z-index: 0;
}
.hero-dflt-content {
  text-align: center;
  color: #fff;
  margin-bottom: 2.5rem;
}
.hero-dflt-title {
  width: 65%;
  font-size: 3rem;
  font-weight: 400;
  margin: 0 auto 1.5rem auto;
  font-family: var(--title-font);
}
.hero-dflt-info {
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--body-font);
}

.hero-icon-cont {
  margin: 0 0 2rem 0;
}
.icon-card-item:hover {
  box-shadow: 0 2px 12px rgba(41, 41, 41, 0.32);
  transition: ease-out 0.5s;
  background: var(--color-blur2);
}
.icon-card-item:hover .icon-card-icon img {
  filter: brightness(0) invert(1);
  transition: ease-out 0.5s;
}
.icon-card-item:hover .icon-card-item h6 {
  color: #fff !important;
}
.icon-card-item:hover .txt-clr-grn3 {
  color: #fff !important;
}
.icon-card-item:hover h6 {
  color: #fff !important;
}
.hero-icon-cont .icon-card-icon {
  height: 4.0625rem;
}
.hero-footer {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  margin: 2rem auto 0;
}
.hero-footer .btn-them {
  font-size: 1.125rem;
}

/* NEO CLASSICAL */
.neo-classical {
  position: relative;
}
.neo-itm-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
  height: 30rem;
  background: var(--color-blur1);
}
.neo-left {
  display: block;
  width: 60%;
  overflow: hidden;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  height: 100%;
}
.neo-left img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.neo-right {
  display: block;
  width: 40%;
  height: 100%;
  padding-right: 5%;
  padding-left: 5%;
  /* align-content: center; */
  /* margin-top: 10rem; */
  margin-top: 8rem;
}

.neo-title {
  font-size: 2.25rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: var(--body-font);
}
.neo-subtitle {
  position: relative;
  font-size: 1.75rem;
  color: var(--color-green2);
  margin-bottom: 0.7rem;
  font-family: var(--title-font);
}
.neo-subtitle:after {
  content: "";
  position: absolute;
  width: 8rem;
  height: 2.25px;
  background: var(--color-white);
  left: 0;
  bottom: -14px;
}
.neo-content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: var(--color-white);
  font-family: var(--body-font);
  font-weight: 400;
  max-height: 125px;
  overflow-y: hidden;
}

.neo-content::-webkit-scrollbar {
  width: 8px;
}

.neo-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(239 236 236 / 30%);
}

.neo-content::-webkit-scrollbar-thumb {
  background-color: #add420;
  outline: 1px solid #add420;
}

.neo-right .btn-them {
}
.neo_pagination .swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 11px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 11px)
  );
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(
    --swiper-pagination-bullet-inactive-color,
    var(--color-white)
  );
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 1);
}
.neo_pagination .swiper-pagination-bullet-active {
  background: var(
    --swiper-pagination-bullet-inactive-color,
    var(--color-green2)
  ) !important;
  opacity: 1;
}
.neo_pagination {
  bottom: 50px !important;
  top: auto !important;
  left: auto !important;
  max-width: 40% !important;
  width: 100% !important;
  right: 9% !important;
}

/* Construction Updates */
.const_update {
  padding-top: 5.6875rem;
  padding-bottom: 2rem;
}

#mainTab {
  justify-content: center;
}
.const_update_subtitle {
  text-align: center;
  color: var(--color-black2);
  font-size: 0.875rem;
  margin: 0 auto 2rem auto;
  width: 85%;
  font-weight: 400;
  font-family: var(--body-font);
}
#mainTab .nav-item {
  margin-right: 25px;
}
#mainTab .nav-link {
  font-size: 2.5rem;
  border-radius: 0;
  font-family: var(--title-font);
  color: var(--color-blur1);
  padding: 0;
  border: none;
  background: none;
  padding-bottom: 2px;
  font-weight: 600;
}
#mainTab .nav-link h2 {
  margin-bottom: 0;
  font-weight: 600;
}
#mainTab .nav-link.active {
  border-bottom: 3px solid var(--color-green2);
}
#mainTabContent {
  text-align: center;
}
#mainTabContent .nav-pills {
  justify-content: center;
}
#mainTabContent .nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0;
  border: none;
  background: none;
  padding-bottom: 2px;
  font-weight: 400;
  color: var(--color-blur1);
  border-radius: 0;
}

#mainTabContent .nav-item {
  margin-right: 20px;
}
#mainTabContent .nav-link.active {
  color: var(--color-green2);
  border-bottom: 2px solid var(--color-green2);
}

/* Swiper2 Specific Styling */
/* .swiper2 {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide2 {
  background: #f4f4f4;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.swiper-slide2 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
} */
/* End Construction Updates */
/* Reconnect with Time */
.reconnect {
  padding-top: 5.6875rem;
  padding-bottom: 5.6875rem;
}
.reconnect-container {
}
.reconnect-title {
  /* font-size: 2.5rem; */
  font-size: 2rem;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--color-blur2);
  position: relative;
  margin-bottom: 1.1rem;
}
.reconnect-title:after {
  content: "";
  width: 22%;
  height: 2px;
  background: var(--color-green2);
  position: absolute;
  bottom: -10px;
  left: 0;
}
.reconnect-title2:after {
  width: 35% !important;
}
.reconnect-txt {
  font-size: 0.875rem;
  color: var(--color-black2);
  font-weight: 400;
  width: 90%;
}
.reconnect-icon-cont {
  margin-top: 2rem;
}
#with_time .swiper-wrapper {
  padding: 0 5px;
}
.enq-section {
  padding: 2rem;
  /* padding: 1.5rem 1rem; */
  background: var(--color-white);
  border-radius: 0.625rem;
  margin-left: 3rem !important;
  /* margin-left: 0; */
  /* margin-top: 80px; */
  height: 485px;
  /* background: red; */
}
.enq-section .enq-form-grp {
}
.enq-section .enq-form-grp .cstm-form-control {
  margin-top: 2rem;
}
.reconnect-tab-cnt {
  width: 100%;
  /* height: 320px; */
  /* height: 400px; */
  border: none;
  overflow: hidden;
}

.reconnect-tab-cnt .nav-item {
}
.reconnect-tab-cnt .tab-content {
  /* height: 100%; */
  /* height: 400px; */
}
.reconnect-tab-cnt .nav-tabs .nav-link {
  margin-right: 20px;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-black2);
  padding-bottom: 0px;
}
.reconnect-cnt-box {
  position: relative;
  /* width: 100%;
  height: 100%; */
}
.reconnect-cnt-box-thmb {
  position: relative;
  z-index: 9;
  /* height: 290px; */
  height: 400px;
}

.reconnect-cnt-box-thmb img {
  width: 100%;
  /* height: 290px; */
  height: 100%;
  object-fit: cover;
}
.reconnect-cnt-box-thmb:after {
  /* content: "";
  background: #00000030;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99; */
}
.reconnect-cnt-box-icon {
  /* width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff7d;
  border: 1px solid var(--color-white);
  border-radius: 50% !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  align-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999; */
}
.reconnect-cnt-box-icon i {
  font-size: 20px;
  color: var(--color-white);
}
.reconnect-tab-cnt .nav-tabs .nav-link.active {
  border-bottom: 0;
  color: var(--color-green2);
  background: transparent;
}
.reconnect-tab-cnt .nav-tabs {
  border-bottom: none !important;
  margin-bottom: 10px;
}
.enq-form-grp,
.form-group {
  width: 100%;
  margin: 1rem 0 1.5rem;
}
.cstm-form-control,
.form-control {
  font-size: 1rem;
  color: var(--color-black2);
  font-weight: 500;
  font-family: var(--body-font);
  display: block;
  border: none;
  padding: 0.625rem;
  border-bottom: 1px solid var(--color-blur2);
  outline: none;
  width: 100%;
  background: transparent;
  border-radius: 0;
}
.cstm-form-control:focus,
.form-control:focus {
  outline: none;
}
.cstm-form-control::placeholder {
  font-size: 1rem;
  font-weight: 500;
}
.enq-btn {
  padding-right: 1.5rem;
  color: var(--color-blur1);
  background: var(--color-white);
}
.cstm-submit {
  width: 65%;
  text-align: left;
}
/* End Reconnect with Time */

/* Cosmos */
.cosmos {
  position: relative;
  z-index: 9;
}
/* .cosmos-overflow {
} */
/* .cosmos .swiper-wrapper .swiper-slide-active:after { */
.cosmos-overflow {
  content: "";
  width: 34%;
  height: 100%;
  background: var(--color-black);
  opacity: 0.4;
  z-index: 910;
  position: absolute;
  left: 0;
  top: 0;
}
.cosmos-title-cont {
  position: absolute;
  z-index: 920;
  top: 20%;
  width: 13.75rem;
}
.cosmos-title-logo {
  margin-bottom: 3.125rem;
}
.cosmos-title-logo img {
}
.cosmos-title {
  position: relative;
  font-size: 2.3rem;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 400;
  margin-top: 1.3rem;
  padding-bottom: 1.2rem;
  width: 90%;
}
.cosmos-title:after {
  content: "";
  width: 50%;
  height: 2px;
  background: var(--color-green2);
  position: absolute;
  left: 0;
  bottom: 0.625rem;
}
.cosmos-nav-grp {
  z-index: 950;
  position: absolute;
  left: 14%;
  width: 7.8125rem;
  bottom: 30%;
  display: inline-block;
}

.cosmos_slider {
  /* wrapper that Swiper initialises on  */
  position: relative;
  overflow: none; /* critical – lets buttons overflow    */
}

.cosmos_slider .nav-btn {
  /* shared styles for both buttons      */
  position: absolute;
  top: -32px; /* pull above the slide area           */
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: background 0.2s;
}
.cosmos_slider .nav-btn:hover {
  background: transparent;
}

.cosmos_slider .cosmos-prev {
  left: 0.75rem;
} /* place left  button */
.cosmos_slider .cosmos-next {
  right: 0.75rem;
} /* place right button */

.cosmos_slider .nav-btn i {
  font-size: 18px;
  color: var(--color-white);
}

/* remove default Swiper arrow pseudo‑icons (only needed if you keep
   the classes .swiper-button-prev / -next somewhere) */
.cosmos_slider .swiper-button-prev::after,
.cosmos_slider .swiper-button-next::after {
  display: none;
}

.cosmos-footer {
}
.cosmos-footer .swiper-slide:last-child {
  /* margin-left: 5px !important; */
  margin-right: 0.625rem !important;
}
.cosmos-icon-cont {
  position: relative;
  margin-top: -3.125rem;
  z-index: 970;
}
.cosmos-icon-cont .icon-card-item {
  height: 10rem;
  margin: 0;
  align-items: center;
  padding: 1.5625rem 1rem;
}
.cosmos-icon-cont .icon-card-item h6 {
  font-size: 1rem;
  font-weight: 500;
}
.cosmos-icon-cont .icon-card-icon {
  width: 100px;
  height: 60px;
  overflow: hidden;
}
.cosmos-icon-cont .icon-card-icon img {
  width: 100px;
  height: 60px;
  object-fit: contain;
}
.cosmos-icon-cont .swiper-wrapper {
  padding: 0 2px;
}
/* End Cosmos */

/* Quaint Address */
.quaint-address {
  padding-top: 5.6875rem;
  padding-bottom: 5.6875rem;
}
.quaint-top {
  text-align: center;
}
.quaint-title {
  font-size: 3rem;
  color: var(--color-blur1);
  font-weight: 500;
  font-family: var(--title-font);
}
.quaint-txt {
  font-size: 1.25rem;
  color: var(--color-blur1);
  font-weight: 400;
  margin: 1rem auto;
}
.quaint-map-cont {
  max-height: 28.125rem;
  display: block;
}
.quaint-map-cont img {
}
.quaint-btn {
  font-size: 1.125rem;
  color: var(--color-blur1);
  padding: 0.625rem 1.7rem;
}
/* End Quaint Address */
/* Download Floor Plan */
.down-plan-cont {
  padding-top: 5.6875rem;
  padding-bottom: 2.6875rem;
}
.down-planl-left {
  display: block;
}
.down-planl-title {
  font-size: 2.5rem;
  color: var(--color-blur1);
  font-family: var(--title-font);
  font-weight: 400;
  position: relative;
  /* width: 59%; */
  width: 80%;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}
.down-planl-title:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 25%;
  height: 2px;
  background: var(--color-green2);
}
.down-planl-txt {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-black2);
  width: 70%;
}
.down-planl-btn {
  font-size: 1.125rem;
  font-weight: 400;
  text-decoration: none;
  margin-top: 1.5rem;
  color: var(--bg-3);
  transition: all 1s;
}
.down-planl-left {
}
.down-planl-left img {
  transform: scale(1.2);
}
/* End Download Floor Plan */

/* Floor Plan  */
.floor-plan {
  padding-top: 5.6875rem;
  /* padding-bottom: 5.6875rem; */
}
.floor-plan-title {
  font-size: 2.5rem;
  color: var(--color-blur1);
  font-family: var(--title-font);
  position: relative;
  padding-bottom: 0.7rem;
}
.floor-plan .nav-pills {
  margin-bottom: 1.5rem;
}
.floor-plan .nav-pills .nav-link {
  padding: 0 0 5px;
  border-radius: 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-blur1);
  font-family: var(--body-font);
  margin-right: 1.5rem;
}
.floor-plan .nav-pills .nav-link.active,
.floor-plan .nav-pills .show > .nav-link {
  border-bottom: 2.5px solid var(--color-green2);
  background: transparent;
  color: var(--color-blur1);
}
.floor-swiper {
  position: relative;
  z-index: 99;
}
.floor-nav-grp {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 0 auto;
  z-index: 9;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 112%;
}
.floor-prev-btn,
.floor-next-btn {
  background: #0000004a;
  color: #fff;
  border-radius: 50%;
  z-index: 9;
  padding: 9px 13px;
}
.floor-prev-btn i {
}

.floor-swiper-wrapper {
  position: relative;
}
.floor-swiper-wrapper {
}

/* End Floor Plan  */

/* Gallery */
.gallery {
  padding: 4.5625rem 0;
}
.gallery-title {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 0.5rem;
  font-size: 2.5rem;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--color-blur1);
  text-align: center;
}
.gallery-txt {
  font-size: 0.875rem;
  color: var(--color-black2);
  font-weight: 400;
  font-family: var(--body-font);
  margin: 0.5rem auto 0;
  width: 70%;
  text-align: center;
}
.gallery-container {
  margin-top: 1rem;
}
.gallery-container .lightbox-glry {
  display: block;
}
.gallery-container .lightbox-glry img {
  width: 100%;
  height: auto;
}
.gallery-container .nav-tabs {
  text-align: center;
  justify-content: center;
  margin-bottom: 2rem;
  border: none;
}
.gallery-container .nav-link {
  font-size: 1.25rem;
  color: var(--color-blur1);
  padding: 0 0 0.75rem;
  margin-right: 1.5rem;
  border-radius: 0;
}
.gallery-container .nav-link {
  padding-bottom: 5px;
}
.gallery-container .nav-link.active {
  border: none;
  border-bottom: 2px solid var(--color-green3);
  background: none;
  color: var(--color-blur1);
}
.gallery-container {
}
.gallery-container .nav-link {
  border: none;
  cursor: pointer;
}

/* End Gallery */

/* Footer  */
footer {
  padding-top: 82px;
  padding-bottom: 50px;
}
.footer-title {
  font-size: 2.5rem;
  font-weight: 300;
  font-family: var(--title-font);
  color: var(--color-white);
  margin-bottom: 2rem;
  text-align: center;
}
footer .cstm-form-control {
  color: var(--color-white) !important;
  border-bottom: 1px solid var(--color-white) !important;
  font-weight: 400;
}
footer .cstm-form-control::placeholder {
  color: var(--color-white) !important;
}
.footer-enq-btn {
  margin-top: 2rem;
}
.download-section {
  margin-top: 2rem;
  padding: 2rem 0;
  background: var(--bg-4) !important;
}
.down-cont-btn {
  display: flex;
  justify-content: center;
}
.down-cont-btn .btn-them {
  margin-right: 0.75rem;
}
.down-title {
  font-size: 2.5rem;
  font-family: var(--title-font);
  font-weight: 200;
  display: inline-block;
  margin-right: 20px;
  color: var(--color-white);
}

.ftr-info {
  padding-top: 5rem;
}
.ftr-info-addrs {
}
.ftr-subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: var(--body-font);
  margin-bottom: 1.35rem;
  color: var(--color-white);
}
.ftr-info-logo {
  width: 100%;
  display: block;
  margin-bottom: 1.875rem;
  filter: brightness(0) invert(1);
}
.ftr-info-txt {
  font-size: 0.875rem;
  color: var(--color-white);
}

.ftr-cnt-info-itm {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.ftr-cnt-info-itm span {
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  align-content: center;
  margin-right: 0.5rem;
}
.ftr-cnt-info-itm span i {
  font-size: 1rem;
  color: var(--color-white);
}
.ftr-cnt-info-itm p {
  font-size: 0.875rem;
  color: var(--color-white);
  margin-bottom: 0;
}
.ftr-cnt-info-itm a {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--color-white);
}
.ftr-social-icon {
  display: flex;
  margin-top: 1rem;
  margin-left: 1.875rem;
}
.ftr-social-icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.625rem;
  cursor: pointer;
  width: 2.2rem;
  height: 2.2rem;
  background: #d1dce4;
  border-radius: 50%;
}
.ftr-social-icon a i {
  font-size: 1.1875rem;
  color: var(--color-blur1);
}
.ftr-btm {
  display: block;
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--body-font);
}
.ftr-btm p {
  margin-bottom: 0;
  font-size: 0.875rem;
  text-transform: capitalize;
  color: var(--color-white);
}
.ftr-btm span {
  color: var(--color-white);
  font-size: 0.875rem;
}
.ftr-btm span a {
  color: var(--color-white);
}
.ftr-btm p a {
  color: var(--color-white);
}

/* Date time icon  */

.input-with-icon {
  position: relative;
  width: 100%;
  max-width: 200px;
}

.input-with-icon input {
  padding-right: 35px; /* leave space for icon */
}

.input-with-icon .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 18px;
  color: var(--color-white);
}

/* Hide native calendar/clock icon */
.input-with-icon input::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* End Footer  */

.d-d-block {
  display: block !important;
}
.d-d-none {
  display: none !important;
}

.m-d-none {
  display: block !important;
}

.mobile-ft-fixed {
  display: none;
}

#exampleModal_1,
#exampleModal_5 {
  z-index: 9999;
}

.otp-inputs {
  display: flex;
  justify-content: space-evenly;
  overflow: hidden;
}
.otp-inputs input {
  width: 50px;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
  outline: none;
}
.otp-footer {
  text-align: center;
  margin-top: 20px;
}
.otp-footer #otp-verify-btn-footer,
#otp_pop-verify-btn,
#otp-verify-btn {
  margin: 0 auto;
  display: inline-block;
  padding: 6px 20px;
  border: none;
  font-weight: 500;
  background: #5c7221;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}

.resend-btn {
  display: block;
  text-align: center;
  width: 100%;
  background: transparent;
  border: none;
  font-weight: 500;
  color: var(--color-blur2);
  text-decoration: underline;
  font-size: 15px;
}

/* Construction Updates Slider  */

.swiper-container2 {
  width: 100%;
  /* max-width: 1000px; */
  height: auto;
  margin: auto;
  padding-top: 10px;
  overflow: hidden;
  /* Hide extra slides */
}

.swiper-slide2 {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
  /* width: 300px; */
  /* Force fixed width */
  position: relative;
}
.swiper-slide2 h6 {
  position: absolute;
  bottom: 42px;
  color: var(--color-white);
  left: 25px;
  font-size: 18px;
  font-weight: 400;
}
.swiper-slide2 h6:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1.5px;
  background: var(--color-green2);
  bottom: -5px;
  left: 0;
}

.swiper-slide2 img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-container2 .swiper-slide-active {
  transform: scale(1.25) !important;
}

/* Sub Page  */
.sub-hero {
  background: url(../images/your-hub.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding-top: 15%;
  padding-bottom: 5%;
}
.subp-container {
  padding-top: 3.125rem;
  color: var(--color-blur1);
  display: block;
  width: 100%;
  padding-bottom: 3.125rem;
}
.section-sub-page {
}
.title-02 {
  font-weight: 700;
}
.sub-icon {
  width: 50px;
  height: 50px;
  text-align: center;
  align-content: center;
  background: var(--color-green2);
  border-radius: 50%;
  border: none;
  margin: 1rem auto;
}
.sub-icon i {
  font-size: 20px;
  color: var(--color-white);
}
.sub-icon2 {
  background: tomato !important;
}
.sub-title-02 {
  font-size: 1.2rem;
  color: var(--color-black2);
  font-weight: 500;
  margin-top: 1.5rem;
}
.subp-btn-01 {
  text-align: center;
  margin: 1.5rem 0;
}
.subp-btn-01 a {
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 500;
  background: var(--color-green2);
  color: var(--color-white);
  cursor: pointer;
}
/* End Sub Page  */

.form-check-input:checked {
  background-color: var(--color-blur2);
  border-color: var(--color-blur2);
}

.grecaptcha-badge {
  opacity: 0 !important;
}

.reconnect-container .swiper {
  width: 100%;
  height: 100%;
}

.reconnect-container .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.reconnect-container .thumbSwiper {
  margin-top: 10px;
}

.reconnect-container .thumbSwiper .swiper-slide {
  opacity: 0.4;
  cursor: pointer;
}

.reconnect-container .thumbSwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.sldshow-glry {
  max-height: 350px;
}
.thumbSwiper {
}
.thumbSwiper .swiper-slide {
  height: auto;
  overflow: hidden;
}
.thumbSwiper .swiper-slide img {
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.v-playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #00000066;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}
.v-playbtn .fa-play {
  color: #ffffff;
  font-size: 1.9rem;
}
#footer_otp_Div {
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
#footer_otp_Div .reconnect-title {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 700;
}
#footer_otp_Div .reconnect-title:after {
  left: 50% !important;
  transform: translate(-50%) !important;
}

.m-block {
  display: none !important;
}
.m-none {
  display: flex !important;
}

.ftr-btm p {
  margin-bottom: 6px;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
