@font-face {
  font-family: 'Montserrat';
  font-display: swap;
  src: url('../fonts/Montserrat-Regular.eot');
  src: local('☺'), url('../fonts/Montserrat-Regular.woff') format('woff'), url('../fonts/Montserrat-Regular.ttf') format('truetype'), url('../fonts/Montserrat-Regular.svg') format('svg');
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: 'Montserrat';
  font-display: swap;
  src: url('../fonts/Montserrat-Medium.eot');
  src: local('☺'), url('../fonts/Montserrat-Medium.woff') format('woff'), url('../fonts/Montserrat-Medium.ttf') format('truetype'), url('../fonts/Montserrat-Medium.svg') format('svg');
  font-weight: 500;
  font-style: normal
}

@font-face {
  font-family: 'Josefin Sans';
  font-display: swap;
  src: url('../fonts/JosefinSans-Regular.eot');
  src: local('☺'), url('../fonts/JosefinSans-Regular.woff') format('woff'), url('../fonts/JosefinSans-Regular.ttf') format('truetype'), url('../fonts/JosefinSans-Regular.svg') format('svg');
  font-weight: 400;
  font-style: normal
}

* {
  margin: 0;
  padding: 0
}

:root {
  --yellow: #ffdc73;
  --bg-gray: #EEEEEE;
  --text-gray: #555;
  --sec_head: #D7D7D7;
  --grey: #f3f3f3;
  --dark_blue: #1E1F33;
  --light_gray: #e1e2e7;
  --blue_gray: #95a8a4;
  --pink: #ab2834;
  --primary:#bf9447;
}

body {
  font-family: Montserrat, sans-serif;
  border-collapse: collapse
}

html {
  scroll-behavior: smooth
}

label {
  margin: 0
}

figure {
  margin: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0
}

p {
  color: #333;
  margin: 0
}

.form-control {
  border-radius: 0;
  box-shadow: none !important;
  outline: 0 !important;
  border: none !important
}

.form-group {
  position: relative
}

a {
  text-decoration: none !important
}

ul {
  padding: 0;
  margin: 0
}

li {
  list-style-type: none
}

.btn,
button {
  border-radius: 0;
  position: relative;
  border: none !important;
  box-shadow: none !important;
  box-shadow: 4px 4px 10px rgb(0 0 0 / 10%) !important
}

.btn_yellow {
  background-color: var(--primary);
  padding: 10px 25px;
  font-weight: 500;
  height: 50px;
  color: #fff !important
}

.btn_yellow .arrow {
  filter: invert(1);
  width:auto;
}

.btn:before,
button:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0 0 0 / 10%);
  transform: scale(.2);
  -webkit-transform: scale(.2);
  -ms-transform: scale(.2);
  opacity: 0;
  transition: .2s all;
  -webkit-transition: .2s all;
  -ms-transition: .2s all
}

.btn:hover:before,
button:hover:before {
  transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transition: .2s all;
  -webkit-transition: .2s all;
  -ms-transition: .2s all;
  opacity: 1
}

.section_heading {
  display: inline-block;
  margin-bottom: 30px
}

.section_heading h3 {
  font-family: 'Josefin Sans', sans-serif;
  background-color: var(--primary);
  padding: 5px 40px 5px 20px;
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%, 0 0);
  font-size: 40px
}

a.arrow_btn .arrow {
  margin-left: 5px;
  max-width: 20px;
  transition: .2s all;
  -webkit-transition: .2s all;
  -ms-transition: .2s all
}

a.arrow_btn:hover .arrow {
  margin-left: 10px;
  transition: .2s all;
  -webkit-transition: .2s all;
  -ms-transition: .2s all
}

a.arrow_btn {
  padding-right: 50px
}

a.arrow_btn .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  object-fit: contain;
}

.my_15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important
}

.px_10 {
  padding-left: 10px !important;
  padding-right: 10px !important
}

.py_10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important
}

.navbar {
  padding: 0
}

.container {
  max-width: 95% !important
}

.navbar-brand {
  padding: 0
}

.mb_30 {
  margin-bottom: 30px !important
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}

input[type=number] {
  -moz-appearance: textfield
}

.custom_line {
  position: relative
}

/* .custom_line:before {
  position: absolute;
  right: calc(100% + 10px);
  height: 2px;
  width: 100%;
  background-color: rgb(255 255 255 / 20%);
  content: '';
  top: 50%;
  transform: translateY(-50%)
} */

.header {
  z-index: 102;
  padding: 15px 0;
  transition: all .2s ease-in-out
}

.header.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background-color: #fff;
  box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
  z-index: 99
}

.header .container {
  position: relative;
  padding: 0 15px
}

.header .navbar-brand {
  position: absolute;
  top: 0;
  /* left: 50%; */
  max-width: 130px;
  margin: 0;
  background: #fff;
  padding: 10px;
}

.header .right_navbar {
  justify-content: flex-end;
  margin-right: 40px
}

.header .navbar-brand img {
  width: 110px;
}

.header .navbar-brand h3 {
  color: #adadad
}

.header.active .navbar-brand{
  max-width: 110px;
}

.header .brochure {
  background-color: var(--primary);
  color: #fff !important;
  padding: 7px 25px;
  box-shadow: 4px 4px 10px rgb(0 0 0 / 10%) !important
}

.header .nav-link {
  color: #333;
  font-family: Montserrat;
  font-size: 16px
}

.header .navbar-nav .nav-item:not(:last-child) {
  margin-right: 10px
}

.header.active .brochure {
  color: #333
}

.header .navbar-toggler {
  margin-left: auto
}

.header .dropdown-menu{
  margin-top: 0;
}

.header .dropdown-menu .dropdown-item{
  text-transform: uppercase;
}

.banner_section {
  position: relative;
  height: calc(100vh - 70px);
  overflow:hidden;
}

.banner_section:after {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: var(--primary);
  max-width: 50%;
  width: 100%;
  content: ''
}

.banner_section:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--grey);
  max-width: 50%;
  width: 100%;
  content: '';
  z-index: 1
}

.banner_section .bg_boxes {
  position: absolute;
  left: 0;
  height: 125%;
  z-index: 1;
  width: 50%;
  opacity: .02;
  top: 0
}

.banner_section .bg_boxes img {
  height: 100%;
  width: 100%;
  object-fit: cover
}


.banner_section .banner_sticky {
  position: absolute;
  z-index: 10;
  max-width: 279px;
  right: 30%;
  top: 47%;
}

.banner_section .banner_sticky2 {
  position: absolute;
  z-index: 10;
  width: 300px;
  right: 2%;
  top: 5%;

}

.banner_section .banner_bg_title {
  position: absolute;
  z-index: 1;
  text-transform: uppercase;
  text-align: center;
  font-size: 24vh;
  color: rgb(124 124 124 / 8%);
  bottom: 0;
  line-height: initial;
  width: 100%
}

.banner_section .container {
  height: 100%;
  position: relative
}

.banner_section .mySwiper {
  max-width: 80%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 1;
  height: calc(100% - 20%);
  width: 100%
}

.banner_section .mySwiper div {
  height: 100%
}

.banner_section .mySwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.banner_section .mySwiper .arrow_btns,
.banner_section .mySwiper .swiper_btns {
  position: absolute;
  right: calc(100% + 10px);
  top: 0;
  display: inline-block
}

.banner_section .arrow_btns .carousel-control-next,
.banner_section .arrow_btns .carousel-control-prev,
.banner_section .swiper_btns .swiper-button-next,
.banner_section .swiper_btns .swiper-button-prev {
  width: 100%;
  display: block;
  position: relative;
  right: unset;
  left: unset;
  margin-top: unset;
  top: unset;
  width: 40px;
  height: 55px;
  border: 1px solid #afafaf;
  background-size: 10px;
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center
}

.banner_section .arrow_btns .carousel-control-next,
.banner_section .swiper_btns .swiper-button-prev {
  margin-top: 10px
}

.banner_section .arrow_btns .carousel-control-next-icon,
.banner_section .arrow_btns .carousel-control-prev-icon {
  width: 15px;
  height: 15px;
  filter: invert(1)
}

.banner_section .swiper_btns i {
  font-weight: 400;
  font-size: 14px;
  color: #646681
}

.banner_section .row {
  position: relative;
  z-index: 1;
  height: 100%
}

.banner_section .left_col {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  height: 100%
}

.banner_slider,
.banner_slider div {
  height: 100%
}

.banner_slider .item img {
  height: 100%;
  object-fit: cover;
  min-height: calc(95vh - 90px)
}

.banner_section .banner_slider .item .count {
  position: absolute;
  top: 0;
  left: -5px;
  font-size: 200px;
  line-height: 150px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  color: rgba(0 0 0 / 30%)
}

.banner_section .banner_slider .owl-nav {
  position: absolute;
  margin: 0;
  bottom: 20px;
  right: 50px;
  height: unset
}

.banner_slider .owl-nav button.owl-prev {
  margin-right: 5px
}

.banner_slider .owl-nav button div {
  display: flex;
  align-items: center;
  justify-content: center
}

.banner_slider .owl-nav button i {
  font-size: 18px;
  font-weight: 100;
  text-shadow: none;
  outline: 0;
  border: none;
  color: #eee
}

.banner_section .location {
  font-size: 18px;
  font-weight: 500;
  text-align: right;
  color: #fff;
  margin-bottom: 25px;
  display: inline-block
}

.banner_section .heading_bg img {
  max-width: 150px;
  width: 100%
}

.banner_section .project_logo {
  /* font-size: 80px; */
  font-size: 27px;
  /* line-height: 70px; */
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  /* background-color: var(--grey); */
  /* padding: 15px 40px; */
  padding:0;
  /* clip-path: polygon(0 40px, 40px 0, 100% 0, 100% 100%, 0 100%);
  border-top-left-radius: 50px; */
  letter-spacing: 3px;
}

.banner_section .sub_headng{
  color: #fff;
  margin-top: 25px;
  font-size: 23px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 36px;
}

.banner_section .right_col .heading_bg {
  /* filter: drop-shadow(-1px 6px 15px rgba(255 255 255 / 15%)) */
  margin-bottom: 25px;
}

.banner_section .bottom {
  color: #fff;
  /* text-align: right; */
  letter-spacing: 2px;
}

.banner_section .key-high ul span{font-size: 28px;font-weight: 600;}

.banner_section .price {
  font-size: 24px;
  font-weight: 600;
  margin-top: 25px;
  text-align: left;
}

.banner_section .price span {
  font-size: 40px
}

.banner_section .amenity {
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
  line-height: 30px;
  letter-spacing: 0.5px;
  color:#fff;
  text-align: left;
}

.banner_section .payment_plan{
  margin-top:20px;
  background-color: #fff;
  color: var(--primary);
  font-size: 20px;
  font-weight: 500;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Josefin Sans', sans-serif;
  display: inline-block;
}

.banner_section .status{
  font-size: 20px;
  margin-top: 10px;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: 1px;
}

.banner_section .call {
  margin-top: 40px;
  text-align: left;
}

.banner_section .call a {
  color: #fff;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  font-size: 22px;
  font-weight: 400;
  background-color:#2e2e2e;
  /* width: 100%; */
  justify-content: center
}

.banner_section .call .fa {
  background-color: transparent;
  color: #fff;
  padding: 2px 4px;
  font-size: 34px;
  height: 35px;
  width: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px
}

.banner_section .call img {
  filter: invert(1);
  max-width: 22px;
  margin-right: 10px;
}

.banner_section .right_col {
  position: absolute;
  left: 15px;
  z-index: 9;
  bottom: 40%;
  transform: translateY(50%);
}

.banner_section .right_col .content {
  background-color: rgb(191 148 71 / 90%);
  padding: 50px;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
  max-width: 520px;
}

.animated_form .form-head {
  max-width: 100%;
  flex: 0 0 100%
}

.animated_form .form-group {
  max-width: calc(50% - 10px);
  flex: 0 0 calc(50% - 10px);
  margin-bottom: 20px
}

.animated_form .form-label {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #999;
  background-color: #fff;
  z-index: 10;
  transition: transform 150ms ease-out, font-size 150ms ease-out
}

.animated_form .focused .form-label {
  transform: translateY(-34px);
  font-size: .75em;
  background-color: var(--dark_blue);
  left: 5px;
  color: #fff;
  padding: 1px 5px
}

.animated_form .form-input {
  position: relative;
  padding: 5px 10px;
  width: 100%;
  height: 50px;
  outline: 0;
  border: 0;
  box-shadow: 0 1px 0 0 #e5e5e5;
  transition: box-shadow 150ms ease-out
}

.animated_form input.btn {
  background-color: var(--primary);
  height: 50px;
  font-size: 16px;
  font-weight: 500;
  color: #fff
}

.about_section {
  padding: 100px 0;
  position: relative;
  background-color: var(--grey)
}

.about_section .custom_line:before {
  left: calc(100% + 10px);
  right: unset;
  width: 100vh;
  background-color:#d5d5d5;
  z-index: 9
}

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

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

.about_section .content {
  background-color: #fff;
  padding: 40px;
  box-shadow: -5px 5px 30px rgb(0 0 0 / 6%)
}

.about_section .heading {
  font-size: 30px;
  color: var(--dark_blue);
  font-weight: 600;
  text-shadow: 4px 4px 8px rgb(0 0 0 / 15%)
}

.about_section .location {
  font-size: 18px;
  color: var(--text-gray);
  margin-top: 10px;
  margin-bottom: 25px
}

.about_section p{margin-bottom:10px;}

.about_section .content button {
  margin-top: 30px
}

.about_section .content button img {
  object-fit: contain
}

.about_section .right_col figure {
  max-width: 500px;
  margin-left: auto;
  height: calc(100% + 100px);
  position: relative;
  z-index: 0
}

.about_section .right_col figure:before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  left: 20px;
  bottom: 20px;
  background-color: var(--primary)
}

.about_section .right_col figure img {
  position: relative;
  z-index: 1
}

.highlights_section {
  padding: 60px 0;
  position: relative;
  overflow: hidden
}

.highlights_section .container {
  max-width: 80% !important;
  position: relative;
  z-index: 1
}

.highlights_section .section_heading h3 {
  background-color: #fff;
  color: var(--primary);
  clip-path: polygon(0 20px, 20px 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 0)
}

.highlights_section .custom_line:before {
  background-color: var(--grey)
}

.highlights_section .left_col {
  padding: 0
}

.highlights_section .left_col div,
.highlights_section .left_col figure,
.highlights_section .left_col figure img {
  height: 100%
}

.highlights_section .left_col figure img ,
.highlights_section .left_col figure iframe{
  width: 100%;
  object-fit: cover;
  height:100%;
}

.highlights_section .right_col {
  padding: 40px;
  background-color: var(--primary);
  height: 700px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative
}

.highlights_section .right_col:before {
  background-image: url('../images/bg-box.svg');
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  content: '';
  opacity: .12;
  transform: rotate(-125deg);
  -webkit-transform: rotate(-125deg);
  -ms-transform: rotate(-125deg)
}

.highlights_section .right_col li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 18px;
  color: #fff
}

.highlights_section .right_col li:before {
  background: url('../images/icons/light_return_arrow.png');
  position: absolute;
  content: '';
  height: 14px;
  width: 14px;
  background-size: cover;
  left: 0;
  top: 5px
}

.highlights_section .right_col img {
  height: 100%;
  object-fit: cover;
  width: 100%
}

.price_section {
  padding: 100px 0;
  position: relative;
  background-color: var(--grey)
}

.price_section .container {
  position: relative;
  z-index: 9
}

.price_section .section_heading {
  display: table;
  justify-content: center;
  margin: auto;
  margin-bottom: 80px
}


.price_section .projects_carousel{
  max-width: 80%;
  margin-left:auto;
  margin-right:auto;
}

.platter_page .price_section .projects_carousel,
.micro_page .price_section .projects_carousel{
  max-width: 100%;
}
.my-patch {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 22px;
  background: #bf9447;
  color: #fff;
  padding: 11px;
}
.price_section .box {
  box-shadow: 5px 5px 30px rgb(0 0 0 / 6%);
  transition: all .3s ease;
  position: relative;
  margin-bottom: 30px;
}
.foo-logo{
  font-size: 25px;
  text-align: center;
}
.form-log{
  font-size: 25px;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}
.price_section .box .thumbnail{
  position:relative;
}

.price_section .box .location{
  position:absolute;
  content:'';
  font-size: 14px;
  color: #fff;
  background:var(--primary);
  bottom: 10px;
  left: 10px;
  padding: 3px 5px;
  letter-spacing: 0.5px;
  font-weight: 400;
}

/* .price_section .active .box {
  margin-top: -30px
} */

.price_section .box .top {
  background-color: #333;
  color: #fff;
  position: absolute;
  left: 20px;
  width: calc(100% - 40px);
  top: -25px;
  text-align: center
}

.price_section .box .title {
  padding: 10px 5px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.price_section .box .bottom {
  padding: 20px;
  background-color: #fff;
  position:relative;
}

.price_section .box .name{
  font-size: 18px;
  letter-spacing: 1px;
  min-height: 43px;
  margin-bottom: 15px;
}

.price_section .box .typo{
  margin-bottom: 20px;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--primary);
}

.price_section .box span {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #fff;
  background-color: var(--primary);
  font-weight: 500;
  display: table-caption;
  padding: 4px 10px;
  letter-spacing: 0.5px;
}

.price_section .box .size {
  margin-bottom: 20px
}

.price_section .box .price,
.price_section .box .size {
  font-size: 18px;
  letter-spacing: 0.5px;
}

.price_section .box .btn {
  width: 100%;
  text-transform: uppercase;
  margin-top: 5px
}

.price_section .box .btn_row{
  display:flex;
  background: #fff;
}

.price_section .box .btn_row .btn{
  /* flex:1; */
  margin:0;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size:14px;
  letter-spacing: 0.5px;
  /* text-transform: uppercase; */
}

.price_section .box .btn_row .know_more_btn{
  margin-left: 5px;
  background: #e6e6e6;
}

.specifications_section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: #5b5b5b;
}

/* .specifications_section .container {
  padding: 50px;
  max-width: 93.5% !important;
  position: relative;
  z-index: 1;
  background-color: #7BC7C6;
} */
.specifications_section .section_heading{display: table; margin: auto; margin-bottom: 80px; }
.specifications_section .container ul li{padding-bottom: 10px;display: grid;font-size: 14px;letter-spacing: 1px;line-height: 24px;color: #e9e9e9e9; padding-top: 15px;border-bottom: 1px solid #818181;}
.specifications_section .container ul li span{font-size: 18px;font-weight: 500;letter-spacing: 1px;padding-bottom: 8px;color: #fff;}


.specifications_section .section_heading h3 {
  background-color: var(--primary);
  color: #fff;
  clip-path: polygon(0 20px, 20px 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 0)
}

.floor_plan_section {
  position: relative;
  padding: 40px 0 60px;
  background-color: var(--grey)
}

.floor_plan_section:before {
  position: absolute;
  left: 0;
  top: -5%;
  height: 300px;
  width: 100%;
  content: '';
  background-color: rgb(255 235 199)
}

.floor_plan_section .section_heading {
  display: table;
  justify-content: center;
  margin: auto;
  margin-bottom: 40px
}

.floor_plan_section .floor_content .box {
  box-shadow: 5px 5px 30px rgb(0 0 0 / 6%);
  padding: 5px
}

.floor_plan_section .floor_content .box img {
  width: 100%
}

.amenities_section {
  position: relative;
  padding: 40px 0 60px
}

.amenities_section .section_heading {
  display: table;
  justify-content: center;
  margin: auto;
  margin-bottom: 40px
}

.amenities_section .amenities_content .content {
  position: relative;
  height: 100%;
  background-color: var(--primary)
}

.amenities_section .bottom {
  padding: 10px
}

.amenities_section .amenities_content .title {
  font-size: 16px;
  color: #fff;
  line-height: 24px
}

.gallery_section {
  background-color: #fff;
  padding: 40px 0 270px
}

.gallery_section .floor_content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: auto;
  margin-left: 0;
  justify-content: center;
}

.gallery_section .floor_content .item {
  position: relative;
  transition: all .3s ease-in-out;
  max-width: 25%;
  flex: 0 0 25%;
  border: 2px solid #fff
}

.gallery_section .floor_content .item a {
  height: 100%;
}

.gallery_section .floor_content .item img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.gallery_section .section_heading {
  right: 20px;
  left: unset;
  text-shadow: 3px 0 10px rgb(0 0 0 / 15%);
  white-space: nowrap
}

.query_section .container {
  max-width: 60% !important;
  padding: 20px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -70%);
  z-index: 9
}

.query_section .animated_form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between
}

.query_section .row {
  box-shadow: 0 5px 30px rgb(0 0 0 / 15%);
  background: #fff
}

.query_section .left_col {
  padding: 40px
}

.query_section .left_col .form_heading {
  margin-bottom: 20px;
  font-size: 20px
}

.query_section .right_col {
  background-color: #ebe5db;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.query_section .bottom_logo{
  max-width: 190px;
  display: table;
  margin: auto;
}

.query_section .right_col .mobile {
  font-size: 20px;
  color: #333 !important;
  font-weight: 500;
  margin-top: 30px;
  display: flow-root;
  text-align: center;
  letter-spacing: 1px;
}

footer {
  background-color: #0f121c;
  padding: 150px 0 0px
}

footer p {
  text-align: center;
  font-size: 13px;
  color: #fff
}

footer p:not(:last-child) {
  margin-bottom: 5px
}

footer p a {
  color: #fff !important
}

.modal .modal-body {
  display: flex;
  flex-wrap: wrap;
  padding: 0
}

.modal .left_col {
  background-color: var(--primary);
  display: flex;
  align-items: center
}

.modal .left_col,
.modal .right_col {
  max-width: 50%;
  flex: 0 0 50%;
  padding: 30px
}

.modal .left_col .content {
  width: 100%;
  text-align: center
}

.modal .left_col img {
  margin-bottom: 15px;
  max-width: 190px;
}

.modal .left_col .name{
  color:#fff;
  font-size: 22px;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
}

.modal .left_col .typo {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 0.5px;
}

.modal .left_col .price {
  font-size: 18px;
  background-color: var(--dark_blue);
  padding: 7px 15px;
  width: 100%;
  display: inline-block;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
}

.modal .right_col .form_heading {
  font-size: 20px;
  margin-bottom: 15px
}

.modal .right_col .form-group {
  max-width: 100%;
  flex: 0 0 100%
}

.modal .right_col .form-input {
  height: 46px
}

.mobile-section {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  display: none;
  box-shadow: 0 -3px 15px rgb(0 0 0 / 10%)
}

.mobile-section .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.mobile-section .btn:not(:last-child):before {
  position: absolute;
  content: '';
  width: 1px;
  height: 25px;
  background-color: #333;
  display: block;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  left: unset
}

.fixed_form {
  position: fixed;
  position: fixed;
  bottom: 0;
  /* right: 0; */
  z-index: 99;
  max-width: 30%;
  right: -30%;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0 0 0 / 10%);
  transition: all .3s ease-in-out
}

.fixed_form.show {
  right: 0
}

.fixed_form .animated_form {
  padding: 20px;
  background-color: rgb(191 148 71 / 90%);
}

.fixed_form .animated_form .form_title {
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  background-color: #ebe5db;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600
}

.fixed_form .form-group {
  max-width: 100%;
  flex: 0 0 100%;
  margin-bottom: 10px
}

.fixed_form .form-input {
  border: none;
  box-shadow: none;
  color: #fff;
  font-weight: 400;
  background: 0 0;
  border-bottom: 1px solid #fff;
  height: 45px
}

.fixed_form .form-input::placeholder {
  color: #fff
}

.fixed_form select option{
  color:#333;
}

.fixed_form .form-label {
  background: 0 0;
  color: #fff
}

.fixed_form .form_heading {
  position: absolute;
  content: '';
  right: 100%;
  bottom: 0;
  white-space: nowrap;
  writing-mode: tb-rl;
  background-color: var(--dark_blue);
  padding: 15px 4px;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer
}

.fixed_form input.btn {
  background-color: var(--dark_blue);
  color: #fff
}
.modal .close {
  position: absolute;
  color: #fff;
  opacity: 1;
  text-shadow: none;
  font-size: 40px;
  top: 10px;
  right: 20px;
  z-index: 9;
}




/* 23-aug */

.projects_carousel .owl-nav button{
  position:absolute; 
  content:'';
  left: -100px;
  top:50%;
  transform:translateY(-50%);
  height: 60px;
  width: 60px;
  background-color: var(--primary)!important;
  border-radius: 100%!important;
  overflow: hidden;
}

.projects_carousel .owl-nav button.owl-next{
  left:unset;
  right:-100px;
}

.projects_carousel .owl-nav button span{
  font-size:40px;
  color:#fff;
}

.projects_carousel .owl-dots{
  display:none;
}

/* testimonial section */

.testimonial_section{
  padding:100px 0;
  padding-bottom: 270px;
}

.testimonial_section .section_heading{
  display: table;
  margin: auto;
  margin-bottom: 80px;
}

.testimonial_section .box{
  background: #ededed;
  padding: 40px;
  box-shadow: 0 8px 30px -7px #f7f7f7;
}

.testimonial_section .box .quote{
  max-width: 60px;
  transform: rotate(180deg);
  margin: auto;
  filter: invert(1);
  opacity: 0.1;
  margin-bottom: 30px;
}

.testimonial_section .box .msg{
  font-size: 16px;
  letter-spacing: 0.4px;
  text-align: center;
  min-height: 160px;
}

.testimonial_section .box .name{
  text-align: center;
  font-size:18px;
  margin-top:20px;
}

.testimonial_section .owl-nav{
  display:none;

}

.testimonial_section .owl-dots {
  margin-top:30px;
}

.testimonial_section .owl-dots button{
  box-shadow: none!important;
}


/* new footer */

.footer_section{position:relative; padding-bottom:0; border-top: 1px solid #efefef; /*background:url('../assets/footer_bg.jpg') no-repeat center center;*//* background-size:cover;*/}
.footer_section:before{position:absolute; content:''; left:0; top:0; width:100%; height:100%;}
.footer_section .footer_col{max-width: 25%; flex:0 0 25%;}
.footer_section .footer_logo{margin-bottom: 40px; text-align: center;}
.footer_section .footer_logo img{max-width: 220px;}
.footer_section .col1 .overview{margin:0; line-height: 20px; font-size: 13px; letter-spacing: 0.5px;}
.footer_section .col2 .contents{width: fit-content; margin-left: auto; margin-right: auto;}
/* .footer_section .col2 .page-links{margin-left: -30px; margin-right: -30px;} */
.footer_section .title{margin-bottom: 30px; text-transform: uppercase; letter-spacing: 1px; font-size: 20px; color:var(--primary)}
/* .footer_section .page-links{display:flex;} */
/* .footer_section .col2 ul{margin: 0 30px;} */
.footer_section ul{list-style-type:none;}
.footer_section li{margin-bottom:4px;}
.footer_section li a{color:#ddd; padding: 3px 0; transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out; -ms-transition:all 0.2s ease-in-out; display: inline-flex; width: 100%; font-size: 15px;}
.footer_section li a:hover{color:var(--primary);}
.footer_section .icon{width:18px;}
.footer_section .text{width:calc(100% - 40px); color:#ddd;}
.footer_section .col3 .icon{margin-right:15px;}
.footer_section .col3 .icon img{height:24px; object-fit: contain;}
.footer_section .copyright_row{padding:35px 0 50px; margin-top:35px; border-top:1px solid #ECECEC; position: relative;}
.footer_section .copyright_row p{text-align: center; font-size: 13px; margin: 0; line-height: 20px; letter-spacing: 0.3px;}
.footer_section .copyright_row p:first-child{margin-bottom:10px;}
.footer_section .copyright_row a{color:#000; font-weight: 500;}
/* .footer_section .copyright_row p:first-child a{color:var(--primary_color);} */

.footer_section .rera_certificate{margin-top:30px;}
.footer_section .rera_certificate .title{font-size:16px; margin-bottom: 25px;}
.footer_section .rera_certificate a{height:100px; overflow: auto; display: inline-flex; width: calc(50% - 15px); position:relative; }
.footer_section .rera_certificate a:not(:last-child){margin-right:10px;}
.footer_section .rera_certificate a img{width:100%; position: absolute; left: 0; top: 0;}

.footer_section .rera_certificate a::-webkit-scrollbar {
    width: 1px;
}

.footer_section .rera_certificate a::-webkit-scrollbar-track {
    background: var(--primary_color);
}

.footer_section .rera_certificate a::-webkit-scrollbar-thumb {
    background: var(--text-color);
}

.footer_section .rera_certificate a::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.footer_section .rera_certificate .rera{margin-top: 10px; letter-spacing: 0.5px;}
.footer_section .copyright_row p{line-height: 18px; font-size: 12px;}
#more {display: none;}


/* inner page */

.tagline_section{
  position: relative;
  padding: 130px 50px 100px;
  background: url(../images/page_bg.jpg) no-repeat center center;
  background-size: cover;
}

.tagline_section:before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgb(191 148 71 / 90%);
}

.tagline_section .container{
  position:relative;
}

.tagline_section .title{
  margin: 0;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 36px;
}

.inner_page .about_section{
  padding-bottom: 400px;
}

.my-about{
  padding-bottom: 300px;
}
.my-about .left_col{
  margin: auto;
}
.micro_page .price_section .box .top{
  top:unset;
  bottom:100%;
}

/* .micro_page .price_section .box .title{

} */


/* contact us */
.contact-us{
  padding: 100px 0;
}
.contact-us .query-heading {
  position: relative;
  display: flex;
  align-items: center;
  padding: 50px;
  background: url(../images/contact-us-bg.png) no-repeat center;
}
.contact-us .query-heading:before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgb(33 26 40 / 85%);
}
.contact-us .icon {
  position: relative;
}
.contact-us .icon img {
  width: 120px;
}
.contact-us .text {
  position: relative;
  color: #fff;
  padding-left: 40px;
}
.contact-us .left_col .section_heading {
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
  margin-bottom: 15px;
}
.contact-us .left_col .sec_headings p {
  font-size: 14px;
  color:#fff;
}
.contact-us .contact_detail {
  margin-top: 70px;
}
.contact-us .contact_detail .name {
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-us .contact_detail ul {
  list-style-type: none;
}
.contact-us .contact_detail li {
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.contact-us .contact_detail li:not(:first-child), .contact-us .contact_detail li a {
  color: #403f4b;
  font-weight: 500;
}
.contact-us  .sec_headings .section_heading {
  margin-bottom: 25px;
}

.contact-us .sec_headings p {
  margin: 0;
}
.sec_headings {
  margin-bottom: 50px;
}
.contact-us .form-control {
  min-height: 50px;
  padding: 10px 20px;
  border-color: #e3e3e3;
  border: 1px solid #e7e7e7!important;
}
.contact-us .container {
  max-width: 70% !important;
}
.mybtn{
  background-color: var(--primary);
  color:#fff;
}
.contact-us .px_40 {
  padding-left: 40px;
  padding-right: 40px;
}

/* contact us */

.contact_map iframe{
  height:400px;
}