@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap");

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

:root {
  --light: #ffffff;
  --dark: #000;
  --DM-Sans: "DM Sans", sans-serif;
  --Fredoka: "Fredoka", sans-serif;
  --radius-full: 100px;
  --radius-2: 24px;
  --primary: #b82025;
  --text-color: #0c1c27;
  --English-157-Regular: English_157_Regular;
  --Perpetua_Titling_MT_Std_Regular: Perpetua_Titling_MT_Std_Regular;
  --Optima: Optima;
  --linear-bg: linear-gradient(
    90deg,
    #e8b9af 1.62%,
    #8c4f3d 86.92%,
    #631f1f 128.93%
  );

  --linear-bg-2: linear-gradient(
    215deg,
    #e8b9af 12.79%,
    #8e503f 70.59%,
    #631f1f 99.05%
  );

  --linear-bg-3: linear-gradient(
    179deg,
    #e0a99d 0.79%,
    #ae705f 39.54%,
    #72322a 99.66%
  );
}

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(--DM-Sans);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield; /* Standard property for future compatibility */
}

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

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

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  background-color: #ffffff00;
}

body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

body.loading {
  width: 100%;
  height: 100vh !important;
  overflow: hidden;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

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

.text-justify {
  text-align: justify;
}

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

.toggle-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--dark-blue);
  width: 45px;
  height: 45px;
  border-radius: 100px;
  position: fixed;
  bottom: 0%;
  right: 1.25%;
  color: var(--light);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up.show {
  opacity: 1;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up i {
  font-size: 1.15rem;
}

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

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

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

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

.ms-n1 {
  margin-left: -0.25rem !important;
}

.ms-n3 {
  margin-left: -0.75rem !important;
}

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

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

.header-container.scrolled {
  background: var(--light);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-box-shadow: rgb(160 144 110 / 34%) 0px 6px 12px -2px,
    rgb(160 144 110 / 11%) 0px 3px 7px -3px;
  box-shadow: rgb(160 144 110 / 34%) 0px 6px 12px -2px,
    rgb(160 144 110 / 11%) 0px 3px 7px -3px;
}

.navbar-container {
  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: 1rem 0;
  margin: auto;
  width: 90%;
  position: relative;
  gap: 1rem;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.custom-visible {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 0;
}

.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: 60px;
  max-width: 100%;
  position: relative;
}

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

.navLinks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  width: 100%;
  transition: all 1s ease;
  gap: 2rem;
  position: relative;
}

.navLinks .navLink {
  display: block;
  font-size: 0.95rem;
  background: var(--linear-bg-3);
  background-clip: text;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  text-wrap: nowrap;
  cursor: pointer;
  text-transform: capitalize;
}

.navLinks .navLink::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 100px;
  bottom: -6px;
  background: var(--linear-bg-3);
  transform: scaleX(0);
  transition: all 0.5s ease;
}

.navLinks .navLink:hover::after {
  transform: scaleX(1);
  transition: all 0.65s ease;
}

.btnprimary {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: none;
  color: var(--light);
  padding: 1rem;
  background-color: var(--primary);
  border-radius: 16px;
  font-weight: 600;
  transition: all 0.5s ease;

  box-shadow: 0 6px 25px 0 rgba(0, 0, 0, 0.1);
}

.btnprimary:hover {
  border-radius: 16px;
  background: #ffe7e7;
  box-shadow: 4px 4px 0 0 var(--Color, #b82025);
  font-weight: 600;
  transition: all 0.5s ease;
  color: var(--primary);
}

.btnprimary img.normal {
  display: block !important;
}

.btnprimary img.primary {
  display: none !important;
}

.btnprimary:hover img.normal {
  display: none !important;
}

.btnprimary:hover img.primary {
  display: block !important;
}

.btn-highlights {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: none;
  font-size: 1vw;
  color: var(--light);
  padding: 1rem;
  background-color: var(--primary);
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 6px 25px 0 rgba(0, 0, 0, 0.1);
}

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

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

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

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

section.main-banner {
  z-index: 2;
  padding: 6rem 0 0rem 0;
  /* height: 100dvh; */
  position: relative;
}

section.main-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 45%;
  left: 0;
  z-index: 1;
  bottom: 0;
  background: linear-gradient(0deg, #fff7ed 0%, rgba(255, 247, 237, 0) 100%);
}

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

.main-contents {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  position: relative;
}

.main-contents .main-content {
  display: flex;
  align-items: center;
  width: 60%;
  gap: 1rem;
}

.main-contents .main-content .main-content-img {
  width: 36vw;
  height: auto;
  margin: 3rem 0 0 0;
}

.main-contents .main-content .main-content-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-heading .main-title {
  font-size: 2.5vw;
  font-family: var(--Fredoka);
  font-weight: 400;
  color: #000;
}

.bannerCountText {
  font-size: 27px;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--DM-Sans);
  color: #000;
}

.main-heading .main-title strong {
  color: var(--primary);
  font-weight: 600;
}

.bannerFormWrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.main-form {
  border-radius: 24px;
  position: relative;
  z-index: 2;
  width: 90%;
  border: 1px solid var(--light);
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 3px 7px 18.5px 0 rgba(0, 0, 0, 0.1);
}

.main-form .form-title {
  font-size: 1.85vw;
  text-align: center;
  margin: 0 0 1rem 0;
  font-weight: 800;
  color: var(--text-color);
}

.custom-input {
  padding: 0.6rem 1rem 0.6rem 1.5rem;
  width: 100%;
  outline: unset;
  color: var(--text-color);
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
  font-size: 1rem;
}

.custom-input::placeholder {
  font-size: 1.05rem;
}

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

.invalid-feedback {
  font-size: 0.795em;
}

.form-rating {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}

.form-rating .google {
  width: 35px;
  height: 35px;
}

.form-rating .google img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.form-start {
  display: flex;
  flex-direction: column;
}

.form-start .rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-start .rating .rate {
  font-size: 0.875rem;
  font-weight: 800;
}

.form-start .rating .starts {
  display: flex;
  width: 17px;
  height: 17px;
  gap: 0.25rem;
}

.form-start .rating .starts img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.g-rating {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-color);
}

.main-banner-award {
  position: absolute;
  bottom: -18%;
  left: 50%;
  z-index: 1;
  width: 100%;
  transform: translate(-50%, 0%);
}

.award-container {
  background-color: var(--light);
  width: 60vw;
  max-width: 100%;
  padding: 10px;
  margin: auto;
  border: 1px solid var(--primary);
  border-radius: 24px;
  box-shadow: 0 -11px 4px 12px rgba(255, 255, 255, 0.2) inset,
    1px 15px 18.6px 0 rgba(0, 0, 0, 0.06) inset;
}

.award-content {
  border-radius: 20px;
  border: 1px solid #fee;
  background: #fff8f8;
  box-shadow: 0 -11px 4px 12px rgba(255, 255, 255, 0.2) inset,
    1px 15px 18.6px 0 rgba(0, 0, 0, 0.06) inset;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem;
}

.award-content .award-title {
  font-size: 2.5vw;
  color: var(--primary);
  font-weight: 800;
}

.award-content .award-subtitle {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
  font-family: var(--Fredoka);
  margin: 0.5rem 0 0 0;
}

.award-img {
  width: 8rem;
  height: 8rem;
}

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

.section-heading .section-title {
  font-size: 3.5vw;
  font-family: var(--Fredoka);
  font-weight: 400;
  color: var(--text-color);
}

.section-heading .section-title.primary {
  color: var(--primary);
  font-weight: 500;
}

.section-heading .section-title strong {
  color: var(--primary);
  font-weight: 600;
}

.section-heading .section-subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 1rem 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  gap: 0.5rem;
}

.section-heading .section-subtitle h3 {
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--text-color);
}

.section-heading .section-subtitle.light {
  color: var(--light);
}

.section-heading .section-desc {
  font-size: 2.5vw;
  background: var(--linear-bg);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--English-157-Regular);
  font-weight: 500;
}

.section-heading .section-desc.light {
  background: unset;
  -webkit-text-fill-color: unset;
  color: var(--light-2);
}

section.section-why {
  position: relative;
  padding: 12rem 0 2rem 0;
  z-index: 1;
}

section.section-why::after {
  content: "";
  z-index: -1;
  position: absolute;
  background: url(../assets/images/overlay/overlay.png) no-repeat center bottom /
    cover;
  width: 100%;
  height: 100%;
  inset: 0;
}

.main-content .main-content-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.main-highlights {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.main-highlights .highlights-points {
  display: flex;
  gap: 1rem;
}

.main-highlights .highlights-points .highlights-point {
  display: flex;
  /* gap: 1rem; */
  flex-direction: column;
}

.main-highlights .highlights-points .highlights-point .point-txt {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
}

.why-swiper .why-contents {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
}

.why-swiper .why-contents .why-content {
  border-radius: 34.064px;
  border: 1px solid #e9e9e9;
  background: var(--light);
  padding: 0rem 1.25rem 1.25rem 1.25rem;
  box-shadow: 0 0 11.355px 3.406px rgba(195, 195, 195, 0.2);
}

.why-swiper .why-contents .why-content .why-content-title {
  background-color: var(--primary);
  color: var(--light);
  width: max-content;
  margin: auto;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 17.032px 17.032px;
}

.why-swiper .why-contents .why-content .why-content-subtitle {
  color: #444;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  margin: 1.5rem auto;
  text-wrap: balance;
}

.why-swiper .why-contents .why-content .why-content-img {
  width: 100%;
  height: 100%;
  border-radius: 17.032px;
  overflow: hidden;
}

.why-swiper .why-contents .why-content .why-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-swiper .swiper-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto;
}

/* ***********Floor Plan ***********/
section.section-count {
  padding: 4rem 0;
  position: relative;
}

.count-carousel-container {
  margin: 4rem auto auto auto;
}

.count {
  position: relative;
  height: 250px;
  width: 100%;
  background: url(../assets/images/icons/Border.png) no-repeat center center /
    contain;
  border-radius: 20px;
  overflow: hidden;
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.4s ease-in-out;
}

.count .count-text {
  transition: opacity 0.4s ease-in-out;
  font-size: 2.5rem;
}

.count .maple-description {
  font-size: 1.2rem;
}

.tower-label {
  text-align: center;
}

.count .count-number {
  font-weight: 600;
  font-size: 3.5vw;
}

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

.count-carousel .owl-nav .owl-prev,
.count-carousel .owl-nav .owl-next {
  width: 90px;
  height: 90px;
}

.count-carousel .owl-nav .owl-prev img,
.count-carousel .owl-nav .owl-next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.container-360 .img360 {
  position: relative;
}

.txt360 {
  position: absolute;
  top: 50%;
  left: 51%;
  transform: translate(-50%, -50%);
}

.container-360 .img360 {
  width: 100%;
  height: 100%;
}

.container-360 .img360 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

/* section testimonial css */

.testimonial-slider {
  flex: 2;
  border: 3px dashed var(--primary);
  border-radius: 10rem 2rem 2rem 2rem;
  padding: 10px;
  background: #fff8f8;
  position: relative;
}

.quote-icon {
  margin-bottom: 15px;
  color: #000;
}

.testimonial-content {
  /* display: flex; */
  flex-direction: column;
  /* gap: 2rem; */
  margin: 2rem 0 0 0;
}

.testimonial-text {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  padding: 0 10rem 0 0;
}

.testimonial-name {
  margin: 3rem 0 0 0;
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary);
  margin-right: 6px;
}
.testimonial-role {
  color: #555;
  font-size: 14px;
}

/* Pagination fraction */
.test-swiper-container .swiper-pagination-fraction {
  top: 6% !important;
}

.test-swiper-pageniation {
  position: absolute;
  font-size: 1.2rem;
  z-index: 1 !important;
}
.swiper-pagination-current {
  font-weight: bold;
  color: #000;
}
.swiper-pagination-total {
  color: #aaa;
}

/* Navigation buttons */

.test-swiper-container .swiper-btn {
  position: absolute;
  top: 10%;
  right: 2%;
  display: flex;
  gap: 0.5rem;
}
.test-swiper-container .swiper-button {
  cursor: pointer;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  z-index: 2;
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

.test-swiper-container .swiper-button.swiper-button-prev-1 {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.test-swiper-container .swiper-button.swiper-button-next-1 {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* section testimonial css */

/* **********FAQ SECtion */
section.section-faq {
  padding: 4rem 0;
  position: relative;
}

.section-faq.accordion-body {
  /* text-align: center; */
  font-size: 14px;
  line-height: 28px;
  font-weight: 700;
}

.section-faq.accordion h2 button {
  font-weight: bold;
}

.accordion {
  margin-top: 2rem;
}

.accordion-button:focus {
  border: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: #fff !important;
  background-color: #b82025 !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../assets/images/icons/cross.png") !important;
}

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

.accordion-item {
  margin-bottom: 30px;
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid rgba(0, 0, 0, 0.125) !important;
}

.cursor-pointer {
  cursor: pointer;
}

.footer-copyright {
  text-align: center;
  background-color: var(--primary);
  color: var(--light);
  padding: 0.65rem 0;
}

.custom-modal-content {
  /* background: var(--primary);
  border: 2px solid var(--primary); */
  border: none;
  background: url(../assets/images/bg/aboutMobileBg.png);
  background-repeat: no-repeat;
  background-size: 100% 98%;
  padding: 10px 20px 100px;
}

.modal-logo {
  display: flex;
  justify-content: start;
  gap: 0.35rem;
  margin: 2rem 0 0.75rem 1rem;
}

.modal-logo img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 3%;
  width: 48px;
  height: 48px;
  right: 3%;
  cursor: pointer;
}

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

.modal-form .custom-input {
  background-color: transparent;
  padding: 0.85rem 1rem 0.85rem 1.5rem;
  width: 100%;
  outline: unset;
  color: var(--primary);
  font-size: 1rem;
  border: 1px solid var(--primary);
}

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

.modal-form .custom-input:focus {
  -webkit-box-shadow: unset;
  box-shadow: unset;
  outline: unset;
  border: 1px solid var(--text-color);
  background-color: transparent;
}

.modal-form .btnprimary {
  background: var(--light);
  color: var(--primary);
}

.modal-form .custom-input::-webkit-input-placeholder {
  color: var(--light);
}

.modal-form .custom-input::-moz-placeholder {
  color: var(--light);
}

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

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

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

.modal-form span.cc {
  top: 26px;
  font-size: 1rem;
  font-weight: 400;
  pointer-events: none;
  color: var(--light);
}

.modal-form .invalid-feedback {
  color: var(--light);
  font-size: 0.785rem;
}

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

.fixed-button {
  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;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  position: fixed;
  right: 1.5%;
  z-index: 999;
  bottom: 2%;
}

.fixed-button a {
  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: 16px;
  width: 50px;
  background-color: var(--light);
  border: 1px solid var(--primary);
  cursor: pointer;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  height: 50px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

/* review */

.testimonial-Image-Wrap {
  display: flex;
  justify-content: center;
}

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

@media only screen and (max-width: 1550px) {
  .main-banner-award {
    position: absolute;
    bottom: -24%;
    left: 50%;
    z-index: 1;
    width: 100%;
    transform: translate(-50%, 0%);
  }

  section.section-why {
    position: relative;
    padding: 15rem 0 2rem 0;
    z-index: 1;
  }
}

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

  .testimonial-content {
    margin: 1rem 0 0 0;
    gap: 1rem;
  }

  .testimonial-name {
    margin: 0.5rem 0 0 0;
  }

  .main-banner-award {
    position: absolute;
    bottom: -28%;
    left: 50%;
  }
}

@media only screen and (max-width: 1350px) {
  .main-banner-award {
    position: absolute;
    bottom: -35%;
    left: 50%;
  }
}

@media only screen and (max-width: 1200px) {
  .navbar-container {
    padding: 0.85rem 2rem;
    width: 100%;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  section.main-banner {
    height: auto;
  }

  .main-contents .main-content {
    width: 65%;
  }

  .main-form {
    width: 35%;
    padding: 0.75rem 0.5rem;
  }

  .custom-input {
    padding: 0.5rem 0.5rem 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  .main-form .form-title {
    font-size: 1.65vw;
  }

  .test-swiper-container .swiper-btn {
    top: 12%;
  }

  .testimonial-content {
    margin: 0rem 0 0 0;
    gap: 0rem;
  }

  .testimonial-name {
    margin: 0.5rem 0 0 0;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .form-rating .google {
    width: 25px;
    height: 25px;
  }

  .form-start .rating .rate {
    font-size: 0.75rem;
  }

  .btnprimary.custom-size {
    padding: 0.5rem;
    gap: 0.25rem;
    font-size: 0.75rem;
  }

  .form-start .rating .starts {
    width: 14px;
    height: 14px;
    gap: 0.15rem;
  }

  .g-rating {
    font-size: 0.55rem;
    font-weight: 400;
  }

  .main-heading .main-title {
    font-size: 2.25vw;
  }

  .main-content .main-content-txt {
    gap: 2rem;
  }

  .main-highlights .highlights-points .highlights-point .point-txt {
    font-size: 0.75rem;
  }

  .main-highlights {
    gap: 1rem;
  }

  .main-contents .main-content .main-content-img {
    width: 54vw;
    margin: 3rem 0 0 0;
  }

  .main-banner-award {
    bottom: -35%;
  }

  .award-container {
    width: 70vw;
    max-width: 100%;
  }

  .award-content .award-title {
    font-size: 3.75vw;
  }

  .main-form {
    width: 80%;
    padding: 0.75rem 0.5rem;
  }
}

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

@media only screen and (max-width: 1024px) {
  .main-heading .main-title {
    font-size: 1.95vw;
  }

  .main-heading .main-subtitle {
    font-size: 0.75rem;
  }

  .main-contents .main-content .main-content-img {
    width: 70vw;
  }

  .main-highlights .highlights-points .highlights-point .point-txt {
    font-size: 0.65rem;
  }
}

@media only screen and (max-width: 991px) {
  section.main-banner {
    height: auto;
    padding: 6rem 0 3rem 0;
  }

  .logo {
    gap: 1rem;
  }

  .logo-img {
    width: 50px;
  }

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

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

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

  .main-contents .main-content .main-content-img {
    width: 100%;
    margin: auto;
  }

  .main-contents .main-content {
    width: 100%;
    margin: 2rem auto auto auto;
    flex-direction: column-reverse;
  }

  .main-contents {
    flex-direction: column;
  }

  .main-form {
    width: 100%;
    padding: 1.5rem 1.5rem 4rem 1.5rem;
  }

  .main-contents {
    gap: 0rem;
  }

  .main-form .form-title {
    font-size: 4.5vw;
  }

  .main-content .main-content-txt {
    gap: 2.5rem;
  }

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

  .main-banner-award {
    bottom: -7%;
    z-index: 2;
  }

  .award-container {
    width: 90%;
    max-width: 100%;
  }

  .award-content .award-title {
    font-size: 3.5vw;
  }

  .award-content {
    justify-content: center;
  }

  .count .count-number {
    font-size: 5vw;
  }

  .section-heading.custom-font .section-title {
    font-size: 3vw;
  }

  .test_image {
    /* height: 285px; */
    display: block;
    justify-content: center;
  }

  .test_image img {
    width: 100%;
    height: 100%;
  }

  .testimonial-text {
    padding: 0px 2rem 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .section-heading .section-desc {
    font-size: 9vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .main-form .form-title {
    font-size: 5vw;
  }

  .main-highlights .highlights-points {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .main-highlights .highlights-points .highlights-point {
    flex-direction: row;
  }

  .main-highlights .highlights-points .highlights-point .point-txt {
    font-size: 0.875rem;
  }

  .main-form {
    padding: 1.5rem 1rem 4rem 1rem;
  }

  .award-container {
    width: 90%;
  }
  .count .count-number {
    font-size: 6.5vw;
  }

  .section-heading.custom-font .section-title {
    font-size: 7vw;
  }

  .btnprimary img.normal {
    display: none !important;
  }

  .enquireFixedBtnWrap {
    display: none;
  }

  .point-txt {
    display: flex;
    align-items: center;
    /* padding-left: 10px; */
  }

  .testimonial-slider {
    border-radius: 10rem 2rem 2rem 2rem;
  }

  .testimonial-Image-Wrap {
    margin-bottom: 20px;
  }

  .test-swiper-container .swiper-btn {
    position: absolute;
    top: 10%;
    right: 5%;
  }
}

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

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

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

  .btn-highlights {
    font-size: 0.85rem;
  }

  section.main-banner {
    padding: 6rem 0 7rem 0;
  }

  .main-banner-award {
    bottom: unset;
    position: relative;
  }

  .btnprimary {
    gap: 0.5rem;
    padding: 0.85rem;
    font-size: 0.9rem;
  }

  .main-form {
    padding: 1.5rem 0.75rem 4rem 0.75rem;
  }

  .form-rating .google {
    width: 20px;
    height: 20px;
  }

  .form-start .rating .rate {
    font-size: 0.75rem;
    font-weight: 700;
  }

  .form-start .rating .starts {
    display: flex;
    width: 15px;
    height: 15px;
    gap: 0.15rem;
  }

  .g-rating {
    font-size: 0.65rem;
  }

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

  .count .count-number {
    font-size: 9vw;
  }

  .section-heading.custom-font .section-title {
    font-size: 7.5vw;
  }

  .quote-icon img {
    width: 5rem;
  }

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

  .test-swiper-container .swiper-pagination-fraction {
    top: 4% !important;
  }

  .testimonial-slider {
    padding: 1rem 1rem;
  }

  .testimonial-text {
    padding: 1.5rem 2rem 0 0;
  }

  .test-swiper-container .swiper-btn {
    top: 10%;
  }

  .testimonial-name {
    display: flex;
    flex-direction: column;
  }

  .award-container {
    position: relative;
    margin: -3rem auto 5rem auto;
    z-index: 2;
  }

  .award-content .award-title {
    font-size: 11vw;
  }

  .award-img {
    width: 15rem;
    height: 15rem;
  }

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

  .modal-form .custom-input {
    padding: 0.65rem 1rem 0.65rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media only screen and (max-width: 376px) {
  .test-swiper-container .swiper-button {
    width: 35px;
  }

  .quote-icon img {
    width: 3rem;
  }

  .test-swiper-container .swiper-btn {
    top: 6%;
  }

  .test-swiper-pageniation {
    font-size: 1rem;
  }

  .test-swiper-container .swiper-pagination-fraction {
    top: 2% !important;
  }

  .section-heading .section-subtitle h3 {
    font-size: 0.95rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}
