@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");

@font-face {
  font-family: daddy-rewind;
  src: url("../assets/fonts/daddy_rewind/Daddy\ Rewind.ttf");
}

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

:root {
  --light: #ffffff;
  --dark: #000;
  --text-dark: #1e1e1e;
  --text-dark-2: #252525;
  --text-dark-3: #2a2a2a;
  --dark-bg: radial-gradient(
      90.09% 95.35% at 4.89% -16.96%,
      rgba(239, 212, 158, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    radial-gradient(218.87% 89.65% at 70.69% 260.71%, #efd49e 0%, #191919 100%);
  --radius-1: 16px;
  --radius-2: 24px;
  --radius-full: 100px;
  --google-sans: "Google Sans", sans-serif;
  --daddy-rewind: daddy-rewind;
  --secondary: #efd49e;
}

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;
  font-family: var(--google-sans);
  padding-right: 0px !important;
  background-color: #f7f7f7;
}

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

a {
  text-decoration: none;
}

p {
  margin-bottom: 0rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.custom-container-2 {
  width: 90vw;
  max-width: 100%;
  margin: auto 0 auto auto;
}

.header-container {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 11;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.header-container.scrolled {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background: -o-linear-gradient(bottom, transparent, rgba(0, 0, 0, 0.822));
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(transparent),
    to(rgba(0, 0, 0, 0.822))
  );
  background: linear-gradient(0deg, transparent, rgba(0, 0, 0, 0.822));
}

.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;
  /* -webkit-box-shadow:
    rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; */
  padding: 1.25rem 5rem;
  background-color: transparent;
  width: 100%;
  margin: auto;
  gap: 1rem;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

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

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

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

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.btn-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.5rem;
  font-size: 1vw;
  color: var(--light);
  cursor: pointer;
  font-weight: 500;
  position: relative;
  z-index: 1;
  background: var(--dark-bg);
  border-bottom: 2px solid #efd49e;
}

.btn-contact.btn-call {
  width: 50px;
  height: 50px;
  padding: 0;
  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;
  border-radius: var(--radius-full);
  border-bottom: 2px solid #efd49e;
}

.m-n3 {
  margin: 0 0 0 -3rem;
}

.m-n2 {
  margin: -2rem 0 0 0;
}

.section-heading {
  position: relative;
  z-index: 4;
}

.custom-container {
  width: 90%;
  margin: auto;
  max-width: 100%;
}

.modal-form .form-body {
  padding: 0.5rem;
}

.modal-logo {
  width: 15rem;
}

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

.modal-close {
  width: 50px;
  cursor: pointer;
}

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

.form-body {
  background-color: var(--light);
  padding: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 0.35rem 0;
}

.form-body label {
  color: #404040;
  font-size: 0.925rem;
  font-weight: 600;
  margin: 0 0 0.35rem 0;
}

.form-body .gender-radio label {
  border-radius: 11.029px;
  background-color: #f7ecfd;
  padding: 0.75rem 0.5rem;
  border: none;
  font-size: 0.9rem;
}

.form-body .btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: var(--light);
  background-color: var(--primary);
  border-color: unset;
}

.form-body .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
}

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

.form-check.agree label {
  font-size: 0.875rem !important;
  margin: 0.175rem 0 0 0.45rem !important;
  cursor: pointer !important;
  font-weight: 400 !important;
}

.form-check.agree input {
  cursor: pointer !important;
}

.form-check.agree label a {
  color: #2c91f0 !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.custom-input {
  padding: 0.45vw 1vw !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: unset;
  font-weight: 400;
  border-radius: 0px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background-color: rgba(42, 42, 42, 0.05);
}

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

.custom-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  border: 1px solid rgba(188, 32, 49, 0.5);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.custom-input::-webkit-input-placeholder {
  font-weight: 400 !important;
  text-transform: unset !important;
  font-size: 0.95rem !important;
  opacity: 0.65;
}

.custom-input::-moz-placeholder {
  font-weight: 400 !important;
  text-transform: unset !important;
  font-size: 0.95rem !important;
  opacity: 0.65;
}

.custom-input:-ms-input-placeholder {
  color: var(--text-placeholder) !important;
  font-weight: 400 !important;
  text-transform: unset !important;
  font-size: 0.95rem !important;
  opacity: 0.65;
}

.custom-input::-ms-input-placeholder {
  font-weight: 400 !important;
  text-transform: unset !important;
  font-size: 0.95rem !important;
  opacity: 0.65;
}

.custom-input::placeholder {
  font-weight: 400 !important;
  text-transform: unset !important;
  font-size: 0.95rem !important;
  opacity: 0.65;
}

.form-check-label {
  font-size: 0.95rem;
}

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

section.section-main-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 54vw;
}

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

section.section-main-banner::before {
  position: absolute;
  content: "";
  inset: 0;
  background: -o-linear-gradient(
    178deg,
    rgb(0 0 0 / 27%) 37.25%,
    rgba(0, 0, 0, 0.3) 96.52%
  );
  background: linear-gradient(
    272deg,
    rgb(0 0 0 / 27%) 37.25%,
    rgba(0, 0, 0, 0.3) 96.52%
  );
  width: 100%;
  height: 100%;
  z-index: -1;
}

.banner-container {
  width: 90vw;
  max-width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  align-items: end;
  margin: auto;
  padding: 0 0 1rem 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.banner-content {
  width: 100%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.banner-heading .banner-title {
  font-size: 2.25vw;
  font-family: var(--daddy-rewind);
  font-weight: 400;
  color: var(--light);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.banner-heading .banner-subtitle {
  font-size: 2.5vw;
  font-weight: 500;
  color: var(--secondary);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.banner-form-container {
  width: 28vw;
  /* max-width: 90%; */
  margin: 0.5rem 0 0 0;
  border: 1px solid #efd49e;
  background: var(--light);
  /* height: 36vw; */
}

.banner-form-container .pan-form-title {
  font-size: 1.15rem;
  padding: 0.7rem 0.5rem;
}

.banner-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1rem 0 0 0;
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.banner-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  gap: 1rem;
  background: rgba(25, 25, 25, 0.3);
}

.banner-list .list-icon {
  padding: 0.65rem;
  height: 100%;
  background: rgba(25, 25, 25, 0.8);
}

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

.banner-list .list-txt {
  color: var(--light);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1.15vw;
  text-wrap: nowrap;
  font-weight: 500;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.btn-primary {
  background-color: var(--secondary);
  padding: 0.55rem 2rem;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1vw;
  position: relative;
  border: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  outline: none;
  border-bottom: 1.5px solid #efd49e;
  z-index: 1;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: -o-radial-gradient(
      -16.24% -9.82%,
      131.89% 70.21%,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(25, 25, 25, 0) 100%
    ),
    -o-radial-gradient(87.93% 233.04%, 173.8% 39.33%, #efd49e 0%, #efd49e 100%);
  background: radial-gradient(
      131.89% 70.21% at -16.24% -9.82%,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(25, 25, 25, 0) 100%
    ),
    radial-gradient(173.8% 39.33% at 87.93% 233.04%, #efd49e 0%, #efd49e 100%);
}

.yellow-line {
  width: 100%;
  height: 1rem;
  background-color: var(--secondary);
}

.section-heading .section-title {
  font-size: 2.25vw;
  color: var(--dark);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: var(--daddy-rewind);
}

.section-heading .section-subtitle {
  font-size: 3.75vw;
  color: var(--text-dark-2);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-weight: 500;
  transition: all 0.5s ease;
}

.section-heading .section-desc {
  font-size: 1vw;
  color: #3f3f3f;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-weight: 400;
  transition: all 0.5s ease;
}

section.section-overview {
  position: relative;
  padding: 4rem 0;
}

.bg-texture {
  position: relative;
  z-index: 1;
}

.bg-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/layers/overview-layer.png") no-repeat center
    center/cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.overview-countdown {
  margin: 3rem 0 0 0;
}

.countdown-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  padding: 0 0.5rem 0 1.15rem;
  position: relative;
}

.countdown-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  background: -o-linear-gradient(left, #efd49e 0%, rgba(239, 212, 158, 0) 100%);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#efd49e),
    to(rgba(239, 212, 158, 0))
  );
  background: linear-gradient(90deg, #efd49e 0%, rgba(239, 212, 158, 0) 100%);
}

.countdown-content small {
  color: #3f3f3f;
  font-size: 1.5vw;
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.countdown-content .countdown-number {
  background: -o-radial-gradient(
    37.33% -20.83%,
    108.38% 108.34%,
    #fff 0%,
    #191919 100%
  );
  background: radial-gradient(
    108.38% 108.34% at 37.33% -20.83%,
    #fff 0%,
    #191919 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5vw;
  font-weight: 500;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.countdown-content .countdown-number span {
  width: 3.15vw;
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.countdown-content .countdown-number span.is-last {
  width: 2.35vw;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.countdown-content .countdown-number p {
  font-size: 1.5vw;
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.overview-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #eaeaea;
}

.overview-list-item .list-item-icon {
  background-color: var(--text-dark-3);
  padding: 0.5rem;
}

.overview-list-item .list-item-txt {
  color: var(--text-dark-3);
  font-size: 1.025vw;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.overview-visual {
  position: relative;
  height: 85dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  z-index: 1;
}

.overview-visual::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: -1;
  width: 100%;
  height: 80%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  background: url("../assets/images/layers/overview-layer-2.png") no-repeat
    center center/cover;
}

.overview-visual .videos {
  width: calc(100% / 2);
}

.overview-visual .videos.videos-1 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.overview-visual .videos.videos-1 video {
  height: 80%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0 4px 26.5px 0 rgba(157, 117, 1, 0.2);
  box-shadow: 0 4px 26.5px 0 rgba(157, 117, 1, 0.2);
  padding: 0.5rem;
}

.overview-visual .videos.videos-2 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.overview-visual .videos.videos-2 video {
  height: 80%;
  width: 100%;
  padding: 0.5rem;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0 4px 26.5px 0 rgba(157, 117, 1, 0.2);
  box-shadow: 0 4px 26.5px 0 rgba(157, 117, 1, 0.2);
}

.countdown-content p {
  font-size: 1vw;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #3f3f3f;
  font-weight: 400;
}

.overview-carousel-container .overview {
  height: 100%;
  width: 100%;
}

.overview-carousel-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0.75rem;
  height: 100%;
  background-color: #191919;
}

.overview-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.overview-carousel .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  width: 100%;
  display: flex;
}

.overview-carousel-content .overview-carousel-icon {
  width: 50px;
  height: 50px;
}

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

.overview-carousel-content .overview-carousel-txt {
  color: var(--light);
  font-size: 1.05rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.overview-carousel-container .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.25rem;
  margin: 1.5rem 0 0 0;
}

.overview-carousel-container .owl-dots button {
  width: 7px;
  height: 7px;
  background-color: #c0c0c0 !important;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.overview-carousel-container .owl-dots button.active {
  background-color: var(--dark) !important;
  width: 25px;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

section.section-premium-kitchens {
  padding: 3rem 0;
}

.wardrobes-carousel-container {
  position: relative;
}

.wardrobes-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  padding: 0.85rem;
  border: 2px solid #ebebeb;
  background: var(--light);
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

.wardrobes-content .wardrobes-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}

.wardrobes-content .wardrobes-img {
  width: 100%;
  height: 42dvh;
}

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

.wardrobes-content .wardrobes-txt .wardrobes-title {
  font-size: 1.1rem;
  color: var(--text-dark-3);
  font-weight: 500;
}

.wardrobes-content .wardrobes-txt .wardrobes-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.wardrobes-content .wardrobes-txt .wardrobes-points .wardrobes-point {
  padding: 0.45rem;
  border-radius: 761.402px;
  border: 0.761px solid rgba(255, 237, 0, 0.7);
  background: -o-linear-gradient(
    right,
    rgba(251, 186, 0, 0.2) 0%,
    rgba(251, 186, 0, 0.1) 50%,
    rgba(251, 186, 0, 0.2) 100%
  );
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(251, 186, 0, 0.2)),
    color-stop(50%, rgba(251, 186, 0, 0.1)),
    to(rgba(251, 186, 0, 0.2))
  );
  background: linear-gradient(
    270deg,
    rgba(251, 186, 0, 0.2) 0%,
    rgba(251, 186, 0, 0.1) 50%,
    rgba(251, 186, 0, 0.2) 100%
  );
  color: #6b6409;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-dark {
  padding: 0.75rem 2.5rem;
  border: none;
  font-size: 1.15vw;
  border-bottom: 2px solid #efd49e;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--light);
  font-weight: 500;
  background: -o-radial-gradient(
      4.89% -16.96%,
      90.09% 95.35%,
      rgba(239, 212, 158, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    -o-radial-gradient(70.69% 260.71%, 218.87% 89.65%, #efd49e 0%, #191919 100%);
  background: radial-gradient(
      90.09% 95.35% at 4.89% -16.96%,
      rgba(239, 212, 158, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    radial-gradient(218.87% 89.65% at 70.69% 260.71%, #efd49e 0%, #191919 100%);
}

.wardrobes-carousel-container .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 2rem 0 0 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.wardrobes-carousel-container .owl-nav button {
  width: 90px;
  height: 90px;
}

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

.wardrobes-carousel-container .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 3rem auto auto auto;
  gap: 0.65rem;
  position: absolute;
  left: 50%;
  bottom: 7%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.wardrobes-carousel-container .owl-dots button {
  width: 10px;
  height: 10px;
  background: rgba(30, 30, 21, 0.2) !important;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.wardrobes-carousel-container .owl-dots button.active {
  width: 40px;
  background: #1e1e15 !important;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

section.section-dream-wardrobes {
  padding: 2rem 0;
}

.dream-stepper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
  z-index: 1;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin: 3rem 0 0 0;
  position: relative;
}

.dream-stepper::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 40px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background: -o-linear-gradient(
    right,
    rgba(251, 186, 0, 0) 0%,
    rgba(251, 186, 0, 0.5) 30.33%,
    rgba(251, 186, 0, 0.5) 68.77%,
    rgba(251, 186, 0, 0) 100%
  );
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(251, 186, 0, 0)),
    color-stop(30.33%, rgba(251, 186, 0, 0.5)),
    color-stop(68.77%, rgba(251, 186, 0, 0.5)),
    to(rgba(251, 186, 0, 0))
  );
  background: linear-gradient(
    270deg,
    rgba(251, 186, 0, 0) 0%,
    rgba(251, 186, 0, 0.5) 30.33%,
    rgba(251, 186, 0, 0.5) 68.77%,
    rgba(251, 186, 0, 0) 100%
  );
  width: 100%;
  height: 2px;
}

.dream-stepper .dream-step {
  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: 1.25rem;
}

.dream-stepper .dream-step .dream-no {
  width: 5rem;
  height: 5rem;
  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: -o-radial-gradient(
      -16.24% -9.82%,
      131.89% 70.21%,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(25, 25, 25, 0) 100%
    ),
    -o-radial-gradient(87.93% 233.04%, 173.8% 39.33%, #efd49e 0%, #efd49e 100%),
    #fbba00;
  background: radial-gradient(
      131.89% 70.21% at -16.24% -9.82%,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(25, 25, 25, 0) 100%
    ),
    radial-gradient(173.8% 39.33% at 87.93% 233.04%, #efd49e 0%, #efd49e 100%),
    #fbba00;
  border-radius: var(--radius-full);
}

.dream-stepper .dream-step .dream-no span {
  opacity: 0.5;
  mix-blend-mode: luminosity;
  font-size: 2.5rem;
  font-weight: 700;
  color: #b58e1d;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.dream-stepper .dream-step .dream-title {
  color: var(--dark);
  font-size: 1.85rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 700;
}

.dream-stepper .dream-step .dream-subtitle {
  color: var(--text-dark-2);
  font-size: 1.125rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-wrap: balance;
  font-weight: 700;
}

.pan-form-container {
  width: 100%;
  margin: 1rem 0 0 0;
  border: 1px solid #efd49e;
  background: var(--light);
}

.pan-content {
  padding: 6rem 1rem 1rem 1rem;
  height: 100%;
}

.pan-content .pan-no {
  font-size: 2rem;
  font-weight: 700;
  z-index: 1;
  position: relative;
}

.pan-content .pan-no-overlay {
  position: absolute;
  bottom: 0;
  left: 45%;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  z-index: -1;
  font-size: 4vw;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 700;
}

.pan-content.gold .pan-no-overlay {
  background: -o-radial-gradient(
    3.72% 52.51%,
    40.82% 91.32%,
    #efd49e 11.52%,
    #c8ad79 100%
  );
  background: radial-gradient(
    40.82% 91.32% at 3.72% 52.51%,
    #efd49e 11.52%,
    #c8ad79 100%
  );
  opacity: 0.3;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pan-content.dark .pan-no-overlay {
  opacity: 0.1;
  background: -o-radial-gradient(
    3.72% 52.51%,
    40.82% 91.32%,
    rgba(255, 255, 255, 0) 11.52%,
    #fff 100%
  );
  background: radial-gradient(
    40.82% 91.32% at 3.72% 52.51%,
    rgba(255, 255, 255, 0) 11.52%,
    #fff 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pan-content .pan-subtitle {
  font-size: 1rem;
  font-weight: 700;
}

.pan-content.gold {
  background: #efd49e;
  color: #191919;
}

.pan-content.dark {
  background: #191919;
  color: var(--light);
}

.pan-form {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  padding: 2rem 1.5rem;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(5, 1fr);
}

.pan-form-title {
  background-color: #3f3f3f;
  color: var(--light);
  text-align: center;
  font-size: 1.25rem;
  padding: 0.95rem 0.5rem;
}

.form-input .form-label {
  font-size: 0.8vw;
  color: #2a2a2a;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 0.15vw;
}

.form-mobile {
  position: relative;
}

.form-mobile span {
  position: absolute;
  left: 17px;
  top: 13px;
}

.form-mobile input {
  padding-left: 3.75rem !important;
}

.custom-margin {
  margin: 1.75rem 0 0 0;
}

.custom-margin button {
  padding: 0.85rem 1rem;
  font-size: 1.05rem;
}

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

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

.testimonial {
  padding: 12px;
}

.testimonial-content {
  background: -o-linear-gradient(305deg, #fcfcfc 1.93%, #fcfcfc 103.32%);
  background: linear-gradient(145deg, #fcfcfc 1.93%, #fcfcfc 103.32%);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 2rem 1rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.15rem;
}

.testimonial-content::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 100%;
  height: 100%;
  border-right: 5px solid #efd49e;
  border-bottom: 5px solid #efd49e;
  z-index: -1;
}

.testimonial-content .testimonial-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.15rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonial-content .testimonial-img img {
  width: 25px !important;
  height: 25px !important;
  -o-object-fit: contain;
  object-fit: contain;
}

.testimonial-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-txt .testimonial-desc {
  font-size: 1rem;
  color: #484848;
  font-weight: 400;
}

.testimonial-txt .testimonial-author .author {
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 500;
  margin: 0 0 0.65rem 0;
}

.testimonial-txt .testimonial-author .designation {
  font-size: 0.875rem;
  color: #484848;
  text-transform: uppercase;
  font-weight: 500;
}

.testimonial-carousel-container {
  position: relative;
  margin: 3rem 0 0 0;
}

.testimonial-carousel-container .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 2rem 0 0 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.testimonial-carousel-container .owl-nav button {
  width: 90px;
  height: 90px;
}

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

.testimonial-carousel-container .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 3rem auto auto auto;
  gap: 0.65rem;
  position: absolute;
  left: 50%;
  bottom: 10%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.testimonial-carousel-container .owl-dots button {
  width: 10px;
  height: 10px;
  background: rgba(30, 30, 21, 0.2) !important;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.testimonial-carousel-container .owl-dots button.active {
  width: 40px;
  background: #1e1e15 !important;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

section.section-other-products {
  padding: 3rem 0;
}

.other-products {
  background: #efd49e;
}

.other-products .other-product-img {
  width: 100%;
  height: 55dvh;
}

.other-products .other-product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.other-products .other-product-heading {
  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;
}

.other-products .other-product-txt {
  font-weight: 700;
  color: #252525;
  font-size: 2vw;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

/* darshan faq css */

/* faq section */

.faqSection {
  padding: 2rem 0;
}

.faq-container .accordion-button::after {
  background: url("../assets/images/icons/plus.svg") !important;
}

.faq-container .accordion-item:first-of-type {
  border-top-left-radius: unset !important;
  border-top-right-radius: unset !important;
}

.faq-container .accordion-button:not(.collapsed)::after {
  background-image: url("../assets/images/icons/minus.svg") !important;
}

.faq-container .accordion {
  background: transparent !important;
}

.faq-container button.accordion-button {
  padding: 25px 30px 20px 30px;
}

.faq-container .accordion-body {
  background-color: var(--light);
  padding: 0 20px 30px 28px !important;
  font-size: 14px;
  color: var(--gray);
  border-radius: 0 0 10px 10px;
}

.faq-container .faqhead {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark-3);
}

.faq-container .accordion-button:focus {
  z-index: 3;
  outline: 0;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
}

.faq-container .accordion-button:not(.collapsed) {
  background: transparent !important;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
}

.faq-container .accordion-item {
  margin: 20px 0;
  /* border-radius: 10px;  */
  /* border-bottom: 1px solid #6b68eb !important;
  border-right: 1px solid #6b68eb !important;
  border-left: 1px solid #6b68eb !important; */
  border-top: none !important;
  background-color: transparent !important;

  border-left: 6.681px solid #efd49e;
  background: -o-linear-gradient(190deg, #fff -37.44%, #fff 60.89%);
  background: linear-gradient(260deg, #fff -37.44%, #fff 60.89%);
  -webkit-box-shadow: 0 5.568px 16.704px 0 rgba(131, 99, 0, 0.06);
  box-shadow: 0 5.568px 16.704px 0 rgba(131, 99, 0, 0.06);
}

.faq-container .accordion-header,
.faq-container .accordion-button {
  background-color: var(--light) !important;
  /* border: 1px solid #c3e4e8; */
  /* border-radius: 10px; */
}

.faq-container .accordion-button:not(.collapsed) {
  background-color: var(--light) !important;
  /* border-radius: 10px 10px 0 0; */
}

.faq-container .accordion-button::after {
  width: 28px !important;
  height: 28px !important;
}

.faq-container .accordion-button:not(.collapsed)::after {
  -webkit-transform: unset !important;
  -ms-transform: unset !important;
  transform: unset !important;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.faqCard {
  /* border-radius: 1.8rem; */
  padding: 15px;
  background: url("../images/banner/faqBg.jpg");
  /* border: 1px solid rgba(107, 104, 235, 0.3); */
}

.faqCard img {
  border-radius: 10px;
}

.faqHeadText {
  font-family: var(--funnel-display);
  text-align: center;
  font-size: 25px;
  font-weight: 600 !important;
  margin-top: 15px !important;
}

.custom-modal-content .modal-header {
  background-color: var(--dark);
}

/* darshan faq css */

.btn-fixed {
  position: fixed;
  z-index: 999;
  right: 1%;
  bottom: -100px;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.btn-fixed.show {
  bottom: 2%;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.btn-whatsapp {
  width: 70px;
  height: 70px;
  display: block;
  border-radius: var(--radius-full);
}

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

.mobile-fixed-button {
  position: fixed;
  z-index: 9999;
  left: 0;
  bottom: -60px;
  width: 100vw;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--dark);
  gap: 0;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.btn-mobile {
  width: calc(100% / 2);
  border-radius: 0px;
  color: var(--light);
  display: -webkit-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  font-weight: 500;
  border: none;
  padding: 0.55rem 1rem;
  font-size: 1.15rem;
}

.btn-mobile.dark {
  background-color: var(--dark);
}

.btn-mobile.primary {
  background-color: var(--secondary);
  color: var(--dark);
}

.btn-mobile.primary img {
  -webkit-filter: invert(1);
  filter: invert(1);
}

footer {
  padding: 1.175rem 0.5rem;
  color: var(--text-dark);
  text-align: center;
  background-color: var(--secondary);
  font-size: 1rem;
  font-weight: 700;
}

/* thank you css */

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

.thankyou-title {
  text-align: center;

  margin: 0.35rem 0 0 0;
  font-weight: 500;
}

.thankyou-subtitle {
  text-align: center;

  font-weight: 400;
  text-wrap: balance;
  opacity: 0.85;
  margin: 0.5rem 0 0 0;
}

.go_txt {
  font-size: 15px;
  color: #000;
  color: var(--light);
  background-color: var(--secondary) !important;
  border-radius: 3.125rem;

  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  margin: 15px auto 0;
}

/************************ farzeen css ******************/

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

@media only screen and (max-width: 1920px) {
  section.section-main-banner {
    height: 100dvh;
  }
}
@media only screen and (max-width: 1746px) {
  section.section-main-banner {
    height: 50vw;
  }

  .form-mobile span {
    top: 8px;
  }
}

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

@media only screen and (max-width: 1536px) {
  section.section-main-banner {
    height: 55vw;
  }

  .form-mobile span {
    left: 16px;
    top: 8px;
  }
}

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

  .logo {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 25vw;
  }

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

@media only screen and (max-width: 1280px) {
  section.section-main-banner {
    height: 56vw;
  }

  .form-mobile span {
    left: 15px;
    top: 7px;
  }
}

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

  section.section-main-banner {
    height: 100dvh;
  }

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

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

  .banner-heading .banner-subtitle {
    font-size: 5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dream-stepper .dream-step .dream-no span {
    font-size: 2.25rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dream-stepper .dream-step .dream-title {
    color: var(--dark);
    font-size: 1.5rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dream-stepper .dream-step .dream-subtitle {
    font-size: 1rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

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

  .pan-content {
    padding: 4rem 1rem 1rem 1rem;
  }

  .pan-content .pan-no-overlay {
    left: 35%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 6vw;
  }

  .pan-form-container {
    width: 70rem;
    max-width: 95%;
    margin: 3rem auto auto auto;
    border: 1px solid #efd49e;
    background: var(--light);
  }

  .pan-form {
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .pan-form .form-input.full-width {
    grid-column: 1 / -1;
  }

  .custom-margin {
    margin: 1rem 0 0 0;
  }

  .testimonial-carousel-container .owl-dots {
    bottom: 8%;
  }

  .pan-contents .col-6:nth-child(3) .pan-content {
    background: #191919;
    color: var(--light);
  }

  .pan-contents .col-6:nth-child(3) .pan-content .pan-no-overlay {
    opacity: 0.1;
    background: -o-radial-gradient(
      3.72% 52.51%,
      40.82% 91.32%,
      rgba(255, 255, 255, 0) 11.52%,
      #fff 100%
    );
    background: radial-gradient(
      40.82% 91.32% at 3.72% 52.51%,
      rgba(255, 255, 255, 0) 11.52%,
      #fff 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .pan-contents .col-6:nth-child(4) .pan-content {
    background: #efd49e;
    color: #191919;
  }

  .pan-contents .col-6:nth-child(4) .pan-content .pan-no-overlay {
    background: -o-radial-gradient(
      3.72% 52.51%,
      40.82% 91.32%,
      #efd49e 11.52%,
      #c8ad79 100%
    );
    background: radial-gradient(
      40.82% 91.32% at 3.72% 52.51%,
      #efd49e 11.52%,
      #c8ad79 100%
    );
    opacity: 0.3;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .form-input .form-label {
    font-size: 1.1vw;
    margin-bottom: 0.25vw;
  }

  .custom-input {
    padding: 0.5vw 1vw !important;
  }
}

@media only screen and (max-width: 991px) {
  .banner-heading .banner-title {
    font-size: 5.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-heading .banner-subtitle {
    font-size: 5.55vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .btn-contact,
  .btn-contact.btn-call {
    padding: 0.85rem;
    font-size: unset;
    width: 55px;
    height: 55px;
    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;
    border-radius: var(--radius-full);
    background: var(--dark-bg);
    border: 2px solid #efd49e;
  }

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

  .logo {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 30vw;
  }

  .banner-list .list-txt {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 1.75vw;
  }

  .btn-primary {
    font-size: 1.75vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-title {
    font-size: 4.25vw;
    color: var(--dark);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-family: var(--daddy-rewind);
  }

  .section-heading .section-subtitle {
    font-size: 5.75vw;
    color: var(--text-dark-2);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    font-weight: 500;
    transition: all 0.5s ease;
  }

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

  .countdown-content small {
    font-size: 3.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .countdown-content .countdown-number {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 4.5vw;
  }

  .countdown-content .countdown-number span {
    width: 5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .countdown-content .countdown-number span.is-last {
    width: 3.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .countdown-content p {
    font-size: 1.65vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-list-item .list-item-txt {
    font-size: 1.65vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dream-stepper::before {
    background: unset;
  }

  .dream-stepper {
    gap: 3rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .dream-stepper .dream-step {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .dream-stepper .dream-step .dream-no {
    width: 4rem;
    height: 4rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dream-stepper .dream-step .dream-no span {
    font-size: 2rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dream-stepper .dream-step .dream-subtitle {
    text-wrap: unset;
  }

  .pan-content .pan-no-overlay {
    left: 20%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 7vw;
  }

  .btn-dark {
    font-size: 2.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .other-products .other-product-img {
    height: 50dvh;
  }

  .other-products .other-product-txt {
    font-size: 3vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-lists {
    margin: 1rem 0 0 0;
    gap: 1rem;
    flex-direction: column;
    width: 25rem;
    max-width: 100%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .custom-input {
    padding: 0.65rem 0.85rem !important;
  }

  .form-input .form-label {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .form-mobile span {
    left: 15px;
    top: 13px;
  }
}

@media only screen and (max-width: 767px) {
  section.section-main-banner::after {
    background: url("../assets/images/banner/mob-banner.jpg") no-repeat center
      center/cover;
  }

  .logo {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 35vw;
  }

  .banner-content {
    width: 95%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

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

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

  .banner-container {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    padding: 0 0 1rem 0.5rem;
    margin: auto;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-list .list-txt {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 2.5vw;
  }

  .btn-primary {
    font-size: 2.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

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

  .section-heading .section-subtitle {
    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: 2vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .countdown-content small {
    font-size: 4.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .countdown-content .countdown-number span {
    width: 7vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .countdown-content .countdown-number {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 5.5vw;
  }

  .countdown-content .countdown-number span.is-last {
    width: 4.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .countdown-content p {
    font-size: 2vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-list-item .list-item-txt {
    font-size: 2.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dream-stepper .dream-step .dream-no {
    width: 3.5rem;
    height: 3.5rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dream-stepper .dream-step .dream-no span {
    font-size: 1.75rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dream-stepper .dream-step .dream-title {
    font-size: 1.35rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dream-stepper .dream-step .dream-subtitle {
    font-size: 0.95rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dream-stepper {
    gap: 2rem;
    margin: 2rem 0 0 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dream-stepper .dream-step {
    gap: 1rem;
  }

  .pan-content .pan-no-overlay {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 9vw;
  }

  .btn-dark {
    font-size: 2.75vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .testimonial-carousel-container .owl-dots {
    bottom: 10%;
  }

  .other-products .other-product-txt {
    font-size: 4vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .mobile-fixed-button {
    bottom: 0;
  }

  .mobile-fixed-button.show {
    bottom: 0;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .btn-fixed.show {
    bottom: 7%;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  footer {
    padding: 1.175rem 0.5rem 4rem 0.5rem;
  }
}

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

  .logo {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 45vw;
  }

  .nav-links {
    gap: 0.75rem;
  }

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

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

  .banner-list .list-txt {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 4vw;
  }

  .btn-contact,
  .btn-contact.btn-call {
    padding: 0.75rem;
    width: 50px;
    height: 50px;
  }

  .btn-primary {
    font-size: 4vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-countdown {
    margin: 2rem 0 0 0;
  }

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

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

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

  .countdown-content small {
    font-size: 6vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .countdown-content .countdown-number {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 7vw;
  }

  .countdown-content .countdown-number span {
    width: 9vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .countdown-content .countdown-number span.is-last {
    width: 6vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .countdown-content p {
    font-size: 3.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-list-item .list-item-txt {
    font-size: 3.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-visual {
    height: 65dvh;
  }

  .overview-carousel-content .overview-carousel-txt {
    font-size: 0.925rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dream-stepper .dream-step .dream-no {
    width: 3rem;
    height: 3rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dream-stepper .dream-step .dream-no span {
    font-size: 1.5rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .pan-content {
    padding: 3rem 1rem 1rem 1rem;
  }

  .pan-content .pan-no-overlay {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 14vw;
    left: 40%;
  }

  .btn-dark {
    font-size: 3.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .pan-form {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.75rem;
    padding: 1.5rem 1rem;
  }

  .pan-form-title {
    font-size: 1.15rem;
    padding: 0.85rem 0.5rem;
  }

  .custom-margin {
    margin: 0rem 0 0 0;
  }

  .other-products .other-product-img {
    height: 40dvh;
  }

  .other-products .other-product-txt {
    font-size: 4.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .modal-logo {
    width: 12rem;
  }

  .btn-mobile {
    font-size: 0.9rem;
  }

  .faq-container .faqhead {
    font-size: 14px;
  }
}
