@font-face {
  font-family: Ivymode;
  src: url("../assets/fonts/fonnts.com-IvyMode_Light.otf");
}

@font-face {
  font-family: Ivymode-italic;
  src: url("../assets/fonts/fonnts.com-IvyMode_Italic.otf");
}

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

.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 {
  --light: #ffffff;
  --dark: #000;
  --Lato: "Lato", sans-serif;
  --montserrat: "Montserrat", sans-serif;
  --Raleway: "Raleway", sans-serif;
  --Ivymode: Ivymode;
  --Ivymode-italic: Ivymode-italic;
  --Tartuffo-Regular: Tartuffo_Trial-Regular;
  --radius-1: 16px;
  --radius-full: 100px;
  --primary: #ac883a;
  --primary-pink: #2F602F;
  --text-color: #58595b;
  --text-color-2: #727272;
}

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(--montserrat);
  background: #FFFEEE;
}

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

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

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

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

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

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

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

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

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

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



.header-container {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  -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: 999;
}

.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: 1rem 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: 2rem;
}

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

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

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

.navLinks .navLink {
  display: block;
  font-family: var(--montserrat);
  font-size: 1rem;
  color: var(--primary-pink);
  font-weight: 400;
  text-transform: capitalize;
  cursor: pointer;
  position: relative;
}

.navLinks .navLink::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  bottom: -5px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  border-radius: var(--radius-full);
  background-color: var(--primary-pink);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.navLinks .navLink:hover::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.line {
  width: 1px;
  height: 20px;
  background-color: rgba(88, 89, 91, 0.18);
}

.btn-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.35rem;
  color: var(--light);
  padding: 0.5rem 1rem;
  font-family: var(--montserrat);
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  margin: 0 0 0 1rem;
  border-radius: 0px;
  background-color: var(--primary-pink);
}

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

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

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

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

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

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

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

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

.offcanvas-link {
  display: block;
  font-size: 1.35rem;
  font-family: var(--Tartuffo-Regular);
  font-weight: 400;
  color: var(--primary-blue);
  text-transform: capitalize;
  position: relative;
  width: 100%;
}

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

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

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

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

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

.btn-visit span {
  display: block;
}

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

.section-heading .section-title {
  font-size: 3.1vw;
  font-family: var(--Ivymode);
  color: var(--primary-pink);
  font-weight: 400;
  line-height: 1.3;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-heading .italic-text {
  font-style: italic;
  font-weight: bold;
}

.section-title.pattern {
  position: relative;
}


.section-heading .section-desc {
  font-size: 20px;
  font-family: var(--montserrat);
  color: var(--primary-pink);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  line-height: 30px;
}

.section-heading .sub-title {
  font-size: 1.2vw;
  font-family: var(--montserrat);
  color: var(--primary-pink);
  font-weight: 400;
  letter-spacing: 2.1px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding-top: 1.2rem;
}

.video-main {
  position: relative;
  z-index: 1;
}

.video-main {
  height: 100vh;
}


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

.carousel-indicators [data-bs-target] {
  width: 30px;
  height: 6px;
  display: block;
  overflow: hidden;
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #fff;
}

.carousel-indicators .active {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: rgba(233, 29, 60, 1);
}

.ban_title {
  position: absolute;
  top: 10%;
  z-index: 99;
  left: 5%;
}

.ban_title h2 {
  font-family: var(--Ivymode);
  font-size: 2.2vw;
  color: #fff;
  line-height: 2;
  font-weight: 600;
}

.ban_title p {
  font-family: var(--montserrat);
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

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

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

.overview-main-content {
  margin: 2.5rem auto auto auto;
}

.overview-subcontent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
}

.overview-subcontent .overview-subcontent-txt {
  font-size: 1.4vw;
  color: var(--primary);
  font-weight: 400;
  font-family: var(--Tartuffo-Regular);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* .overview-form {
  padding: 2rem 2.5rem;
  border-radius: 9px;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: var(--light);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
} */

.form-title {
  color: var(--primary-pink);
  font-weight: 400;
  font-size: 14px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: var(--montserrat);
}

.custom-input {
  padding: 0.9rem 1rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-family: var(--montserrat);
  outline: unset;
  border: none;
  border-radius: 0px;
  background-color: transparent;
  border-bottom: 1px solid var(--primary-pink);
}

.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(--primary-pink) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 0.975rem !important;
  font-family: var(--montserrat);
}

.custom-input::-moz-placeholder {
  color: var(--primary-pink) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: var(--montserrat);
}

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

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

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

.btn-submit {
  border: 1px solid var(--primary-pink);
  background: transparent;
  color: var(--primary-pink);
  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.75rem 3rem;
  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: var(--primary-pink);
  font-weight: 400;
  cursor: pointer;
  font-size: 0.875rem;
  font-family: var(--montserrat);
}

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

/* ***********config section starts********* */

section.section-config {
  position: relative;
  padding: 5rem 0;
}

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

.config-title {
  font-family: var(--Ivymode);
  font-size: 2vw;
  text-align: start;
  font-style: normal;
  color: var(--primary-pink);
  font-weight: 400;
}

.config-desc {
  color: var(--primary-pink);
  font-weight: 400;
  font-family: var(--montserrat);
  font-size: 1rem;
  font-style: normal;
  text-align: start;
  padding: 1rem 0;
  line-height: 1.7;
}

.btn-check-price {
  display: inline-block;
  background: var(--primary-pink);
  color: var(--light);
  padding: 8px 22px;
  font-size: 1rem;
  font-family: var(--montserrat);
  text-decoration: none;
}

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

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

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

.config-nav .custom-nav .nav-item .nav-link {
  border: 1px solid var(--primary-pink);
  border-radius: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  font-weight: 500;
  font-family: var(--montserrat);
  background: transparent;
  color: var(--primary-pink);
  padding: 8px 30px;
}

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

.config-content {
  margin: 2.75rem auto auto auto;
}

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

.config-swiper-container .swiper-button {
  position: absolute;
  top: 50%;
  z-index: 1;
  opacity: 1;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.config-swiper-container .swiper-button.swiper-button-disabled {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0;
}

.config-swiper-container .swiper-button.swiper-button-prev-1 {
  left: -25px;
}

.config-swiper-container .swiper-button.swiper-button-next-1 {
  right: -25px;
}

.config-swiper-content {
  border-radius: 0px;
  padding: 1.5rem 1rem 1rem 1rem;
  border: 1px solid var(--primary-pink);
  background: var(--light);
}



.config-swiper-content .config-img {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 1.5rem auto auto auto;
}

.config-swiper-content .config-img img.plan {
  width: 100%;
  -webkit-filter: blur(9px);
  filter: blur(9px);
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.config-swiper-content .config-img .config-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.config-swiper-content .config-img .config-overlay .config-overlay-icon {
  width: 100px;
  height: 100px;
}

.config-swiper-content .config-img .config-overlay .config-overlay-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.btn-quote {
  color: var(--primary-pink);
  border: none;
  outline: none;
  font-family: var(--TT_Neoris_Medium);
  font-weight: 500;
  padding: 0.65rem 1.5rem;
  text-wrap: nowrap;
  border-radius: 5px;
  font-size: 1.1rem;
  background-color: var(--light);
}

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

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

.amenities-row {
  padding: 0px 20px;
}

.amenity-item img {
  margin-bottom: 1rem;
}

.amenity-item p {
  font-size: 1rem;
  color: var(--primary-pink);
  font-weight: 400;
}

/* ***********featured section ends** */

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

.construction-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}

.construction-carousel {
  margin-top: 30px;
}

.construction-carousel .carousel-gallery {
  overflow: hidden;
}

.construction-carousel .carousel-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
}

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

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

.construction-carousel .owl-nav button {
  pointer-events: all;
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.construction-carousel .owl-nav button span {
  font-size: 30px;
  line-height: 1;
}

.layout-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 1.5rem;
  color: var(--light);
  text-align: center;
}

.layout-content .area {
  margin: 2px 0 0;
  font-size: 1rem;
  text-transform: uppercase;
  font-family: var(--montserrat);
}

/* ***********construction section ends** */


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

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

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

.video-thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

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

/* **********Video section ends**** */

/* ************Amenities Section Starts******** */
.seection-amenities {
  padding: 5rem 0;
  background-color: var(--light);
  position: relative;
}

/* .project-carousel {
  margin-top: 2rem;
} */

.btn-check {
  position: unset;
  clip: unset;
  pointer-events: unset;
}

/* .project-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
} */

.project-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}

.project-carousel {
  margin-top: 30px;
}

.project-carousel .carousel-gallery {
  overflow: hidden;
}

.project-carousel .carousel-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
}

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

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

.project-carousel .owl-nav button {
  pointer-events: all;
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.project-carousel .owl-nav button span {
  font-size: 30px;
  line-height: 1;
}

/* ************Amenities Section ends******** */

/* ************location Section start******** */

.section_loc {
  position: relative;
  padding: 5rem 0;
}

.accord_sec {
  width: 80%;
}

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

.accordion-button:not(.collapsed)::after {
  background-image: url("../assets/images/icons/plus.svg");
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.accordion-button::after {
  background-image: url("../assets/images/icons/plus.svg");
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.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;
  padding: 1.75rem 1.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.location-accordion .accordion-button .acc-icon svg {
  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 {
  font-family: var(--montserrat);
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-pink);
}

.location-accordion .accordion-body {
  font-family: var(--montserrat);
  color: var(--primary-pink);
  font-size: 14px;
  font-weight: 400;
}

.location-accordion .accordion-item {
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border: var(--bs-accordion-border-width) solid var(--primary-pink);
}

.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(--primary-pink);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.map_img {
  background: #FFFEEE;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
}

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

/* ************location Section ends******** */

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

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

.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-pink);
  position: relative;
  opacity: unset;
}

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

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


.gallerySwiper {
  width: 100%;
  padding-top: 2rem !important;
  position: relative !important;
  overflow: hidden !important;
}


.gallerySwiper .swiper-slide {
  width: 38%;
  opacity: 0.6;
  transition: width 0.6s ease, opacity 0.4s ease;
}


.gallerySwiper .swiper-slide-active {
  width: 60% !important;
  opacity: 1;
}


.gallerySwiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
  object-fit: cover;
}


.swiper-slide.shine {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
}

.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.35) 100%);
  transform: skewX(-25deg);
  opacity: 0;
}

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

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


.gallery-slider-btn {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-prev,
.gallery-next {
  width: 56px;
  height: 56px;
  cursor: pointer;
}

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

.flr_img img {
  width: 100%;
  height: auto;
  filter: blur(3px);
  object-fit: cover;
  cursor: pointer;
}

/* *********Gallery Section Ends */

/* ************elements Section start******** */

.section_element {
  position: relative;
  padding: 5rem 0;
}

.counter {
  padding: 0.5rem;
  padding-bottom: 0;
  text-align: center;
}

.block {
  font-family: var(--Ivymode);
  font-size: 3vw;
  color: var(--primary-pink);
  text-align: center;
  letter-spacing: 2px;
}

.counterText {
  font-family: var(--montserrat);
  font-size: 20px;
  color: var(--primary-pink);
  text-align: center;
}

/* ************elements Section ends******** */

/* ************contact Section start******** */

.section_get {
  position: relative;
  padding: 5rem 0;
}

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

.site_div h2 {
  font-family: var(--Ivymode);
  font-size: 25px;
  color: var(--primary-pink);
}

.site_div p {
  font-family: var(--montserrat);
  color: var(--primary-pink);
  font-size: 0.875rem;
}

/* ************contact Section ends******** */

/* ************bank Section start******** */

.section_bank {
  position: relative;
  padding: 5rem 0;
  background-color: #fff;
}

.bank_div {
  border-radius: 20px;
  /* background: #FFF; */
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.08);
  /* padding: 10px 18px; */
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

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

/* ************bank Section ends******** */


footer {
  padding: 2rem 0;
}

.footer-qr {
  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: 5rem;
}

.qr-content {
  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;
  gap: 0.5rem;
  margin: 0 0 3rem 0;
}

.qr-content .qr-img {
  width: 100%;
  height: 100%;
}

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

.qr-content .qr-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--text-color);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.disc {
  font-family: var(--montserrat);
  color: #282B32;
  margin: 3rem 0 0;
  font-size: 0.95rem;
}

.disc strong {
  font-size: 1.035rem;
  font-weight: 600;
}

.rera {
  font-family: var(--montserrat);
  font-size: 18px;
  font-weight: 500;
  color: #282B32;
  text-align: center;
  margin: 2rem 0;
}

.footer-copyright {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.custom-modal-content {
  position: relative;
  padding: 1.25rem 0.5rem 0.5rem 0.5rem;
}

.modal-logo {
  width: 16rem;
  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;
}

.fixed-button {
  position: fixed;
  display: block;
  right: 2.5%;
  bottom: 1.5%;
  z-index: 999;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

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

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

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

.fixed1 {
  position: fixed;
  display: block;
  left: 2.5%;
  bottom: 1.5%;
  z-index: 999;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

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

/* thank you css */

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

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

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

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

/*********** elements *********/

.left_rose {
  position: absolute;
  left: 0;
  top: 0;
  width: 8%;
}

.right_top {
  position: absolute;
  right: 1%;
  top: 3%;
  width: 6%;
}

.right_botom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 6%;
}

.right_botom1 {
  position: absolute;
  right: 0;
  bottom: 2%;
  width: 11%;
}

.left_cent {
  position: absolute;
  top: 4%;
  left: 3%;
  width: 6%;
}

.left_rose img,
.right_top img,
.right_botom img,
.right_botom1 img,
.left_cent img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

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

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

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

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

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

  .menu {
    display: block;
  }

  .navLinks {
    display: none;
  }

  .config-title {
    font-size: 2.6vw;
  }
}

@media only screen and (max-width: 991px) {
  .video-main {
    height: auto;
  }

  .video-main video {
    height: auto;
    width: 100%;
    object-fit: cover;
  }

  .ban_title h2 {
    font-size: 3vw;
  }

  .ban_title p {
    font-size: 14px;
  }

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

  .overview-main-content {
    margin: 3rem auto auto auto;
  }

  .overview-subcontent {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .video-thumb {
    height: auto;
  }

  .overview-subcontent .overview-subcontent-txt {
    font-size: 1rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .config-title {
    font-size: 3.5vw;
  }


  .section-heading .sub-title {
    font-size: 2vw;
  }

  .accord_sec {
    width: 100%;
  }

  .copy-right {
    text-align: center;
  }

  .footer-copyright {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
  }

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

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

  .ban_title h2 {
    font-size: 5vw;
  }

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

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

  .play-icon {
    width: 50px;
  }

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

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

  .construction-carousel .owl-nav,
  .project-carousel .owl-nav {
    top: auto;
    bottom: 0;
    transform: none;
    justify-content: center !important;
    position: relative;
    gap: 20px;
    margin-top: 1rem;
  }

  .btn-contact {
    display: none;
  }

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

  .section-heading .section-desc {
    font-size: 18px;
  }

  .overview-content {
    margin: 1.5rem auto auto auto;
  }

  .section-heading .sub-title {
    font-size: 4vw;
  }

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

  .fixed-button {
    display: none;
  }

  /* 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));
    /* backdrop-filter: blur(5px); */
  }

  .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: #ac883a;
  }

  .mobile-fixed-content .btn-fixed {
    width: 35%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    top: -7px;
    font-size: 1.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;
  }

  .block {
    font-size: 8vw;
  }

  .counterText {
    font-size: 15px;
  }

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

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

  .gallerySwiper .swiper-slide,
  .gallerySwiper .swiper-slide-active {
    width: 100% !important;
    opacity: 1;
  }

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

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

  .left_rose,
  .right_botom,
  .left_cent {
    width: 12%;
  }

  .right_top {
    width: 10%;
  }

  .right_botom1 {
    width: 25%;
  }

  .config-nav .custom-nav {
    gap: 1rem;
  }

  .config-nav .custom-nav .nav-item .nav-link {
    padding: 8px 20px;
  }

  /* mobile toggle bar */
}

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



  .config-content {
    width: 90%;
  }

  .config-swiper-content .config-txt {
    gap: 0.75rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .config-swiper-content .config-txt span {
    font-size: 0.85rem;
    padding: 0.4rem 0.5rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-subcontent .overview-subcontent-txt {
    font-size: 0.85rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }



  .footer-qr {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .qr-content .qr-txt {
    font-size: 0.85rem;
  }

  /* mobile toggle bar */

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

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

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

  /* .bank_div {
    padding: 20px;
  } */

  .bank_div img {
    width: 65% !important;
  }

  /* 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.825rem;
    -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;
  }
}

@media only screen and (max-width: 350px) {
  .footer-qr {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .qr-content .qr-img {
    width: 60px;
    height: 60px;
  }

  .qr-content .qr-txt {
    font-size: 0.785rem;
  }

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

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