@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&amp;display=swap"); :root {
  --primary-color: #582430;
  --secondary-color: #e8d8cb;
  --secondary-color-light: #e8d8cb;
  --body-color: #212121;
  --light: #f8fcff;
  --facebook: #4267B2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #FF0000;
  --whatsapp: #25D366;
  --instagram: #c92bb7;
  --midsun: 'Mid Mid Sun Sun';
  --cursive: 'Water Brush', cursive;
}

html {
  scroll-behavior: smooth;
}

body {
  color: rgb(255, 255, 255);
  background-color: var(--primary-color);
  font: 400 1rem "Playfair Display", serif;
  overflow-x: hidden;
}

svg:not([fill]) {
  fill: currentcolor;
  stroke: currentcolor;
}

.table td, .table th {
  padding: 1.25rem 1rem 1rem;
}

p {
  line-height: 19px;
  margin-bottom: 7px;
  letter-spacing: 0.5px;
}

.padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

ul {
  padding-left: 0px;
  margin-bottom: 0px;
}

a, a:hover {
  text-decoration: none;
}

img, video, iframe {
  width: 100%;
  display: block;
}

.gap-row {
  row-gap: 30px;
}

.gap-form-row {
  row-gap: 10px;
}

.object-cover {
  object-fit: cover;
}

.container-fluid {
  padding-left: 2rem;
  padding-right: 2rem;
}

.rounded {
  border-radius: 5px !important;
}

.filter-white {
  filter: brightness(70);
}

.filter-dark {
  filter: grayscale(1) brightness(0.5);
}

.header {
  width: 100%;
  position: fixed;
  top: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 998;
  color: rgb(255, 255, 255);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: 300ms ease-in-out;
}

.header.fixed, .header:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 2rem;
  color: var(--body-color);
  border-bottom: 0px;
}

.header a {
  color: rgb(255, 255, 255);
}

.header.fixed a, .header:hover a {
  color: var(--body-color);
}

.logo {
  position: relative;
  left: 1rem;
  font-size: 1.75rem;
  font-weight: 800;
  min-height: 1px;
  transition: 300ms ease-in-out;
  z-index: 2;
  max-width: 343px;
  padding: 15px 5px;
}

.logo small {
  font-size: 54%;
}

.header .nav > ul {
  display: flex;
  align-items: center;
  position: relative;
}

.header .nav > ul > li > a {
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0px 10px;
  position: relative;
  transition: 300ms ease-in-out;
  padding: 0.5rem;
  z-index: 1;
}

.header .nav > ul > li > a.call-btn1 {
  background-color: rgb(255, 255, 255);
  font-weight: 600;
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0px 10px;
  position: relative;
  transition: 300ms ease-in-out;
  padding: 1rem;
  z-index: 1;
}

.header .nav > ul > li:hover > a {
  color: var(--primary-color);
}

.header .nav > ul > li > a::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0px;
  border-bottom: 1px solid var(--secondary-color);
  transition: 300ms ease-in-out;
  z-index: -1;
}

.header .nav ul li:hover > a::before {
  width: 100%;
}

.header .topCTC {
  display: flex;
  background-color: rgb(91, 40, 52);
  transition: 300ms ease-in-out;
}

.header.fixed .topCTC, .header:hover .topCTC {
  background-color: rgb(91, 40, 52);
}

.header .topCTC a {
  display: flex;
  align-items: center;
  color: rgb(255, 255, 255);
  padding: 0px 1rem;
}

.header .topCTC a:last-child {
  border-left: 1px solid rgb(255, 255, 255);
}

.header .topCTC a i {
  display: flex;
  align-items: center;
}

.header.fixed .menuBtn span::before {
  background: var(--primary-color);
}

.menuBtn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 300ms ease-in-out;
  position: relative;
  cursor: pointer;
}

.header.fixed .menuBtn {
  width: 40px;
  height: 40px;
}

.menuBtn div {
  position: relative;
  width: 50%;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  transition: 300ms ease-in-out;
}

.menuBtn span {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  margin: 3px 0px;
  transition: 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn span::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform-origin: center center;
  transition: 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn.closeMenuBtn span#menuLine1 {
  transform: rotate(45deg) translate(4px, 4px);
}

.menuBtn.closeMenuBtn span#menuLine2 {
  right: 100px;
}

.menuBtn.closeMenuBtn span#menuLine3 {
  transform: rotate(-45deg) translate(4px, -5px);
}

.menuContainer {
  position: fixed;
  inset: 0px;
  padding-top: 61px;
  z-index: 996;
  background-color: rgba(0, 123, 255, 0.13);
  backdrop-filter: blur(5px);
  display: none;
}

.menuContainer .inner {
  padding: 22px 15px;
  width: 100%;
  visibility: hidden;
  background: radial-gradient(circle at 50% -10%, var(--secondary-color), var(--primary-color));
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1rem 3rem;
  transition: 300ms ease-in-out;
}

.header.fixed + .menuContainer {
  padding-top: calc(30px + 1rem);
}

.menuContainer.active .inner {
  visibility: visible;
}

.menuContainer a {
  color: rgb(255, 255, 255);
  transition: 300ms ease-in-out;
}

.mainMenu li:not(:last-child) a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mainMenu a {
  padding: 10px 0px;
  font-weight: 700;
  display: block;
  position: relative;
}

.mainMenu li.active > a, .mainMenu li:hover > a {
  padding: 10px;
  background-color: rgb(255, 255, 255);
  color: var(--primary-color);
}

.mainMenu a i {
  font-size: 75%;
  position: absolute;
  right: 0px;
  top: 50%;
  line-height: 0;
  transition: 300ms ease-in-out;
}

.mainMenu li.active > a i, .mainMenu li:hover > a i {
  right: 10px;
}

.mainMenu li.active > a i {
  transform: rotate(540deg);
}

.menuDrop {
  padding: 5px 15px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  display: none;
}

.mainMenu ul ul li:last-child a {
  border-bottom: 0px;
}

.banner {
  height: 100vh;
  position: relative;
  background: var(--primary-color);
  z-index: 1;
}

.banner .carousel-item::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.bannerText {
  position: absolute;
  bottom: 2rem;
  left: 1rem;
  max-width: fit-content;
  width: 98%;
  z-index: 9;
  background: rgba(0, 0, 0, 0.74);
  border-radius: 10px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  padding: 10px 15px;
  text-align: center;
}

.bannerText h6 {
  font-size: 18px;
  position: relative;
  padding: 5px 0px;
  border-style: dashed;
  border-color: rgb(255, 255, 255);
  border-image: initial;
  border-width: 1px 0px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bannerText h1 {
  font-size: 29px;
  font-weight: bold;
}

.bannerText .price-cnt {
  background: var(--secondary-color);
  color: var(--primary-color);
  width: fit-content;
  padding: 5px 7px;
  font-size: 24px;
  font-weight: 600;
  border-radius: 5px;
}

.list-inline.topLinks li a {
}

.modal-logo .inner .h3 small {
  font-size: 22px;
}

.enquiryBtn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 99;
  display: none;
}

.enquiryBtn i {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--primary-color), #210c02);
  color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.4) 0px 10px 20px;
  cursor: pointer;
  transition: 300ms ease-in-out;
}

.enquiryBtn i:hover {
  background: linear-gradient(2255deg, var(--primary-color), var(--secondary-color));
}

.stickyForm {
  width: 300px;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  padding: 1.25rem;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1rem 3rem;
  z-index: 99;
}

.sideImg .inner::before, .iconsContainer .iconBox .in::before, .fpContainer .fbBox .inner::before, .location-advantages .inner::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-close {
  position: absolute;
  right: -2px;
  top: 0px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: maroon;
  color: rgb(255, 255, 255);
  cursor: pointer;
  transition: 300ms ease-in-out;
}

.form-close:hover {
  background: var(--secondary-color);
}

.stickyForm .form-tag {
  font-size: 14px;
}

.stickyForm h6 {
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 10px;
  color: var(--body-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stickyForm .form-group {
  margin-bottom: 10px;
}

.stickyForm .form-control, .modal-body .form-control {
  border-bottom: 2px solid rgb(234, 234, 234);
  background-color: rgb(241, 241, 241);
  color: var(--body-color);
  padding: 8px 10px;
  font-size: 14px;
}

.overview-container::before {
  content: "";
  position: absolute;
  inset: 0px;
  background-color: rgba(255, 255, 255, 0.02);
  z-index: -1;
  pointer-events: none;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.sideImg .inner {
  padding: 1.25rem;
  background-color: var(--secondary-color-light);
  color: rgb(232, 216, 203);
  text-align: center;
  position: relative;
}

.statsBox .in {
  height: 100%;
  background-color: rgb(91, 40, 52);
  border-radius: 10px;
  padding: 10px;
}

.statsBox .in h4 {
  color: rgb(255, 255, 255) !important;
}

.iconsContainer .iconBox {
  height: auto;
  padding: 10px;
}

.iconsContainer .iconBox .in {
  height: 100%;
  padding: 2rem;
  transition: 300ms ease-in-out;
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  position: relative;
}

.iconsContainer .iconBox .in::before {
  border-color: rgba(0, 0, 0, 0.4);
}

.iconsContainer .iconBox .in:hover {
  color: var(--body-color);
  background: var(--secondary-color) !important;
}

.iconsContainer .iconBox .in:hover img {
  filter: brightness(0);
}

.iconBox .in i {
  width: 30px;
}

.iconBox .in img {
  width: 40px;
}

.iconBox .in h6 {
  font-weight: 700;
}

.hm-fp-section::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: url("../images/lining-bg.png") center center / 35%;
  z-index: -1;
  opacity: 0.1;
  filter: brightness(10);
}

.fpContainer .fbBox .inner {
  padding: 1.25rem;
  background: var(--primary-color);
  transition: 300ms ease-in-out;
  position: relative;
}

.fpContainer .fbBox .inner::before {
  border-color: rgba(0, 0, 0, 0.4);
}

.fpContainer .fbBox .inner:hover {
  background: rgba(88, 36, 48, 0.82);
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 1rem 3rem;
  color: var(--body-color);
}

.planBase {
  margin: 1rem 0px 1.5rem;
}

.fpDetails {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fpDetails .icon {
  width: 22px;
}

.planBase .fpDetails h6 {
  margin-bottom: 0px;
  font-weight: 700;
}

.fpContainer .fbBox .img-fluid {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.fpContainer .fbBox img {
  filter: blur(3px);
}

.fpContainer .fbBox span {
  display: block;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid rgb(228, 228, 228);
}

.reflection {
  -webkit-box-reflect: below -76px linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.charSlide {
  width: 70%;
}

.charSlide .imgBox {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.charSlide img {
  object-fit: cover;
}

.charSlide .caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  font-size: 1.75rem;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  text-shadow: rgba(0, 0, 0, 0.2) 1px 1px 1px;
  z-index: 1;
  text-align: center;
  -webkit-box-reflect: below -1rem linear-gradient(transparent 25%, rgba(0, 0, 0, 0.4));
  display: none;
}

.hm-location-section::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: url("../images/map-lining.png") right center / cover no-repeat;
  opacity: 0.05;
  z-index: -1;
}

.map {
  position: relative;
}

.location-advantages .inner {
  height: 100%;
  padding: 1rem;
  background-color: var(--secondary-color);
  position: relative;
}

.location-advantages .inner::before {
  border-color: rgba(181, 157, 92, 0.725);
}

.location-advantages ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0px;
  color: var(--body-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.location-advantages ul li .loc-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-advantages ul li .loc-row img {
  flex: 0 0 35px;
  max-width: 30px;
  filter: brightness(0) opacity(0.5);
}

.location-advantages ul li .loc-row p {
  margin-bottom: 0px;
}

.location-advantages ul li .loc-dist {
}

.location-advantages ul li .loc-dist small {
  font-size: 13px;
  margin-left: 5px;
}

.viewmore {
  width: 100%;
  margin-top: 1.25rem;
}

.viewmore .button {
  width: max-content;
  text-transform: uppercase;
  color: var(--secondary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 300ms ease-in-out;
}

.viewmore .button:hover {
  gap: 15px;
}

.viewmore .button i {
  width: 30px;
  color: var(--secondary-color);
}

.viewmore .button:hover, .viewmore .button:hover i {
  color: rgb(255, 255, 255);
}

.viewmore .button.text-primary:hover, .viewmore .button.text-primary:hover i {
  color: rgb(255, 255, 255) !important;
}

.viewmore .button.text-primary i {
  color: var(--primary-color);
}

.watermark {
  position: absolute;
  height: 80%;
  top: 50%;
  opacity: 0.5;
  z-index: -1;
}

.watermark.toright {
  right: 0px;
  transform: translate(3%, -50%);
}

.watermark.toleft {
  left: 0px;
  transform: translate(-50%, -35%);
}

.watermark.lg {
  height: auto;
  width: 60%;
}

.watermark img {
  height: 100%;
  width: auto;
}

.heading {
  display: table;
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.heading.border-bottom {
  border-bottom-width: 2px !important;
}

.heading h2, .heading h4, .heading h5, .heading h6 {
  display: block;
}

.heading .h1 {
  color: var(--secondary-color);
}

.heading h3 {
  font-weight: 500;
  font-size: 2vw;
}

.heading h6 {
  font-weight: 400;
  letter-spacing: 2px;
}

.text-serif {
}

.text-sans {
  font-family: Rubik, sans-serif;
}

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

.text-secondary {
  color: var(--secondary-color) !important;
}

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

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

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

.bg-light {
  background-color: var(--light) !important;
}

.bg-image {
  background: center center / cover no-repeat fixed;
}

.bg-image::before {
  content: "";
  position: absolute;
  inset: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.bg-image.bg-secondary {
  background-attachment: initial;
}

.bg-image.bg-secondary::before {
  background-color: transparent;
}

.scroller {
  overflow: auto;
}

.scroller::-webkit-scrollbar {
  width: 5px;
}

.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--light);
  border-radius: 10px;
}

.scroller::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

.scroller::-webkit-scrollbar-thumb:hover {
  background: rgb(0, 0, 0);
}

.readmore {
  width: 100%;
  margin-top: 2rem;
}

.readmore.d-flex {
  gap: 2px;
}

.readmore .button {
  position: relative;
  z-index: 1;
  display: table;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 1rem;
  min-width: 150px;
  border-radius: 50px;
  color: var(--primary-color);
  background-color: transparent;
  border: 1px solid var(--primary-color);
  text-align: center;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}

.readmore button {
  width: 100%;
  background: none;
}

.readmore .button:hover {
  color: rgb(255, 255, 255);
  background: var(--primary-color);
  border-color: transparent;
}

.readmore .button.mw-auto {
  min-width: 1px;
  padding: 10px;
}

.readmore .button.text-white {
  border-color: rgb(255, 255, 255);
}

.readmore .button.text-white:hover {
  background-color: rgb(255, 255, 255);
  border-color: transparent;
  color: var(--primary-color) !important;
}

.readmore .button.solid.white:hover, .readmore .button.solid {
  background-color: var(--primary-color);
  color: var(--light);
  border: none;
}

.readmore .button.solid.white, .readmore .button.solid:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
}

.readmore .button.bg-secondary {
  border: none;
}

.readmore .button.bg-secondary:hover {
  background-color: var(--primary-color) !important;
}

.controls {
  position: absolute;
  width: 110px;
  height: 40px;
  right: 10px;
  bottom: 10px;
  z-index: 9;
}

.controls a {
  position: static;
  display: table;
  width: 100%;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  text-align: center;
  color: var(--primary-color);
  font-size: 13px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.controls a:last-child {
  border-bottom: none;
}

.controls a:focus, .controls a:hover {
  color: var(--primary-color) !important;
  opacity: 1;
}

.multiply {
  mix-blend-mode: multiply;
}

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

.swiper-button-next, .swiper-button-prev {
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border-radius: 50%;
  background: url(../images/arrow-right.png) center / 20px no-repeat var(--secondary-color);
  transition: 300ms ease-in-out;
}

.swiper-button-next.sm, .swiper-button-prev.sm {
  width: 30px;
  height: 30px;
  background-size: 14px;
}

.topBtn {
  top: 25%;
}

.bottomBtn {
  top: 80%;
}

.heading .d-flex {
  gap: 10px;
}

.heading .swiper-button-next, .heading .swiper-button-prev {
  position: static;
  margin-top: 0px;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  scale: 1.2;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  transform: rotate(-180deg);
}

.swiper-button-next::after, .swiper-button-prev::after {
  display: none;
}

.bottom-control {
  top: calc(100% - 1.75rem);
}

.bottom-control.sm {
  top: calc(100% - 0.5rem);
}

.bottom-control.swiper-button-next {
  right: calc(50% - 55px);
}

.bottom-control.swiper-button-prev {
  left: calc(50% - 55px);
}

.bottom-control.swiper-button-next.sm {
  right: calc(50% - 35px);
}

.bottom-control.swiper-button-prev.sm {
  left: calc(50% - 35px);
}

.swiper-pagination {
  bottom: 0px !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 20px;
  border-radius: 10px;
}

.footer-enquiryBtn {
  border-radius: 10px;
  position: fixed;
  bottom: 2px;
  left: 2px;
  right: 2px;
  justify-content: space-between;
  z-index: 99;
  background-color: var(--secondary-color);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 10px;
  text-align: center;
}

.footer-enquiryBtn a {
  color: rgb(0, 0, 0);
  text-align: center;
  display: block;
  padding: 8px 5px;
  border-radius: 0px 10px 10px 0px;
  border-width: 1px 1px 1px 0px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-top-color: rgba(0, 0, 0, 0.15);
  border-right-color: rgba(0, 0, 0, 0.15);
  border-bottom-color: rgba(0, 0, 0, 0.15);
  border-image: initial;
  border-left-style: initial;
  border-left-color: initial;
}

.footer-enquiryBtn a.whatsCall {
  background: linear-gradient(45deg, rgb(13, 182, 52), rgb(1, 92, 22));
  border: 0px;
  border-radius: 10px;
  color: rgb(255, 255, 255);
}

.button-top {
  background: rgba(0, 0, 0, 0.32);
  position: fixed;
  left: 20px;
  bottom: -40px;
  color: rgb(255, 255, 255);
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  z-index: 99;
  cursor: pointer;
  transition: 300ms ease-in-out;
}

.button-top:hover {
  background: var(--body-color);
}

.flip-x {
  transform: rotateY(180deg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group > div {
  margin-top: 15px;
}

.form-group label {
  margin-bottom: 0px;
  font-size: 13px;
  font-weight: 500;
}

.form-control {
  border-top: none;
  border-right: none;
  border-left: none;
  border-image: initial;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  background: none;
  outline: none;
  padding-left: 0px;
  padding-top: 0px;
}

.cnt-plan {
  margin: 11px 0px;
  background: var(--secondary-color);
  padding: 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: var(--primary-color) !important;
}

.form-control[readonly] {
  background: none;
}

.form-control.form-control-dark {
  border-bottom-color: rgba(255, 255, 255, 0.15);
  color: rgb(255, 255, 255);
}

select.form-control.form-control-dark {
  background-color: var(--primary-color);
}

.form-control.form-control-dark::placeholder {
  color: rgb(143, 143, 143);
}

.form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--primary-color);
  background: none;
}

.modal-backdrop.show {
  opacity: 1;
  background: rgba(0, 10, 12, 0.95);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 32px 0px;
  border-radius: 1rem;
}

button.close {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  opacity: 1;
  text-shadow: none;
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  background-color: rgb(141, 0, 0);
  color: rgb(255, 255, 255);
}

.modal-content {
  background-color: rgb(255, 255, 255);
  color: var(--body-color);
  border: none;
}

.modal-dialog {
  max-width: 900px;
}

.modal-content .modal-header {
  padding: 0px;
  border: none;
}

.modal-content button.close {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 0px;
  margin: 0px;
  width: 40px;
  height: 40px;
  z-index: 1;
  text-shadow: none;
  color: var(--body-color);
  background-color: var(--secondary-color);
  opacity: 1;
}

.modal-header .close {
  color: rgb(255, 255, 255);
}

.modal-header {
  background: none;
  border: none;
}

.no-gutters .col-md-6:first-child {
  background: var(--secondary-color);
  border-radius: 1rem;
}

.modal-logo .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}

.modal-logo .bhk {
  font-size: 1rem;
}

.modal-logo .bhk span {
  font-size: 200%;
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
  line-height: 1;
}

.modal-logo .price {
  width: 80%;
  display: flex;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.2);
  border-image: initial;
  border-width: 1px 0px;
  font-size: 1rem;
  color: var(--secondary-color);
  background: var(--primary-color);
}

.modal-logo .price span {
  font-weight: 700;
  color: var(--vibrant-color);
  font-size: 200%;
  line-height: 1;
}

.modal-body {
  padding: 1.5rem;
}

.leftTranslate {
  transform: translate(-200px, 0px);
  opacity: 0;
  transition: 1000ms;
}

.rightTranslate {
  transform: translate(200px, 0px);
  opacity: 0;
  transition: 1000ms;
}

.topTranslate {
  transform: translate(0px, -200px);
  opacity: 0;
  transition: 1000ms;
}

.bottomTranslate {
  transform: translate(0px, 200px);
  opacity: 0;
  transition: 1000ms;
}

.doneTranslate {
  transform: translate(0px, 0px);
  opacity: 1;
}

.fadeOut {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 1000ms ease-in-out;
}

.fadeIn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: 1000ms;
}

.zoomOut {
  transform: scaleX(0);
  transform-origin: left center;
  transition: 0.5s ease-in-out;
}

.zoomIn {
  transform: scale(1);
}

h3 {
  font-size: 22px;
}

.mobile-section-1 {
  position: fixed;
  bottom: 0px;
  width: 100%;
  background-color: rgb(13, 13, 12);
  z-index: 99;
  display: none;
}

.mobile-section {
  display: flex;
  justify-content: center;
}

.footer-container-section {
  padding-top: 50px;
  padding-bottom: 15px;
  background-color: rgb(232, 216, 204);
  color: rgb(0, 0, 0);
}

#more {
  display: none;
}

.contact-container {
  padding-top: 100px;
  padding-bottom: 30px;
  background-color: rgb(86, 36, 48);
}

.contact-container .contact-us-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.contact-container .contact-us-footer .form-group {
  width: calc(50% - 10px);
  position: relative;
  margin-bottom: 20px;
}

.contact-container .contact-us-footer .form-control {
  border-radius: 0px;
  height: 54px;
  background-color: rgb(241, 241, 241);
  border: none;
  color: rgb(0, 0, 0);
  padding-left: 8px;
}

.custom-heading {
}

.sub-heading-top {
  font-size: 2.5rem;
  margin-bottom: 35px;
}

.contact-us-footer button {
  font-size: 16px;
  font-weight: 700;
  padding: 10px 1rem;
  min-width: 200px;
  letter-spacing: 2px;
  border-radius: 50px;
  color: rgb(255, 255, 255);
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255);
  text-align: center;
  transition: 0.3s ease-in-out;
}

.offer-patch2 {
  width: 15%;
  left: auto;
  position: absolute;
  top: 25%;
  right: 80%;
  z-index: 99;
}

.offer-patch1 {
  position: absolute;
  width: 15%;
  bottom: 7%;
  z-index: 1;
  left: 48%;
}

.destop-view {
  display: block;
}

.mobile-view {
  display: none;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

@-webkit-keyframes bounceIn {
  20%, 40%, 60%, 80%, 0%, 100% {
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
      opacity: 0;
      transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
      transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
      transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
      opacity: 1;
      transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
      transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
      opacity: 1;
      transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  20%, 40%, 60%, 80%, 0%, 100% {
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
      opacity: 0;
      transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
      transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
      transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
      opacity: 1;
      transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
      transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
      opacity: 1;
      transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}

.offer-text {
  background-color: rgb(228, 10, 46);
  text-align: center;
  padding: 8px;
  margin-top: 12px;
  font-size: 18px;
}

.header .logo img {
  filter: brightness(16.5);
}

.header.fixed .logo img {
  /* max-width: 130px; */
  filter: brightness(25) invert(1);
}

@media (max-width: 768px) {
  .mobile-section-1 {
      display: block;
  }

  .bannerText {
      position: relative;
      bottom: 0%;
      width: 100%;
      max-width: 100%;
      left: 0%;
  }

  .destop-view {
      display: none;
  }

  .mobile-view {
      display: block;
  }

  .offer-patch1 {
      bottom: inherit;
      top: 30%;
      right: 36%;
      left: inherit;
      width: 25%;
  }

  .mobile-section-1 a.btn.btn-success.btn-block {
      background-color: rgb(237, 224, 214);
      width: 100%;
      border: none;
      border-radius: 0px;
      padding-bottom: 10px;
      padding-top: 10px;
      margin-top: 0px;
      color: rgb(90, 40, 52);
      font-weight: 600;
      font-size: 15px;
  }

  .contact-container .contact-us-footer .form-control {
      border-radius: 0px;
      height: 38px;
      background-color: rgb(241, 241, 241);
      border: none;
      color: rgb(0, 0, 0);
      padding-left: 10px;
  }

  .contact-container .contact-us-footer .form-group {
      width: calc(100% - 10px);
      position: relative;
      margin-bottom: 20px;
  }

  .contact-container {
      padding-top: 30px;
      padding-bottom: 30px;
      background-color: rgb(86, 36, 48);
  }

  .footer-container-section {
      padding-top: 15px;
      padding-bottom: 15px;
      background-color: rgb(87, 36, 48);
      color: rgb(255, 255, 255);
  }

  .offer-patch2 {
      width: 22%;
      left: auto;
      position: absolute;
      top: 13%;
      right: 73%;
      z-index: 99;
  }

  .modal-logo .inner .h3 {
      font-size: 2rem !important;
      margin-top: 20px !important;
  }

  .modal-logo .price {
      margin-bottom: 20px;
  }

  .header .logo img {
      filter: brightness(19.5) invert(1);
      max-width: 120px;
  }
}
