@font-face {
  font-family: Metropolis-Medium;
  src: url("../assets/fonts/Metropolis/Metropolis-Medium.otf");
}

@font-face {
  font-family: Metropolis-Regular;
  src: url("../assets/fonts/Metropolis/Metropolis-Regular.otf");
}

@font-face {
  font-family: Metropolis-Bold;
  src: url("../assets/fonts/Metropolis/Metropolis-Bold.otf");
}

@font-face {
  font-family: ArefRuqaaInk-Regular;
  src: url("../assets/fonts/aref-ruqaa-ink/ArefRuqaaInk-Regular.ttf");
}
@font-face {
  font-family: ArefRuqaaInk-Bold;
  src: url("../assets/fonts/aref-ruqaa-ink/ArefRuqaaInk-Bold.ttf");
}

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

:root {
  --light: #ffffff;
  --dark: #000;
  --Lato: "Lato", sans-serif;
  --Montserrat: "Montserrat", sans-serif;
  --Raleway: "Raleway", sans-serif;
  --Metropolis-Medium: Metropolis-Medium;
  --Metropolis-Regular: Metropolis-Regular;
  --Metropolis-Bold: Metropolis-Bold;
  --ArefRuqaaInk-Regular: ArefRuqaaInk-Regular;
  --ArefRuqaaInk-Bold: ArefRuqaaInk-Bold;
  --radius-full: 100px;
  --primary-blue: #1c3f64;
  --text-color: #565656;
  --primary-pink: #a01d53;
}

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

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(--Metropolis-Medium);
}

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

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

.header-container {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  z-index: 9;
}

.navbar-container {
  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;
  padding: 1.15rem 8rem;
  background: var(--light);
  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: 1rem;
}

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

.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;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  gap: 2.875rem;
}

.navLinks .navLink {
  display: block;
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
  text-transform: capitalize;
}

.offcanvas.offcanvas-start .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 {
  width: 180px;
}

.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: 1.5rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.offcanvas-link {
  display: block;
  font-size: 1.15rem;
  background: var(--primary-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  text-transform: capitalize;
}

.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;
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--light);
}

.btn-visit span {
  display: block;
}

.btn-submit-1 {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
}

section.main-banner {
  margin: 4.85rem 0 0 0;
}

section.section-mobile-form {
  padding: 3.25rem 0 1rem 0;
}

.mobile-form {
  border: 0.159rem solid var(--primary-pink);
  border-radius: 9px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 1.75rem 1rem;
}

.mobile-form .custom-input-2 {
  border: 0.145rem solid #d5d5d5;
}

section.section-project-hightlight {
  padding: 3rem 0 2rem 0;
}

.section-heading .section-title {
  font-size: 3vw;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  font-family: var(--ArefRuqaaInk-Bold);
  color: var(--primary-pink);
  -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-desc {
  font-size: 1vw;
  color: var(--primary-blue);
  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.txt-color {
  color: var(--text-color);
}

.section-desc-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.75rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.line {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(28, 63, 100, 0.12);
}

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

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

.project-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: 1.75rem;
}

.highlight-carousel-container {
  margin: 3.5rem auto auto auto;
  width: 90%;
}

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

.project-content .project-info .project-info-icon {
  width: 40px;
  height: 40px;
}

.project-content .project-info .project-info-icon img {
  /* width: 100%;
  height: 100%; */
  -o-object-fit: contain;
  object-fit: contain;
}

.project-content .project-info .project-info-txt {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--primary-blue);
  text-wrap: pretty;
}

.highlight-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: 1rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
}

.highlight-content .count-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.highlight-content .count-div .count {
  font-size: 3.25vw;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--primary-pink);
  font-family: var(--Metropolis-Bold);
}

.highlight-content .count-div .symbol {
  font-size: 3.15vw;
  font-weight: 700;
  color: var(--primary-pink);
}

.highlight-content .highlight-details {
  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.5rem;
}

.highlight-content .highlight-details .count-title {
  font-size: 1.25vw;
  text-transform: capitalize;
  color: var(--primary-blue);
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.highlight-content .highlight-details .count-desc {
  font-size: 0.95vw;
  text-transform: capitalize;
  font-family: var(--Metropolis-regular);
  color: var(--text-color);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.highlight-carousel .owl-nav,
.highlight-carousel .owl-dots {
  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;
  gap: 1rem;
  margin: 2rem auto auto auto;
}

.highlight-carousel .owl-nav button {
  width: 40px;
  height: 40px;
}

.highlight-carousel .owl-nav button img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.highlight-carousel .owl-dots button {
  width: 10px;
  height: 10px;
  scale: 0.9;
  border-radius: 100px;
  background: #d5d5d5 !important;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.highlight-carousel .owl-dots button.active {
  scale: 1;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background: var(--primary-pink) !important;
}

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

.legacy-container {
  position: relative;
  z-index: 1;
  padding: 6rem 4.5rem 4rem 4.5rem;
}

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

.legacy-container::before {
  content: "";
  width: 90%;
  height: 90%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 10px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(12.5px);
  backdrop-filter: blur(12.5px);
  z-index: -1;
  position: absolute;
}

.legacy-accordion .accordion-item {
  background-color: transparent;
}

.legacy-accordion .accordion-button:not(.collapsed),
.legacy-accordion .accordion-button {
  background-color: transparent;
  outline: unset;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.legacy-accordion .accordion-button .acc-icon {
  width: 30px;
  height: 30px;
}

.legacy-accordion .accordion-button .acc-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.legacy-accordion .accordion-button .acc-txt {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-blue);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.legacy-accordion .accordion-body {
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--Metropolis-regular);
  color: var(--text-color);
}

.legacy-accordion .accordion-item {
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border: var(--bs-accordion-border-width) solid rgba(86, 86, 86, 0.25);
}

.amenities-container {
  margin: 5rem auto 3rem auto;
}

.amenities-content {
  display: -ms-grid;
  display: grid;
  margin: 2.5rem 1rem auto 1rem;
  -ms-grid-columns: (1fr) [6];
  grid-template-columns: repeat(6, 1fr);
}

.amenities-content .amenities-item {
  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;
  gap: 0.5rem;
  padding: 1rem;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.amenities-item:nth-child(6n) {
  border-right: none;
}

/* Remove bottom border from items in the last row (7 to 12) */
.amenities-item:nth-child(n + 7) {
  border-bottom: none;
}

.amenities-item .amenities-icon {
  width: 75px;
  height: 75px;
}

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

.amenities-item .amenities-txt {
  font-weight: 400;
  font-size: 0.85rem;
  text-align: center;
  font-family: var(--Metropolis-regular);
  color: var(--text-color);
}

.amenities-carousel-container {
  margin: 2.5rem auto auto auto;
}

.amenities-swiper .swiper-wrapper {
  margin: 0 0 2rem 0;
}

.amenities-swiper .swiper-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: unset;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 2rem 0;
}

.amenities-carousel-container .amenities-item {
  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;
  gap: 0.5rem;
  padding: 1rem;
}

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

.location-accordion {
  margin: 3rem auto auto auto;
  padding: 1rem 1.5rem 0rem 1.5rem;
  border-radius: 5px;
  border: 1px solid rgba(114, 114, 114, 0.1);
  background: #fff;
  -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

.location-accordion .accordion-item {
  background-color: transparent;
}

.location-accordion .accordion-button:not(.collapsed),
.location-accordion .accordion-button {
  background-color: transparent;
  outline: unset;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.location-accordion .accordion-button .acc-icon {
  width: 30px;
  height: 30px;
}

.location-accordion .accordion-button .acc-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.location-accordion .accordion-button .acc-txt {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-blue);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.location-accordion .accordion-body {
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--Metropolis-regular);
  color: var(--text-color);
}

.location-accordion .accordion-item {
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border: var(--bs-accordion-border-width) solid rgba(86, 86, 86, 0.25);
}

.location-accordion .accordion-item:last-of-type {
  border-bottom-right-radius: unset;
  border-bottom-left-radius: unset;
  border: unset !important;
}

.location-details {
  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.75rem;
}

.location-details .location-item {
  position: relative;
  font-weight: 400;
  text-transform: capitalize;
  padding: 0 0 0 2rem;
  color: var(--text-color);
}

.location-details .location-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-color);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

section.section-drama {
  padding: 0 0 3rem 0;
}

.house-form.mobile-form {
  padding: 1rem;
  margin: 2rem auto;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 95%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
  border: 2px solid rgba(160, 29, 83, 0.1);
}

.house-nav .custom-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 2.5rem auto 4rem auto;
}

.house-nav .custom-nav::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 1px;
  background: rgba(86, 86, 86, 0.25);
  bottom: -5px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.house-nav .custom-nav .nav-link {
  background: transparent;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.house-nav .custom-nav .nav-link.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--primary-blue);
  left: 0;
  border-radius: 100px;
  bottom: -5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.house-nav .custom-nav .nav-link.active {
  color: var(--primary-blue);
}

.drama-house-img {
  position: relative;
  cursor: pointer;
}

.drama-house-img img {
  -webkit-filter: blur(0px);
  filter: blur(0px);
}

/* .drama-house-img::after {
  content: "";
  position: absolute;
  background: url("../assets/images/icons/home2.svg") no-repeat center
    center/cover;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
} */

.form-title {
  color: var(--primary-pink);
  font-weight: 600;
  font-size: 1rem;
}

.custom-input {
  padding: 0.9rem 1rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: unset;
  border: none;
  border-radius: 5px;
  background-color: rgba(86, 86, 86, 0.1);
}

.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-pink);
  box-shadow: 0px 0px 0px 2px var(--primary-pink);
}

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

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

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

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

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

.btn-submit {
  width: 100%;
  border: none;
  background: var(--primary-pink);
  color: var(--light);
  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;
  padding: 0.85rem 0.5rem;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 5px;
}

.btn-submit-ext {
  border: none;
  background: var(--primary-pink);
  color: var(--light);
  padding: 0.65rem 4rem;
  font-weight: 600;
  margin: 1.25rem 0 0 0;
  font-size: 1rem;
  border-radius: 10px;
}

.form-check-label {
  color: #727272;
  font-weight: 400;
  cursor: pointer;
  font-size: 0.875rem;
}

.form-check-input[type="checkbox"] {
  cursor: pointer;
}

.invalid-feedback {
  margin-top: 0.2rem;
  font-size: 0.8em;
}

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

section.section-believe {
  position: relative;
  padding: 6rem 4rem;
}

section.section-believe::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/images/overlay/about-overlay.jpg") no-repeat center
    center/cover;
  z-index: -2;
}

section.section-believe::after {
  content: "";
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  border-radius: 10px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(12.5px);
  backdrop-filter: blur(12.5px);
  z-index: -1;
}

.believe-nav .custom-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
}

.believe-nav .custom-nav .nav-item .nav-link:not(.active) .icon img.active {
  display: none;
}

.believe-nav .custom-nav .nav-item:has(.nav-link.active) .icon img {
  display: none;
}

.believe-nav .custom-nav .nav-item:has(.nav-link.active) .icon img.active {
  display: block;
}

.believe-nav .custom-nav .nav-item .nav-link {
  border: 1px solid var(--primary-pink);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary-pink);
}

.believe-nav .custom-nav .nav-item .nav-link.active {
  background: var(--primary-pink);
  color: var(--light);
}

.believe-img {
  width: 100%;
  height: 350px;
}

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

.beilive-content {
  position: relative;
  margin: 3rem auto 2rem auto;
}

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

.believe-swiper .swiper-wrapper {
  margin: 0 0 2.5rem 0;
}

.swiper-nav {
  width: 100%;
  z-index: 2;
  position: absolute;
  top: 45%;
}

.swiper-nav .swiper-button {
  width: 40px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  height: 40px;
}

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

.swiper-nav .swiper-button-prev-1 {
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  left: -22px;
}

.swiper-nav .swiper-button-next-1 {
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  right: -22px;
}

.swiper-nav .swiper-button.swiper-button-prev-1.swiper-button-disabled {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.swiper-nav .swiper-button.swiper-button-next-1.swiper-button-disabled {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.about-container {
  margin: 2rem auto auto auto;
}

.about-content {
  width: 80%;
  margin: 0 0 0 auto;
}

.about-content .about-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.5vw;
  margin: 0 0 1rem 0;
}

.about-content .about-title span {
  color: #da4b4f;
}

.about-content .about-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.25rem;
}

.about-content .about-desc p {
  color: var(--text-color);
  font-weight: 400;
  font-size: 1vw;
}

label.msg {
  color: var(--text-color);
  font-weight: 400;
  background: transparent;
}

.custom-textarea {
  background-color: rgba(86, 86, 86, 0.1);
  -webkit-box-shadow: unset;
  box-shadow: unset;
  outline: unset;
}

.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-pink);
  box-shadow: 0px 0px 0px 2px var(--primary-pink);
}

section.section-contact {
  padding: 4rem 0 2rem 0;
}

.contact-form {
  border-radius: 10px;
  border: 1px solid rgba(160, 29, 83, 0.1);
  background: rgba(160, 29, 83, 0.1);
  padding: 2.5rem 2rem;
  -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

.section-map {
  width: 100%;
  padding: 0.5rem;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  background: var(--light);
}

.section-map iframe {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contact-form .custom-input {
  background-color: var(--light);
}

.custom-input-2 {
  padding: 0.8rem 1rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: unset;
  border: none;
  border-radius: 10px;
  background-color: var(--light);
}

.custom-input-2: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-pink);
  box-shadow: 0px 0px 0px 2px var(--primary-pink);
}

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

.swiper-scrollbar {
  background: #c3c3c3 !important;
}

.swiper-scrollbar-drag {
  background: #a01d53 !important;
}

footer {
  padding: 2rem 0;
}

.footer-logo {
  margin: auto;
  width: 350px;
  max-width: 100%;
}

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

.footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 3rem 0 1.5rem 0;
}

.footer-contact .contact {
  width: 25rem;
  color: var(--text-color);
  max-width: 100%;
}

.footer-disc {
  color: var(--text-color);
}

.footer-disc a {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.85;
}

.copyright {
  text-align: center;
  color: var(--primary-blue);
  font-size: 1rem;
  margin: 1.25rem 0 0 0;
}

.custom-modal-content {
  position: relative;
  background: var(--primary-blue);
}

.modal-logo {
  width: 200px;
  max-width: 100%;
  margin: 3rem auto 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);
}

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

.modal-form .invalid-feedback {
  color: var(--light);
}

.fixed-button {
  position: fixed;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  bottom: 3%;
  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-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 98%;
  margin: auto;
}

.btn-fixed {
  border: none;
  outline: none;
  border-radius: 100px;
  color: var(--light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.375rem;
  padding: 0.45rem 1rem;
}

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

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

.btn-fixed.blue {
  background: var(--primary-blue);
}

.btn-fixed.pink {
  background: var(--primary-pink);
}

.btn-redirect {
  border: none;
  outline: none;
  border-radius: 100px;
  color: var(--light);
  background: var(--primary-pink);
  display: -webkit-box;
  display: -ms-flexbox;
  margin: 1rem auto auto auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  display: flex;
  font-size: 0.85rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
}

/* 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;
  margin: 0.35rem 0 0 0;
}

.thankyou-subtitle {
  text-align: center;
  text-wrap: balance;
  opacity: 0.85;
  margin: 0.5rem 0 0 0;
}

.redirect {
  display: none;
}

/******************/
.video-sec iframe{
  border-radius: 20px;
  overflow: hidden;
  height:450px;
}
.location-img{
  margin-top: 40px;
}
.location-img iframe{
  border-radius: 8px;
}
.ins-cta-sec{
  background-color: #a01d53;
  display: flex;
  justify-content: space-between;
  padding: 30px 50px;
  border-radius:10px;
  margin: 80px 0;
}
.ins-cta-sec img{
  width:45px;
  height: 45px;
}
.ins-cta-sec .ins-btn{
  background-color: #fff;
    border: none;
    border-radius: 50px;
    width: 130px;
    padding-top:3px;
}
.ins-cta-sec .ins-btn a{
  color:#a01d53;
  font-weight: 700;
  font-size: 20px;
}
.ins-cta-sec .section-heading .section-title{
  font-size: 1.5vw;
  line-height: 1.2;
}
.ins-cta-sec .section-heading.ms-4 {
    display: flex;
    align-items: center;
}
/*********** media query *********/

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

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

  .location-accordion {
    margin: 2.5rem auto auto auto;
  }
}

@media only screen and (max-width: 1200px) {
  .navLinks {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    gap: 2rem;
  }

  .location-accordion {
    margin: 2rem auto auto auto;
    padding: 1rem 1.5rem 0rem 1.5rem;
  }
}

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

  .menu {
    display: block;
  }

  .navLinks {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .legacy-container::before {
    width: 95%;
    height: 95%;
  }

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

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

  .legacy-container {
    padding: 6rem 3rem 3rem 3rem;
  }

  .section-desc-line {
    gap: 1rem;
  }

  .project-content .project-info {
    gap: 1rem;
  }

  .highlight-content .count-div .count {
    font-size: 6vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .highlight-content .count-div .symbol {
    font-size: 5.5vw;
  }

  .highlight-content .highlight-details .count-title {
    font-size: 2.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .highlight-content .highlight-details .count-desc {
    font-size: 1.45vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .legacy-accordion .accordion-button .acc-txt {
    font-size: 0.9rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .project-content .project-info .project-info-icon {
    width: 35px;
    height: 35px;
  }

  section.section-believe::after {
    width: 95%;
    height: 95%;
  }

  .about-content {
    width: 100%;
    margin: auto;
  }

  section.section-believe {
    padding: 5rem 1rem;
  }

  .believe-nav .custom-nav {
    margin: 3rem auto auto auto;
  }

  .about-content .about-title {
    font-size: 1.15rem;
  }

  .about-content .about-desc p {
    font-size: 0.95rem;
  }

  .footer-contact .contact {
    width: 100%;
  }

  .section-map {
    height: 375px;
  }
}

@media only screen and (max-width: 767px) {
  section.main-banner {
    margin: 4.5rem 0 0 0;
  }

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

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

  .legacy-container {
    padding: 4.5rem 2rem;
  }

  .highlight-content .count-div .count {
    font-size: 6.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .highlight-content .count-div .symbol {
    font-size: 6vw;
  }

  .highlight-content .highlight-details .count-title {
    font-size: 2.55vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .highlight-content .highlight-details .count-desc {
    font-size: 1.75vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .footer-logo {
    width: 220px;
  }

  .footer-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0 1rem 0;
    font-size: 0.95rem;
  }

  .footer-disc {
    margin: 1.25rem 0 0 0;
    font-size: 0.95rem;
  }
.video-sec iframe{
  height: 250px;
}
.ins-cta-sec .section-heading .section-title{
  font-size: 18px;
}
.ins-cta-sec{
  padding: 30px 20px;
border-radius: 0;}
}

@media only screen and (max-width: 576px) {
  section.main-banner {
    margin: 4.25rem 0 0 0;
  }

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

  .logo {
    gap: 0.75rem;
  }

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

  .section-heading .section-title {
    font-size: 5.45vw;
    -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;
  }

  .section-desc-line {
    gap: 0.65rem;
  }

  .highlight-content .count-div .count {
    font-size: 9vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .highlight-content .count-div .symbol {
    font-size: 6vw;
  }

  .highlight-content .highlight-details .count-title {
    font-size: 3vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .highlight-content .highlight-details .count-desc {
    font-size: 2.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .highlight-content {
    gap: 0.5rem;
  }

  .location-accordion {
    padding: 1rem 0.75rem 0rem 0.75rem;
  }

  .location-details .location-item {
    font-size: 0.85rem;
  }

  .footer-logo {
    width: 150px;
  }

  .btn-submit-ext {
    width: 100%;
  }

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

  .fixed-button {
    position: fixed;
    right: 0;
    bottom: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 40px;
    gap: 0;
  }

  .copyright {
    margin: 1.25rem 0 1.5rem 0;
  }

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

  .contact-form {
    padding: 2.25rem 0.85rem;
  }

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

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

  .mob-hide {
    display: none;
  }

  .house-nav .custom-nav {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 0.35rem;
  }

  .house-nav {
    position: relative;
  }

  .house-nav .custom-nav::after {
    background: transparent;
  }

  .house-nav::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: rgba(86, 86, 86, 0.25);
    left: 0;
    bottom: -2px;
  }

  .footer-disc p {
    text-align: justify;
  }
}

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

  .believe-nav .custom-nav .nav-item .nav-link {
    gap: 0.25rem;
    padding: 0.35rem 0.75rem;
  }

  .believe-nav .custom-nav .nav-item .nav-link .txt {
    font-size: 0.9rem;
  }
   .ins-cta-sec .ins-btn a{
    font-size: 16px;
  }
  .ins-cta-sec .ins-btn{
    border-radius: 10px;
  }
  .ins-cta-sec .section-title{
    font-size: 16px !important;
  }
}

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