*{
  box-sizing: border-box;
  margin: 0;
  padding:0;
}
/*@font-face {
    font-family: 'scotchmedium';
    src: url('./fonts/scotch-display-webfont.woff2') format('woff2'),
         url('./fonts/scotch-display-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}*/
:root{
  --brown-color:#765311;
  --golden-color:#e6c34f;
  --black-color:#000;
}

body {
  /*font-family: 'Noto Sans', sans-serif;
  font-family: 'Poppins', sans-serif;*/
  /*font-family: 'Lato', sans-serif;*/
  font-family: 'Quattrocento Sans', sans-serif;
 /* font-family: 'Archivo Narrow', sans-serif;*/
/* font-family: 'Red Hat Display', sans-serif;*/
}
h1,h2,h3,h4,h5,p{
	margin: 0px;
}
h1{
  font-size: 70px;
}
h2 {
   /* font-family: 'scotchmedium';*/
   /*font-family: 'Abril Fatface', cursive;*/
   font-family: 'Playfair Display', serif;
/*   font-family: 'Tenor Sans', sans-serif;*/
    font-size: 50px;
    position: relative;
    z-index: 3;
}
h5{
  font-size: 18px;
}
p{
  font-size: 16px;
  line-height: 24px;
}
ul{
	padding: 0;
	margin: 0;
}
img{
  max-width: 100%;
  height: auto;
}
input {
    width: 100%;
    padding: 10px 16px;
    border: none;
}
h2:after {
    content: '';
    background: var(--brown-color);
    width: 93px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -9px;
}
input.num_field::-webkit-outer-spin-button,
input.num_field::-webkit-inner-spin-button {
display: none;
}
.pad_tp_bt_60{
  padding: 80px 20px;
}
.wrapper {
    padding-bottom: 0;
}
.golden_color{
  color: var(--golden-color);
}
.brown_color{
  color: var(--brown-color);
}
.contact_fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    width: 100%;
    transition: 1s ease;
}
.cstm_container{
	 max-width: 1030px;
	 width:100%;
	 margin: 0 auto;
}
.toggle_btn {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #fff;
}
.toggle_btn i{
  color: #fff;
  margin-right: 10px;
}
/*header {
    position: relative;
  

}*/
header {
    padding: 18px 30px;
    width: 100%;
    background: rgba(4, 4, 4, 0.2);
    position: absolute;
    top: 0;
    z-index: 9;
    transition: 0.5s ease-in-out;
}
.header-fixed {
    top: 0;
    z-index: 100;
    position: fixed;
    width: 100%;
    background: #fff;
    transition: 0.5s ease-in;
    box-shadow: 0 2px 2px #d8d8d8;
}
.logo{
    display: none;
}
.white_logo{
   display: block;
}
.header-fixed .white_logo{
   display: none;
}
.header-fixed .logo{
    display: block;
}
.header-fixed .toggle_btn {
    color: #000;
}
.header-fixed .toggle_btn i{
  color: #000;
}
.wrap_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo,.white_logo{
    width: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.social_icons li {
    display: inline-block;
    list-style: none;
        margin-right: 4px;
}
.social_icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    color: #8d8787;
    font-size: 18px;
    border: 2px solid #8d8787;
}
.social_icons li a:hover{
    background: var(--brown-color);
    color: #fff;
    border: 2px solid var(--brown-color);
}
.slick-track{
  height: 100%;
}
.slick-slide img {
    width: 100%;
    height: 100%;
}
.slick-prev {
    left: 14px;
}
.slick-next {
    right: 14px;
}
.slick-next:before {
    content: '\f105';
}
.slick-prev:before {
    content: '\f104';
}
.wrap_slider .slick-arrow{
    background: rgba(118, 83, 17, 0.4);
}
.slick-arrow {
    background: var(--brown-color);
    z-index: 1;
    width: 50px;
    height: 50px;
    /* border-radius: 100%; */
    border: 1px solid #fff;
}
.slick-arrow:hover{
    background: #000;
}
.slick-prev:before, 
.slick-next:before {
    opacity: 1;
    font: normal normal normal 36px/1 FontAwesome;
}
.main_slider{
  width: 100%;
  height: 100vh;
}
.wrap_slider{
  height: 100%;
}
.banner_slide{
  position: relative;
}
.slick-list{
  height: 100%;
}
.banner_content {
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    top: 50%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    /*font-family: 'scotchmedium';*/
   /* font-family: 'Abril Fatface', cursive;
*/ /* font-family: 'Playfair Display', serif;*/
    padding: 60px 60px;
    text-align: center;
    width: 50%;
}
.banner_content span{
    color: var(--golden-color);
}
.menu {
    display: none;
    text-align: center;
    position: absolute;
    top: 85px;
    left: 0;
    background: var(--brown-color);
    width: 100%;
    padding: 20px 0;
    z-index: 9;
}
.menu li{
  display: inline-block;
      margin: 0 54px;
}
.menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}
.menu li a:hover{
  color: var(--golden-color);
}
.contact {
    background: var(--brown-color);
    transition: 1s ease;
}
.cnt_form .input_field {
    width: 20%;
    margin-right: 8px;
}
.cnt_form select {
    width: 20%;
    padding: 12px 16px;
    border: none;
        margin-right: 30px;
}
.contact_form {
    display: flex;
    align-items: center;
}
.cnt_form {
    width: 100%;
    display: flex;
    align-items: center;
}
.contact_form h5{
  text-transform: uppercase;
  color: #fff;
  font-weight: 300;
  text-align: center;
  margin-right: 21px;
}
.send_btn {
    background: var(--golden-color);
    border: none;
    font-size: 16px;
    display: flex;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    padding: 10px 32px;
    background: #FFD700;
}
.contact {
    background: var(--brown-color);
    padding: 20px 0;
}
.about_content {
    background: #fff;
    padding: 45px 78px 66px 86px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) !important;
    z-index: 1;
    width: 63%;
    box-shadow: 0 0 4px #000;
}

.about_us{
  width: 100%;
  height: 100vh;
  position: relative;
}
.about_image{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_content h2 {
    margin-bottom: 42px;
}
/*.about_content h2:after{
  display: none;
}*/
.about_content p{
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 30px;
}
.sold_out {
    width: 200px;
    height: 200px;
    background: var(--black-color);
    display: flex;
    position: absolute;
    right: -128px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-transform: uppercase;
    text-align: center;
    color: var(--golden-color);
    padding: 18px;
    font-weight: 600;
    box-shadow: 0px 0px 20px var(--golden-color);
    bottom: -35px;
}
.dt_details {
    display: flex;
}
.dt_details li {
    display: flex;
    list-style: none;
    font-size: 18px;
    margin-right: 15px;
    position: relative;
   /* background: #e70e38;*/
    background: #e7960e;
    /* background: var(--brown-color); */
     color: #fff; 
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 0 8px #ccc;
    width: 150px;
    text-align: center;
    min-height: 100px;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    transform: translateY(0px);
    transition: 0.5s ease-in;
}
.dt_details li:hover{
    background: transparent;
    transform: translateY(-10px);
    transition: 0.5s ease-in;
    color: #000;
}


/*.dt_details li:after {
    content: '.';
    position: absolute;
    font-size: 39px;
    right: -17px;
    top: -24px;
    line-height: normal;
}*/
.dt_details li:last-child:after{
  display: none;
}
.video_360{
  height: 560px;
}
.video_360 iframe{
  height: 100%;
}
.location {
    height:100vh;
    background: #000;
    position: relative;
    padding-top: 162px;
    padding-bottom: 60px;
}
.location img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}
footer{
  padding: 60px 0;
  background: #010101;
}
.footer_row{
  display: flex;
  justify-content: space-between;
}
.footer_col h4{
  color: #fff;
}
.footer_links li {
    color: #fff;
    list-style: none;
    position: relative;
    font-weight: 300;
    padding-left: 25px;
    margin-bottom: 7px;
}
.footer_links li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
}
.footer_col h4 {
    color: #fff;
    font-weight: 500;
  /*  font-family: scotchmedium;*/
font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}
.footer_col.address{
  width: 27%;
}
.footer_links i {
    font-size: 18px;
    color: var(--brown-color);
    position: absolute;
    left: 0;
    top: 5px;
}
.default_btn {
    background: var(--brown-color);
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border: 1px solid var(--brown-color);
}
.default_btn i {
    margin-right: 10px;
    font-size: 22px;
}
.footer_bottom {
    border-top: 1px solid #a9a9a9;
    padding: 35px 0 0 0;
    margin-top: 28px;
    text-align: center;
    color: #fff;
    font-weight: 300;
}
.gallery h2 {
    margin-bottom: 66px;
    display: inline-block;
    position: absolute;
    transform: translate(-50%, 0);
    left: 50%;
    top: 46px;
}
.gallery {
  position: relative;
    /*background: #f1f0f0;*/
}
.gallery_row {
    z-index: 2;
    height: 600px;
    box-shadow: 0 0 6px #000000;
    border-radius: 14px;
    margin-top: 90px;
}
.gallery_row .slick-track{
   height: 100%;
}
.gallery_col{
  height: 100%;
}
.gallery_row .slick-list {
    height: 100%;
    border-radius: 14px;
}
.gallery_col img {
    border-radius: 14px;
    height: 100%;
    width: 100%;
}
.gallery:after {
    content: '';
    background: #fff;
    width: 100%;
    height: 333px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.amenities {
    width: 100%;
    background: url(../images/slide1.jpg) center no-repeat;
    position: relative;
    padding: 80px 0;
    background-size: cover;
}
.amenities:after {
    content: '';
    background: rgba(0,0,0,0.6);
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
}
.amenities h2 {
    color: #fff;
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
}
.amenities h2:after{
    background: var(--golden-color);
}
.amenties_row {
    position: relative;
    z-index: 3;
    flex-wrap: wrap;
    display: flex;
    width: 100%;
    align-items: flex-start;
    padding-top: 140px;
    justify-content: center;
}
.amenties_col {
    width: 18%;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 16px;
}
/*.amenties_col:hover{
    background: #000;
}*/
.amenties_col p {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin-top: 6px;
    line-height: 31px;
}
.amenties_col i{
    font-size: 50px;
    color: var(--golden-color);
}
.amenties_col img {
    width: 58px;
}
.specifications h2 {
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
}
.specification_row {
    position: relative;
    z-index: 3;
    flex-wrap: wrap;
    display: flex;
    width: 100%;
    /*align-items: flex-start;*/
    padding-top: 140px;
    justify-content: space-between;
}
.specification_col h3 {
    /*font-family: 'scotchmedium';*/
  font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}
.specification_col {
    width: 32%;
    border: 1px solid #ddd;
    margin-bottom: 30px;
    transform: translateY(0px);
    transition: 0.5s ease;
    overflow: hidden;
}
.specification_col img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transform: scale(1);
    transition: 0.5s ease;
}
.specification_col ul li:before {
    content: "\f0a4";
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--brown-color);
}
.specification_col ul li {
    position: relative;
    list-style: none;
    font-size: 18px;
    margin-bottom: 6px;
    padding-left: 24px;
}
.specification_contnt{
  padding: 15px;
}
.specification_col:hover {
    box-shadow: 0 0 13px #ddd;
    transform: translateY(-7px);
    transition: 0.5s ease;
}
.specification_col:hover img{
  transform: scale(1.1);
  transition: 0.5s ease;
}
.floor_plan {
    position: relative;
    padding-bottom: 80px;
}
.floor_plan_row {
    box-shadow: 0 0 40px #dfdfdf;
    width: 100%;
    padding: 160px 40px 70px;
    text-align: center;
}
.floor_plan_row h2 {
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    top: 40px;
}
.nav-item{
  margin: 0 20px;
}
.nav.nav-pills {
    border-bottom: 3px solid #ddd;
    text-align: center;
    justify-content: center;
    width: 80%;
    margin: 0px auto 30px;
}
.nav-link {
    padding: 0;
}
.nav-pills .nav-link.active{
    color: var(--brown-color);
    background-color: transparent;
    border-bottom: 8px solid var(--brown-color);
}
.nav-pills .nav-link {
    border-radius: 0;
    font-size: 26px;
    color: #000;
    position: relative;
    top: 6px;
    padding: 0 14px;
}
.floor_row {
    display: flex;
    justify-content: center;
}
.floor_col {
    width: 31%;
    position: relative;
    border: 1px solid #ddd;
    margin: 0 14px;
}
.floor_col > div {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   display: none;
}
.floor_col:hover > div{
  display: block;
}
.floor_col:hover img{
    filter: blur(2px);
}
.check_avialbility{
    width: 100%;
    background: url(../images/slide2.jpg) center no-repeat;
    position: relative;
    padding: 80px 0;
    background-size: cover;
}
.check_avialbility:after {
    content: '';
    background: #000000;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    opacity: 0.8;
}
.check_avialbility h2 {
    color: #fff;
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    top: 44px;
}
.check_avialbility h2:after {
    content: '';
    background: var(--golden-color);
}
.price_tbl {
    position: relative;
    z-index: 3;
    padding-top: 89px;
    margin: 0 auto;
    width: 50%;
}
.price_tbl table {
    background: #fff;
    vertical-align: middle;
    font-size: 20px;
    margin-bottom: 0;
}
.price_tbl table tbody{
    font-weight: 300;
}
.tbl_list li{
  list-style: none;
  border-bottom: 1px solid #ddd;
}
.tbl_list li:last-child{
  border-bottom: none;
}
.price_tbl .table>thead {
    background: #000;
 /*  background: #d19d16;*/
    color: #fff;
    font-weight: 300;
}
.price_tbl .table>thead th{
  font-weight: 300;
}
.dvd{
  display: flex;
  justify-content: space-between;
}
.location h2:after{
  content: '';
  color: var(--golden-color);
}
.location h2{
  text-align: center;
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    top: 40px;
    color: #fff;
}
.enquiry {
    background: var(--golden-color);
    font-size: 16px;
    color: #000;
    transform: rotate(-90deg);
    position: fixed;
    top: 246px;
    z-index: 9;
    right: -35px;
    padding: 6px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-weight: 500;
    display: none;
    border: none;
}
.enquiry_frm input{
  margin-bottom: 10px;
}
.pop_up_btn {
    background: var(--brown-color);
    color: #fff;
    padding: 8px 16px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    margin-top: 14px;
}
.btn_downld {
    background: var(--brown-color);
    color: #fff;
    font-size: 16px;
    border: none;
    padding: 8px 10px;
}
.fr_mobile{
  display: none;
}
.fr_dsktop{
  display: block;
}

.wrap_location{
    width: 100%;
    display: flex;
}
.wrap_location iframe{
    width: 40%;
}
.wrap_location .map_location{
    width: 40%;
}
.both_location {
    width: 100%;
    display: flex;
    height: 64vh;
    justify-content: space-between;
}
.both_location iframe {
    width: 50%;
}
.location .map_location {
    width: 50%;
}
.num {
    font-size: 60px;
    line-height: 60px;
    color: var(--brown-color);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
.latest_dt li {
    width: 17%;
    list-style: none;
    display: inline-block;
    margin: 0 1%;
    border-radius: 10px;
    background: var(--golden-color);
    text-align: center;
    font-size: 16px;
    padding: 35px 10px;
    line-height: 22px;
    box-shadow: 0 0 17px #ababab;
    transform: translateY(0px);
    transition: 0.5s ease-in;
}
.latest_dt li p{
    margin-top: 10px;
    font-size: 18px;
}
.latest_dt li:hover{
    background: transparent;
    transform: translateY(-10px);
    transition: 0.5s ease-in;
}
.latest_about{
    position: relative; 
  /*  background: #f1f0f0;*/
    padding: 60px 20px;
}
.latest_about h2 {
    margin-bottom: 40px;
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    top: 40px;
}
.latest_about > p {
    text-align: center;
    padding: 86px 338px 50px;
}
.ongoing_col{
    text-align: center;
    padding: 0 26px;
}
.ongoing_col img{
    width: 100px;
    margin-bottom: 10px;
    margin: 0 auto;
}
.ongoing_slider{
    padding: 0 60px;
}
.ongoing_project{
    position: relative;
    padding: 145px 0 80px 0;
}
.ongoing_project h2 {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0px);
    top: 32px;
}
.ongoing_col span {
    margin-top: 8px;
    display: block;
}
.modal-title {
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}
.mobile_enquiry{
    display: none;
}
.designed{
    text-align: center;
    color: #fff;
    margin-top: 12px;
}
.designed a{
    color: var(--golden-color);
    text-decoration: none;
}
.brochure_col a:hover{
    color: #fff;
}
.thank_section {
    width: 100%;
    height: 100vh;
    position: relative;
}
.thankyou_row {
    width: 30%;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    top: 50%;
    box-shadow: 0 0 6px #ccc;
    border-radius: 4px;
    padding: 40px 10px;
    text-align: center;
}
.thankyou_row img {
    width: 70px;
}
.thankyou_row h3 {
    font-weight: 700;
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
}
.thankyou_row h4 {
    margin-bottom: 10px;
    font-weight: 600;
}
.thankyou_row a {
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    color: #fff;
}

/* .cstm_container{
    background-image: url(../images/offer_new.png);
    background-repeat: no-repeat;
} */
/*=================Media query==================*/

@media only screen and (min-width: 320px) and (max-width: 767px){

h1 {
    font-size: 30px;
}

h2 {
    font-size: 25px;
}
.fr_mobile{
  display: block;
}
.fr_dsktop{
  display: none !important;
}
.main_slider {
    width: 100%;
    height: auto;
}
.about_content {
    padding: 20px 20px;
    position: static;
    transform: translate(0, 0) !important;
    width: 100%;
}
.about_content p {
    font-size: 15px;
    margin-bottom: 6px;
    line-height: 24px;
}
.dt_details li {
    font-size: 18px;
    margin: 2px 3px;
    padding: 10px 28px;
    margin-bottom: 5px;
    width: 48%;
}
.dt_details {
    margin-top: 13px;
    flex-wrap: wrap;
    justify-content: center;
}
.sold_out {
    width: 100%;
    height: auto;
    position: static;
    font-size: 16px;
    padding: 10px;
    margin-top: 11px;
    border-radius: 0;
}
.pad_tp_bt_60 {
    padding: 40px 20px;
}
.gallery_row {
    height: 230px;
}
.slick-arrow {
    width: 40px;
    height: 40px;
}
.gallery h2 {
    margin-bottom: 40px;
        white-space: nowrap;
}
.gallery:after {
    height: 146px;
}
.amenities {
    padding: 40px 0;
}
.amenties_col p {
    font-size: 16px;
    line-height: normal;
}
.amenties_col {
    width: 50%;
    margin-bottom: 34px;
    padding: 0 4px;
}
.amenties_col img {
    width: 50px;
}
.specification_col {
    width: 100%;
}
.specification_col img {
    width: 100%;
    height: auto;
}
.specification_col ul li {
    font-size: 16px;
    margin-bottom: 3px;
}
.nav-item {
    margin: 0 8px;
}
.nav-pills .nav-link {
    font-size: 16px;
    padding: 0 12px;
}
.floor_plan_row {
    width: 100%;
    padding: 30px 20px 50px;
}
.floor_col {
    width: 100%;
    margin-bottom: 20px;
}
.floor_row{
  flex-wrap: wrap;
}
.nav.nav-pills {
    width: 100%;
    margin: 0px auto 14px;
}
.price_tbl {
    padding-top: 90px;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
}
.price_tbl table {
    font-size: 16px;
}
.check_avialbility {
    padding: 40px 0;
}
.video_360 {
    height: 263px;
}
.location {
    height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
}
.location h2 {
    top: 20px;
}
.footer_row {
    flex-wrap: wrap;
}
.footer_col.address {
    width: 100%;
}
.footer_col{
  width: 100%;
  margin-bottom: 20px;
}
.footer_links li a {
    font-size: 16px;
}
.default_btn {
    padding: 8px 8px;
    font-size: 15px;
}
.logo, .white_logo {
    width: 94px;
}
footer {
   padding: 40px 0 20px;
}
.footer_bottom {
    padding: 20px 0 0 0;
    margin-top: 20px;
}
.banner_content {
    padding: 30px 18px;
    width: 74%;
}
.slick-prev {
    left: 0;
}
.slick-next {
    right: 0;
}
.contact_form {
    flex-direction: column;
}
.cnt_form {
    flex-direction: column;
}
.cnt_form .input_field {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6px;
}
.cnt_form select {
    width: 100%;
    padding: 10px 16px;
    margin-right: 0;
    margin-bottom: 10px;
}
.contact_form h5 {
    margin-right: 0;
    margin-bottom: 10px;
}
.about_us {
    height: auto;
}
.wrapper {
    padding-bottom: 44px;
}
.social_icons{
  display: none;
}
.toggle_btn {
    font-size: 16px;
}
.toggle_btn i {
    margin-right: 5px;
}
header {
    padding: 18px 0px;
}
.amenities h2 {
    white-space: nowrap;
}
.amenties_row {
    padding-top: 88px;
}
.specifications h2 {
    white-space: nowrap;
}
.specification_row {
    padding-top: 80px;
}
.floor_plan_row h2 {
    position: static;
    transform: translate(0,0);
    margin-bottom: 30px;
}
.menu {
    top: 77px;
}
.menu li {
    margin: 0 0px 9px;
    width: 100%;
    text-align: center;
}
.contact {
    display: none;
}
.check_avialbility h2 {
    white-space: nowrap;
}
.enquiry{
  display: block;
}
.both_location iframe {
    width: 100%;
    height: 250px;
}
.location .map_location {
    width: 100%;
    margin-top: 24px;
}
.both_location {
    height: auto;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.latest_about h2 {
    white-space: nowrap;
}
.latest_about > p {
    padding: 50px 0px 20px;
}
.latest_dt li {
    width: 47%;
    margin: 8px 1%;
    padding: 10px 10px;
}
.num {
    font-size: 40px;
    line-height: 28px;
}
.latest_dt li p {
    margin-top: 10px;
    font-size: 15px;
}
.latest_dt{
    text-align: center;
}
.ongoing_project h2 {
    white-space: nowrap;
}
.slick-dots {
    left: 0;
}
.slick-dots li button:before {
    font-size: 40px;
}
.ongoing_slider {
    padding: 0 0px;
}
.ongoing_project {
    padding: 100px 0 40px 0;
}
.slick-dots li {
    margin: 0 0px;
}
.mobile_enquiry {
    text-align: center;
    display: flex;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    width: 100%;
        z-index: 4;
}
.mobile_enquiry li {
    display: inline-block;
    border-right: 1px solid #bebebe;
    width: 50%;
    padding: 10px 0;
    background: var(--brown-color);
    color: #fff;
    text-align: center;
}
.mobile_enquiry li a{
    color: #fff;
    text-decoration: none;
}
.mobile_enquiry li:last-child{
    border-right: none;
}
.thankyou_row {
    width: 90%;
    padding: 24px 10px;
}
}


@media only screen and (min-width: 768px) and (max-width: 1023px){
.main_slider {
    width: 100%;
    height: 400px;
}
 h1 {
    font-size: 50px;
 }
 .banner_content {
    width: 70%;
 }
 .about_content {
    padding: 70px 50px;
    width: 84%;
    box-shadow: 0 0 4px #000;
}
.amenities h2 {
    white-space: nowrap;
    width: 60%;
}
.specification_row {
    padding-top: 70px;
}
.specifications h2 {
     position: relative; 
}
.price_tbl {
    overflow-x: auto;
    white-space: nowrap;
}
.video_360 {
    height: 340px;
}
.location {
    height: auto;
}
.footer_row {
    flex-wrap: wrap;
}
.footer_col.address {
    width: 52%;
    margin-bottom: 26px;
}
.menu li {
    margin: 0 10px;
}
.gallery h2 {
    white-space: nowrap;
}
.amenties_col {
    width: 25%;
    padding: 0 10px;
}
.floor_plan_row h2 {
    white-space: nowrap;
}
.check_avialbility h2 {
    white-space: nowrap;
}
.price_tbl {
    width: 80%;
}
.both_location {
    height: 35vh;
}
.latest_about h2 {
    white-space: nowrap;
}
.latest_about > p {
    text-align: center;
    padding: 86px 40px 50px;
}
.latest_dt li {
    width: 30%;
    margin: 16px 1%;
}
.ongoing_project h2 {
    white-space: nowrap;
}
} 

@media only screen and (min-width: 1024px) and (max-width: 1250px){
.main_slider {
    width: 100%;
    height: 68vh;
}
.banner_content {
    width: 64%;
}
.dt_details li {
    margin-right: 1px;
    padding: 12px 10px;
}
.about_content {
    padding: 70px 40px;
    width: 86%;
}
.specifications h2 {
     position: relative; 
}
.specification_row {
    padding-top: 70px;
}

}