@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500;600;700&display=swap");

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --light: #ffffff;
  --dark: #000;
  --Montserrat: "Montserrat", sans-serif;
  --Cormorant-SC: "Cormorant SC", serif;
  --tangerine-regular: "Tangerine";
  --radius-full: 100px;
  --primary-blue: rgba(27, 50, 94, 1);
  --primary-lightblue: rgba(100, 190, 235, 1);
  --primary-blue2: rgba(37, 88, 131, 1);
  --text-color: #373434;
  --primary-pink: #a01d53;
  --primary-bg: rgba(80, 138, 185, 0.41);
  --green: #1F3E43;
  --gold: linear-gradient(90deg, #D29B24 0%, #F8DF51 26.93%, #F8DF51 74.51%, #CF9823 100%);
}

html {
  font-size: 16px !important;
  overflow-x: hidden !important;
}

body {
  overflow-x: hidden !important;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  padding-right: 0px !important;
  font-family: var(--Montserrat);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  background-color: #ffffff00;
}

body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

body.loading {
  width: 100%;
  height: 100vh !important;
  overflow: hidden;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

body.loaded {
  -webkit-animation: fadeIn 3s ease-out forwards;
  animation: fadeIn 3s ease-out forwards;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

.toggle-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--dark-blue);
  width: 45px;
  height: 45px;
  border-radius: 100px;
  position: fixed;
  bottom: 0%;
  right: 1.25%;
  color: var(--light);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up.show {
  opacity: 1;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up i {
  font-size: 1.15rem;
}

.loader-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100dvh;
  width: 100%;
  inset: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -o-radial-gradient(10% 20%,
      circle farthest-corner,
      #1c3f64 0.1%,
      #1c3f64 94.2%);
  background-image: radial-gradient(circle farthest-corner at 10% 20%,
      #1c3f64 0.1%,
      #1c3f64 94.2%);
  position: fixed;
  z-index: 99999;
  opacity: 1;
}

.loader-div.hide {
  opacity: 0;
  -webkit-transition: all 2.5s ease;
  -o-transition: all 2.5s ease;
  transition: all 2.5s ease;
}

.loading-container {
  width: 100%;
  max-width: 520px;
  text-align: center;
  color: #fff;
  position: relative;
  /* margin: 0 32px; */
}

.loading-container:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  -webkit-animation: movingLine 2.4s infinite ease-in-out;
  animation: movingLine 2.4s infinite ease-in-out;
}

@-webkit-keyframes movingLine {
  0% {
    opacity: 0;
    width: 0;
  }

  33.3%,
  66% {
    opacity: 0.8;
    width: 100%;
  }

  85% {
    width: 0;
    left: initial;
    right: 0;
    opacity: 1;
  }

  100% {
    opacity: 0;
    width: 0;
  }
}

@keyframes movingLine {
  0% {
    opacity: 0;
    width: 0;
  }

  33.3%,
  66% {
    opacity: 0.8;
    width: 100%;
  }

  85% {
    width: 0;
    left: initial;
    right: 0;
    opacity: 1;
  }

  100% {
    opacity: 0;
    width: 0;
  }
}

.loading-text {
  font-size: 5vw;
  line-height: 64px;
  letter-spacing: 10px;
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.loading-text span {
  -webkit-animation: moveLetters 2.4s infinite ease-in-out;
  animation: moveLetters 2.4s infinite ease-in-out;
  -webkit-transform: translatex(0);
  -ms-transform: translatex(0);
  transform: translatex(0);
  position: relative;
  display: inline-block;
  opacity: 0;
  text-shadow: 0px 2px 10px rgba(46, 74, 81, 0.3);
}

.loading-text span:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.loading-text span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.loading-text span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.loading-text span:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.loading-text span:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.loading-text span:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.loading-text span:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

@-webkit-keyframes moveLetters {
  0% {
    -webkit-transform: translateX(-15vw);
    transform: translateX(-15vw);
    opacity: 0;
  }

  33.3%,
  66% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(15vw);
    transform: translateX(15vw);
    opacity: 0;
  }
}

@keyframes moveLetters {
  0% {
    -webkit-transform: translateX(-15vw);
    transform: translateX(-15vw);
    opacity: 0;
  }

  33.3%,
  66% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(15vw);
    transform: translateX(15vw);
    opacity: 0;
  }
}

@-webkit-keyframes opacity {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

/* form loader css */

.form-loader-div {
  display: none;
}

.form-loader {
  width: 25px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid #b5acac;
  border-right-color: var(--light);
  -webkit-animation: l2 0.35s infinite linear;
  animation: l2 0.35s infinite linear;
}

@-webkit-keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

/* form loader css */

.compensate-for-scrollbar {
  margin-right: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0rem;
}

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

li {
  list-style: none;
  text-decoration: none;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 0rem;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.max-content {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.no-wrap {
  text-wrap: nowrap;
}

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

.rotate {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.rotate-180 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mirror {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.letter-spacing {
  letter-spacing: 1.05px;
}

.text-shadow {
  text-shadow: 0px 2px 10px rgba(46, 74, 81, 0.3);
}

.header-container {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 11;
  transition: background 0.4s ease-in-out, backdrop-filter 0.4s ease-in-out;
}

.navLinks .navLink {
  transition: color 0.4s ease-in-out;
}

.header-container.scrolled {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.header-container.scrolled .navLinks .navLink {
  color: var(--light);
}

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 8rem;
  background: transparent;
  gap: 1rem;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.menu {
  display: none;
  width: 21px;
  cursor: pointer;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}

.logo-img.logo-img-1 {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 200px;
  max-width: 100%;
  position: relative;
}


.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.navLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  gap: 4.5rem;
}

.navLinks .navLink {
  display: block;
  font-family: var(--Montserrat);
  font-size: 1rem;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.9px;
  text-transform: capitalize;
}

/* .phone-link .phone-text {
  margin-left: 6px;
  display: inline-block;
} */

.offcanvas {
  background-color: var(--light);
}

.offcanvas.offcanvas-end {
  width: 100%;
}

.offcanvas.offcanvas-end .offcanvas-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.offcanvas-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.offcanvas-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.offcanvas-close {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  border-radius: 100px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--light);
  -webkit-transform: translateY(4px) scale(0.95);
  -ms-transform: translateY(4px) scale(0.95);
  transform: translateY(4px) scale(0.95);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.offcanvas-close i {
  font-size: 1.1rem;
}

.offcanvas-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.5rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 1rem 0;
}

.offcanvas-link {
  display: block;
  font-size: 1.25rem;
  font-family: var(--Montserrat);
  font-weight: 600;
  color: var(--green);
  text-transform: capitalize;
  position: relative;
  width: 100%;
}

.offcanvas-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #0000001a;
  left: 0;
  bottom: -15px;
}

.offcanvas-link:last-child:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: transparent;
  left: 0;
  bottom: -15px;
}

.offcanvas-logo .logo-img.logo-img-1 {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 175px;
  max-width: 100%;
}

.offcanvas-logo .logo-img.logo-img-2 {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 55px;
  max-width: 100%;
}

.offcanvas-logo .logo-img.logo-img-1::after {
  background-color: #ffffff45;
}

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

.btn-visit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  outline: none;
  border: none;
  background: var(--primary-blue);
  gap: 0.25rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--Metropolis-SemiBold);
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--light);
}

.btn-visit span {
  display: block;
}

.btn-visit.light {
  background: var(--light);
  gap: 0.45rem;
  padding: 0.5rem 1.25rem;
  font-family: var(--Metropolis-SemiBold);
  color: rgba(37, 88, 131, 1);
}

section.main-banner {
  height: 100dvh;
  position: relative;
  /* margin: 6rem 0 0 0; */
}

section.main-banner .custom-slider {
  height: 100%;
}

section.main-banner .custom-slider .carousel-inner {
  height: 100%;
}

section.main-banner .custom-slider .carousel-inner .carousel-item {
  height: 100%;
}

section.main-banner .custom-slider .carousel-inner .carousel-item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  bottom: 4%;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  z-index: 999;
  transition: all 0.5s ease;
}

.overtext {
  position: absolute;
  right: 1%;
  color: var(--light);
  font-size: 12px;
  text-transform: uppercase;
}

.story-text {
  position: absolute;
  bottom: 4%;
  right: 1%;
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
}

.gallery-text {
  position: absolute;
  bottom: 2%;
  right: 2%;
  color: var(--light);
  font-size: 12px;
  text-transform: uppercase;
}

.banner-overlay .banner-title {
  font-family: var(--tangerine-regular);
  color: var(--light);
  font-size: 4.75vw;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin: 0 0 1.25rem 0;
  text-shadow: var(--dark) 1px 0 10px;
}

.banner-overlay .banner-subtitle {
  font-family: var(--Metropolis-Regular);
  color: var(--light);
  font-size: 1rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  letter-spacing: 1.05px;
  text-transform: capitalize;
  text-shadow: var(--dark) 1px 0 10px;
  margin: 0 0 1.5rem 0;
}


.banner-overlay .banner-title .strong-title {
  font-size: 7vw;
  font-weight: 600;
}

.carousel-item img {
  animation: zoomEffect 8s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }

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


.section-heading .section-title {
  font-size: 4.75vw;
  font-weight: 700;
  font-family: var(--tangerine-regular);
  color: var(--green);
  position: relative;
  z-index: 2;
}

/********gsap text animation starts */
.banner-title .word,
.banner-title .char {
  display: inline-block;
}

.section-title {
  overflow: hidden;
  line-height: 1.2;
}

.word, .char {
  display: inline-block;
}

/********gsap text animation ends */

.section-heading .section-title.custom-size {
  font-size: 2vw;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-heading .section-title.blue {
  color: var(--primary-blue);
}

.section-heading .section-title.light {
  color: var(--light);
}

.section-heading .section-desc {
  font-size: 1rem;
  font-family: var(--Montserrat);
  color: var(--green);
  font-weight: 400;
  position: relative;
  line-height: 32px;
  z-index: 2;
  margin: 0.5rem auto auto auto;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-heading .section-desc.light {
  color: var(--light);
}

.italic {
  font-style: italic;
  font-weight: 700;
}

/* *********Overview Section Starts***** */

section.section-overview {
  padding: 4rem 0;
  background: var(--green);
  position: relative;
}

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

.overview-element {
  position: absolute;
  top: 0%;
  right: 4%;
  width: 2%;
  z-index: 2;
}

.overview-element img {
  width: 100%;
  height: auto;
  display: block;
}

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

.overview-head .gold-text {
  font-size: 3vw;
  background: var(--gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--tangerine-regular);
}

.overview-view {
  padding-top: 2rem;
}

.social-btns {
  margin: auto;
  font-size: 0;
  text-align: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.social-btns .amebox {
  display: inline-block;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 60px;
  height: 60px;
}

.social-btns .amebox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.social-btns .ame-tit {
  color: var(--light);
  font-size: 1rem;
  font-weight: 400;
  margin: 20px 0px 30px;
  font-family: var(--Montserrat);
}

.overview-view .owl-nav .owl-prev .overview-prev,
.overview-view .owl-nav .owl-next .overview-next {
  width: 100px;
  height: 50px;
}

.overview-view .owl-nav .owl-prev .overview-prev img,
.overview-view .owl-nav .owl-next .overview-next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: unset !important;
}

.overview-video {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.video-play-btn {
  position: relative;
  display: inline-block;
  width: 100%;
}

.video-thumb {
  width: 100%;
  height: 90vh;
  display: block;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: 0.3s;
}

.video-play-btn:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

/* **********Overview Section ends***** */

/* ********our story section starts***** */
section.section-story {
  padding: 4rem 0;
  position: relative;
}

.our-story-container {
  width: 90%;
  margin: auto 0 auto auto;
}

.story-element {
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 10%;
  z-index: 2;
}

.story-element img {
  width: 100%;
  height: auto;
  display: block;
}


.our-img {
  width: 100%;
  height: 100%;
  padding-top: 2rem;
}

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

.story-right {
  display: flex;
  justify-content: flex-end;
}

.overview-img {
  width: 100%;
  max-width: 65vh;
  height: auto;
  position: relative;
}

.overview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.overview-img::before {
  content: "";
  position: absolute;
  top: 4%;
  left: -30%;
  width: 65%;
  height: 80%;
  background-image: url(../assets/images/elements/patch.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

img.vert-move {
  -webkit-animation: mover 2s infinite alternate;
  animation: mover 2s infinite alternate;
}

img.vert-move {
  -webkit-animation: mover 2s infinite alternate;
  animation: mover 2s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
}

/* ********our story section ends***** */

/* *********gallery section starts****** */
.section-gallery {
  padding: 3rem 0;
  position: relative;
}

.gallery-element {
  position: absolute;
  bottom: 4%;
  right: 0%;
  width: 10%;
  z-index: 2;
}

.gallery-element img {
  width: 100%;
  height: auto;
  display: block;
}


.gallery-swiper-container {
  position: relative;
}

.gallery-swiper-container .gallery-swiper-2 {
  padding: 3rem 0;
}

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

.gallery-swiper-container .swiper-slide .gallery-img {
  width: 100%;
  height: 100%;
  position: relative;
  transform: scale(0.7);
  transition: all 0.5s ease;
}

/* Patch OUTSIDE the image */
.gallery-swiper-container .swiper-slide .gallery-img::after {
  content: "";
  position: absolute;
  inset: -10px;
  background-image: url("../assets/images/elements/gallerpatch.svg");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Scale active slide */
.gallery-swiper-container .swiper-slide.swiper-slide-active .gallery-img {
  transform: scale(1);
}

/* Show patch only on active */
.gallery-swiper-container .swiper-slide.swiper-slide-active .gallery-img::after {
  opacity: 1;
}

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

.gallery-swiper-container .swiper-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto auto auto;
}

.gallery-swiper-container .swiper-button {
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 2;
  width: 60px;
  height: 60px;
  transition: all 0.5s ease;
}

.gallery-swiper-container .swiper-button-prev-4 {
  left: -3%;
}

.gallery-swiper-container .swiper-button-next-4 {
  right: -3%;
}

.gallery-swiper-container .swiper-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* *********gallery section ends****** */
section.section-location {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 6rem 0 3rem 0;
  display: flex;
  justify-content: start;
  background: transparent;
  align-items: flex-end;
  overflow: hidden;
  z-index: 1;
}

.loc-color {
  padding-bottom: 2rem;
  color: var(--light) !important;
}

.map-frame {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}

.map-frame::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
  background: linear-gradient(90deg, #1F3E43 13.41%, rgba(31, 62, 67, 0.90) 27.28%, rgba(31, 62, 67, 0.00) 72.19%);
  pointer-events: none;
}

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

.map-frame img {
  height: 100%;
  border: 0;
  width: 100%;
  pointer-events: none;
  object-fit: cover;
}

/* section.section-location::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../assets/images/overlay/overview-overlay.jpg") no-repeat center center/cover;
  inset: 0;
  z-index: -1;
} */

.location-accordion {
  background: var(--light);
  padding: 2rem;
  width: 35vw;
  position: relative;
  z-index: 3;
  border-radius: 30px;
}

.location-accordion .accordion {
  --bs-accordion-bg: transparent !important;
}

.location-accordion .accordion-item {
  border: unset;
}

.location-accordion .accordion-header {
  background: transparent;
  position: relative;
  padding: 0.25rem;
}

.location-accordion .accordion-header button {
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  color: var(--green);
  text-transform: capitalize;
  font-weight: 600;
  padding: 0.25rem 1rem 0.25rem 1.75rem;
  position: relative;
  line-height: 52px;
  border: 1px solid var(--green);
  font-size: 1.05rem;
  border-radius: 20px !important;
  font-family: var(--Montserrat);
}

.location-accordion .accordion-button::after {
  background-image: url("../assets/images/icons/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 40px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.location-accordion .accordion-button:not(.collapsed) {
  background: transparent;
}

.location-accordion .accordion-button:not(.collapsed)::after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.location-accordion-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.6rem;
}

.location-accordion-content .location-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.location-accordion-content .location-content .location-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.25rem;
}

.location-accordion-content .location-content .location-head .location-no {
  font-size: 1rem;
  font-weight: 400;
  color: var(--green);
  font-family: var(--Montserrat);
}

.location-accordion-content .location-content .location-head .location-title {
  font-weight: 400;
  font-family: var(--Montserrat);
  color: var(--green);
  font-size: 1rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.location-accordion-content .location-content .location-dist {
  font-weight: 400;
  font-family: var(--Montserrat);
  color: var(--green);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1rem;
  text-wrap: nowrap;
}

.location-map {
  width: 100%;
  /* height: 400px; */
  padding: 1rem;
  margin: 1rem auto auto auto;
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* **************Location section ends***** */

/* **************Count section starts***** */
/* .section-count {
  position: relative;
  height: 100dvh;
  overflow: hidden;
}

.count-img {
  height: 100%;
  width: 100%;
}

.count-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
} */

.count-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.count-bg {
  height: 100vh;
}

.count-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.count-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 13vw;
  z-index: 2;
}

.count-wrapper {
  margin-top: 2vw;
}

.row-top,
.row-bottom {
  display: flex;
  gap: 4vw;
  margin-bottom: 2.5vw;
}

.row-bottom {
  padding-left: 6vw;
  /* CENTER BOTTOM 2 CARDS */
}

.count-box h3 {
  font-size: 2.3vw;
  font-weight: 600;
  color: #fff;
  margin-bottom: .3vw;
  text-align: center;
  font-family: var(--Montserrat);
}

.count-box p {
  font-size: 1.1vw;
  color: #fff;
  margin: 0;
  font-family: var(--Montserrat);
}


/* **************Count section ends***** */

/* **********footer section starts******** */
.footer-section {
  height: 100vh;
  background: url("../assets/images/contact/contact.webp") center/cover no-repeat;
  position: relative;
  padding: 3rem 0;
}

.footer-section::after,
.footer-bg-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  opacity: 0.7;
  z-index: 1;
}

.footer-section>.container {
  position: relative;
  z-index: 2;
}

/* TITLE */
.footer-title {
  font-family: 'Cinzel', serif;
  font-size: 4.25vw;
  font-weight: 700;
  background: var(--gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--tangerine-regular);
}

.custom-footer-title {
  display: none;
}

.custom-footer-title {
  font-family: 'Cinzel', serif;
  font-size: 4.25vw;
  font-weight: 700;
  background: var(--gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--tangerine-regular);
}

/* FORM UNIQUE CLASS */
.footer-enquiry-form .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--light);
  color: var(--light);
  padding: 1rem 0.75rem !important;
  border-radius: 0;
  padding-left: 0;
}

.footer-enquiry-form .form-control::placeholder {
  color: var(--light);
  font-family: var(--Montserrat);
}

.submit-btn {
  border: 1px solid var(--light);
  color: var(--light);
  background: transparent;
  padding: 8px 30px;
  border-radius: 30px;
  display: flex;
  justify-content: start;
  font-family: var(--Montserrat);
}

/* QR */
.qr-img {
  width: 70px;
  height: 70px;
}

.qr-text {
  color: #fff;
  font-size: 14px;
  font-family: var(--Montserrat);
  padding-top: 0.5rem;
}

.footer-logo {
  height: 50px;
}

.footer-logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.footer-hr {
  border-color: rgba(255, 255, 255, 1);
  margin: 10px 0;
}

.foot-logo-1 {
  width: 100%;
  margin: 0 auto 50%;
  position: relative;
}

.foot-logo-1 img {
  width: 100%;
  object-fit: contain;

}

.foot-logo-2 {
  width: 100%;
  margin: 50% auto 0;
  position: relative;
}

.foot-logo-2 img {
  width: 100%;
  object-fit: contain;
}

/* BOTTOM TEXT */
.footer-content {
  color: #fff;
  font-size: 13px;
  font-family: var(--Montserrat);
}

.footer-disclaimer {
  color: #fff;
  max-width: 70%;
  font-size: 13px;
  font-family: var(--Montserrat);
  padding-top: 1rem;
}

.footer-created {
  color: #fff;
  font-size: 14px;
  font-family: var(--Montserrat);
}

.created-brand {
  color: #f3d16a;
}

.footer-logo-rera {
  justify-content: space-between;
  margin-bottom: 1rem;
}


/* **********modal starts */
.custom-modal-content {
  position: relative;
  background: var(--light);
}



.modal-logo {
  width: 150px;
  max-width: 100%;
  margin: 1rem auto;
}

.modal-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 3%;
  width: 48px;
  height: 48px;
  right: 3%;
  cursor: pointer;
}

.modal-close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.modal-form .custom-input {
  background-color: var(--light);
  border: 2px solid var(--green);
}

.modal-form .form-check-label {
  color: var(--green);
  font-weight: 400;
  font-family: var(--Montserrat);
  cursor: pointer;
  font-size: 0.875rem;
}

.invalid-feedback {
  color: red;
  font-family: var(--Montserrat);
  text-align: start;
}

.modal-form .invalid-feedback {
  color: red;
}

.custom-input {
  padding: 0.9rem 1rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: unset;
  border: none;
  font-weight: 400;
  font-family: var(--Metropolis-Regular);
  border-radius: 5px;
  background-color: var(--light);
}

.custom-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0px 0px 0px 2px var(--primary-blue);
  box-shadow: 0px 0px 0px 2px var(--primary-blue);
}

.custom-input::-webkit-input-placeholder {
  color: var(--text-color) !important;
  font-weight: 400 !important;
  font-family: var(--Metropolis-Regular) !important;
  text-transform: capitalize !important;
  font-size: 0.975rem !important;
}

.custom-input::-moz-placeholder {
  color: var(--text-color) !important;
  font-weight: 400 !important;
  font-family: var(--Metropolis-Regular) !important;
  text-transform: capitalize !important;
  font-size: 0.975rem !important;
}

.custom-input:-ms-input-placeholder {
  color: var(--text-color) !important;
  font-weight: 400 !important;
  font-family: var(--Metropolis-Regular) !important;
  text-transform: capitalize !important;
  font-size: 0.975rem !important;
}

.custom-input::-ms-input-placeholder {
  color: var(--text-color) !important;
  font-family: var(--Metropolis-Regular) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 0.975rem !important;
}

.custom-input::placeholder {
  color: var(--text-color) !important;
  font-family: var(--Metropolis-Regular) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 0.975rem !important;
}

.custom-textarea {
  background-color: var(--light);
  -webkit-box-shadow: unset;
  box-shadow: unset;
  outline: unset;
}

.msg {
  font-family: var(--Metropolis-Regular);
}

.custom-textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0px 0px 0px 2px var(--primary-blue);
  box-shadow: 0px 0px 0px 2px var(--primary-blue);
}

.fixed-button {
  position: fixed;
  right: 1.5%;
  bottom: 2.5%;
  gap: 1rem;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}

.btn-fixed {
  border: none;
  outline: none;
  border-radius: 100px;
  color: var(--light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--Montserrat);
  font-weight: 600;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.375rem;
  padding: 0.55rem 1.15rem;
}

.btn-fixed .icon {
  width: 25px;
  height: 25px;
}

.btn-fixed .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.btn-fixed.light-blue {
  background: var(--green);
  border: 1px solid var(--light);
}

.btn-fixed.dark-blue {
  background: var(--green);
  border: 1px solid var(--light);
}

.btn-submit {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: none;
  background: var(--primary-blue);
  color: var(--light);
  padding: 0.7rem 4.5rem;
  font-family: var(--Montserrat);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  border-radius: 10px;
}

.btn-submit.btn-modal {
  background: var(--green);
  color: var(--light);
  font-weight: 500;

  font-size: 1rem;
  border-radius: 5px;
}

.btn-sq {
  display: none;
}

.floating-button {
  position: fixed;
  bottom: 1%;
  left: 50%;
  width: 95%;
  background-color: var(--green);
  padding: 1rem;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 99;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  opacity: 0.9;
  border: 1px solid var(--light);
}

.floating-button .btn-float {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: transparent;
  border: none;
  gap: 0.5rem;
  font-family: var(--Metropolis-Regular);
  color: var(--light);
  position: relative;
  width: calc(100% / 3);
}

.floating-button .btn-float::after {
  content: "";
  position: absolute;
  width: 1px;
  background-color: white;
  right: -3px;
  height: 80%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.floating-button .btn-float:last-child:after {
  content: "";
  position: absolute;
  width: 1px;
  background-color: transparent;
  right: -35px;
}

.floating-button .btn-float .float-icon {
  width: 26px;
  height: 26px;
}

.floating-button .btn-float .float-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.modal-logo2 {
  width: 150px;
  max-width: 100%;
}

.modal-logo2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* thank you css */

section.section-thankyou {
  height: calc(100vh - 75px);
  max-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.thankyou-title {
  text-align: center;
  font-family: var(--Metropolis-Meduim);
  margin: 0.35rem 0 0 0;
  font-weight: 500;
}

.thankyou-subtitle {
  text-align: center;
  font-family: var(--Metropolis-Regular);
  font-weight: 400;
  text-wrap: balance;
  opacity: 0.85;
  margin: 0.5rem 0 0 0;
}

.go_txt {
  font-size: 15px;
  color: #000;
  background-color: #fff !important;
  border-radius: 3.125rem;
  border: 1px solid #000;
  font-family: var(--Metropolis-Regular);
  width: fit-content;
  padding: 15px 30px;
  margin: 15px auto 0;
}

/*********** media query *********/

@media only screen and (max-width: 1700px) {
  .overview-img::before {
    left: -25%;
  }

  .our-story-container {
    width: 95%;
    margin: auto 0 auto auto;
  }
}

@media only screen and (max-width: 1500px) {
  .overview-img::before {
    left: -18%;
  }
}

@media only screen and (max-width: 1400px) {
  section.main-banner {
    /* margin: 5.5rem 0 0 0; */
  }

  .navbar-container {
    padding: 0.5rem 4rem;
    gap: 1rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .navLinks .navLink {
    font-size: 1vw;
  }

  .our-story-container {
    width: 95%;
    margin: auto 0 auto auto;
  }

  .overview-img::before {
    left: -19%;
  }
}

@media only screen and (max-width: 1300px) {
  .navLinks .navLink {
    font-size: 1vw;
  }


}

@media only screen and (max-width: 1200px) {
  .navbar-container {
    padding: 0.5rem 2rem;
  }

  .navLinks {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    gap: 3rem;
  }

  .location-accordion {
    padding: 1.5rem;
    width: 45%;
  }

  .overview-img::before {
    display: none;
  }

  .location-accordion .accordion-header button {
    padding: 0.25rem 1rem 0.25rem 1.75rem;
    position: relative;
    line-height: 45px;
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 1080px) {
  .navbar-container {
    padding: 0.45rem 2rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  section.main-banner {
    /* margin: 5.25rem 0 0 0; */
  }

  .menu {
    display: block;
  }

  .navLinks {
    display: none;
  }

  .visit-button {
    display: none;
  }

  .counter .counter-txt span {
    font-size: 2.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }


  .gallery-swiper-container .swiper-button-prev-4 {
    left: -4%;
  }

  .gallery-swiper-container .swiper-button-next-4 {
    right: -4%;
  }

  .gallery-swiper-container .swiper-button {
    position: absolute;
    top: 38%;
    cursor: pointer;
    z-index: 2;
    width: 50px;
    height: 50px;
    transition: all 0.5s ease;
  }

  .count-box h3 {
    font-size: 2.2rem;
  }

  .count-box p {
    font-size: 1rem;
    text-align: center;
  }

}

@media only screen and (max-width: 991px) {

  .navbar-container {
    justify-content: space-between;
  }


  .section-heading .section-title {
    font-size: 6vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-desc {
    font-size: 1.95vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-overlay {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-overlay .banner-title {
    font-size: 4vw;
    overflow: hidden;
    line-height: 1.2;
  }



  .banner-overlay .banner-subtitle {
    font-family: var(--Metropolis-Regular);
    color: var(--light);
    font-size: 1rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-head .gold-text {
    font-size: 5vw;
  }

  .video-thumb {
    height: auto;
  }

  .our-story-container {
    width: 95%;
    margin: auto auto auto auto;
  }

  .our-img {
    display: none;
  }

  .story-right {
    justify-content: center;
  }

  .overview-img {
    width: 100%;
    height: 100%;
    position: relative;
    max-width: 100%;
  }


  .overview-element {
    right: 3%;
    width: 2.5%;
  }

  .story-element {
    width: 17%;
  }

  .gallery-element {
    width: 17%;
  }

  .gallery-swiper-container .swiper-button {
    position: unset;
    top: unset;
    cursor: pointer;
    z-index: 2;
    width: 60px;
    height: 46px;
    transition: all 0.5s ease;
  }

  .gallery-swiper-container .swiper-button-prev-4 {
    left: unset;
  }

  .gallery-swiper-container .swiper-button-next-4 {
    right: unset;
  }


  .location-accordion {
    padding: 1rem;
    width: 100%;
  }

  section.section-location {
    padding: 4rem 0 3rem 0;
    background: transparent;
  }

  .count-hero {
    height: 70vh;
  }

  .count-bg {
    height: 70vh;
  }

  .count-content {
    padding-left: 6vw;
  }

  .row-bottom {
    padding-left: 0;
  }

  .custom-footer-title {
    display: unset;
  }

  .count-box {
    width: 45%;
    margin-bottom: 4vw;
  }

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

  .footer-section {
    height: auto;
    padding: 40px 0;
  }

  .footer-disclaimer {
    max-width: 100%;
  }

  .hide-logo {
    display: none;
  }

  .footer-title {
    display: none;
  }

  .custom-footer-title {
    font-size: 6vw;
  }

  .footer-title {
    font-size: 6vw;
  }

  .footer-form-col {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 600px;
  }

  .footer-enquiry-form .col-md-6,
  .footer-enquiry-form .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 850px) {}

@media only screen and (max-width: 767px) {
  .navbar-container {
    justify-content: space-between;
  }

  .logo-img.logo-img-1 {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 150px;
    max-width: 100%;
  }

  .logo-img.logo-img-2 {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 40px;
    max-width: 100%;
  }

  section.main-banner {
    /* margin: 4rem 0 0 0; */
  }

  .section-heading .section-title {
    font-size: 6vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    text-align: center;
  }

  .section-heading .section-desc {
    font-size: 2.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    text-align: center;
    transition: all 0.5s ease;
  }

  .overtext {
    font-size: 10px;
  }

  .story-text {
    font-size: 10px;
  }

  .banner-overlay {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-overlay .banner-title {
    font-size: 7vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-overlay .banner-title .strong-title {
    font-size: 8.75vw;
  }

  .banner-overlay .banner-subtitle {
    font-size: 0.85rem;
    width: 25rem;
    max-width: 100%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-head .gold-text {
    font-size: 7vw;
  }

  .custom-container {
    width: 95%;
    margin: auto;
  }

  .overview-view .owl-nav .owl-prev .overview-prev, .overview-view .owl-nav .owl-next .overview-next {
    width: 100%;
  }

  .play-icon {
    width: 50px;
  }

  .our-story-container {
    width: 95%;
    margin: auto auto auto auto;
  }

  .overview-img img {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .overview-img {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .overview-element {
    right: 3%;
    width: 4%;
  }

  .story-element {
    width: 29%;
  }

  .gallery-element {
    width: 29%;
  }

  .loc-color {
    color: var(--green) !important;
    padding-bottom: unset;
  }

  .cust-container {
    width: 95%;
    margin: auto;
  }

  .map-frame {
    display: none;
  }

  .location-map {
    padding: 0rem;
  }

  .location-accordion .accordion-header button {
    padding: 0.25rem 1rem 0.25rem 1.75rem;
    line-height: 34px;
    font-size: 13px;
  }

  .section-count {
    position: relative;
    height: 100%;
    overflow: hidden;
  }



  .count-content {
    padding-left: 5vw;
  }

  .count-box {
    width: 100%;
  }

  .count-box h3 {
    font-size: 6vw;
  }

  .count-box p {
    font-size: 2vw;
    text-align: center;
  }

  .footer-logo-rera {
    justify-content: center;
  }

  .btn-sq {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-blue);
    color: var(--light);
    padding: 0.5rem 0.65rem;
    border-radius: 6px;
    font-size: 0.9rem;
  }

  .fixed-button {
    display: none;
  }

  .footer-title {
    font-size: 6vw;
  }

  .custom-footer-title {
    font-size: 6vw;
  }
}

@media only screen and (max-width: 576px) {
  .banner-overlay {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  section.main-banner {
    /* margin: 3.5rem 0 0 0; */
    height: 80vh;
  }

  .navbar-container {
    padding: 0.65rem 1.15rem;
    gap: 1rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .logo {
    gap: 2rem;
  }

  .logo-img {
    width: 115px;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }


  .section-heading .section-title {
    font-size: 8vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-desc {
    font-size: 3.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .modal-close {
    top: 2%;
    width: 45px;
    height: 45px;
    right: 2%;
  }


  .modal-logo {
    width: 85px;
    margin: 2rem auto 1rem auto;
  }

  .modal-form .custom-input {
    padding: 0.75rem 1rem;
  }

  .mob-hide {
    display: none;
  }

  .count-box h3 {
    font-size: 7vw;
  }

  .count-box p {
    font-size: 3vw;
    text-align: center;
  }

  .btn-fixed {
    width: calc(100% / 2);
    border-radius: 0px;
    color: var(--light);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    padding: 0.55rem 1rem;
    font-size: 0.95rem;
  }

  .banner-overlay .banner-title {
    font-size: 8vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin: 0 0 0.85rem 0;
  }


  .banner-overlay .banner-subtitle {
    font-size: 0.875rem;
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    margin: 0 0 1rem 0;
    transition: all 0.5s ease;
  }

  .footer-title {
    font-size: 8vw;
  }

  .custom-footer-title {
    font-size: 8vw;
  }
}

@media only screen and (max-width: 450px) {}

@media only screen and (max-width: 375px) {
  .logo-img {
    width: 100px;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .btn-visit {
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    color: var(--light);
  }

  .section-heading .section-desc {
    font-size: 4vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

@media only screen and (max-width: 320px) {
  .logo-img {
    width: 85px;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .btn-visit {
    gap: 0.25rem;
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
    color: var(--light);
  }

  .floating-button .btn-float .float-txt {
    font-size: 0.75rem;
  }
}