/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@font-face {
  font-family: PlayfairDisplay;
  src: url("../assets/fonts/playfair/PlayfairDisplay-VariableFont_wght.ttf");
}

@font-face {
  font-family: quicksand;
  src: url("../assets/fonts/quicksand/Quicksand-Light.ttf");
}

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

:root {
  --light: #072421;
  --dark: #000;
  --PlayfairDisplay: PlayfairDisplay;
  --quicksand: quicksand;
  --primary: #23408f;
  --secondary: #72bf44;
  --text-dark: #474747;
  --dark-blue: #005792;
  --text-mute: rgba(37, 88, 83, 0.2);
}

html {
  scroll-behavior: smooth !important;
  overflow-x: hidden;
}

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

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

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: 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(--quicksand) !important;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  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;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

.loader-container {
  display: none;
}

.loader-wrapper {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9999;
  background-color: #ffffffe3;
  -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  height: 100vh;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: -o-radial-gradient(farthest-side, #2a75ff 94%, #0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%, #4184ff);
  background: radial-gradient(farthest-side, #2a75ff 94%, #0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%, #4184ff);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  -webkit-animation: l13 1s infinite linear;
  animation: l13 1s infinite linear;
}

@-webkit-keyframes l13 {
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes l13 {
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-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 {
  display: none;
}

.form-loader-wrapper {
  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: 0.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--light);
  border: 2px solid #fff;
  margin: auto;
  padding: 0.45rem 0.75rem 0.3rem 0.75rem;
  border-radius: 4px;
}

.form-loader-wrapper .loader-txt {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.f-loader {
  width: 25px;
  height: 25px;
  border: 3px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: rotation 0.75s linear infinite;
  animation: rotation 0.75s linear infinite;
}

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

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

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

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

/* form loader css */

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

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

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

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

a {
  text-decoration: none !important;
}

p {
  margin-bottom: 0rem !important;
}

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

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

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

.line {
  width: 6vw;
  height: 2px;
  border-radius: 100px;
  background-color: var(--primary);
  position: relative;
  bottom: 15px;
}

.line.about-line {
  bottom: unset;
}

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

header {
  position: fixed;
  z-index: 11;
  top: 0rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100vw;
  left: 50%;
  background-color: rgba(7, 36, 33, 0.75);
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

header.dropped {
  top: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100vw;
  background-color: var(--light);
}

nav {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0.85rem 4rem;
}

nav.dropped {
  background-color: var(--primary);
}

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

.navbar-container .navlogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.navbar-container .menu {
  display: none;
}

.navbar-container .navlogo .logo {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  width: 129px;
  -o-object-fit: cover;
  object-fit: cover;
}

nav.dropped .navbar-container .navlogo .logo {
  width: 100px;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -o-object-fit: cover;
  object-fit: cover;
}

.mob-logo {
  width: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}

.navbar-container .navbar-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-container .navbar-links .navbar-link .nav-link {
  color: #FFF;
  font-size: 1rem;
  line-height: normal;
  font-style: normal;
  font-weight: 500;
  text-wrap: nowrap;
  text-transform: capitalize;
}

.btn-contact {
  border: 1px solid #fff;
  /* background: #00afef; */
  color: #fff;
  text-wrap: nowrap;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.55rem 2.15rem;
  font-size: 0.95rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  cursor: pointer;
  align-items: center;
  gap: 0.3rem;
  /* border-radius: 100px; */
  -webkit-animation: pulse-effect-2 2.5s infinite;
  animation: pulse-effect-2 2.5s infinite;
}

@-webkit-keyframes pulse-effect-2 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.404);
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.404);
  }

  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
}

@keyframes pulse-effect-2 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.26);
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.26);
  }

  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
}

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

.offcanvas-body .offcanvas-navs {
  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;
}

.offcanvas-body .offcanvas-navs .offcanvas-nav .offcanvas-link {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.offcanvas-header .btn-close {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.btn-primary {
  color: var(--primary);
  border: none;
  padding: 0.5rem 1rem;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-top: 1px solid var(--primary);
  text-wrap: nowrap;
  font-size: 1rem;
  border-bottom: 1px solid var(--primary);
  text-transform: capitalize;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-animation: pulse-effect 2s infinite;
  animation: pulse-effect 2s infinite;
}

@-webkit-keyframes pulse-effect {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 #4c6dc591;
    box-shadow: 0 0 0 0 #476fdb91;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.144);
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.144);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes pulse-effect {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 #4c6dc591;
    box-shadow: 0 0 0 0 #4c6dc591;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0.6rem rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0.6rem rgba(0, 0, 0, 0);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.btn-primary.btn-light {
  color: var(--light);
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
}

.btn-primary.btn-light.btn-custom {
  width: 250px;
  padding: 1rem;
  max-width: 100%;
}

.btn-primary:hover {
  color: var(--light);
  padding: 0.4rem 1rem;
  background: var(--primary);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-heading.custom-padding {
  padding: 0 2rem 0 0;
}

.section-heading .section-title.primary-title {
  font-size: 2.75vw;
  color: var(--primary);
  font-weight: 600;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  line-height: 2.5rem;
  margin: 1rem 0rem 1.25rem 0rem !important;
}

.section-heading .section-title.primary-title.light-title {
  color: var(--light);
  padding: 0rem 1rem;
}

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


section.main-banner .video-banner {
  width: 100%;
  overflow: hidden;
  height: 100vh;
}

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

.section-heading .section-subtitle {
  font-size: 1vw;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5rem;
  margin: 0 0 1rem 0 !important;
}

.section-heading .section-subtitle.custom-font {
  font-family: var(--MinionPro);
}

.section-heading .section-desc {
  font-size: 1vw;
  color: var(--dark);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-wrap: balance;
  font-weight: 400;
}



.modal-logo {
  width: 120px;
  max-width: 100%;
}

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

.form-control.custom-input {
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  border-radius: 0px;
  color: #fff;
}

.mobile-input-div {
  position: relative;
}

.mobile-input-div .country-code {
  position: absolute;
  top: 7px;
  left: 2px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #fff;
}

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

.form-control.custom-input.mobile-input {
  padding-left: 2.55rem;
}

.form-control.custom-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-submit {
  background: var(--light);
  color: #fff;
  border: none;
  border: 1px solid #fff;
  padding: 0.5rem 2rem;
  margin: 1rem 0 0 0;
}

.contact-form {
  padding: 1rem 0 0.25rem 0;
}

::-webkit-input-placeholder {
  color: var(--primary) !important;
}

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

:-ms-input-placeholder {
  color: var(--primary) !important;
}

::-ms-input-placeholder {
  color: var(--primary) !important;
}

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

/* ***************** overview starts ************* */
.unveiling-overview {
  background: url(../assets/images/overview/overview.jpg) center;
  position: relative;
  z-index: 1;
}

.overview-overlay {
  padding: 4rem 0;
}


.unviling-box {
  padding: 1.8rem 0;
}

.unveling-title {
  color: #FFD86D;
  text-align: center;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  padding: 0.5rem 0rem;
  font-family: PlayfairDisplay;
}


.overview-iconic {
  padding: 1.5rem 0;
}

.unveling-paading {
  padding: 2rem 0;
}

.unveling-description {
  color: #FFF;
  font-size: 1.25rem;
  font-style: normal;
  text-align: center;
  font-weight: 400;
  /* text-transform: capitalize; */
  letter-spacing: 0.0275rem;
  /* padding: 2rem 0; */
}

/* ***************** overview ends************* */


/* ********************interior section starts******** */

.interior-section.parallax {
  background-image: url("../assets/images/background/background.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
}

.interior-image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

/* ********************interior section ends******** */

/* ********************config section starts******** */
.configuration-section {
  position: relative;
}

.configuration-section.parallax {
  background-image: url("../assets/images/config/config.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
}

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

.config-box {
  position: absolute;
  bottom: 13%;
  right: 9%;
  padding: 3.75rem 7.625rem 3.75rem 3rem;
  z-index: 1;
  background: rgba(7, 36, 33, 0.90);
}

.cofig-title {
  color: #FFD86D;
  font-feature-settings: 'liga'off, 'clig'off;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  font-family: 'PlayfairDisplay';
  padding-bottom: 2rem;
}

.config-descreption .config-num {
  color: #FFD86D;
  font-feature-settings: 'liga'off, 'clig'off;
  font-family: "PlayfairDisplay";
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.75rem;
}

.config-descreption .config-text {
  color: #FFD86D;
  font-feature-settings: 'liga'off, 'clig'off;
  font-family: Quicksand;
  font-size: 1.55rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.75rem;
}

.config-descreption {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.config-openstyle {
  border: 1px solid #E5C472;
  color: #E5C472;
  text-wrap: nowrap;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.55rem 1.15rem;
  font-size: 1rem;
  width: max-content;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  cursor: pointer;
  align-items: center;
  gap: 0.3rem;
}

/* ********************config section ends******** */

/* ***************framing section starts************ */

.unveling-framing {
  color: #FFF;
  font-size: 1.25rem;
  font-style: normal;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.0275rem;
  /* text-transform: capitalize; */
}

.unveiling-framing {
  background: url(../assets/images/overview/frame.png) center center/cover no-repeat;
  position: relative;
  z-index: 1;
}

.overview-framing {
  padding: 5rem 0;
}

.framing-description {
  padding: 1.8rem 0;
}


/* ***************framing section ends************ */

/* ********************children section starts******** */

.children-image.parallax {
  background-image: url("../assets/images/background/children.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
}

/*@media only screen and (max-width: 767px) {*/
      
/*.children-image.parallax {*/
/*  background-image: url("../assets/images/background/children.png");*/
/*  background-attachment: fixed;*/
/*  background-position: center;*/
  /*background-repeat: no-repeat;*/
  /*background-size: cover;*/
  /*height: 100vh;*/
  /*width: 100%;*/
  
/*  width: 100%;*/
/*    height: auto;*/
/*    display: block;*/
/*    max-width: 100%;*/
/*}*/

/*}*/

.children-image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

/* ********************children section ends******** */

/* ********************isolation section starts******** */
.isolation-overview {
  background: url(../assets/images/overview/isolation.png) center center/cover no-repeat;
  position: relative;
  z-index: 1;
}

.isolation-title {
  color: #FFD86D;
  text-align: center;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  /* text-transform: capitalize; */
  padding: 1.5rem 0rem;
  font-family: PlayfairDisplay;
}

.isolation-description {
  color: #FFF;
  font-size: 1.25rem;
  font-style: normal;
  text-align: center;
  font-weight: 400;
  /* text-transform: capitalize; */
  letter-spacing: 0.0275rem;
  font-family: 'quicksand';
}

.overview-rose {
  position: absolute;
  right: 2%;
  /* bottom: 15px; */
  width: 160px;
  z-index: -1;
}

.rose-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* ********************isolation section ends******** */


/* ***************Gallery section starts********** */
.gallery-section {
  padding: 4rem 0;
  background: #fff;
  position: relative;
  z-index: 1;
}

.gallery-section::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  background: var(--light);
  left: 0;
  bottom: 0;
  z-index: -1;
}

.tab-content>.tab-pane.active {
  display: block !important;
  height: auto !important;
}

.tab-content>.tab-pane {
  display: block !important;
  height: 0 !important;
  overflow: hidden;
}

.gallery-content .owl-carousel .owl-item:not(.gallery-content .owl-carousel .owl-item.center) {
  transform: scale(0.9);
  mix-blend-mode: luminosity;
  transition: all 0.3s;
}

.gallery-content .owl-carousel .owl-item {
  mix-blend-mode: luminosity;
  transition: all 0.3s;
}

.serimg {
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: all 0.5s;
}

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

.gallery-carousel .owl-item .gallery-image {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.gallery-carousel .owl-item.center .gallery-image {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.gallery-carousel .owl-nav {
  margin: 1rem auto;
}

.gallery-carousel .arrow {
  height: 50px;
  width: 50px;
}

/* *********************** excellence starts********/

.unveiling-excellence {
  background: url(../assets/images/overview/excellene.png) center center/cover no-repeat;
  position: relative;
  z-index: 1;
}

.unveling-excellence {
  color: #FFF;
  font-size: 1.25rem;
  font-style: normal;
  text-align: center;
  font-weight: 400;
  /* text-transform: capitalize; */
  letter-spacing: 0.0275rem;
}

.overview-excellence {
  padding: 4rem 0;
}

.excellence-description {
  padding: 2rem 0;
}

/* *********************** excellence section ends********/

/* ****************Location Section Statrts*********** */

.custom-container1 {
  width: 90%;
  margin: 0 auto;
}

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

.map {
  width: 100%;
  overflow: hidden;
  height: 100%;
}

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

.location-head .location-title {
  color: var(--light);
  text-align: start;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  padding: 0.5rem 0rem;
  font-family: PlayfairDisplay;
}

.location-flex {
  align-items: center;
}

.accordion-location {
  display: flex;
  flex-direction: column;
  background: transparent !important;
  gap: 1.5rem;
  margin: 1.5rem auto auto auto;
}

.accordion-location .accordion-body {
  border: 1px solid transparent;
}

.accordion-location .accordion-item .accordion-header .accordion-button {
  position: relative;
  color: #fff;
  border-radius: 0;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 1rem 1.5rem;
  background-color: var(--light);
}

.accordion-location .accordion-item .accordion-header .accordion-button:focus {
  outline: none;
  box-shadow: unset;
}


.accordion-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-content .content {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.accordion-content .content .content-location {
  color: var(--light);
  font-size: 1.2rem;
  font-weight: 400;
  font-family: 'quicksand';
}

.accordion-content .content .content-time {
  font-size: 1.2rem;
  color: var(--light);
  font-family: 'quicksand';
}

.accordion-location .accordion-button::after {
  background-image: url("../assets/images/icons/Border.png");
  transition: all 0.5s ease;
  transform: rotate(180deg) scale(2);
}

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

.accordion-header {
  position: relative;
}


.point {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 100px;
  position: absolute;
  z-index: 10;
}

.point.point1 {
  top: -5px;
  left: -7px;
}

.point.point2 {
  left: -9px;
  bottom: -3px;
}

.point.point3 {
  top: -7px;
  right: -7px;
}

.point.point4 {
  bottom: -7px;
  right: -9px;
}

.accordion-item {
  border: none;
}

/* --------------Karan Section-------------- */
/* amenities section */

.amenities-section {
  background: url(../assets/images/background/ame-bg.jpg) center center / cover no-repeat;
  position: relative;
  z-index: 1;
}

.isolation-left {
  color: #FFD86D;
  text-align: left;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  padding: 1.5rem 0rem;
  font-family: PlayfairDisplay;
}

.overview-bird {
  position: absolute;
  top: 5%;
  left: 48%;
  width: 140px;
  z-index: -1;
}

.bird-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.isolation-description {
  color: #fff;
  font-size: 1.25rem;
  font-style: normal;
  text-align: center;
  font-weight: 400;
  /* text-transform: capitalize; */
  letter-spacing: 0.0275rem;
}

.isolation-description-left {
  color: #fff;
  font-size: 1.25rem;
  font-style: normal;
  text-align: left;
  font-weight: 400;
  /* text-transform: capitalize; */
  letter-spacing: 0.0275rem;
}

/* carousel */

.gallery-container {
  /* padding: 2rem 6rem; */
  position: relative;
}

.gallery-container {
  /* padding: 2rem 6rem; */
  position: relative;
}

.gallery-img {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.gallery-carousel2 .owl-nav .owl-prev {
  position: absolute;
  top: 35%;
  left: -60px;
}

.gallery-carousel2 .owl-nav .owl-next {
  position: absolute;
  top: 35%;
  right: -60px;
}

.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: 0.5rem;
  padding: 1.25rem 0.5rem 1.5rem 0.5rem;
}

.owl-dot {
  background-color: #dcdcdc !important;
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  border-radius: 50px;
}

.owl-dot.active {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background-color: var(--secondary) !important;
}

.ame-circle {
  margin: 3rem 0rem;
}

.gallery-img img {
  width: 90px;
  height: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease-in-out;
}

/* .gallery-img img:hover {
  transform: scale(1.1);
} */

.gallery-img p {
  margin-top: 8px;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-yellow);
  text-align: center;
}

.arrow {
  width: 50px;
  height: 50px;
}

/* form */

.register-interest {
  background: url("../assets/images/background/contactbg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  height: 685px;
  padding: 3rem 0rem;
  object-fit: cover;
  color: #000;
  text-align: center;
  display: flex;
  align-items: center;
  position: relative;
}

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

.section-title {
  color: #181d24;
  background-color: #fff;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  width: max-content;
  margin: auto;
  padding: 0rem 1rem;
  font-family: 'PlayfairDisplay';
}

.section-subtitle {
  color: #000;
  background-color: #fff;
  font-size: 1.25rem;
  font-style: normal;
  /* width: max-content; */
  max-width: 100%;
  margin: 1rem auto !important;
  padding: 1.5rem 0rem;
  font-weight: 600;
  line-height: 22.5px;
  text-transform: capitalize;
}

.new-class {
  background: #fff;
  border: 0;
  width: 40rem;
  max-width: 100%;
  border-bottom: 1px solid var(--text-dark);
  margin: auto;
  padding: 0.65rem 1rem;

  border-radius: 0;
}

.new-class:focus {
  box-shadow: none;
}

.btn-submit2 {
  padding: 0.5rem 2.5rem;
  color: #fff;
  background-color: var(--light);
  font-size: 1.25rem;
  font-weight: 600;
}

.form-calltxt {
  margin-bottom: 0;
  color: #181d24;
  font-size: 20px;
  text-align: center;
  margin-top: 30px;
}

.form-calltxt a {
  color: #181d24 !important;
  text-decoration: none !important;
  font-size: 1.8rem;
  font-family: var(--quicksand) !important;
  font-weight: 600;
}


/********** footer ***********/
.footer-black {
  background: var(--light);
  padding: 4rem 0rem;
}

.footer-logo {
  padding: 1rem 0rem;
  width: 163px;
  margin: auto;
  height: auto;
  max-width: 100%;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer-qr {
  padding: 1rem 0rem;
  width: 97px;
  margin: auto;
  height: auto;
  max-width: 100%;
}

.footer-qr img {
  width: 100%;
  height: 100%;
  /* border-radius: 6px; */
  -o-object-fit: cover;
  object-fit: cover;
}

.text-footer p {
  color: var(--light);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  padding: 1.3rem 1rem;
  text-wrap: balance;
}

.footer-desc p {
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  text-wrap: balance;
  font-weight: 500;
  padding: 0.2rem 1rem;
}

/* --------Modal Place holder starts */
.custom-placeholder::placeholder {
  color: white !important;
  opacity: 1;
  /* Ensure full visibility */
}

.custom-placeholder:-ms-input-placeholder {
  /* Edge 12-18 */
  color: white !important;
}

.custom-placeholder::-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: white !important;
}

/* thank you page css */

nav.thank-you {
  background-color: #00000080;
}

section.secton-thankyou {
  height: 450px;
  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: 0rem 1.5rem;
  margin: 8rem auto auto auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 100%;
}

section.secton-thankyou .thankyou-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.75rem auto 1.15rem auto !important;
  text-align: center;
  text-wrap: pretty;
  color: var(--light);
  font-family: 'PlayfairDisplay';
}

section.secton-thankyou .thankyou-subtitle {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.75;
  text-align: center;
  text-wrap: pretty;
  color: var(--light);
}

.overview-nandi {
  position: absolute;
  right: 1%;
  bottom: 34px;
  z-index: -1;
}

.nandi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.framing-postion {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

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

/* thank you page css */

/* ***********Modal Form********* */
.modal-content {
  background: var(--light);
  border-radius: unset;
  outline: 2px solid var(--light);
  outline-offset: 4px;
}

.modal-header .btn-close {
  filter: invert(1);
}

@media only screen and (max-width: 1400px) {
  nav {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 0.65rem 2rem;
  }

  .navbar-container .navbar-links .navbar-link .nav-link {
    font-size: 0.85rem;
  }

  .unveling-description {
    font-size: 1rem;
  }

  .unveling-framing {
    font-size: 1rem;
  }

  .config-box {
    bottom: 2%;
    right: 9%;
    padding: 1.75rem 1.625rem 1.75rem 1rem;
  }

  .config-descreption .config-num {
    font-size: 1.3rem;
  }

  .isolation-description {
    font-size: 1rem;
  }

  .unveling-excellence {
    font-size: 1rem;
  }

  .config-descreption .config-text {
    font-size: 1.25rem;
  }

  .accordion-location .accordion-item .accordion-header .accordion-button {
    font-size: 1rem;
  }

  .accordion-content .content .content-location {
    font-size: 1rem;
  }

  .accordion-content .content .content-time {
    font-size: 1rem;
  }


  .overview-nandi {
    position: absolute;
    right: 2%;
    bottom: 81px;
    height: 150px;
    width: 150px;
    z-index: -1;
  }

  .section-subtitle {
    font-size: 1rem;
  }

}

@media only screen and (max-width: 1280px) {
  .navbar-container .navbar-links {
    gap: 1rem;
  }

  .navbar-container .navbar-links .navbar-link .nav-link {
    font-size: 0.8rem;
  }

  .unveling-description {
    font-size: 1rem;
  }

  .unveling-framing {
    font-size: 1rem;
  }

  .config-box {
    bottom: 2%;
    right: 9%;
    padding: 1.75rem 1.625rem 1.75rem 1rem;
  }

  .config-descreption .config-num {
    font-size: 1.3rem;
  }

  .isolation-description {
    font-size: 1rem;
  }

  .unveling-excellence {
    font-size: 1rem;
  }

  .config-descreption .config-text {
    font-size: 1.25rem;
  }

  .accordion-location .accordion-item .accordion-header .accordion-button {
    font-size: 1rem;
  }

  .accordion-content .content .content-location {
    font-size: 1rem;
  }

  .accordion-content .content .content-time {
    font-size: 1rem;
  }

  .isolation-left {
    font-size: 2rem;
  }

  .isolation-description-left {
    font-size: 1rem;
  }


  .gallery-img img {
    height: 72px;
  }

  .gallery-img p {
    font-size: 1rem;
  }

  .location-head .location-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }


  .overview-nandi {
    position: absolute;
    right: 2%;
    bottom: 81px;
    height: 150px;
    width: 150px;
    z-index: -1;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 1200px) {
  .navbar-container .menu {
    display: block;
  }

  .navbar-links {
    display: none !important;
  }

  .unveling-description {
    font-size: 1rem;
  }

  .unveling-framing {
    font-size: 1rem;
  }

  .config-box {
    bottom: 2%;
    right: 9%;
    padding: 1.75rem 1.625rem 1.75rem 1rem;
  }

  .config-descreption .config-num {
    font-size: 1.3rem;
  }

  .isolation-description {
    font-size: 1rem;
  }

  .unveling-excellence {
    font-size: 1rem;
  }

  .accordion-location .accordion-item .accordion-header .accordion-button {
    font-size: 1rem;
  }

  .accordion-content .content .content-location {
    font-size: 1rem;
  }

  .accordion-content .content .content-time {
    font-size: 1rem;
  }

  .overview-nandi {
    position: absolute;
    right: 2%;
    bottom: 81px;
    height: 150px;
    width: 150px;
    z-index: -1;
  }

  .overview-bird {
    left: 65% !important;
  }

  .gallery-carousel2 .owl-nav .owl-prev {
    position: relative !important;
    top: unset !important;
    left: unset !important;
  }

  .gallery-carousel2 .owl-nav .owl-next {
    position: relative !important;
    top: unset !important;
    right: unset !important;
  }

  .gallery-carousel2 .owl-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }

  .isolation-description-left {
    font-size: 1rem;
  }

  .gallery-img img {
    height: 72px;
  }

  .gallery-img p {
    font-size: 1rem;
  }

  .isolation-left {
    font-size: 2rem;
  }

  .unveling-title {
    font-size: 2rem;
  }

  .location-head .location-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }


  .overview-nandi {
    position: absolute;
    right: 2%;
    bottom: 81px;
    height: 150px;
    width: 150px;
    z-index: -1;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 991px) {
  .custom-container {
    width: 100%;
    margin: auto;
  }

  .section-heading {
    padding: 0 1rem;
  }

  .section-heading.custom-padding {
    padding: 0rem 1rem;
  }

  .section-heading .section-title.primary-title {
    font-size: 2.25rem;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .config-box {
    bottom: 2%;
    right: 9%;
    padding: 1.75rem 1.625rem 1.75rem 1rem;
  }

  .config-descreption .config-num {
    font-size: 1.3rem;
  }

  .isolation-description {
    font-size: 1.25rem;
  }

  .unveling-excellence {
    font-size: 1rem;
  }

  .accordion-location .accordion-item .accordion-header .accordion-button {
    font-size: 1rem;
  }

  .accordion-content .content .content-location {
    font-size: 1rem;
  }

  .accordion-content .content .content-time {
    font-size: 1rem;
  }

  .overview-bird {
    top: -1%;
    left: 82%;
  }

  .unveling-title {
    font-size: 2rem;
  }


  .overview-nandi {
    position: absolute;
    right: 2%;
    bottom: 81px;
    height: 150px;
    width: 150px;
    z-index: -1;
  }

  .section-subtitle {
    font-size: 1rem;
  }

}

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

  section.main-banner .video-banner {
    width: 100%;
    overflow: hidden;
    height: unset;
  }

  section.main-banner {
    margin: 3.5rem auto auto auto;
  }

  .section-heading .section-title.primary-title {
    font-size: 2rem;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  header {
    top: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 100vw;
    background-color: var(--light);
  }

  .unveling-title {
    font-size: 1.8rem;
  }

  .unveling-description {
    font-size: 1rem;
    padding: 1rem 0;
  }

  .unveling-framing {
    font-size: 1rem;
  }

  .overview-overlay {
    padding: 3rem 0rem;
  }

  .overview-framing {
    padding: 3rem 0rem;
  }

  .overview-nandi {
    width: 106px;
    height: 100px;
    bottom: 0%;
  }

  .framing-postion {
    width: 90px;
    height: 91px;
  }

  .framing-description {
    padding: 1rem 0;
  }

  .overview-rose {
    top: 6px;
    right: 2%;
    width: 89px;
  }


  .interior-image {
    height: 500px;
  }

  .cofig-img {
    height: 500px;
  }

  .config-box {
    bottom: 12%;
    right: 6%;
    padding: 1.75rem 1.625rem 2.75rem 2rem;
  }

  .cofig-title {
    font-size: 1.8rem;
    font-weight: 400;
    padding-bottom: 1rem;
  }

  .config-descreption {
    gap: 1rem;
  }

  .config-descreption .config-num {
    font-size: 1.5rem;
    line-height: 2.75rem;
  }

  .config-descreption .config-text {
    font-size: 1.2rem;
    line-height: 2.75rem;
  }

  .children-image {
    height: 500px;
  }

  .isolation-title {
    font-size: 1.8rem;
  }

  .isolation-description {
    font-size: 1rem;
  }

  .unveling-excellence {
    font-size: 1rem;
    padding-bottom: 5px;
  }

  .overview-excellence {
    padding: 3rem 0;
  }

  .gallery-section::after {
    height: 60%;
  }

  .excellence-description {
    padding: 1rem 0;
  }

  .gallery-carousel .arrow {
    height: 40px;
    width: 40px;
  }

  .custom-container1 {
    width: 97%;
  }

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

  .location-head .location-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .accordion-content .content .content-location {
    font-size: 0.9rem;
  }

  .accordion-content .content .content-time {
    font-size: 0.9rem;
  }

  .interior-section.parallax {
    height: 500px;
    background-attachment: unset;
  }



  .configuration-section.parallax {
    height: 500px;
    background-attachment: unset;
  }

  .children-image.parallax {
    height: 500px;
    background-attachment: unset;
  }

  .isolation-left {
    font-size: 1.5rem !important;
  }

  .overview-bird {
    top: -2% !important;
    left: 74% !important;
    width: 115px !important;
  }

  .isolation-description-left {
    font-size: 1rem !important;
  }

  .gallery-img img {
    width: 70px;
    height: 110px !important;
  }

  .gallery-img p {
    font-size: 14px;
  }

  .section-title {
    font-size: 1.8rem !important;
  }

  .section-subtitle {
    font-size: 1em !important;
  }

  .gallery-carousel2 .arrow {
    width: 40px;
    width: 40px;
    height: 40px;
  }

  .form-calltxt a {
    font-size: 1rem;
  }

  .fa-phone-square {
    font-size: 20px !important;
  }
}

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