@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&display=swap');
:root{
    --footer-bg:#1E1E1E;
}
html {
  scroll-behavior: smooth;
}

*{
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-decoration: none;
  outline: none;
  box-sizing: border-box;
}
body {
  margin: 0!important;
  padding: 0;
  font-size: 16px;
  overscroll-behavior: none;
  font-family: "Karla", sans-serif;
}
h1, h2, h3, h4, h5, h6{margin: 0px;}
p {
    font-size: 17px;
    font-weight: 400;
    padding: 0;
    margin-bottom: 10px;
    line-height: 24px;
    color: #000000;
}
ul, li{padding: 0;margin: 0;list-style-type: none;}
img {
  max-width: 100%;
  border: none;
}
a {
  text-decoration: none;
  outline: none !important;
}
.p-80{padding: 80px 0;}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
input {
  -webkit-appearance: none;
  appearance: none;
  text-align: left;
}
input::placeholder {
  color: #999; 
  text-align: left;
  opacity:1;
}

.btn {
  transition: 0.5s;
  border-radius: 30px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
}
.btn-primary{
  border-color: #FDD335;
  background-color: #FDD335;
  color: #000000;
}
.btn-outline-primary{
  border-color: #F7C624;
  color: #000000;
}
.btn-primary:hover, .btn-outline-primary:hover{
  border-color: #000000;
  background-color: #000000;
  color: #ffffff;
}
.btn-dark{
  border-color: #000000;
  background-color: #000000;
  color: #ffffff;
}
.btn-dark:hover{
  border-color: #F7C624;
  background-color: #F7C624;
  color: #000000;
}
/*-- header area start --*/
.headerarea {
    background-color: rgb(0 0 0 / 41%);
    box-shadow: none;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 2;
}
.headerarea .logo {
    width: 100%;
    max-width: 220px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    height: 164px;
    z-index: 1;
    display: flex;
    top: 3px;
}
.headerarea.fix .logo {
    max-width: 100px;
    height: 81px;
}
.headerarea .logo img{
  width: 100%;
  object-fit: contain;
}
.headerarea .header-contact .call {
  width: 100%;
  min-width: 43px;
  max-width: 43px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #F6F7FB;
  background-color: #F6F7FB;
  color: #000000;
  border-radius: 100%;
  margin-left: 10px;
  transition: 0.5s;
}
.headerarea .header-contact .call:hover{
  border-color: #000000;
  background-color: #000000;
  color: #ffffff;
}
.headerarea.fix {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 91;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    background-color:#1e1e1e;
}

@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}
100%{opacity:1;-webkit-transform:none;transform:none}
}
@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}
100%{opacity:1;-webkit-transform:none;transform:none}
}
/*menu CSS
--------------------------------------------------------------------------------------------------*/
.header-right {
	text-align: center;
	width: 100%;
	display: flex;
	justify-content: center;
}
.header-right .menuicon {
	background-color: transparent;
	font-size: 18px;
	text-transform: capitalize;
	font-weight: 500;
	color: #fff;
	border: none;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-transform: uppercase;
}
.offcanvas {
    background-color: #11100F;
}
.offcanvas-backdrop.show {
    opacity: .6;
}
.offcanvas-body ul li a {
    font-size: 24px;
    text-align: right;
    color: #fff;
    display: block;
    text-transform: capitalize;
    padding: 15px 40px;
    border-bottom: 1px solid rgb(255 255 255 / 7%);
}
.menu ul{margin:0;padding:0;font-size:0;}
.menu ul li{display:inline-block;padding:0;list-style-type:none;position:relative;vertical-align:middle;}
.menu ul li.active{
  position: relative;
}
.menu ul li.mobailmenu {
	display:none;
}
.menu ul li.active::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  max-width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../images/menu-active-shape.svg);
}
.menu ul li span{
    position: absolute;
    top: 45%;
    right: 10px;
}
.menu ul li span::after {
    content: '\2b';
    color: #000000;
    font-family: FontAwesome;
    font-size: 10px;
}
.menu ul li:hover span::after{
  color: #f7c624;
}
.headarea.innerheader .menu ul li a{ color: #000; }
.menu ul li a {
    color: #ffffff;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    display: block;
    padding: 30px 0px;
    margin: 0 25px;
    position: relative;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    letter-spacing: 0.5px;
}
.menu ul li a:hover, .menu ul li.active a {
    color: #b98741;
}
.menu ul li.active a::after{width: 100%;}
.menu ul li a span {
    display: inline-block;
    vertical-align: 0px;
    margin-left: 6px;
    font-size: 10px;
}
.menu ul li:hover ul li a:hover {
    color: #000;
    background-color: #f7c624;
}
.menu ul li ul {
    width: 240px;
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    z-index: 2;
    background-color: #ffffff;
    text-align: left;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 15px rgb(0 0 0 / 3%);
}
.menu ul ul li:first-child:before{display:none;}
.menu ul ul li:after{display:none;}
.menu ul li:last-child ul{width:220px;position:absolute;top:100%;left:auto;right:0;z-index:2;background-color:#ffffff;box-shadow:0px 5px 14px rgb(0 0 0 / 2%);text-align:left;}
.menu ul li ul li a {
    font-size: 14px;
    text-transform: none;
    padding: 12px 15px;
    color: #000;
    line-height: 20px;
    font-weight: 500;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -khtml-transition: all ease-in-out 0.5s;
    display: block;
    margin: 0;
}
.menu ul li ul li ul{top:10px;left:149px;}
.menu ul li ul li span{right:7px;top:12px;}
.menu ul li a:hover.menu ul li ul{display:block;}
.menu ul li ul li{display:block;padding:0;border-bottom:solid 1px rgb(255 255 255 / 7%);border-right:none;}
.menu ul li ul li:last-child{border:none;}
.menuButton{width:40px;height:35px;padding:5px;float:right;display:none;}
.menuButton span {
	width: 100%;
	height: 2px;
	background: #000;
	margin-bottom: 6px;
	float: left;
	transition: all 0.3s ease-in-out 0s;
}
.menuButton span:last-child{margin-bottom:0;}
@media (min-width:991.98px){.menu ul{display:block!important;}
 .menu ul li:hover > ul{opacity:1;top:100%;visibility:visible;}

 .menu ul li:nth-of-type(3){
  margin-right: 150px;
 }
	 .menu ul li:nth-of-type(4){
  margin-left: 150px;
 }


}
@media (max-width:991.98px){.menuButton{display:block;margin-left:15px;cursor:pointer;}
 .menu ul li span{background:url(../images/menu_arrow.png) center center no-repeat;cursor:pointer;width:15px;height:15px;position:absolute;right:15px;top:20px;z-index:99;}
 .menu ul li:hover span{background:url(../images/menu_arrow_hover.png) center center no-repeat;}
 .arrow_change span:nth-child(2){display:none;}
 .arrow_change span:first-child{position:relative;top:9px;transform:rotate(-45deg);-moz-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);}
 .arrow_change span:last-child{position:relative;top:1px;transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);}
 .menuBar{padding:15px 0;}
 .menu{padding:5px 0;}
.menu ul {
	display: none;
	background-color: #1e1e1e;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	z-index: 99;
}
.menu ul li a {
	color: #fff;
	display: block;
	width: 100%;
	font-size: 14px;
}
 .menu ul li ul{display:none;background-color:#e1e1e1;position:relative;top:5px;left:0;width:100%;z-index:1;padding:0;visibility: initial;opacity: 1;}
 .menu ul li:last-child ul{display:none;background-color:#e1e1e1;position:relative;top:5px;left:0;width:100%;z-index:1;}
.menu ul li {
	display: block;
	padding: 10px 15px 10px 15px;
	border-top: 1px solid #cccccc17;
	text-align: left;
	position: relative;
}
 .menu ul li span{position:absolute;right:30px;z-index:99;cursor:pointer;top:12px;text-align:center;}
 .menu ul li ul li ul{top:0;left:0;}
 .menu ul li ul li a{font-size: 12px;text-transform: none; background-color: #e1e1e1; padding: 8px 12px;color: #000;}
}
.header-contact .mobile-ligin-dropdown{
  display: none;
}
/*-- header area stop --*/



.video-banner-area {
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.video-banner-area .container{
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top:66%;
  text-align: center;
  -ms-transition: translate(0, -50%);
-o-transition: translate(0, -50%);
-moz-transition: translate(0, -50%);
-webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 1;
}
.video-banner-area .bannertextbox{}
.video-banner-area .bannertextbox p{
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}
.video-banner-area .btn.btn-block {
    background-color: #11100F;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 18px 50px;
    border: none;
    border-radius: 6px;
    margin-top: 24px;
}
.video-banner-area .btn.btn-block:hover {
    background-color: #A67D44;
}
.video-banner-area .bannertextbox h1{
  font-size:80px;
  letter-spacing: 7px;
  font-family: "Raleway", sans-serif;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
}
.video-banner-area:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 30%);
    z-index: -1;
}
.videobgbanner {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

/*about_area css*/
.video-banner-area.innerbanner{
    height: auto;
}
.video-banner-area.innerbanner .bannertextbox h1 {
    font-size: 70px;
}
.video-banner-area.innerbanner img{
    width: 100%;
}
.about_area{border-top: 40px solid #11100F;}
.about_area .aboutmobail{
    display: none;
}
.about_area .thumble{
 width: 100%;
 background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 550px;
  background-attachment: fixed;
}
.about_area_inner {
    padding: 65px 0;
    position: relative;
    z-index: 1;
}
.about_area_inner:after {
    content: "";
    position: absolute;
    left: 0;
    background-image: url(../images/aboutbg.png);
    width: 12%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: right;
    z-index: -1;
    background-repeat: no-repeat;
    opacity: 0.8;
}
.about_area_inner .headingbox h3 b {
    text-align: center;
    display: flex;
    font-weight: 600;
    line-height: 78px;
    padding-left: 50px;
}
.grid-container{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  padding: 0px;
}
.grid-container .grid-item {
    padding: 8px;
}
.grid-container .grid-item p{
  font-size: 16px;
  line-height: 30px;
  color: #11100F;
  font-weight: 400;
  text-align: justify;
}
.grid-container .grid-item p b {
    font-weight: 600;
    font-size: 20px;
}
.about_area a.btn-link {
    font-size: 16px;
    color: #11100F;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 9px 15px;
    position: relative;
    border-radius: 6px;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -khtml-transition: all ease-in-out 0.5s;
}
.about_area a.btn-link:hover{
  background-color: #A67D44;
  color: #fff;
}
/*letsgetarea css*/

.letsgetarea{
  background-color: #1E1E1E;
  padding: 65px 0;
  position: relative;
}
.letsgetarea:after {
    content: "";
    position: absolute;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: #fff;
    z-index: 0;
    top: 0;
}
.letsgetarea .letsgetarea_right{

}
.letsgetarea .headingbox h3{
 color: #fff;
}
.letsgetarea .headingbox h3 small{
  color: #fff;
}
.letsgetarea .headingbox h3 small span:after{
  background-color: #fff;
}
.letsgetarea .headingbox h3 b {
    padding-left: 50px;
    font-weight: 600;
}
.letsgetarea .textopacity h4 {
    font-family: "Abhaya Libre", serif;
    font-size: 356px;
    color: #ffffff14;
    text-transform: uppercase;
    position: absolute;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
    line-height: 276px;
    top: 40px;
}
.letsgetarea .textopacity h4 b {
    padding-left: 160px;
}
.letsgetarea .headingbox p {
    color: #fff;
    padding-left: 40px;
    margin-top: 50px;
}
.letsgetarea .item_letsget {
    background-color: #000;
    border: 6px solid #fff;
    margin-top: 24px;
    box-sizing: border-box;
    padding: 14px 10px 20px;
}
.letsgetarea .letsgetarea_right {
    padding-left: 50px;
    position: relative;
    z-index: 2;
}

.letsgetarea_right { visibility: hidden; }
/* Prevents :hover from triggering in the gaps between items */

.letsgetarea_right > * { visibility: visible; }
/* Brings the child items back in, even though the parent is `hidden` */

.letsgetarea_right > * { transition: opacity 150ms linear 100ms, transform 150ms ease-in-out 100ms; }
/* Makes the fades smooth with a slight delay to prevent jumps as the mouse moves between items */

.letsgetarea_right:hover > * { opacity: 0.4; transform: scale(0.9); }
/* Fade out all items when the parent is hovered */

.letsgetarea_right > *:hover { opacity: 1; transform: scale(1); transition-delay: 0ms, 0ms; }
/* Fade in the currently hovered item */



.letsgetarea .item_letsget h4 {
    color: #fff;
    font-size: 44px;
    font-family: "Raleway", sans-serif;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 40px;
}
.letsgetarea .item_letsget h4 b {
    font-weight: 600;
    padding-left: 124px;
}
.letsgetarea .item_letsget h4 small {
    color: #fff;
    display: block;
    font-size: 19px;
    font-family: "Karla", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    align-items: center;
    display: inline-flex;
    top: -10px;
    line-height: 20px;
}
.letsgetarea .item_letsget h4 small:before {
    content: "";
    width: 80px;
    display: inline-block;
    height: 1px;
    background-color: #ffffffad;
    align-items: center;
    display: inline-flex;
    justify-content: center;
}

/*listings_area css start*/

.listings_area{
  padding: 150px 0;
  position: relative;
  z-index: 1;
}
.listings_area h4{
  position: absolute;
  left: 0;
  top: 60px;
}
.listings_area:before {
    content: "";
    position: absolute;
    background-image: url(../images/marbletext.png);
    width: 38%;
    height: 1120px;
    background-position: right;
    right: 0;
    background-position: left;
    background-repeat: no-repeat;
    top: -60%;
    background-size: cover;
    z-index: -1;
}
.listings_area:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
    background-color: #000;
}
.listings_area .headingbox h3{
 color: #11100F;
}
.listings_area .headingbox h3 b{
  font-weight: 600;
  padding-left: 50px;
}
.properties_box{
  background-color: #fff;
}
.properties_box:hover .thum img{
  -webkit-filter: blur(3px);
    filter: blur(3px);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.properties_box:hover .properties_body{
  -webkit-filter: blur(3px);
    filter: blur(3px);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.properties_box .properties_body{
  text-align: center;
  box-sizing: border-box;
  padding: 24px 30px;
}
.properties_box .properties_body h5 {
    font-size: 20px;
    color: #11100F;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    margin-bottom: 10px;
}
.properties_box .properties_body p {
    font-size: 14px;
    color: #11100F;
    font-weight: 600;
    font-family: "Karla", sans-serif;
    margin-bottom: 0;
}
.properties_box .properties_body h6 {
    font-size: 14px;
    color: #11100F;
    margin-top: 15px;
    font-weight: 700;
    font-family: "Karla", sans-serif;
    margin-bottom: 0;
}

.properties_box .thum{
  width: 100%;
  height: 260px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.properties_box .thum img{
  width: 100%;
  height: 100%;
  object-fit: cover;
   -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.properties_box .thum .hover-text {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	bottom: -100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(../images/linebg.jpg);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	background-size: contain;
	background-repeat: repeat;
	opacity: 0.9;
}
.properties_box:hover .thum .hover-text{
  bottom: 0;
}
.properties_box .thum .hover-text a {
    display: inline-flex;
    font-size: 16px;
    text-transform: uppercase;
    background-color: #000000;
    padding: 10px 30px;
    color: #fff;
    font-weight: 600;
    border-radius: 0;
    letter-spacing: 1px;
    text-shadow: 0px 1px 3px rgb(0 0 0 / 45%);
}
.properties_box .thum .hover-text a:hover{
    background-color: #A67D44;
}

.owl-carousel.Properties-carousel .owl-nav .owl-next, .owl-carousel.Properties-carousel .owl-nav .owl-prev {
    width: 66px;
    height: 55px;
    background-color: #fff;
    font-size: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.owl-carousel.Properties-carousel .owl-nav .owl-next span, .owl-carousel.Properties-carousel .owl-nav .owl-prev span {
    line-height: 38px;
    position: relative;
    top: -2px;
}
.Properties-carousel.owl-theme .owl-nav {
    margin-top: 24px;
    justify-content: flex-start;
    display: flex;
}
.owl-carousel.Properties-carousel .owl-nav .owl-next{}
.owl-carousel.Properties-carousel .owl-nav .owl-next:hover, 
.owl-carousel.Properties-carousel .owl-nav .owl-prev:hover {
    background-color: #a67d44;
}
.owl-carousel.Properties-carousel .owl-nav .owl-prev {
    
}

.properties_innerpage{
    padding:65px 0;
}
.properties_innerpage .properties_box{
    margin-bottom: 30px;
} 
.properties_box {
    box-shadow: 0px 1px 4px rgb(0 0 0 / 11%);
}
.Privacypolicypage{
    padding: 70px 0;
}
.Privacypolicypage h2 {
    font-size: 34px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}
.Privacypolicypage p strong {
    font-size:24px;
    font-family: "Karla", sans-serif;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}
/*contactarea css start*/

.getintoucharea {
    background-color: #11100F;
    box-sizing: border-box;
    padding: 65px;
    text-align: center;
}
.getintoucharea .container{
    max-width: 950px;
    margin: auto;
}
.getintoucharea .headingbox h3{
    color: #fff;
}
.getintoucharea .headingbox h3 small{
    color: #fff;
}
.getintoucharea .headingbox h3 small span:after{
    background-color: #fff;
}
.getintoucharea .headingbox p{
    color: #fff;
}
.getintoucharea .getbox {
    box-sizing: border-box;
    padding: 40px;
    max-width: 80%;
    /* margin: auto; */
    border: 1px solid #ffffff1c;
    /* gap: 12px; */
    /* display: flex; */
    margin-left: -1px;
    background-color: #ffffff0a;
    color: #fff;
}
.getintoucharea .getbox .icon {
    width: 80px;
    height: 80px;
    box-sizing: border-box;
    padding: 20px;
    background-color: #000000;
    border: 2px solid #ffffff;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.getintoucharea .getbox h4 {
    font-family: "Karla", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 24px;
    margin-bottom: 15px;
}
.getintoucharea .getbox h5{
    
    font-size: 18px;
    color: #fff;
    font-weight: 300;
}
.contactarea {
    background-position: top;
    background-size: contain;
    background-repeat: repeat;
}
.p-65{
  padding: 65px 0;
}
.headingbox {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 50px;
}
.headingbox small {
    color: #11100F;
    font-size: 18px;
    font-family: "Karla", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    justify-content: flex-start;
    gap: 70px;
    margin-bottom: 15px;
}
.headingbox small span {
    position: relative;
}
.headingbox small span:after {
    content: "";
    position: absolute;
    right: -54px;
    width: 50px;
    height: 1px;
    background-color: #000;
    top: 48%;
}
.headingbox h3 {
    color: #A67D44;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 80px;
    margin-bottom: 15px;
}
.headingbox p{
  font-size: 16px;
 }
.contactarea_form {
    max-width: 800px;
    width: 100%;
    margin: auto;
}
.contactarea_form .form-group {
    margin-bottom: 34px;
}
.contactarea_form .form-group label {
    color: #11100F;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
}
.contactarea_form .form-group .form-control.textacon {
    border: 1px solid #11100F;
    height: 130px;
    resize: none;
    padding: 15px;
}
.contactarea_form .form-group .form-control {
    border-radius: 0px;
    height: 28px;
    border-radius: 0px;
    border: 0px;
    border-bottom: 1px solid #000;
    box-shadow: none;
    padding: 0;
}
.contactarea_form button.nav-link {
    font-size: 16px;
    text-transform: uppercase;
    padding: 16px 29px 14px;
    line-height: 16px;
}
.contactarea_form button.nav-link:hover{
    background-color: #A67D44;
    color: #fff;
}
.contactarea_form button.nav-link i{
  margin-right: 5px;
}






/*inndersliderarea css*/
.inndersliderarea {
    position: relative;
    z-index: 1;
}
.inndersliderarea .container {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 60%;
    text-align: left;
    -ms-transition: translate(0, -50%);
    -o-transition: translate(0, -50%);
    -moz-transition: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 1;
    padding: 20px 120px;
    color: #fff;
    pointer-events: none;
}
.inndersliderarea .container h1 {
    font-size: 44px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    margin-bottom:5px;
}
.inndersliderarea .container h2{
    font-size: 24px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    margin-bottom:5px;
}
.inndersliderarea .container p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 24px;
}
.inndersliderarea .item{
  width: 100%;
  background-position: center;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.inndersliderarea .item:after{
  content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 30%);
    z-index: 1;
}
.owl-carousel.Propertislidercarousel .owl-nav {
    position: absolute;
    width: 100%;
    top: auto;
    z-index: 3;
    bottom: 0;
}
.owl-carousel.Propertislidercarousel .owl-nav .owl-next, .owl-carousel.Propertislidercarousel .owl-nav .owl-prev {
    width: 58px;
    height: 55px;
    background-color: rgb(0 0 0);
    font-size: 44px;
    border: 1px solid rgb(0 0 0);
    border-radius: 0;
}
.owl-carousel.Propertislidercarousel .owl-nav .owl-next span, .owl-carousel.Propertislidercarousel .owl-nav .owl-prev span {
    line-height: 30px;
    position: relative;
    top: -9px;
    color: #fff;
}
.Propertislidercarousel.owl-theme .owl-nav {
    margin-top: 24px;
    justify-content: end;
    display: flex;
    box-sizing: border-box;
    padding: 0;
}
.owl-carousel.Propertislidercarousel .owl-nav .owl-next{}
.owl-carousel.Propertislidercarousel .owl-nav .owl-next:hover, 
.owl-carousel.Propertislidercarousel .owl-nav .owl-prev:hover {
    background-color: #a67d44;
}
.owl-carousel.Propertislidercarousel .owl-nav .owl-prev {
    
}

.propaty-container{
  padding: 65px 0;
}
.propaty-container .propaty-contleftarea h2 {
    font-size: 44px;
    color: #11100F;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    margin-bottom: 24px;
}
.propaty-contleftarea {
    height: 100%;
    position: relative;
    padding-right: 40px;
}
.propaty-contleftarea h5{
  font-size: 18px;
  margin-top: 15px;
  font-weight: 600;
}

.propaty-contleftarea img{
  margin: 15px 0;
}
.propaty-contleftarea:after {
    content: "";
    position: absolute;
    right: -26px;
    width: 1px;
    height: 100%;
    background-color: #dbdbdb;
    top: 0;
}
.propaty-contrightbox{
  box-sizing: border-box;
  padding: 40px 15px;
  background: #000;
  text-align: center;
}

.propaty-contrightbox ul{padding: 10px 0px;
  margin: 0px;
  border-top: 1px solid #3c3b3b;
  border-bottom: 1px solid #3c3b3b;}
.propaty-contrightbox ul li{ display: inline-block;
  list-style: none;width: 24%;}

.propaty-contrightbox .btn{background: #fff;
  padding: 17px 45px;
  border-radius: 0px;
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;}

.propaty-contrightbox h2{font-size: 55px;
  color: #fff;
  margin-bottom: 20px;}


.amintybox {

    align-items: center;
    box-sizing: border-box;
    padding: 6px;
    gap: 18px;

}
.amintybox h5{
  font-size: 15px;
  text-transform: uppercase;color: #fff;
}

.amintybox h4{font-size: 35px;
  color: #fff;
  margin: 30px 0px 35px;
  line-height: 38px;}

.amintybox .form-control{height: 45px;
  background-color: #000;
  margin-bottom: 17px;
  border-radius: 0px;
  padding: 10px;
  border-bottom: 1px solid #5e5a5a !important;
  border: none;}

.amintybox .form-control:placeholder{ color:#fff; font-size:15px;}


.amintybox h5 b{
  display: block;
}
.amintybox span {
    display: inline-flex;
    flex-shrink: 0;
    flex-basis: 48px;
    padding: 4px;
    border-radius: 6px;
}
.amintybox span img{
 width: 35px;
  filter: brightness(0) invert(1);
}

.autherbox {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 15px;
    margin: 24px 0;
    background: linear-gradient(to right, #d08600, #fbe55e);
}
.autherbox .thum {
    flex-shrink: 0;
    flex-basis: 250px;
    border: 5px solid #ad9b74a8;
    display: flex;
    height: 240px;
}
.autherbox .thum img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}
.autherbox .auther_textbox{
  box-sizing: border-box;
  padding: 24px;
}
.autherbox .auther_textbox h4 {
    font-size: 30px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}
.autherbox .auther_textbox ul li {
    font-size: 18px;
    margin-bottom: 8px;
}
.autherbox .auther_textbox  ul li strong {
    text-transform: uppercase;
}


.featuresamenities_area{
  box-sizing: border-box;
  padding: 65px 0;
  background-color:#1e1e1e;
}
.featuresamenities_area .headingbox{
  margin-bottom: 24px;
}
.featuresamenities_area .headingbox h3 {
    color: #fff;
    font-size: 60px;
}
.featuresamenities_area .headingbox h3 small{
  color: #fff;
}
.featuresamenities_area .headingbox h3 span{
  color: #fff;
}
.featuresamenities_area .headingbox h3 span:after{
  background-color: #fff;
}
.featuresamenities_box {
    background-color: rgb(0 0 0 / 33%);
    box-sizing: border-box;
    color: #fff;
    border: 1px solid rgb(255 255 255 / 22%);
}
.featuresamenities_box h5 {
    font-size: 28px;
    padding: 8px 30px;
    border-bottom: 1px solid rgb(255 255 255 / 15%);
    background-color: rgb(166 125 68 / 41%);
    background: linear-gradient(to right, #d08600, #fbe55e);
}
.featuresamenities_box ul{
  padding: 24px 30px;
}
.featuresamenities_box ul li {
    display: flex;
    margin-top: 8px;
}
.featuresamenities_box ul li strong {
    min-width: 30%;
    max-width: 30%;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 20px;
    color: rgb(255 255 255 / 42%);
}
/*-- footer area start --*/

.footer-area{
  background-color: var(--footer-bg);
  padding: 120px 0;
}
.footer-area .container{
  position: relative;
}
.footer-wizget {
    margin-top: 24px;
}
.footer-wizget h2 {
    font-family: "Raleway", sans-serif;
    font-size: 96px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
.footer-wizget h2 small{
  display: block;
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.footer-wizget .form-group {
    margin-top: 52px;
    margin-bottom: 15px;
}
.footer-wizget .form-group label{
 font-family: "Karla", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
.footer-wizget .form-group .form-control {
    height: 40px;
    background-color: transparent;
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid #fff;
    box-shadow: none;
    color: #fff;
    font-size: 16px;
	padding-right: 50px;
}
.footer-wizget .form-check label {
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    text-align: justify;
}
.footer-wizget  .form-check-input {
    width: 19px;
    height: 19px;
    border-radius: 0px;
    position: relative;
    top: 5px;
}
.footer-area .footer-rightbox {
    max-width: 96%;
    width: 100%;
    padding-left: 50px;
    padding-top: 120px;
}
.footer-wizget ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-wizget ul li{
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
.footer-wizget ul li a {
    color: #fff;
    display: flex;
    align-items: center;
}
.footer-wizget ul li a span {
    flex-shrink: 0;
    flex-basis: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 3px;
}
.footer-wizget ul li a span img.wauto {
    max-width: 19px;
}
.footer-area .copyrightarea {
    padding-top: 110px;
}
.footer-area .copyrightarea p{
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  font-weight: 400;
}
.footer-area .copyrightarea .footer-logo {
    max-width: 270px;
    width: 100%;
    position: absolute;
    right: 30px;
    top: -30px;
}
.footerlinkbox{
  padding-top: 60px;
}
.footerlinkbox {
    color: #fff;
    align-items: center;
    gap: 8px;
}
.footerlinkbox a {
    font-size: 16px;
    color: #fff;
    font-family: "Raleway", sans-serif;
    line-height: 16px;
    font-weight: 400;
}


.footer_adress_mobail {
	display: none;
}
.logo-mobail {
	display: none;
}

.button-fixed-round {
  right: 55px;
  position: fixed;
  z-index: 19;
  width: 64px;
  height: 64px;
}

.button-fixed-round {
	right: 30px;
	width: 40px;
	height: 40px;
}
.button-fixed-round.telegram {
    bottom: 120px;
}
.button-fixed-round.watsapp {
  bottom: 40px;
}


.button-fixed-round.telegram .img-circle {
  background: #27a6e5;
}
.button-fixed-round.telegram .circlephone {
  border-color: #27a6e5;
}
.button-fixed-round.telegram .circle-fill {
  opacity: 1;
  background: rgba(39, 166, 229, 0.4);
}
.button-fixed-round svg {
  width: 26px;
  height: 26px;
}

.circlephone {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	border: 2px solid #43d854;
	width: 74px;
	height: 74px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
	border-radius: 100%;
	opacity: 0.5;
	-webkit-animation: circle-anim 2.3s infinite ease-in-out !important;
	animation: circle-anim 2.3s infinite ease-in-out !important;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.circle-fill {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	background-color: #43d854;
	width: 60px;
	height: 60px;
	opacity: 0.2;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
	border-radius: 100%;
	-webkit-animation: circle-fill-anim 2.3s infinite ease-in-out;
	animation: circle-fill-anim 2.3s infinite ease-in-out;
	pointer-events: none;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.img-circle {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  border-radius: 100%;
  opacity: 0.85;
  background-color: #43d854;
}
.img-circle:hover {
  opacity: 1;
}

.img-circleblock {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
  50% {
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}

@keyframes tossing {
  0% {
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
  50% {
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@-webkit-keyframes circle-anim {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.5) skew(1deg);
    transform: translate(-50%, -50%) scale(0.5) skew(1deg);
    opacity: 0.1;
  }
  30% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) skew(1deg);
    transform: translate(-50%, -50%) scale(0.7) skew(1deg);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1) skew(1deg);
    transform: translate(-50%, -50%) scale(1) skew(1deg);
    opacity: 0.1;
  }
}
@keyframes circle-anim {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.5) skew(1deg);
    transform: translate(-50%, -50%) scale(0.5) skew(1deg);
    opacity: 0.1;
  }
  30% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) skew(1deg);
    transform: translate(-50%, -50%) scale(0.7) skew(1deg);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1) skew(1deg);
    transform: translate(-50%, -50%) scale(1) skew(1deg);
    opacity: 0.1;
  }
}
@-webkit-keyframes circle-fill-anim {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) skew(1deg);
    transform: translate(-50%, -50%) scale(0.7) skew(1deg);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1) skew(1deg);
    transform: translate(-50%, -50%) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) skew(1deg);
    transform: translate(-50%, -50%) scale(0.7) skew(1deg);
  }
}
@keyframes circle-fill-anim {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) skew(1deg);
    transform: translate(-50%, -50%) scale(0.7) skew(1deg);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1) skew(1deg);
    transform: translate(-50%, -50%) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.7) skew(1deg);
    transform: translate(-50%, -50%) scale(0.7) skew(1deg);
  }
}






#search-box {
     visibility: hidden;
     position: absolute;
     height: 100%;
     width: 100%;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 999999999;
}
 #search-box .container {
     display: table;
     width: 100%;
     height: 100%;
}
 #search-box .container .close {
	position: absolute;
	right: 32px;
	top: 32px;
	width: 32px;
	height: 0.9;
}
 #search-box .container .close:hover {
     opacity: 1;
}
#search-box .container .close::before, #search-box .container .close::after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 26px;
	width: 2px;
	background-color: #fff;
}
#search-box .form {
	display: flex;
}
 #search-box .container .close:before {
     transform: rotate(45deg);
}
 #search-box .container .close:after {
     transform: rotate(-45deg);
}
 #search-box .container .search-main {
     display: table-cell;
     vertical-align: middle;
}
#search-box .container .search-main .search-inner {
	width: 100%;
	margin: 0 auto;
	max-width: 630px;
}
 #search-box .container .search-main form {
     position: relative;
}
#search-box .container .search-main input {
	background: #0000;
	/* border: none; */
	box-shadow: none;
	padding: 0;
	font-size: 15px;
	height: 100px;
	border: none;
	display: block;
	color: white;
	margin-bottom: 0;
	width: 100%;
	border-radius: 0;
	font-size: 28px;
	text-transform: capitalize;
	border-bottom: 1px solid #fff;
}
 #search-box .container .search-main input:focus {
     outline: none;
}
#search-box .container .search-main button {
	border: 0;
	left: auto;
	outline: none;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	background: transparent;
	font-size: 34px;
	padding: 0;
	background-color: transparent;
	color: #fff;
	width: auto;
	border-radius: 0;
}
#search-box .container .search-main button:hover{
  background-color: #000000;	
}
 #search-box .container .search-main .search-info {
     display: block;
     color: white;
     text-align: right;
     float: right;
     margin-top: 4px;
}
#search-box.-open {
	background: #000000f2;
	visibility: visible;
	animation: fadein 0.8s;
}
 #search-box.-open .container .search-main input {
    
}
 @keyframes fadein {
     from {
         opacity: 0;
    }
     to {
         opacity: 1;
    }
}

.submitbtn {
    position: absolute;
    color: #fff;
    font-size: 25px;
    top: 30px;
    right: 0px;
    padding: 0px;
    background: initial !important;
    border: none;
    filter: invert(100%) sepia(2%) saturate(7%) hue-rotate(344deg) brightness(104%) contrast(103%);
}

.footer-wizget .form-group{position: relative;}
.watsapp{ font-size:0px}
.telegram{ font-size:0px}
.menumobailhiden {
    display: none!important;
}
.offcanvas-body .innboxmenu{
	text-align:right;
	box-sizing:border-box;
	padding:10px 18px;
}
.offcanvas-body .innboxmenu li img {
	max-width: 46px;
	width: 100%;
}
.offcanvas-body .innboxmenu li:first-child{
	display:none;
}
.offcanvas-body .innboxmenu li:last-child{
	display:none;
}
.offcanvas-body .innboxmenu a {
    color: #fff;
    font-size: 40px;
    margin: 5px 6px;
	
}
.offcanvas-body .innboxmenu p {
    color: #fff;
    font-size: 22px;
}
.menumobailhiden .innboxmenu a:first-child{
		display:none!important;
}
.menumobailhiden .innboxmenu a:last-child{
		display:none!important;
}
.error-404.not-found {
	text-align: center;
	padding: 54px;
}

.blogbox{padding: 15px 17px;box-shadow: 0px 0px 10px 0px #b9b9b9;border-radius: 5px;}
.blogimg{height: 230px;display: block;margin-bottom: 15px;}
.blogimg img{width: 100%;height: 100%;object-fit: cover;border-radius: 5px;}
.blogbox h6{font-size: 15px;color: #242424;font-family: "Raleway", sans-serif;font-weight: 500;}
.blogbox h4 a{font-size: 23px;color: #A67D44;line-height: 28px;display: inline-block;margin: 10px 0px;
  font-family: "Raleway", sans-serif;font-weight: 600;}
.leanmore{font-family: "Raleway", sans-serif;display: inline-flex;font-size: 15px;text-transform: uppercase;
  background-color: #000000;padding: 8px 20px;color: #fff;font-weight: 600;border-radius: 0;
  letter-spacing: 1px;text-shadow: 0px 1px 3px rgb(0 0 0 / 45%); margin-top:10px}
.leanmore:hover{background-color: #A67D44;color: #fff;}
.blogarea h4{margin-bottom: 10px;font-weight: 600;color: #A67D44;font-size: 35px;}
.blogtext p{font-size: 16px;line-height: 30px;color: #11100F;font-weight: 400;text-align: justify;}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #fff;
  color: #fff;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #000;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #000;
}