:root {
  --yellow: #f5f5f5;
  --green: #e8c498;
  --light-black: #2f2f2f;
}

@font-face {
  font-family: Courgette;
  src: url("../fonts/Courgette/Courgette-Regular.ttf");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/Inter/Inter-Regular.ttf");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/Inter/Inter-Medium.ttf");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/Inter/Inter-SemiBold.ttf");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/Inter/Inter-Bold.ttf");
  font-weight: 700;
  font-display: swap;
}

html {
  position: relative;
  height: 100%;
}

body {
  font-family: Inter;
  margin: 0px;
  padding: 0px;
  background: rgb(0, 0, 0);
}

body.overflow-hidden {
  overflow: hidden;
}

p {
  letter-spacing: 0.5px;
  line-height: 150%;
  font-size: 16px;
}

a {
  text-decoration: none !important;
}

.btn {
  border: none;
  min-height: 48px;
  border-radius: 0px;
  box-shadow: none !important;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: rgb(232, 196, 152);
}

::selection {
  background-color: rgb(232, 196, 152);
  color: rgb(255, 255, 255);
}

-webkit-::selection {
  background-color: rgb(232, 196, 152);
  color: rgb(255, 255, 255);
}

.tagline {
  font-family: Courgette;
  font-weight: 400;
}

.tagline span {
  display: block;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
}

.mt_60 {
  margin-top: 60px;
}

.py_60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py_100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: rgb(47, 47, 47);
}

.form-control {
  height: 46px;
  border-radius: 0px;
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  box-shadow: none !important;
}

.form-control::placeholder {
  color: rgb(255, 255, 255);
}

.form-control:focus {
  border-color: rgba(7, 51, 47, 0.3);
}

.icon_btn {
  overflow: hidden;
}

.icon_btn .icon {
  position: relative;
}

.icon_btn .icon::before,
.icon_btn .icon::after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: 500ms ease-in-out;
}

.icon_btn .icon::after {
  transform: scale(0.3);
  opacity: 0;
  transition: 300ms ease-in-out;
}

.icon_btn:hover .icon::before {
  transform: scale(20);
}

.icon_btn:hover .icon::after {
  transform: scale(1);
  opacity: 1;
}

.icon_btn span {
  position: relative;
}

.btn_dark_fill {
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

.btn_dark_fill .icon::before {
  background: var(--yellow);
}

.btn_dark_fill .icon::after {
  background: rgb(255, 255, 255);
}

.btn_dark_fill.round .icon::before {
  border-radius: 50%;
}

.btn_dark_fill.round .icon::after {
  border-radius: 50%;
}

.btn.round {
  border-radius: 100px;
}

.submit_group {
  display: flex;
  align-items: center;
}

.sec_title {
  font-family: Courgette;
  letter-spacing: 1px;
  color: var(--green);
  font-size: 24px;
  margin-bottom: 15px;
}

.sec_title.white {
  color: rgb(255, 255, 255);
}

.sec_title.yellow {
  color: var(--yellow);
}

.section_heading {
  font-weight: 700;
  font-size: 29px;
  letter-spacing: 1px;
  margin-bottom: 0px;
  line-height: 46px;
  color: rgb(192, 151, 66);
  text-transform: capitalize;
}

.section_heading span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  letter-spacing: 0px;
  line-height: 30px;
}

.dark_btn {
  background: linear-gradient(45deg, rgb(191, 149, 63), rgb(252, 246, 186));
  color: rgb(0, 0, 0);
  padding: 8px 35px;
  letter-spacing: 0.5px;
}

.dark_btn:hover {
  color: rgb(0, 0, 0);
}

.dark_btn.rounded {
}

.btn_yellow {
  background: linear-gradient(45deg, rgb(191, 149, 63), rgb(252, 246, 186));
  padding: 8px 35px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.mx_0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.mx_-20 {
  margin-left: -20px !important;
  margin-right: -20px !important;
}

.mx_-25 {
  margin-left: -25px !important;
  margin-right: -25px !important;
}

.p_10 {
  padding: 10px !important;
}

.p_12 {
  padding: 12px !important;
}

.px_20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.px_25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.px_30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.ov_headings {
  margin-bottom: 40px;
  position: relative;
}

.ov_headings::before {
  position: absolute;
  content: "";
  background: var(--yellow);
}

.ov_headings.left {
  padding-left: 20px;
}

.ov_headings.left::before {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 4px;
}

.ov_headings.left.green::before {
  background: rgb(232, 196, 152);
}

.ov_headings.center {
  text-align: center;
  display: table;
  margin: auto;
  max-width: fit-content;
  padding-bottom: 20px;
}

.ov_headings.center::before {
  top: 100%;
  height: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
}

.navbar {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 85px;
  padding: 0px 50px;
  z-index: 999;
  transition: 200ms ease-in-out;
}

.navbar.fixed {
  height: 84px;
  padding: 0px 50px;
  background: rgba(0, 0, 0, 0.98);
}

.navbar .navbar-brand {
  padding: 0px;
  margin: 0px;
}

.navbar .navbar-brand img {
  max-width: 120px;
  transition: 200ms ease-in-out;
}

.navbar.fixed .navbar-brand img {
  max-width: 140px;
  margin-top: -3px;
  padding: 5px;
  filter: unset;
}

.navbar .navbar-toggler {
  padding: 0px;
  outline: 0px;
  border: none;
  position: absolute;
  right: 0px;
  top: 0px;
  background: linear-gradient(45deg, rgb(191, 149, 63), rgb(252, 246, 186));
  height: 85px;
  width: 85px;
  border-radius: 0px;
  transition: 200ms ease-in-out;
}

.navbar .navbar-toggler img {
  max-width: 28px;
  transition: 200ms ease-in-out;
}

.navbar.fixed .navbar-toggler {
  height: 70px;
  width: 70px;
}

.navbar.fixed .navbar-toggler img {
  max-width: 22px;
}

.navbar .call_btn {
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 20px 6px 10px;
  position: relative;
  margin-right: 100px;
  min-height: auto;
  transition: 200ms ease-in-out;
  background: linear-gradient(rgb(232, 196, 152), rgb(232, 196, 152));
}

.navbar.fixed .call_btn {
  margin-right: 80px;
}

.navbar .call_btn .icon {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.navbar.fixed .call_btn .icon {
  height: 28px;
  width: 28px;
  margin-right: 8px;
}

.navbar .call_btn .icon img {
  max-width: 12px;
  z-index: 1;
}

.navbar .call_btn .right {
  display: inline-block;
  text-align: left;
  font-size: 20px;
}

.navbar .call_btn .right .txt {
  font-weight: 100;
  text-transform: uppercase;
  font-size: 10px;
  transition: 200ms ease-in-out;
}

.navbar.fixed .call_btn .right .txt {
  font-size: 9px;
}

.navbar .call_btn .right span {
  display: block;
  font-size: 14px;
  transition: 200ms ease-in-out;
}

.navbar.fixed .call_btn .right span {
  font-size: 12px;
}

.navbar .navbar-collapse {
  display: block;
  position: absolute;
  right: -25%;
  top: 0px;
  width: 100%;
  max-width: 25%;
  height: 100vh;
  background: rgb(255, 255, 255);
  padding: 50px;
  z-index: 9999;
  transition: 400ms ease-in-out;
}

.navbar .navbar-collapse.show {
  right: 0px;
}

.navbar .navbar-collapse .top {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 30px;
  margin-bottom: 25px;
}

.navbar .navbar-collapse .logo {
  max-width: 102px;
}

.navbar .navbar-collapse .close {
  margin-left: auto;
  font-size: 40px;
  font-weight: normal;
  cursor: pointer;
}

.navbar .navbar-collapse .navbar-nav {
  overflow: auto;
  height: calc(100% - 120px);
}

.navbar .navbar-collapse .nav-item {
  margin: 10px 0px;
}

.navbar .navbar-collapse .nav-link {
  padding: 20px 15px;
  color: rgb(51, 51, 51);
  font-weight: 500;
  font-size: 18px;
  position: relative;
}

.navbar .navbar-collapse .nav-link::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.05), transparent);
  left: 0px;
  top: 0px;
  z-index: -1;
}

.navbar .navbar-collapse .nav-link::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 70%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), transparent);
  right: 0px;
  top: 0px;
  z-index: -1;
  opacity: 0;
  transition: 200ms ease-in-out;
}

.navbar .navbar-collapse .nav-link:hover::after {
  width: 100%;
  opacity: 1;
}

.banner_section .form.hidebannerform {
  bottom: -457px !important;
}

.title {
  cursor: pointer;
}

.banner_section .left_col {
  color: rgb(255, 255, 255);
}

.banner_section .left_col .contents {
  position: relative;
}

.banner_section .carousel-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

#bannerCarousel .carousel-inner {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#bannerCarousel .carousel-inner::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.28),
      rgba(0, 0, 0, 0),
      rgba(65, 81, 90, 0)
    )
    transparent;
  z-index: 9;
}

#bannerCarousel .carousel-inner .carousel-item {
  height: 100%;
}

.banner_section .banner_main_contents {
  position: relative;
}

.banner_section .banner-contents {
  min-height: 100vh;
  display: flex;
  align-items: end;
  padding: 80px 0px;
}

.banner_section .project_logo {
  max-width: 200px;
}

.banner_section .location {
  margin: 0px;
  text-transform: uppercase;
  position: absolute;
  left: -70px;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 8px;
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  display: flex;
  align-items: center;
}

.banner_section .location p {
  margin: 0px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 500;
}

.banner_section .location img {
  transform: rotate(90deg);
  max-width: 16px;
  margin-bottom: 7px;
}

.banner_section .tagline {
  margin: 0px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1.5px;
}

.banner_section .head_line {
  max-width: fit-content;
  position: relative;
}

.banner_section .bannerHeading {
  font-size: 45px;
  margin: 14px 0px 5px;
  font-weight: 600;
  color: rgb(255, 255, 255);
}

.banner_section .typo {
  margin: 0px 0px 0px 50px;
  padding: 14px 30px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  font-weight: 800;
  position: relative;
  color: rgb(47, 47, 47);
  max-width: fit-content;
  z-index: 1;
}

.banner_section .typo::after {
  position: absolute;
  content: "";
  background: linear-gradient(45deg, rgb(191, 149, 63), rgb(252, 246, 186));
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  clip-path: polygon(15px 0px, 100% 0px, calc(100% - 15px) 100%, 0px 100%);
}

.banner_section .readyToMove {
  color: rgb(255, 255, 255);
  max-width: fit-content;
  margin: 30px 0px 0px;
  padding: 0px;
  position: relative;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 17px;
}

.banner_section .typo::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 10px;
  background: linear-gradient(45deg, rgb(191, 149, 63), rgb(252, 246, 186));
  right: calc(100% + 10px);
  top: 0px;
  transform: skewX(-17deg);
}

.banner_section .price {
  max-width: max-content;
  margin-top: 50px;
  margin-bottom: 50px;
}

.banner_section .price small,
.banner_section .price span {
  display: block;
}

.banner_section .rupee_symbol span {
  display: inline-block;
  line-height: 32px;
  font-size: 36px;
}

.banner_section .price .amount {
  color: var(--yellow);
  font-weight: 800;
  margin-left: 10px;
  font-size: 50px;
}

.banner_section .rupee_type {
  color: rgb(255, 255, 255);
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.banner_section .rupee_type span {
  display: inline-block;
  line-height: 20px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.banner_section .rupee_type::before {
  position: absolute;
  content: "";
  height: 8px;
  width: calc(100% - 90px);
  left: 0px;
  bottom: 0px;
  background: rgb(255, 255, 255);
}

.banner_section .st_price {
  margin: 30px 0px;
  align-items: center;
  position: relative;
  line-height: initial;
  width: max-content;
  padding: 20px 90px;
  background-image: linear-gradient(
    to right,
    rgb(196, 158, 74),
    rgba(196, 158, 74, 0.52),
    rgba(0, 0, 0, 0)
  );
}

.banner_section .price_line {
  color: rgb(255, 255, 255);
  display: block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  position: relative;
}

.banner_section .st_price .price_line::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 50px;
  background: var(--yellow);
  right: -50px;
  bottom: 10px;
}

.banner_section .st_price .amount {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 45px;
  margin-top: 8px;
  display: block;
  position: relative;
}

.banner_section .st_price .amount span {
  color: rgb(255, 255, 255);
  font-weight: 700;
}

.banner_section .st_price .amount .star {
  font-size: 28px;
  font-weight: 500;
  position: absolute;
  width: 161px;
  top: 9px;
  margin-left: 10px;
  bottom: 0px;
}

.banner_section .rupee_symbol {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 88px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.banner_section .rupee_symbol {
  transform: translateY(-50%);
  animation: 2s ease 0s infinite normal none running flip;
  backface-visibility: visible !important;
}

@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0deg) translateY(-50%);
    animation-timing-function: ease-out;
  }

  100% {
    transform: perspective(400px) rotateY(360deg) translateY(-50%);
    animation-timing-function: ease-in;
  }
}

.banner_section .status {
  max-width: fit-content;
  margin: 40px 0px 0px;
}

.banner_section .status span {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 18px;
  letter-spacing: 1px;
  max-width: fit-content;
}

.banner_section .status span:nth-child(1) {
  font-weight: 400;
  letter-spacing: 2px;
  background-color: rgb(18, 18, 18);
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 14px;
}

.banner_section .status span:nth-child(2) {
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 44px;
  background-color: rgb(232, 196, 152);
  padding: 3px 30px;
  color: rgb(47, 47, 47);
}

.banner_section .status span:nth-child(3) {
  font-weight: 300;
  font-size: 16px;
  background-color: rgb(51, 51, 51);
  padding: 4px 20px;
}

.patch-img-section {
  position: absolute;
  bottom: 36%;
  left: 57%;
  z-index: 99;
}

.patch-img-section img {
  width: 200px;
}

.banner_section .btns_row {
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.banner_section .btns_row .btn {
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 500;
}

.banner_section .btns_row .call_btn {
  padding: 10px 30px 10px 15px;
  position: relative;
}

.banner_section .btns_row .call_btn .right {
  display: inline-block;
  text-align: left;
  font-size: 20px;
}

.banner_section .btns_row .call_btn .right .txt {
  font-weight: 100;
  text-transform: uppercase;
  font-size: 12px;
}

.banner_section .btns_row .call_btn .right span {
  display: block;
}

.banner_section .btns_row .icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.banner_section .btns_row .icon img {
  max-width: 16px;
  z-index: 1;
}

.banner_section .btns_row .brochure_btn {
  padding: 0px;
  margin-left: 30px;
  font-weight: 100;
  color: rgb(255, 255, 255);
}

.banner_section .btns_row .brochure_btn .icon {
  background: var(--yellow);
  height: 46px;
  width: 46px;
}

.banner_section .btns_row .brochure_btn img {
  display: block;
}

.banner_section .btns_row .brochure_btn .wh_c {
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.banner_section .btns_row .brochure_btn .wh_c .down_top {
  margin: 0px;
  max-width: 9px;
  transition: 100ms ease-in-out;
  animation: 1400ms ease-out 0s infinite normal none running downl;
}

@keyframes downl {
  0% {
    transform: translateY(-15px);
    opacity: 1;
  }

  99% {
    transform: translateY(20px);
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(0px);
  }
}

.banner_section .brochure_btn .wh_c .down_bottom {
  max-width: 18px;
}

.banner_section .right_col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: unset;
}

.banner_offers {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.51);
  max-width: 462px;
}

.banner_offers li {
  padding: 14px 20px;
  line-height: 18px;
  font-size: 14px;
  letter-spacing: 0.5px;
  max-width: 50%;
  flex: 0 0 50%;
  border: 0.5px solid rgba(255, 255, 255, 0.65);
}

.banner_offers li .cont {
  display: inline-flex;
  align-items: center;
}

.banner_offers .left {
  margin-right: 10px;
}

.banner_offers .left b {
  display: block;
  font-size: 14px;
  line-height: 28px;
  color: rgb(255, 176, 123);
}

.banner_offers .right {
  line-height: 16px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgb(193, 152, 67);
}

.banner_offers .right small {
  display: block;
  text-transform: capitalize;
  letter-spacing: 1.5px;
  font-weight: 300;
}

.banner_section .banner_offers .active::before {
  background: rgb(212, 209, 14);
  padding-right: 40px;
  color: rgb(51, 51, 51);
}

.banner_section .form {
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
  color: rgb(255, 255, 255);
  position: fixed;
  z-index: 999;
  right: 0px;
  bottom: 0px;
  width: 100%;
  max-width: 420px;
  align-items: center;
  transition: 300ms ease-in-out;
}

.banner_section .form .title {
  color: rgb(0, 0, 0);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(45deg, rgb(191, 149, 63), rgb(252, 246, 186)) 0%
    0% / 400% 400%;
  animation: 3s ease 0s infinite normal none running AnimationName;
  padding: 10px;
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.banner_section .form .title span {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
  font-weight: 100;
}

.banner_section .form-group {
  position: relative;
  margin-bottom: 22px;
}

.banner_section .enquire_btn {
  height: calc(73px);
  width: calc(73px);
  background: rgb(82, 121, 111);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  border: 4px solid rgba(255, 255, 255, 0.05);
}

.banner_section .enquire_btn img {
  filter: invert(1);
  max-width: 25px;
}

.banner_section .form label {
  font-size: 13px;
  margin-bottom: 5px;
  color: rgb(255, 255, 255);
  letter-spacing: 1.5px;
}

.banner_section .form .form-control {
  background: rgb(0, 0, 0);
  height: 46px;
  padding: 0px 15px;
  color: white;
  letter-spacing: 1px;
  position: relative;
  font-size: 15px;
  border: 1px solid rgb(206, 212, 218);
  font-weight: 500;
}

.banner_section .form .form-control::placeholder {
  font-size: 14px;
  color: rgb(255, 255, 255);
}

.banner_section .form .outline {
  position: absolute;
  content: "";
  background: rgb(212, 209, 14);
  bottom: 0px;
  width: 0px;
  height: 2px;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  transition: 500ms ease-in-out;
}

.banner_section .form-group.active .outline {
  width: 100%;
}

.banner_section .carousel-indicators {
  right: unset;
  margin: 0px;
  bottom: 30px;
  left: 40%;
  transform: translateX(-50%);
}

.banner_section .carousel-indicators li {
  height: 25px;
  width: 25px;
  text-indent: 0px;
  border: none;
  opacity: 1;
  background: transparent;
  position: relative;
}

.banner_section .carousel-indicators li .round {
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  opacity: 0.3;
  border-radius: 50%;
  font-size: 10px;
  transition: 0.3s ease-in-out;
}

.banner_section .carousel-indicators li.active .round {
  opacity: 1;
  background: var(--yellow);
  color: rgb(51, 51, 51);
  font-weight: 700;
  border-color: var(--yellow);
}

.banner_section .submit_btn {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border-radius: 0px;
  margin-top: 25px;
  color: rgb(51, 51, 51);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
}

.banner_section .carousel-indicators li:not(:last-child) {
  margin-right: 80px;
}

.banner_section .carousel-indicators li:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  background: rgb(255, 255, 255);
  left: 36px;
  opacity: 0.2;
  top: 50%;
  transform: translateY(-50%);
}

.banner_section .submit_btn img {
  max-width: 16px;
  margin-left: 6px;
}

.banner_section .carousel-control-prev,
.banner_section .carousel-control-next {
  position: relative;
}

.banner_section .scroll_text {
  position: absolute;
  left: 100px;
  bottom: 100px;
}

.banner_section .scroll_text p {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  margin: 0px;
  font-size: 12px;
  letter-spacing: 2.5px;
}

.banner_section .scroll_text a {
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  flex-direction: column;
}

.banner_section .scroll_text .arrow_icon {
  filter: invert(1);
  max-width: 18px;
  margin-top: 20px;
  animation: 3s ease-out 0s infinite normal none running arrowDown;
}

@keyframes arrowDown {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(30px);
  }
}

.overview_section {
  background: rgb(0, 0, 0);
  position: relative;
}

.overview_section::before {
  position: absolute;
  content: "";
  background-size: cover;
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.4;
}

.checkbox-section {
  display: flex;
  padding: 10px 0px;
  align-items: baseline;
}

.checkbox-section p {
  line-height: unset;
  margin: 0px;
  padding-left: 10px;
  font-size: 11px !important;
}

.overview_section p {
  text-align: justify;
}

.overview_section .left_col {
  flex: 0 0 60%;
  max-width: 60%;
}

.overview_section .left_col .contents {
  padding: 80px 0px;
}

.overview_section .right_col {
  position: relative;
  flex: 0 0 40%;
  max-width: 40%;
}

.overview_section .right_col img {
  position: absolute;
  right: 0px;
  top: 0px;
  height: calc(100% - 100px);
  width: 100%;
  object-fit: cover;
}

.overview_section .right_col .image_col {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.overview_section .right_col .image_col::before {
  position: absolute;
  content: "";
  width: 100%;
  background: rgb(0, 0, 0);
  height: 100%;
  top: calc(100% - 80px);
  left: 0px;
}

.overview_section .download_btn {
  margin-top: 30px;
  border-radius: 0px;
  height: 54px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.price_section {
  position: relative;
  padding: 100px 0px;
  background: url("../images/banners/banner2.webp") center center / cover
    no-repeat fixed;
}

.price_section::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.price_section .container {
  position: relative;
  z-index: 9;
}

.price_section .price_row {
  max-width: 90%;
  margin: auto;
  justify-content: center;
}

.price_section .price_col {
  padding: 0px 30px;
  margin-bottom: 35px;
}

.price_section .ov_headings {
  margin-bottom: 80px;
  text-align: center;
  width: 100%;
}

.price_section .ov_headings .sec_title {
  color: var(--yellow);
}

.price_section .ov_headings .section_heading {
  color: rgb(255, 255, 255);
  font-weight: 600;
}

.price_section .price_img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 35%;
  height: 100%;
  object-fit: cover;
}

.price_section .single_price {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 25px;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  margin: auto;
}

.price_section .single_price p {
  margin-bottom: 0px;
}

.price_section .single_price .typology {
  background: linear-gradient(45deg, rgb(191, 149, 63), rgb(252, 246, 186));
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(51, 51, 51);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 20px;
  line-height: 22px;
  letter-spacing: 1px;
  max-width: calc(100% - 30px);
  margin: auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.price_section .price_c {
  background: rgb(0, 0, 0);
  max-width: calc(100% - 30px);
  margin: auto;
  padding: 25px 10px 35px;
}

.price_section .price {
  color: rgb(248, 239, 177);
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  margin: auto;
}

.price_section .price sup {
  font-weight: 400;
}

.price_section .onw {
  font-size: 14px;
  color: rgb(121, 121, 121);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.price_section .title {
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price_section .type {
  margin-top: 20px;
}

.price_section .sizes p,
.price_section .type p {
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-top: 2px;
  color: rgb(0, 0, 0);
}

.price_section .call_btn {
  padding: 6px 24px;
  font-size: 14px;
  margin-top: 24px;
  min-height: 42px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 7px;
}

.price_section .single_price .content {
  position: relative;
  z-index: 1;
  padding: 40px 10px 20px;
  max-width: calc(100% - 30px);
  margin: auto;
  background: rgb(0, 0, 0);
}

.price_section .single_price .content::before {
  position: absolute;
  content: "";
  height: calc(100% + 50px);
  width: calc(100% + 30px);
  background: linear-gradient(45deg, rgb(191, 149, 63), rgb(252, 246, 186))
    rgb(253, 253, 253);
  left: -15px;
  top: 0px;
  z-index: -1;
  transform: skewY(-10deg);
  border-radius: 20px;
}

.price_section .single_price .content::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: rgb(0, 0, 0);
  top: -10px;
  left: 0px;
  z-index: -2;
  transform: skewY(-10deg);
}

.price_section .dark_btn {
  background: transparent;
  color: rgb(0, 0, 0);
  border: 1px solid rgb(0, 0, 0);
}

.price_section .dark_btn:hover {
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  border: 1px solid rgb(0, 0, 0);
}

.highlight_section {
  padding: 100px 0px;
  background: rgb(0, 0, 0);
  overflow: hidden;
}

.highlight_section .section_heading {
  position: absolute;
  writing-mode: tb-rl;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0px;
  background: linear-gradient(45deg, rgb(191, 149, 63), rgb(252, 246, 186));
  padding: 35px 18px;
  height: calc(100% + 60px);
  text-align: center;
  letter-spacing: 4px;
  font-weight: 700;
}

.highlight_section .left_col ul,
.highlight_section .right_col ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlight_section ul li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 15px;
  display: block;
  left: -10px;
  top: 0px;
  background: rgb(196, 157, 74);
  clip-path: polygon(0px 0px, 100% 0px, 100% 100%);
  z-index: 0;
}

.highlight_section .left_col li {
  border-top-left-radius: 0px;
}

.highlight_section .right_col li {
  border-top-right-radius: 0px;
  text-align: left;
}

.highlight_section .right_col li::before {
  left: unset;
  right: -10px;
  clip-path: polygon(0px 0px, 100% 0px, 0px 100%);
}

.highlight_section .center_col {
  display: flex;
  align-items: center;
}

.highlight_section .center_col .image {
  position: relative;
}

.highlight_section .center_col img {
  object-fit: cover;
  border-radius: 100%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 100px;
  width: 380px;
  height: 380px;
}

.highlight_section .right_col {
  text-align: right;
}

.highlight_section ul li {
  margin: 10px 0px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.3px;
  background: linear-gradient(45deg, rgb(191, 149, 63), rgb(252, 246, 186));
  padding: 20px 25px;
  border-radius: 10px;
  list-style-type: none;
  position: relative;
}

.highlight_section li .count {
  position: absolute;
  left: -36px;
  top: 6px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgb(191, 149, 63), rgb(252, 246, 186));
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.highlight_section .right_col li .count {
  right: -36px;
  left: unset;
}

.amenity_section {
  position: relative;
  overflow: hidden;
}

.amenity_section::before {
  position: absolute;
  content: "";
  height: 190px;
  width: 90%;
  background: rgb(0, 0, 0);
}

.amenity_section .left_col {
  position: unset;
  max-width: 40%;
  flex: 0 0 40%;
}

.amenity_section .left_col img {
  position: absolute;
  content: "";
  height: 100%;
  left: 0px;
  width: 40%;
  top: 0px;
  object-fit: cover;
}

.amenity_section .right_col {
  position: unset;
  max-width: 60%;
  flex: 0 0 60%;
}

.amenity_section .contents {
  padding: 70px 0px 40px;
}

.amenity_section .contents ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}

.amenity_section .contents li {
  max-width: 33.33%;
  flex: 0 0 33.33%;
  text-align: center;
  margin-bottom: 30px;
}

.amenity_section .contents h4 {
  font-size: 15px;
  margin-top: 15px;
  margin-bottom: 0px;
  color: rgb(255, 255, 255);
  font-weight: 600;
}

.amenity_section .ov_headings {
  margin: 50px 0px;
}

.amenity_section .icon {
  display: inline-block;
}

.amenity_section .icon img {
  max-width: 50px;
  filter: invert(1);
}

.amenity_section .amenity_swiper {
  overflow: visible;
  max-width: 80%;
}

.amenity_section .swiper-slide {
  position: relative;
}

.amenity_section .swiper-slide::after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background: rgb(0, 0, 0);
  opacity: 0.65;
  z-index: 9;
  transition: 300ms ease-in-out;
}

.amenity_section .swiper-slide-active::after {
  opacity: 0;
}

.amenity_section .single {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
  border: 3px solid rgb(232, 196, 152);
  padding: 20px;
}

.amenity_section .single .title {
  position: absolute;
  margin: 15px 0px 0px;
  font-size: 28px;
  letter-spacing: 2px;
  font-weight: 600;
  bottom: 50px;
  left: 50px;
  z-index: 1;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}

.amenity_swiper .swiper-button-next,
.amenity_swiper .swiper-button-prev {
  position: relative;
  top: unset;
  right: unset;
  left: unset;
  height: 45px;
  width: 45px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin: 0px 10px;
}

.amenity_swiper .swiper-button-next::after,
.amenity_swiper .swiper-button-prev::after {
  display: none;
}

.amenity_swiper .swiper_btns {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity_swiper .swiper_btns .icon {
  max-width: 16px;
}

.floor_plans_section {
  position: relative;
  padding: 80px 0px;
  background: url("../images/floor-plan-bg.png") center bottom / cover no-repeat
    rgb(0, 0, 0);
}

.floor_plans_section .ov_headings {
  margin-bottom: 80px;
}

.floor_plans_section::before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 30%;
  background: linear-gradient(45deg, rgb(191, 149, 63), rgb(252, 246, 186));
}

.floor_plans_section .contents_row {
  display: flex;
  flex-wrap: wrap;
}

.floor_plans_section .side_nav {
  max-width: 20%;
  flex: 0 0 20%;
}

.floor_plans_section .right_images {
  max-width: 80%;
  flex: 0 0 80%;
}

.floor_plans_section .single {
  position: relative;
  padding: 10px;
  background: rgb(255, 255, 255);
}

.floor_plans_section .single img {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.floor_plans_section .single .title {
  position: absolute;
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  margin: 0px;
  padding: 6px 20px;
  font-size: 18px;
  text-transform: uppercase;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  font-weight: 600;
}

.e_brochure_section {
  padding: 80px 0px;
  overflow: hidden;
}

.e_brochure_section .download_btn {
  margin-top: 20px;
}

.e_brochure_section .right_col {
  display: flex;
  align-items: center;
}

.location_section {
  padding: 80px 0px;
  position: relative;
  background: rgb(0, 0, 0);
  overflow: hidden;
}

.location_section::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 30%;
  top: 0px;
  right: 0px;
  background: var(--light-black);
}

.location_section .ov_headings {
  border-color: rgb(47, 47, 47);
}

.location_section .location_image {
  height: 100%;
  border: 5px solid rgba(255, 255, 255, 0.25);
}

.location_section .location_image img {
  height: 100%;
  object-fit: cover;
}

.location_image .download_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.location_section .points {
  padding-left: 15px;
}

.location_section .points li {
  list-style-type: circle;
  margin-bottom: 12px;
  color: rgb(255, 255, 255);
}

.gallery_section {
  padding: 80px 0px;
  overflow: hidden;
}

.gallery_section .ov_headings {
  margin-bottom: 60px;
}

.gallery_section .inner_gallery_section {
  column-gap: 15px;
  column-fill: balance;
  column-count: 4;
}

.inner_gallery_section .single {
  margin: 0px 0px 15px;
  break-inside: avoid;
  width: 100%;
  border: 3px solid rgba(0, 0, 0, 0.4);
}

.inner_gallery_section .single a {
  position: relative;
  display: flex;
}

.inner_gallery_section .single a::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 300ms ease-in-out;
}

.inner_gallery_section .single a:hover::before {
  opacity: 1;
}

.about_builder {
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.about_builder .right_col,
.about_builder .left_col {
  padding: 0px !important;
}

.about_builder .right_col .contents {
  background: rgb(0, 0, 0);
  padding: 30px !important;
}

.about_builder::before {
  position: absolute;
  content: "";
  background: url("../images/floor-plan-bg.png") center bottom / cover no-repeat
    rgb(0, 0, 0);
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.6;
}

.about_builder .left_col .image_col {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.about_builder .left_col .image_col img {
  position: absolute;
  right: 0px;
  top: 0px;
  height: calc(100% - 100px);
  width: 100%;
  object-fit: cover;
}

.about_builder .left_col .image_col::before {
  position: absolute;
  content: "";
  width: 100%;
  background: rgb(213, 213, 213);
  height: 100%;
  top: calc(100% - 80px);
  left: 0px;
}

.about_builder .right_col .contents {
  padding: 80px 0px;
}

.form_section {
  background: rgb(245, 245, 245);
  padding: 60px 0px;
}

.form_section .form-group {
  color: rgb(255, 255, 255);
}

.form_section label {
  letter-spacing: 0.5px;
  font-size: 15px;
}

.form_section .form-group {
  margin-bottom: 30px;
}

.form_section .form-control {
  height: 52px;
}

.form_section .btn_yellow {
  margin: auto;
  background: linear-gradient(rgb(232, 196, 152), rgb(232, 196, 152));
  color: rgb(255, 255, 255);
}

footer {
  background: linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0));
  color: rgb(255, 255, 255);
  padding: 20px 0px;
  text-align: center;
}

footer p {
  margin-bottom: 0px;
  line-height: 24px;
  font-size: 12px;
  color: rgb(221, 221, 221);
}

footer a {
  color: rgb(255, 255, 255) !important;
}

.navbarBackdrop {
  position: fixed;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  animation: 300ms ease 0s 1 normal none running fades;
}

@keyframes fades {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

.modal .modal-content {
  border-radius: 0px;
  background: rgb(0, 0, 0);
}

.modal .modal-body {
  padding: 45px;
  position: relative;
}

.modal .modal-body .close {
  position: absolute;
  content: "";
  right: 0px;
  top: 0px;
  height: 45px;
  width: 45px;
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  text-shadow: none;
  opacity: 0.8;
}

.modal .projectName {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: rgb(255, 255, 255);
}

.modal .projectName img {
  max-width: 160px;
}

.modal .location {
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: rgb(255, 255, 255);
}

.modal .form_price {
  margin: 20px auto 25px;
  text-align: center;
  width: max-content;
  background: linear-gradient(45deg, rgb(191, 149, 63), rgb(252, 246, 186));
  color: rgb(0, 0, 0);
  padding: 12px 30px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.modal .form_price span {
  font-size: 12px;
}

.modal .form-group {
  margin-bottom: 14px;
}

.modal label {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 500;
}

.modal .form-control::placeholder {
  font-size: 14px;
}

.modal .submit_btn {
  border-radius: 0px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 12px;
  width: 130px;
  font-size: 14px;
  min-height: 44px;
  display: table;
  margin: 20px auto 0px;
}

.mobile-section {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  display: flex;
  background: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.07) 0px -1px 15px;
  z-index: 9999;
}

.mobile-section .btn {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 500;
  max-width: 33.33%;
  flex: 0 0 33.33%;
  padding: 0px;
  min-height: auto;
}

.mobile-section .btn .icon_bg {
  height: 40px;
  width: 40px;
  margin: -10px auto 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.07) 0px -1px 15px;
}

.mobile-section .btn .icon_bg.enquiry {
  background: rgb(0, 123, 255);
}

.mobile-section .btn .icon_bg.phone {
  background: rgb(25, 168, 89);
}

.mobile-section .btn .icon_bg.whatsapp {
  background: rgb(18, 140, 126);
}

.mobile-section .btn .icon_bg img {
  filter: invert(1);
}

.mobile-section .icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  margin: auto;
}

.single .download_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  padding: 6px 12px;
  opacity: 0.8;
}

.destop-show {
  display: block;
  padding: 15px;
  width: 100%;
}

.mobile-show {
  display: none;
  padding: 15px;
  width: 100%;
}

.blink-hard {
  animation: 1s step-end 0s infinite normal none running blinker;
  cursor: pointer;
}

.right.blink-hard {
  font-size: 16px;
}

@keyframes blinker {
  50% {
    color: rgb(255, 176, 123);
    font-size: 16px;
  }
}

.contents p {
  color: rgb(255, 255, 255);
}

.iti * {
  box-sizing: border-box;
  color: rgb(255, 255, 255);
}

.banner_main_contents .banner_logo{
    max-width: 180px;
}

@media (min-width: 1700px) {
  .container {
    max-width: 1680px;
  }

  .navbar {
    padding: 0px 112px;
  }
}

@media (max-width: 1500px) {
  .navbar {
    height: 70px;
  }

  .navbar .navbar-brand img {
    max-width: 150px;
    margin-top: 10px;
  }

  .navbar .navbar-toggler {
    height: 70px;
    width: 70px;
  }

  .navbar .navbar-toggler img {
    max-width: 24px;
  }

  .navbar .call_btn {
    padding: 4px 15px 4px 8px;
  }

  .navbar .call_btn .right span {
    font-size: 13px;
  }

  .navbar .call_btn .icon {
    height: 26px;
    width: 26px;
    margin-right: 6px;
  }

  .navbar .call_btn .icon img {
    max-width: 10px;
  }

  .navbar .navbar-collapse {
    max-width: 30%;
    right: -30%;
  }

  .banner_section .bannerHeading {
    font-size: 42px;
    margin: 5px 0px 15px;
  }

  .banner_section .price {
    margin: 20px 0px 35px;
  }

  .banner_section .price .st_price {
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    margin: 10px 0px 6px;
  }

  .banner_section .price .amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 44px;
  }

  .banner_section .price .rupee_symbol::before,
  .banner_section .price .rupee_type::before {
    height: 4px;
  }

  .banner_offers {
    margin-top: 20px;
  }

  .banner_section .form {
    padding: 15px;
    max-width: 350px;
  }

  .banner_section .form.hidebannerform {
    bottom: -404px !important;
  }

  .banner_section .form .title {
    font-size: 19px;
    margin-bottom: 5px;
  }

  .banner_section .form .title span {
    font-size: 12px;
  }

  .banner_section .form label {
    letter-spacing: 1px;
  }

  .banner_section .form .form-control {
    height: 35px;
  }

  .banner_section .form .form-control::placeholder {
    font-size: 12px;
    font-weight: 400;
  }

  .banner_section .submit_btn {
    font-size: 13px;
    height: 46px;
  }

  .banner_section .status span:nth-child(1) {
    letter-spacing: 1px;
    font-size: 12px;
  }

  .banner_section .status span:nth-child(2) {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 34px;
    padding: 3px 20px;
  }

  .banner_offers li {
    padding: 10px 15px;
  }

  .banner_offers .left b {
    font-size: 12px;
    line-height: 22px;
  }

  .banner_section .price .rupee_type span {
    font-size: 18px;
    font-weight: 600;
    line-height: 13px;
  }

  .banner_section .price .rupee_symbol span {
    line-height: 20px;
    font-size: 26px;
  }

  .banner_section .price .rupee_symbol::before {
    width: calc(100% - 30px);
  }

  .banner_section .status {
    margin-top: 0px;
  }

  .banner_section .scroll_text {
    left: 50px;
    bottom: 50px;
  }

  .banner_section .carousel-indicators {
    bottom: 15px;
  }

  .banner_section .carousel-indicators li {
    height: auto;
    width: auto;
  }

  .banner_section .carousel-indicators li .round {
    height: 20px;
    width: 20px;
  }

  .banner_section .carousel-indicators li:not(:last-child) {
    margin-right: 60px;
  }

  .banner_section .carousel-indicators li:not(:last-child)::before {
    width: 40px;
    left: 32px;
  }

  .banner_section .banner-contents {
    padding: 80px 0px 50px;
  }

  .banner_section .head_line {
    min-width: 500px;
  }

  .banner_section .typo {
    padding: 12px 30px;
  }

  .banner_section .st_price {
    margin: 35px 0px;
    padding: 15px 75px;
  }

  .banner_section .rupee_symbol {
    font-size: 58px;
  }

  .banner_section .price_line {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .banner_section .st_price .amount {
    font-size: 26px;
    margin-top: 12px;
    line-height: 28px;
  }

  .banner_section .st_price .amount span {
    font-size: 36px;
  }

  .banner_section .st_price .price_line::before {
    width: 60px;
  }

  .section_heading span {
    margin-top: 10px;
  }

  .price_section .single_price .typology {
    font-size: 14px;
    line-height: 20px;
  }

  .floor_plans_section .single .title {
    font-size: 16px;
  }

  footer {
    padding: 15px 0px;
  }

  footer p {
    line-height: 20px;
    font-size: 11px;
  }

  .highlight_section .center_col img {
    width: 330px;
    height: 330px;
  }

  .modal .modal-body {
    padding: 35px;
  }

  .modal .projectName {
    font-size: 25px;
    margin-bottom: 5px;
  }

  .modal .form_price {
    font-size: 16px;
    margin: 15px auto 20px;
  }

  .modal label {
    font-size: 14px;
  }

  .modal .form-group {
    margin-bottom: 10px;
  }
}

@media (max-width: 1400px) {
  .sec_title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .section_heading {
    font-size: 28px;
    line-height: 40px;
  }

  .ov_headings {
    margin-bottom: 30px;
  }

  .navbar .navbar-collapse {
    padding: 40px;
  }

  .navbar .navbar-collapse .logo {
    max-width: 95px;
  }

  .navbar .navbar-collapse .top {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .navbar .navbar-collapse .nav-link {
    padding: 15px;
    font-size: 16px;
  }

  .navbar .navbar-collapse .navbar-nav {
    height: calc(100% - 90px);
  }

  .navbar .navbar-collapse .nav-item {
    margin: 8px 0px;
  }

  .banner_section .tagline {
    font-size: 15px;
    letter-spacing: 1px;
  }

  .banner_section .bannerHeading {
    font-size: 32px;
    margin: 5px 0px 15px;
  }

  .banner_section .head_line {
    min-width: 400px;
  }

  .banner_section .typo {
    font-size: 14px;
    padding: 10px 30px;
  }

  .banner_section .typo::before {
    right: calc(100% + 2px);
    width: 8px;
  }

  .banner_section .price .st_price {
    font-size: 26px;
    margin: 6px 0px 7px;
  }

  .banner_section .price .amount {
    font-size: 38px;
    line-height: 34px;
  }

  .banner_section .price .rupee_type span {
    font-size: 16px;
  }

  .banner_section .price .rupee_type::before {
    width: calc(100% - 80px);
  }

  .banner_section .price {
    margin: 20px 0px 30px;
  }

  .banner_offers {
    margin-top: 15px;
  }

  .banner_offers li {
    padding: 6px 15px;
  }

  .banner_offers .left b {
    font-size: 14px;
  }

  .banner_section .location {
    top: 10px;
    letter-spacing: 1px;
  }

  .banner_section .form-group {
    margin-bottom: 18px;
  }

  .section_heading span {
    font-size: 18px;
    line-height: 24px;
  }

  .banner_section .st_price {
    margin: 25px 0px;
  }

  .banner_section .st_price .amount {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-top: 8px;
  }

  .banner_section .st_price .amount span {
    font-size: 36px;
  }

  .banner_section .st_price .price_line::before {
    width: 40px;
  }

  .banner_section .location p {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .banner_section .location img {
    max-width: 12px;
  }

  .overview_section .left_col .contents,
  .price_section,
  .highlight_section,
  .floor_plans_section,
  .location_section,
  .gallery_section,
  .about_builder .right_col .contents,
  .e_brochure_section {
    padding: 60px 0px;
  }

  .overview_section .download_btn {
    margin-top: 20px;
  }

  .overview_section p {
    font-size: 15px;
  }

  .price_section .ov_headings,
  .floor_plans_section .ov_headings {
    margin-bottom: 60px;
  }

  .price_section .single_price .typology {
    padding: 0px 20px;
    line-height: 18px;
    min-height: 50px;
  }

  .price_section .price {
    font-size: 28px;
    line-height: 30px;
  }

  .price_section .single_price .content {
    padding: 30px 10px 20px;
  }

  .price_section .sizes p,
  .price_section .type p {
    font-size: 16px;
  }

  .amenity_section .single .title {
    font-size: 22px;
  }

  .about_builder .contents p {
    text-align: justify;
    font-size: 15px;
  }

  .amenity_section::before {
    height: 175px;
  }

  .amenity_section .contents {
    padding: 60px 0px 30px;
  }

  .banner_location {
    font-size: 12px;
  }

  .banner_section .form.hidebannerform {
    bottom: -392px !important;
  }
}

@media (max-width: 767px) {
  .banner_section .form.hidebannerform {
    bottom: 0px !important;
    z-index: unset;
  }

  .patch-img-section {
    position: absolute;
    left: 67%;
    z-index: 99;
    top: -9%;
  }

  .patch-img-section img {
    width: 99px;
  }

  .mt_sm_50 {
    margin-top: 50px;
  }

  .mb_sm_50 {
    margin-bottom: 50px;
  }

  .mx_sm_-5 {
    margin-left: -5px !important;
    margin-right: -5px !important;
  }

  .mx_sm_-15 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }

  .px_sm_15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .px_sm_5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .mb_sm_30 {
    margin-bottom: 30px;
  }

  .sec_title {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .section_heading span {
    font-size: 16px;
  }

  .ov_headings.sm_center {
    text-align: center;
    padding-left: 0px;
    padding-bottom: 15px;
  }

  .ov_headings.center {
    padding-bottom: 15px;
    margin-bottom: 30px;
  }

  .ov_headings.center::before {
    width: 20%;
    height: 2px;
  }

  .ov_headings.sm_center::before {
    width: 20%;
    height: 2px;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
  }

  .price_section .ov_headings,
  .floor_plans_section .ov_headings {
    margin-bottom: 40px;
  }

  .w_sm_auto {
    width: auto !important;
  }

  .d_sm_block {
    display: block !important;
  }

  .d_sm_flex {
    padding: 15px;
    background: linear-gradient(45deg, rgb(191, 149, 63), rgb(252, 246, 186));
    display: flex !important;
  }

  .d_sm_none {
    display: none !important;
  }

  .section_heading {
    font-size: 20px;
    line-height: 30px;
  }

  .overview_section p {
    font-size: 14px;
  }

  .destop-show {
    display: none;
    padding: 15px;
    width: 100%;
  }

  .mobile-show {
    display: block;
    padding: 15px;
    width: 100%;
  }

  .navbar {
    position: fixed;
    top: 0px;
    height: 70px;
    background: rgb(0, 0, 0);
    padding: 0px 15px !important;
  }

  .navbar.fixed {
    position: fixed;
  }

  .navbar .call_btn {
    margin-right: 70px;
  }

  .navbar .navbar-brand img {
    max-width: 100px;
    margin-top: 0px !important;
  }

  .navbar .navbar-toggler {
    height: 60px;
    width: 60px;
  }

  .navbar .navbar-toggler img {
    max-width: 20px;
  }

  .navbar .navbar-collapse {
    padding: 25px;
    max-width: 100%;
    right: -100%;
  }

  .navbar .navbar-collapse .logo {
    max-width: 90px;
    width: auto;
  }

  .banner_section {
    margin-top: 60px;
    overflow: hidden;
  }

  .banner_section .tagline {
    letter-spacing: 1px;
  }

  .banner_section .banner-contents {
    min-height: unset;
  }

  .banner_section .form {
    position: relative;
    padding: 20px;
    max-width: 100%;
  }

  #bannerCarousel .carousel-inner {
    position: relative;
    min-height: 180px;
  }

  #bannerCarousel .carousel-inner::before {
    display: none;
  }

  .banner_section .head_line {
    min-width: auto;
    max-width: 100%;
  }

  .banner_section .left_col {
    color: rgb(51, 51, 51);
  }

  .banner_section .bannerHeading {
    color: rgb(255, 255, 255);
    font-size: 30px;
    margin: 0px 0px 10px;
  }

  .banner_section .banner-contents {
    padding: 20px 0px;
  }

  .banner_offers {
    max-width: unset;
    margin-bottom: 15px;
  }

  .banner_offers li {
    max-width: 50%;
    flex: 0 0 50%;
    padding: 6px 10px;
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .banner_offers li .cont {
    color: rgb(255, 255, 255);
    display: block;
  }

  .banner_offers .left {
    display: block;
    margin: 0px;
  }

  .banner_offers .right {
    letter-spacing: 1px;
    text-transform: capitalize;
    font-size: 13px;
  }

  .banner_offers .right small {
    display: inline;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 13px;
  }

  .banner_section .typo::before {
    left: 10px;
    right: unset;
    background: linear-gradient(rgb(232, 196, 152), rgb(232, 196, 152));
  }

  .banner_section .typo::after {
    width: calc(100% - 20px);
    right: 0px;
    left: unset;
    background: linear-gradient(45deg, rgb(191, 149, 63), rgb(252, 246, 186));
  }

  .banner_section .typo {
    padding: 10px 30px 10px 50px;
    font-weight: 600;
    margin: auto;
    color: rgb(0, 0, 0);
  }

  .banner_section .price .price_line {
    color: rgb(51, 51, 51);
  }

  .banner_section .price .st_price {
    font-size: 26px;
    font-weight: 600;
    margin: 4px 0px;
    letter-spacing: 0.5px;
  }

  .banner_section .price .amount {
    font-size: 30px;
    line-height: 28px;
  }

  .banner_section .price .rupee_type {
    color: rgb(51, 51, 51);
  }

  .banner_section .price .rupee_symbol span {
    line-height: 16px;
    font-size: 22px;
  }

  .banner_section .price .rupee_type span {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 700;
  }

  .banner_section .price .rupee_symbol::before,
  .banner_section .price .rupee_type::before {
    height: 3px;
  }

  .banner_section .price .rupee_type::before {
    background: rgb(85, 85, 85);
    width: calc(100% - 60px);
  }

  .banner_section .left_col .contents {
    text-align: center;
  }

  .banner_section .price {
    margin: 20px auto;
  }

  .banner_section .status {
    margin: 20px auto 0px;
    max-width: initial;
  }

  .banner_section .status span {
    margin: auto;
  }

  .banner_section .form .title {
    text-align: center;
    margin-bottom: 10px;
  }

  .banner_section .carousel-indicators {
    bottom: unset;
    top: 220px;
    left: unset;
    right: 0px;
    transform: unset;
  }

  .banner_section .carousel-indicators li .round {
    opacity: 1;
    color: rgb(255, 255, 255);
    background: rgba(51, 51, 51, 0.8);
    border: rgb(51, 51, 51);
  }

  .banner_section .carousel-indicators li:not(:last-child)::before {
    background: rgba(51, 51, 51, 0.7);
    width: 20px;
    opacity: 1;
  }

  .banner_section .carousel-indicators li:not(:last-child) {
    margin-right: 40px;
  }

  .banner_section .st_price {
    background-image: linear-gradient(
      to right,
      rgb(197, 159, 75),
      rgb(197, 159, 75),
      rgba(0, 0, 0, 0)
    );
    width: 100%;
    padding: 10px 65px;
    margin: 15px 0px;
    color: rgb(0, 0, 0);
  }

  .banner_section .rupee_symbol {
    -webkit-text-stroke-color: rgb(255, 255, 255);
    font-size: 50px;
    left: 40px;
  }

  .banner_section .price_line {
    font-size: 14px;
    letter-spacing: 1px;
    color: rgb(255, 255, 255);
  }

  .banner_section .st_price .amount span {
    color: rgb(255, 255, 255);
  }

  .banner_section .st_price .price_line::before {
    display: none;
  }

  .banner_section .st_price .amount .star {
    position: relative;
    right: unset;
    font-size: 20px;
    top: unset;
  }

  .banner_section .btns_row {
    margin-top: 20px;
    display: none !important;
  }

  .banner_section .btns_row .call_btn {
    width: max-content;
    padding: 6px 16px 6px 10px;
    margin: auto;
  }

  .banner_section .btns_row .call_btn .right {
    font-size: 15px;
    letter-spacing: 1px;
  }

  .banner_section .btns_row .icon {
    height: 28px;
    width: 28px;
  }

  .banner_section .btns_row .icon img {
    max-width: 12px;
  }

  .banner_section .btns_row .call_btn .right .txt {
    font-size: 11px;
  }

  .banner_section .st_price .amount {
    margin-top: 5px;
    color: rgb(0, 0, 0);
  }

  .overview_section .left_col .contents,
  .price_section,
  .highlight_section,
  .floor_plans_section,
  .location_section,
  .gallery_section,
  .about_builder .right_col .contents,
  .e_brochure_section {
    padding: 40px 0px;
  }

  .overview_section {
    padding-bottom: 40px;
    overflow: hidden;
  }

  .overview_section .left_col,
  .overview_section .right_col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .overview_section .right_col img {
    position: relative;
    height: auto;
    top: unset;
    right: unset;
    object-fit: unset;
  }

  .overview_section .download_btn {
    display: table;
    margin: 20px auto 0px;
  }

  .price_section {
    background: url("../images/banners/banner2-sm.webp") center center / cover
      no-repeat fixed;
    overflow: hidden;
  }

  .price_section .price_col {
    padding: 0px 15px;
  }

  .price_section .single_price .typology {
    letter-spacing: 0.5px;
  }

  .price_section .price {
    font-size: 28px;
  }

  .price_section .onw {
    font-size: 12px;
  }

  .price_section .title {
    font-size: 13px;
  }

  .price_section .sizes p,
  .price_section .type p {
    font-size: 17px;
  }

  .price_section .type {
    margin-top: 15px;
  }

  .price_section .single_price .content {
    margin-top: -1px;
  }

  .price_section .price_c {
    margin-top: -1px;
  }

  .highlight_section .left_col ul {
    padding-left: 30px;
  }

  .highlight_section .right_col ul {
    padding-right: 0px;
    padding-left: 30px;
  }

  .highlight_section .section_heading {
    position: relative;
    writing-mode: unset;
    top: unset;
    padding: 0px;
    background: unset;
    left: unset;
    transform: unset;
    letter-spacing: 1px;
    height: auto;
  }

  .highlight_section .right_col li {
    border-top-right-radius: 10px;
    text-align: left;
  }

  .highlight_section .right_col li::before {
    left: -10px;
    clip-path: polygon(0px 0px, 100% 0px, 100% 100%);
  }

  .highlight_section .right_col li .count {
    left: -36px;
    right: unset;
  }

  .highlight_section ul li {
    padding: 15px 20px;
    line-height: 20px;
    margin: 5px 0px;
  }

  .amenity_section .ov_headings {
    margin: 40px 0px;
  }

  .amenity_section::before {
    height: 150px;
    width: 100%;
  }

  .amenity_section .col-6 {
    margin-bottom: 10px;
  }

  .amenity_section .contents {
    padding: 40px 0px;
  }

  .amenity_section .contents h4 {
    font-size: 14px;
    margin-top: 14px;
  }

  .amenity_section .single {
    margin-bottom: 0px;
    padding: 15px;
    height: 100%;
  }

  .amenity_section .icon img {
    max-width: 40px;
  }

  .amenity_section .left_col,
  .amenity_section .right_col {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .amenity_section .left_col {
    display: none;
  }

  .amenity_section .single .title {
    font-size: 14px;
    width: calc(100% - 40px);
    bottom: 20px;
    left: 20px;
  }

  .amenity_swiper .swiper_btns {
    margin-top: 30px;
  }

  .amenity_swiper .swiper-button-next,
  .amenity_swiper .swiper-button-prev {
    height: 35px;
    width: 35px;
    margin: 0px 5px;
  }

  .amenity_swiper .swiper_btns .icon {
    max-width: 11px;
  }

  .amenity_section .amenity_swiper {
    min-height: 240px;
  }

  .floor_plans_section {
    background: url("../images/floor-plan-bg-sm.png") center bottom / cover
      no-repeat rgb(0, 0, 0);
    overflow: hidden;
  }

  .floor_plans_section .row {
    max-width: 95%;
    margin: auto;
  }

  .floor_plans_section::before {
    display: none;
  }

  .floor_plans_section .single .title {
    font-size: 14px;
  }

  .e_brochure_section .right_col {
    margin-top: 30px;
  }

  .e_brochure_section .right_col p {
    text-align: center;
    font-size: 14px;
  }

  .e_brochure_section .download_btn {
    display: table;
    margin: 20px auto 0px;
  }

  .location_section::before {
    display: none;
  }

  .location_section .points li {
    font-size: 14px;
    list-style-type: number;
  }

  .location_section .location_image {
    margin-top: 20px;
    height: auto;
  }

  .location_section .location_image img {
    object-fit: unset;
    height: auto;
  }

  .gallery_section .inner_gallery_section {
    column-count: 2;
  }

  .about_builder .contents p {
    font-size: 14px;
  }

  .about_builder .left_col .image_col img {
    position: relative;
    height: auto;
    object-fit: unset;
  }

  footer p {
    line-height: 18px;
    font-size: 12px;
  }

  .modal .modal-body {
    padding: 20px;
  }

  .modal .projectName img {
    max-width: 150px;
  }

  .modal .form_price {
    width: 100%;
    margin: 20px auto;
  }

  .modal .submit_btn {
    min-height: 42px;
    padding: 8px;
  }

  .mobile-section .icon {
    width: 18px;
    height: 18px;
  }

  .mobile-section .btn {
    padding-bottom: 5px;
    color: rgb(255, 255, 255);
  }

  footer {
    padding-bottom: 90px;
  }

  .modal .projectName {
    margin-bottom: 10px;
    font-size: 23px;
  }
}

.banner_location .location_icon {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

@media (max-width: 1400px) {
  .container {
    max-width: 1264px;
  }
}

.coming-soon {
  max-width: fit-content;
  padding: 10px 20px;
  background: linear-gradient(45deg, rgb(132, 14, 118), rgb(180, 133, 175));
  color: white;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 2px;
  border-radius: 15px 0px;
  animation: 2s linear 0s infinite normal none running zoom;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.border_form {
  padding: 30px;
  background: rgb(0, 0, 0);
}

.border_form .form-control {
  border-color: rgb(255, 255, 255);
}

@media (max-width: 767px) {
  .coming-soon {
    margin-left: auto;
    margin-right: auto;
  }
}

.my_btn {
  background: transparent;
  border: 1px solid rgb(232, 196, 152);
  color: rgb(232, 196, 152);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 2px;
  border-radius: 15px 0px;
}

.my_btn:hover {
  background: linear-gradient(45deg, rgb(191, 149, 63), rgb(252, 246, 186));
  color: rgb(0, 0, 0);
}

@media (min-width: 1400px) and (max-width: 1500px) {
  .container {
    max-width: 1370px;
  }
}

@media (max-width: 1300px) and (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

.carousel_btns img {
  width: 14px;
  height: 14px;
  filter: invert(1);
}

.carousel_btns .carousel-control-prev {
  width: 30px;
  height: 30px;
  background: rgb(195, 155, 70);
  border-radius: 50%;
  top: unset;
  bottom: 10px;
  left: calc(50% - 40px);
  opacity: unset;
  position: absolute !important;
}

.carousel_btns .carousel-control-next {
  width: 30px;
  height: 30px;
  background: rgb(193, 152, 67);
  border-radius: 50%;
  top: unset;
  bottom: 10px;
  right: calc(50% - 40px);
  opacity: unset;
  position: absolute !important;
}

@media (max-width: 767px) {
  .banner_section .carousel-item img {
    min-height: 245px;
  }

  .carousel_btns img {
    width: 14px;
    height: 14px;
    filter: invert(1);
  }

  .carousel_btns .carousel-control-prev {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    left: calc(50% - 25px);
    bottom: unset;
    top: 220px;
  }

  .carousel_btns .carousel-control-next {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    right: calc(50% - 25px);
    bottom: unset;
    top: 220px;
  }
}

.my_btn {
  animation: 2s linear 0s infinite normal none running zoom;
  margin-left: 30px;
}

@media (max-width: 767px) {
  .my_btn {
    border-radius: 15px 0px !important;
  }

  .highlight_section ul {
    padding-left: 1rem !important;
  }

  .banner_main_contents .banner_logo{
    max-width: 130px;
}
}
