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


@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.gilda-display-regular {
  font-family: "Gilda Display", serif;
  font-weight: 400;
  font-style: normal;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

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


:root {
  --white: #FFFFFF;
  --black: #000000;
  --primary: #372924;
  --gilda-display-regular: 'Gilda Display', serif;
  --montserrat: 'montserrat', serif;
  --color: #f8da8f;
  --color-3: transparent;
  --radius-full: 100px;
  --polish-white: #F7F5F0;
  --brown: #33271E;
  --light-brown: #CDA866;
  --light: #F3ECE3;
  --linecolor: #7C6744;
  --text-white: #CCBDA3;
}

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;
  background: var(--white);
  font-family: var(--montserrat);
}

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

/* 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 var(--white);
  margin: auto;
  padding: 0.45rem 0.75rem 0.3rem 0.75rem;
  border-radius: 4px;
}

.form-loader-wrapper .loader-txt {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}

.f-loader {
  width: 25px;
  height: 25px;
  border: 3px solid var(--white);
  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;
}


#kenytChatBubble.style1 {
  bottom: 8% !important;
}

.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: 10;
  top: 0vw;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100vw;
  left: 50%;
  background: var(--primary);
  transform: translate(-50%, 0%);
  z-index: 999;
}

header.dropped {
  top: 0;
  width: 100vw;
  transition: all 0.4s ease;
  background: linear-gradient(0deg, transparent, rgba(0, 0, 0, 0.822));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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-evenly;
  -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: 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: 95px;
  -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;
}

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

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

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

.logo-img.logo-img-1::after {
  content: "";
  position: absolute;
  width: 1px;
  top: 0;
  right: -41px;
  height: 100%;
  background-color: var(--white);
}

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

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

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

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

/* .navbar-link {
  position: relative;
  display: inline-block;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  bottom: -5px;
  transform: scaleX(0);
  transform-origin: center;
  background-color: var(--primary);
  transition: transform 0.5s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
} */

.navbar-container .navbar-links .navbar-link .nav-link {
  color: var(--polish-white);
  font-size: 1rem;
  line-height: normal;
  font-style: normal;
  font-family: var(--montserrat);
  font-weight: 400;
  text-wrap: nowrap;
  text-transform: uppercase;
}

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

.offcanvas-body {
  padding: 2rem 1.5rem;
  background-color: var(--brown);
  height: 100%;
  overflow-y: auto;
}

.offcanvas-navs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.offcanvas-link {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-white);
  text-transform: capitalize;
  padding-bottom: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
  font-family: var(--gilda-display-regular);
}

.offcanvas-link:hover {
  color: var(--text-white);
}

.offcanvas-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--text-white);
  left: 0;
  bottom: 0;
}

.offcanvas-nav:last-child .offcanvas-link::after {
  display: none;
}

.btnPrimary::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  inset: 0;
  background: url(../assets/images/icons/frame.svg) no-repeat center center / contain;
}

.btnPrimary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.35rem;
  color: var(--polish-white);
  background: transparent;
  padding: 1.2rem 2rem 1.2rem 4rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  z-index: 1;
  font-family: var(--Arial);
}

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

  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 #A77D40;
    box-shadow: 0 0 0 0 #A77D40;
  }

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


.custom-modal-content {
  position: relative;
  z-index: 1;
  padding: 1.25rem 0.5rem 0.5rem 0.5rem;
  background: var(--primary);
  border: 2px solid var(--light-brown);
}

.custom-modal-content::before, .custom-modal-content::after {
  position: absolute;
  content: "";
  width: 19%;
  -webkit-transform: scale(-1, -1);
  -ms-transform: scale(-1, -1);
  transform: scale(-1, -1);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 15%;
  top: 0;
  z-index: -1;
  left: 0;
  background: url(../assets/images/icons/icon3.svg) no-repeat center center / cover;
}

.custom-modal-content::after {
  right: 0;
  left: unset;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  top: unset;
  z-index: -1;
  bottom: 0;
}

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

.custom-placeholder {
  padding: 0.75rem 1rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: unset;
  color: var(--light-brown) !important;
  font-weight: 400;
  letter-spacing: 1.438px;
  border-radius: 0px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--light-brown);
}

.modal-form .custom-placeholder::placeholder {
  color: var(--light-brown) !important;
  opacity: 1 !important;
}

.modal-form .custom-placeholder:-ms-input-placeholder {
  color: var(--light-brown) !important;
}

.modal-form .custom-placeholder::-ms-input-placeholder {
  color: var(--light-brown) !important;
}


.custom-placeholder:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  color: var(--light-brown) !important;
  background-color: transparent;
  border: 1px solid var(--light-brown);
  -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-placeholder::-webkit-input-placeholder {
  color: var(--light-brown) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 1rem !important;
}

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

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

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

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

.custom-modal-content::before {
  left: -8% !important;
  left: unset;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  top: unset;
  z-index: -1;
  top: 0;
}

.custom-modal-content::after {
  right: -8%;
  left: unset;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  top: unset;
  z-index: -1;
  bottom: 0;
}

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

.form-control.custom-input {
  background: transparent;
  color: var(--primary);
}

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

.mobile-input-div .country-code {
  position: absolute;
  top: 14px;
  left: 2px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--light-brown);
}

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

.modal-header {
  border-bottom: unset;
}

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

.btn-submit {
  color: var(--light-brown);
}

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


/* Target placeholders inside the modal form only */
.modal-form ::placeholder {
  color: var(--primary) !important;
  opacity: 1;
}

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

.modal-form input:-moz-placeholder {
  color: var(--primary) !important;
}

.modal-form input::-moz-placeholder {
  color: var(--primary) !important;
}

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

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

/* ---------button of call now,  download brochure , enqurie now---------*/
.enquire-div {
  position: fixed;
  bottom: -50px;
  right: -50px;
  z-index: 99;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.enquire-div.show {
  bottom: 3vw;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  right: 1vw;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  border: none;
  background: transparent;
}

.btn-enquire {
  color: var(--white);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid var(--white);
  padding: 0.6rem 1.6rem;
  background: var(--primary);
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 500;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
  -webkit-animation: pulse-effect 2s infinite;
  animation: pulse-effect 2s infinite;
  display: flex;
  gap: 0.375rem;
}

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

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

.download-div {
  position: fixed;
  bottom: -50px;
  left: -50px;
  z-index: 99;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.download-div.show {
  bottom: 3vw;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  left: 1vw;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  border: none;
  background: transparent;
}

.download-btn {
  color: var(--white);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.6rem 1.6rem;
  border-radius: 10px;
  background: var(--primary);
  border: 1px solid var(--white);
  font-size: 1.15rem;
  font-weight: 500;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
  -webkit-animation: pulse-effect 2s infinite;
  animation: pulse-effect 2s infinite;
  display: flex;
  gap: 0.375rem;
}

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

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

/******************Banner Section Starts************* */

.main-banner {
  position: relative;
  overflow: hidden;
}

.carousel-inner img {
  position: relative;
  /* z-index: 1; */
}

.ban-text {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 3;
}

.ban-title {
  color: #fff;
  font-size: 3rem;
  margin: -2.25rem 0 0 0;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  padding: 0.5rem 0rem;
  text-align: center;
}

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

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

  50% {
    transform: scale(1.07);
  }

  100% {
    transform: scale(1);
  }
} */
section.main-banner {
  margin: 7.25rem 0 0 0;
}

.btn-visit.light {
  position: absolute;
  bottom: -99%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--white);
  background: var(--primary);
  gap: 0.45rem;
  padding: 0.5rem 1.25rem;
  color: #fff;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

/******************Banner Section Ends************* */
/* ***********Overview Section Starts*********** */

section.section-overview {
  padding: 4rem 0;
  background: url(../assets/images/background/1.webp) no-repeat center center / cover;
  height: 100vh;
}

.sec-logo {
  width: 170px;
  margin: auto;
  height: auto;
}

.clip-reveal {
  display: block;
  width: 100%;
  clip-path: inset(100% 0 0 0);
  opacity: 0;
  transform: translateY(50px);
  transition: clip-path 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.2s ease-out,
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.clip-reveal.show {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translateY(0);
}

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

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

.other-description {
  color: var(--primary);
  font-size: 1.75vw;
  font-style: normal;
}

.btnDownload::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  inset: 0;
  background: url(../assets/images/icons/frame2.png) no-repeat center center / contain;
}

.btnDownload {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--primary);
  background: transparent;
  padding: 1.5rem 1rem 1.5rem 5rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  z-index: 1;
  margin: auto;
}

.btnDownload .btn-icon {
  width: 27px;
  height: 27px;
}

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

.scroll-line {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin: 3rem 0 0 0;
}


.scroll-line .line {
  width: 1px;
  height: 0dvh;
  border-radius: 100px;
  opacity: 0.8;
  transition: all 1s ease;
  position: unset;
  background-color: var(--linecolor);
}

.scroll-line .line-img {
  opacity: 0;
  transition: all 1.1s ease;
}

.scroll-line.animate .line {
  height: 15dvh;
  transition: all 1s ease;
}

.scroll-line.animate .line-img {
  opacity: 1;
  animation: spin 1s 0.5s forwards;
  transition: all 1.1s ease;
}

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

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



/* ************Overview Section Ends*********** */

/* **************About Section Starts********* */
.section-about {
  padding: 4rem 0 8rem 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.main-title {
  font-family: var(--gilda-display-regular);
  font-size: 3.8vw;
  color: var(--primary);
  margin: 0;
  line-height: 1.3;
  text-align: start;
  text-transform: uppercase;
}

.main-subtitle {
  font-family: var(--gilda-display-regular);
  font-size: 4vw;
  color: var(--primary);
  margin: 0;
  line-height: 1.3;
  text-align: end;
}

.section-small-title {
  color: var(--linecolor);
  font-weight: 400;
}

.about-img-2 {
  margin-top: 6rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7rem;
}

.desc {
  color: var(--primary);
  line-height: 1.7;
}

.line-icon {
  width: 9rem;
  height: 1px;
  background: var(--linecolor);
}

.star {
  position: absolute;
  z-index: -2;
  width: 9vw;
  height: auto;
  pointer-events: none;
  top: 0rem;
  right: -11%;
}

.bottom-star {
  position: absolute;
  z-index: -2;
  width: 8vw;
  height: auto;
  pointer-events: none;
  bottom: -4.5rem;
  left: -10%;
}

.z-top {
  z-index: 5 !important;
  position: relative;
}

.z-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* **************About Section Ends********* */


/* ***********Project Highlight Section Starts*********** */

.section-highlight {
  padding: 4rem 0;
  width: 100%;
  height: 100dvh;
  background: url("../assets/images/project-highlight/project-highlight.webp") no-repeat center center / cover;
  position: relative;
  /* display: flex; */
  /* align-items: center; */
  background-size: 100% 100%;
  overflow: hidden;
}


.highlight-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}


.decor {
  position: absolute;
  width: 10vw;
  z-index: 2;
}

.decor-top-right {
  top: 0;
  right: -5%;
}

.decor-bottom-left {
  bottom: 0;
  left: -5%;
}


.highlight-container {
  position: relative;
  z-index: 3;
  width: 90%;
  margin: auto;
}

.small-title {
  color: var(--light-brown);
}

.custom-header {
  color: var(--text-white);
}

/* GRID LIST */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 5rem;
  margin: 6rem 0 0 0;
  max-width: 100%;
  width: 50rem;
}

.highlight-grid .item {
  display: flex;
  align-items: center;
  gap: 1rem;
}


.highlight-grid img {
  width: 38px;
}

.highlight-grid span {
  font-size: 1.2rem;
  color: var(--text-white);
}


/* ***********Project Highlight Section ends*********** */


/* ***********amenities section starts********** */
section.section-amenities {
  background: var(--light);
  padding: 4rem 0;
  position: relative;
}

.believe-nav .custom-nav {
  margin: 1.8rem auto 0 auto;
  gap: 2rem;
  justify-content: center;
}

.believe-nav .custom-nav .nav-item .nav-link.active {
  background: #7D6744;
}

.believe-nav .custom-nav .nav-item .nav-link {
  display: flex;
  align-items: center;
  border-radius: 0px;
  padding: 0.75rem 2rem;
}

.believe-nav .custom-nav .nav-item .nav-link span.txt {
  color: var(--primary);
  font-size: 1rem;
}

.believe-nav .custom-nav .nav-item .nav-link {
  border: 1px solid #7D6744;
  display: flex;
  align-items: center;
  border-radius: 0px;
  padding: 0.75rem 2rem;
}

.believe-nav .custom-nav .nav-item .nav-link.active span.txt {
  color: var(--light);
  font-size: 1rem;
}

.ame-top-right {
  top: 0;
  left: -5%;
}

.ame-bottom-left {
  bottom: 0;
  right: -5%;
}

.amenities {
  width: 100%;
  position: relative;
  background: #fff;
}

.amenity-item {
  text-align: center;
  padding: 1rem 0rem;
}

.amenity-icon {
  width: 120px;
  height: 120px;
  /* border: 2px solid var(--primary); */
  border-radius: 50%;
  /* background: #fff; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 5px;
  transition: all 0.3s ease;
}

.amenity-icon img {
  width: 67px;
  height: 67px;
}

.amenity-label {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  margin: 0;
}

.ame-cirle {
  margin: 1rem 0rem;
}

.amenities-carousel .owl-nav {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  gap: 1rem;
  margin-top: 1rem;
  cursor: pointer;
}

.amenities-carousel .owl-nav .owl-prev {
  margin-left: -5rem;
}

.amenities-carousel .owl-nav .owl-next {
  margin-right: -5rem;
}

/* ***********amenities section ends********** */

/* ***********gallery section starts*********/
.gallery {
  background: var(--light);
  padding: 4rem 0;
  position: relative;
}

.captured-center {
  display: flex;
  justify-content: center;
}

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

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

.gallery-nav .nav-pills {
  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; */
  width: 50%;
  margin: auto;
  border: none;
  border-bottom: 1.2px solid var(--light-brown);
}

.gallery-nav .nav-pills .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% / 4);
}

.gallery-nav .nav-pills .nav-item .nav-link.active {
  color: var(--primary);
  position: relative;
}

.gallery-nav .nav-pills .nav-item .nav-link {
  background: transparent;
  text-transform: capitalize;
  width: 100%;
  font-size: 1.15rem;
  color: var(--primary);
}

.gallery-nav .nav-pills .nav-item .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--light-brown);
}

.gallerySwiper {
  width: 100%;
  padding-top: 3rem !important;
  padding-bottom: 4rem !important;
  position: relative;
}

.swiper-slide img {
  display: block;
  width: 100%;
  margin-bottom: 2rem;
}

.swiper-slide.shine {
  position: relative;
  overflow: hidden;
}

.swiper-slide.shine img {
  width: 100%;
  display: block;
}

.swiper-slide.shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.swiper-slide.shine:hover::before {
  opacity: 1;
  animation: shine 1s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.gallery-slider-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 0 0;
  justify-content: center;
}

.gallery-slider-btn .gallery-prev {
  width: 60px;
  height: 60px;
}

.gallery-slider-btn .gallery-next {
  width: 60px;
  height: 60px;
}

/* .gallery-prev,
.gallery-next {
  position: absolute;
  top: auto;
  z-index: 20;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}


.gallery-prev {
  left: 46% !important;
}

.gallery-next {
  left: 51% !important;
} */

/* Arrow styling */
.gallery-prev img,
.gallery-next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* **************gallery section ends********* */


/* **************configuration section starts********* */
.section-configuration {
  padding: 4rem 0;
  width: 100%;
  /* height: 100dvh; */
  background: url(../assets/images/configuration/d1.webp) no-repeat center center / cover;
  position: relative;
  background-size: 100% 100%;
  overflow: hidden;
}

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

.sonigara-logo {
  width: 159px;
}

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


.custom-small-title {
  color: var(--light);
}

.config-nav {
  margin: 1rem auto 1rem auto;
}

.config-nav .nav-pills {
  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; */
  width: 50%;
  margin: auto;
  border: none;
  border-bottom: 1.2px solid var(--text-white);
}

.config-nav .nav-pills .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% / 4);
}

.config-nav .nav-pills .nav-item .nav-link.active {
  color: var(--text-white);
  position: relative;
}

.config-nav .nav-pills .nav-item .nav-link {
  background: transparent;
  text-transform: capitalize;
  width: 100%;
  font-size: 1.15rem;
  color: var(--text-white);
}

.config-nav .nav-pills .nav-item .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--text-white);
}

.amenities-txt-container {
  max-width: 100%;
  width: 50rem;
  height: 60dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../assets/images/configuration/1.svg) no-repeat center center/cover;
  background-size: 100% 100%;
}

.swiper-button-container {
  margin-top: 2rem;
}

.swiper-button-container .swiper-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 0 0;
}

.cust-margin {
  margin-top: 1rem;
}

.amenities-img {
  filter: blur(3px);
}

.amenities-swiper-2 .swiper-slide img {
  margin-bottom: unset !important;
}

.swiper-button-container .swiper-nav .swiper-button {
  width: 60px;
  height: 60px;
}

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



/* **************configuration section ends********* */

/* ***********timeless section starts********** */
section.section-speech {
  padding: 16rem 0;
  position: relative;
  background-color: var(--primary);
}

section.section-speech::after {
  content: "";
  background: url(../assets/images/speecless/1.png) no-repeat center center / cover;
  position: absolute;
  inset: 0;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
}


.speech-description {
  color: var(--light);
  font-size: 1.35vw;
  font-style: normal;
}

/* ***********timeless section ends********** */

/* **********section location starts******** */
section.section-location {
  position: relative;
  padding: 4rem 0;
  background: var(--light);
  height: 61vw;
}

.section-location::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/images/elements/location-vector.svg");
  background-position: bottom center;
  background-size: 100%;
  margin: 0 auto;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.section-location .custom-container {
  position: relative;
  z-index: 5;
}

/* **********section location ends******** */
/* form */

.auto-update-form {
  gap: 1rem;
}

.contact-padding {
  padding-top: 3rem;
}

.register-interest {
  background: var(--primary);
  position: relative;
  padding: 4rem 0;
}

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



.about-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  height: 100%;
}

.new-class {
  background: transparent;
  border: 0;
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 1rem 1rem;
  border-radius: 0px;
  border-bottom: 1px solid var(--light-brown);
}

.new-class::placeholder {
  color: var(--polish-white) !important;
}

.new-class:focus {
  box-shadow: none;
  color: var(--polish-white) !important;
  background: transparent;
  border-color: var(--polish-white);
}

.contact-form .form-check-label {
  color: rgba(243, 236, 227, 0.26);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 17.6px;
}


.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-weight: 600;
}

.info-title {
  color: var(--polish-white);
  font-size: 1rem;
  font-weight: 600;
}

.contact-info .small-info {
  color: var(--polish-white);
  font-size: 0.95rem;
  line-height: 1.5;
}


.info-block {
  padding-bottom: 10px;
}



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

.text-footer a {
  color: var(--light-brown);
}

.readmore-btn {
  background: transparent;
  border: navajowhite;
  color: var(--light-brown);
  font-weight: 600;
}

.copyright {
  display: flex;
  justify-content: space-between;
}

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

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

.qr-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1rem auto 1rem auto;
}

.qr-logo {
  width: 100px;
}

.qr-logos img {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  object-fit: cover;
}

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

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


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

.copyright-desc {
  color: var(--white);
  margin-top: 1rem;
  padding: 0.2rem 1rem;
}

.copyright-desc2 {
  color: var(--white);
  font-size: 0.95rem;
  padding: 0.2rem 1rem;
}

.realatte-logo {
  height: 20px;
  vertical-align: middle;
  margin-left: 5px;
}


.copyright {
  display: flex;
  justify-content: space-between;
}

.copyright2 {
  width: 90%;
  display: flex;
  justify-content: space-between;
  margin: auto;
}

.custom-hr {
  color: var(--white);
}

.copyright {
  width: 80%;
  margin: auto;
}



/* 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-weight: 600;
  margin: 0.75rem auto 1.15rem auto !important;
  text-align: center;
  text-wrap: pretty;
  color: var(--primary);
  font-size: 3rem;
  font-family: var(--gilda-display-regular);
}

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

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

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

/* thank you page css */

/* ***********Modal Form********* */


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

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

.carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end, .carousel-fade .carousel-item.active {
  z-index: unset !important;
}

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

  .star {
    top: 3rem;
  }

  .bottom-star {
    bottom: -3rem;
  }
}

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


  .other-description {
    font-size: 2vw;
  }


}

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

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


  .star {
    top: 4rem;
  }

  .bottom-star {
    bottom: -3rem;
  }
}

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

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

  .navbar-container {
    justify-content: unset;
  }



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

  .gallery-nav .nav-pills {
    width: 100%;
  }
}

@media only screen and (max-width: 1050px) {
  .star {
    top: 6rem;
  }

  .bottom-star {
    bottom: -2rem;
  }


}

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

  .believe-nav .custom-nav {
    margin: 1.4rem auto auto auto;
    gap: 1rem;
  }

  .navbar-container {
    justify-content: unset;
  }

  .section-about {
    padding: 4rem 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
  }


  .other-description {
    font-size: 2.5vw;
  }

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

  .about-img-2 {
    margin-top: 0rem;
  }

  .star {
    display: none;
  }

  .bottom-star {
    display: none;
  }

  .gallery-nav .nav-pills {
    width: 100%;
  }

  .config-nav .nav-pills {
    width: 100%;
  }

  .amenities-txt-container {
    height: 45dvh;
  }

  .section-configuration {
    height: 100%;
  }

  .speech-description {
    font-size: 4.5vw;
  }

  .contact-padding {
    padding-top: 0px;
  }
}

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

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


  .custom-small-title {
    text-align: center;
  }

  .custom-container {
    width: 95%;
  }

  .custom-visible {
    display: none;
  }

  .btnPrimary {
    padding: 1.5rem 1rem 1.5rem 3rem;
    font-size: 0.90rem;
  }

  .btnDownload {
    padding: 1.5rem 1rem 1.5rem 4rem;
  }

  .amenities-txt-container {
    height: 35dvh;
  }

  .gallerySwiper {
    padding-bottom: 0px !important;
  }

  .swiper-button-container .swiper-nav {
    justify-content: center;
  }

  .modal-logo {
    width: 82px;
  }

  .custom-modal-content::before, .custom-modal-content::after {
    width: 17%;
    height: 11%;
  }

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

  .swiper-button-container .swiper-nav .swiper-button {
    width: 45px;
    height: 45px;
  }

  .gallery-slider-btn .gallery-next {
    width: 45px;
    height: 45px;
  }

  .text-color-cust {
    color: var(--light) !important;
    font-weight: 600 !important;
  }

  .gallery-slider-btn .gallery-prev {
    width: 45px;
    height: 45px;
  }

  .cust-margin {
    margin-top: 5px;
  }

  .about-img {
    padding-top: 1rem;
  }

  .other-description {
    font-size: 4.4vw;
  }

  section.section-location {
    position: relative;
    padding: 4rem 0;
    background: var(--light);
    height: 90vh;
  }

  section.section-speech::after {
    background: unset;
  }

  section.section-speech {
    padding: 4rem 0;
  }

  .section-location::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url("../assets/images/elements/mob.png");
    background-position: bottom center;
    background-size: 100%;
    margin: 0 auto;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
  }

  .main-title {
    font-size: 5.5vw;
    padding-top: 1rem;
    line-height: 1.8;
  }

  .main-subtitle {
    font-size: 5.5vw;
  }

  .gallery-nav .nav-pills {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    gap: 2.5rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
  }

  .gallery-nav .nav-pills .nav-item {
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
    width: 100%;
  }


  .scroll-line {
    margin: 1rem 0 0 0;
  }


  .config-nav .nav-pills {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    gap: 2.5rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
  }

  .config-nav .nav-pills .nav-item {
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
    width: 100%;
  }


  .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: flex !important;
  }

  .speech-description {
    font-size: 4vw;
  }



  .copyright {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.2rem;
  }

  .copyright2 {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 2.5rem;
    gap: 0.2rem;
  }

  .navbar-container .navlogo {
    gap: 2rem;
  }

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

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

  section.section-highlight {
    padding: 6rem 0;
    background: url(../assets/images/project-highlight/project-highlight-mob.webp) no-repeat center center / cover;
    height: 100%;
    background-size: 100% 100%;

  }

  .highlight-grid {
    grid-template-columns: 1fr;
    margin: auto;
    margin: 3rem 0 0 0;
    place-items: self-start;
  }

  .highlight-grid .item {
    justify-content: center;
  }


  .social-links2 {
    padding-bottom: 3.5rem;
  }

  .nav-tabs .nav-link {
    font-size: 1rem;
  }


  /* mobile toggle bar */

  .mobile-fixed-button {
    display: block;
    position: fixed;
    width: 100%;
    bottom: 2%;
    left: 50%;
    z-index: 999;
    padding: 2rem 1rem 1rem 1rem;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    fill: rgba(255, 255, 255, 0.84);
    -webkit-filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.05));
    filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.05));
  }

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



  .mobile-fixed-button::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    z-index: -1;
    left: 50%;
    background: url(../assets/images/icons/toggle.svg) no-repeat center center / cover;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .mobile-fixed-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 85%;
    margin: auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
  }

  .btn-middle-content {
    padding: 1rem;
    background-color: transparent;
    position: absolute;
    top: 10px;
    left: 50%;
    border-radius: var(--radius-full);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .btn-middle {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    border: none;
    outline: none;
    background-color: var(--primary);
  }

  .mobile-fixed-content .btn-fixed {
    width: 35%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    top: -7px;
    font-size: 1rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem 0.85rem;
  }

  .btn-middle img {
    width: 50px;
    height: 50px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  /* mobile toggle bar */


}

@media only screen and (max-width: 576px) {
  .gallery-nav {
    margin: 1.5rem auto 1rem auto;
  }

  .gallery-nav .nav-pills .nav-item .nav-link {
    font-size: 1rem;
    text-wrap: nowrap;
  }

  .config-nav {
    margin: 1.5rem auto 1rem auto;
  }

  .config-nav .nav-pills .nav-item .nav-link {
    font-size: 1rem;
    text-wrap: nowrap;
  }

  /* mobile toggle bar */

  .btn-middle {
    width: 70px;
    height: 70px;
  }

  .mobile-fixed-content .btn-fixed {
    /* width: auto; */
    top: -7px;
    font-size: 0.8rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.45rem 0.55rem;
    width: 36%;

  }

  .swiper-button-container {
    margin-top: 0;
  }

  .btn-middle-content {
    top: 16px;
  }

  .line-icon {
    width: 2rem;
    height: 1px;
    background: var(--linecolor);
  }


  .speech-description {
    font-size: 3.5vw;
  }

  .section-small-title {
    color: var(--linecolor);
    font-weight: 400;
    font-size: 0.85rem;
  }

  /* mobile toggle bar */
}

@media only screen and (max-width: 450px) {
  .btn-middle {
    width: 55px;
    height: 55px;
  }

  .mobile-fixed-content .btn-fixed {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    top: -7px;
    font-size: 0.725rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.4rem 0.5rem;
  }

  .mobile-fixed-content {
    width: 88%;
  }

  .btn-middle img {
    width: 32px;
    height: 32px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .btn-middle-content {
    top: 16px;
  }

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

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

  .text-footer p {
    font-size: 0.75rem;
  }

  .copyright-desc2 {
    font-size: 0.75rem;
  }

  .navbar-container .navlogo .logo {
    width: 50px;
  }


}

@media only screen and (max-width: 350px) {
  .text-footer p {
    font-size: 0.75rem;
  }

  .copyright-desc2 {
    font-size: 0.75rem;
  }

  .mobile-fixed-content .btn-fixed {
    font-size: 0.725rem;
  }

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

  .navbar-container .navlogo .logo {
    width: 90px;
  }

  .other-description {
    font-size: 4.4vw;
  }
}