@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900|Open+Sans:300,400,600,700,800|Roboto:100,300,400,500,700,900');
body{
	box-sizing:border-box; font-family: 'Montserrat', sans-serif;
}
html {
  scroll-behavior: smooth;
}
:root {
    --primary-color:#0eaaa6;
    --secondary-color:#333;
}
::selection {
  background:var(--primary-color);
  color:#fff;
}
::-moz-selection {
   background:var(--primary-color);
    color:#fff;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

p{
    line-height: 1.5;
    font-size: 15px;
}
ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
a, button {
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
a:hover
{
  text-decoration: none;
}
button:focus, input:focus, textarea:focus, select:focus, a:hover
{
  outline: none; box-shadow: none;
}
.wrapper
{
  margin:0px; 
  padding: 0px;
}
section
{
	padding:50px 0;
}
.text_primary{
	color: var(--primary-color);
}
.fontWeight-3{
	font-weight: 300;
}
.fontWeight-4{
	font-weight: 400;
}
.fontWeight-5{
	font-weight: 500 !important;
}
.fontWeight-6{
	font-weight: 600 !important;
}
.fontWeight-7{
	font-weight: 700;
}
.fontWeight-8{
	font-weight: 800;
}
.large_heading{
	font-size: 55px;
}
.heading{
	font-size: 35px;
}
.sub_heading{
	font-size: 30px;
}
.small_heaidng{
	font-size: 20px;
}
.title{
	font-size: 18px;
}
.text{
	font-size: 15px;
}

.sidebar-left {
    overflow-y: auto;
}

.theme-shadow{
	-webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
}
.fixedHeader{
	background: #fff;
	position: fixed;
	top: 0px;
	left: 0;
	-webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
	width: 100%;
}
.header{
	
	padding: 10px 0;
	width: 100%;
	z-index: 99;
}
.mainHeader{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav_logo img {
    height: 70px;
}

.sliderBlock{
	position: relative;
	z-index: 1;
}
.sliderBlock img{
	width: 100%;
}
.headerMenu > ul{
	display: flex;
	align-items: center;
	margin-top: 5px;
}
.headerMenu li{
	position: relative;
}
.headerMenu ul li ul{
	position: absolute;
	top: 50px;
	left: 0px;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	transition: all 0.2s ease-in-out;
	padding: 10px 0;
	width: 240px;
	background: #fff;
	z-index: 0;
}
.headerMenu ul li:hover ul{
	opacity: 1;
	z-index: 99;
	top: 40px;
	visibility: visible;
}
.headerMenu ul li ul li:hover{
	background: #f7f7f7;
}
.headerMenu ul li ul li a{
	color: #000;
}
.headerMenu ul li a{
	color: #333;
	font-size: 13px;
	font-weight: 500;
	display: block;
	padding: 10px 13px;
	text-transform: uppercase;
}
.headerMenu ul li  a i{
	font-size: 11px;
	position: relative;
	left: 3px;
}
.headerMenu ul li:hover > a{
	color: var(--primary-color);
}
.listProperty{
	background: var(--primary-color);
	border-radius: 5px;
}
.listProperty a{
	color: #fff !important;
}
.listProperty:hover{
	background: var(--secondary-color);
}
.listProperty:focus a{
	color: #fff;
}
.formProperty{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 100%;
	z-index: 2;
}
.formProperty p{
	color: #fff;
}
.formProperty h1{
	color: #fff;
	margin-top: 15px;
}
.Formcontainer{
	width: 900px;
	margin:0 auto;
}
.mainForm{
	background: rgba(255,255,255,.40);
	padding:40px;
}
.formTab{
	display: flex;
	align-items: center;
	margin-top: 40px;
}
.formTab li{
	background: #fff;
	cursor: pointer;
	padding:15px 40px;
	font-weight: 600;
}
.formTab li.active{
	background: var(--primary-color);
	color: #fff;
}
.mainForm{
	display: flex;
}
.dropDown{
	width: 20%;
	border-right: 1px solid #e0e0e0;
	position: relative;
}
.dropDown input{
	width: 100%;
	padding:10px;
	padding-right: 30px;
	font-size: 14px;
	font-weight: 500;
	height: 55px;
	border:none;
}
.dropDown:after{
	content: "\f107";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	color: #777;
}
.searchType{
	width: 60%;
}
.searchType input{
	width: 100%;
	padding:10px;
	font-size: 14px;
	font-weight: 500;
	height: 55px;
	border:none;
}
.dropDown ul{
	position: absolute;
	top: 50px;
	width: 100%;
	background: #fff;
	max-height:250px;
	overflow-y: scroll;
	display: none;
}
.dropDown ul li{
	font-size: 15px;
	cursor: pointer;
	padding:8px 10px; 
}
.dropDown ul li:hover{
	background: var(--primary-color);
	color: #fff;
}
.searchBtn{
	background: var(--primary-color);
	color: #fff;
	padding: 10px 30px;
	border:none;
	width: 20%;
	font-weight: 500;
}
.searchBtn i{
	padding-right: 5px;
}
.searchBtn:hover{
	background: #097674;
}
.inlineTitle{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.iconHome{
	position: relative;
}
.iconHome:after{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width:20px;
	height: 20px;
	background: url(../images/icons/home.svg) no-repeat;
}
.propertAvailable{
	padding-left: 30px;
}
.text-green{
	color: var(--primary-color);
}
.featureItems{
	border:1px solid #e0e0e0;
	background:#fff; 
}
.propertyImg{
	height: 170px;
	position: relative;
	z-index: 1;
}
.propertyListing{
	margin-top: 40px;
}
.propertyTitle{
	padding:20px 10px;
}
.propertyTitle h4{
	color: #000;
	margin-bottom: 10px;
	font-size: 18px;
}
.propertyDetails{
	background: #f8f8f8;
	padding:20px;
}
.propertyDetails ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.propertyDetails ul li{
	padding:0 30px;
	width: 50%;
	margin: 10px 0;
	position: relative;
	font-size: 14px;
	z-index: 1;
	padding-right: 0;
}
.propertyDetails ul li:after{
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 20px;
	height: 20px;
}
.scaleIcon:after{
	background: url(../images/icons/scale.svg) no-repeat;
}
.roomIcon:after{
	background: url(../images/icons/room.svg) no-repeat;
}
.bedIcon:after
{
	background: url(../images/icons/bed.svg) no-repeat;
}
.bathIcon:after
{
	background: url(../images/icons/bathtub.svg) no-repeat;
}
.priceTitle{
	font-size: 18px;
	color: #000;
	margin: 15px 0;
	color: var(--primary-color);
	text-align: center;
}
.priceTitle span{
	text-decoration: line-through;
	color: #666;
	font-size: 15px;
	margin-right: 10px;
}
.tagsFeature{

	padding: 5px 15px;
	font-size: 13px;
	color: #fff;
	margin: 5px 5px;
	display: inline-block;
	border-radius: 3px;
}
.bgGery{
	background: #f9f9f9;
}
.propertyImg:after{
	transition: all 0.5s ease-in-out;
}
.featureItems:hover .propertyImg:after{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.4);
	z-index: -1;
}
.featureItems:hover .propertyTitle h4{
	color: var(--primary-color);
}
.bgAction{
	background: url(../images/bg/bg.jpg) no-repeat;
	background-attachment: fixed;
	background-size: cover;
}
.itemAction{
	background:#0eaaa6e8;
	padding:40px;
	height: 100%;
}
.itemAction a{
	display: flex;
	align-items: center;
}
.itemAction a:hover h4{
	text-decoration: underline;
}
.iconAction{
	width: 100px;
	margin-right: 30px;
}
.rightAction h4{
	margin-bottom: 15px;
	color: #fff;
}
.rightAction p{
	color: #fff;
}
.iconAction img{
	width: 100%;
}
.cityItem img{
	width: 100%;
	border-radius: 5px;
}
.cityItem{
	position: relative;
	margin: 20px ;
}
.titleCity{
	padding:80px 40px 40px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); 
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}
.titleCity{
	position: absolute;
	bottom: 0px;
	width: 100%;
	text-align: center;
	color: #fff;
}
.titleCity h4{
	font-size: 25px;
	margin-bottom: 10px;
}
.whyChoose{
	background: url(../images/bg/Interior-Banner.jpg) no-repeat;
	background-attachment: fixed;
	padding-bottom: 80px;
	padding-top: 100px;
}
.mainChoose{
	padding: 40px;
	position: relative;
	top: 100px;
	background: #fff;
}
.bloxInline{
	display: flex;
	align-items: center;
}
.boxChoose{
	text-align: center;
	margin-top: 40px;
	padding:20px 20px;
	border-right: 1px solid #f1f1f1;
}
.boxChoose img{
	width: 80px;
}
.boxChoose h4{
	margin-top: 50px;
	font-weight: 500;
	margin-bottom: 15px;
}
.boxChoose a{
	margin-top: 20px;
	color: var(--primary-color);
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
	display: block;
}
.boxChoose:last-child{
	border-right: none;
}
.association{
	margin-top: 30px;
}
.footer{
	background:#333;
	padding: 40px 0 20px;
}
.footerItem h4{
	font-size: 22px;
	color: #eee;
	margin-bottom: 15px;
}
.footerItem ul{
	margin-top: 20px;
}
.footerItem ul li a{
	color: #eee;
	padding: 8px 0;
	display: block;
	font-size: 14px;
}
.footerItem ul li:hover a{
	color: #fff;
}
.footerItem p{
	color: #eee;
	padding: 8px 0px;
	display: flex;
}
.footerItem p i{
	margin-right: 10px;
	margin-top: 5px;
}
.footerItem a{
	color: #eee;
}
.footerItem a:hover{
	color: var(--primary-color);
}
.copyRight{
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px solid #444;
}
.copyRight{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.copyRight p{
	color: #999;
}
.rightSocial ul{
	display: flex;
}
.rightSocial ul li a{
	color: #eee;
	padding: 5px 15px;
	display: inline-block;
}
.rightSocial p a{
	color: #999;
}
.rightSocial ul li a:hover{
	color: var(--primary-color);
}
.associationSlider{
	margin-top: 20px;
}
.assoItem{
	border:1px solid #e0e0e0;
	width: 100%;
}
.assoItem img{
	width: 100%;
	height: 80px;
	object-fit: cover;
}
.memberImg{
	height: 300px;
	background: #f8f8f8;
}
.memberImg img{
	width: 100%;
	height:100%;
	object-fit: cover;
}
.itemMember{
	border-radius: 5px;
	padding: 15px;
}
.itemMember img{
	border-radius: 5px;
}
.teamTitle{
	padding: 20px 0 0;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.teamTitle h4{
	font-size: 22px;
	margin-bottom: 5px;
}
.teamTitle p{
	margin-bottom: 0px;
}
.bradcrame{
	padding: 140px 0 100px;
	position: relative;
	z-index: 1;
}
.aboutBg{
	background: url(../images/bg/about.jpg) no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
}
.bradcrame:before{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.7);
	z-index: -1;
}
.bradcrame ul{
	display: flex;
	align-items: center;
	justify-content:center;
	margin-top: 15px;
}
.bradcrame ul li{
	font-size: 16px;
	color: #fff;
}
.bradcrame ul li i{
	font-size: 10px;
}
.bradcrame ul li a{
	font-size: 14px;
	color: #fff;
	display: inline-block;
	padding: 0 10px;
}
.bradcrame ul li a:hover{
	color: var(--primary-color);
}
.img1 {
	margin-bottom: 10px;
}
.img1 img{
	width: 100%;
	border-radius: 5px;
}
.img2{
	transform: translateY(20px);
}











/* responsive css */
.desktop-none{
	display: none;
}
/**/


.rightHistory{
	padding-left: 40px;
}
.borderStyle span{
	position: relative;
	z-index: 1;
}
.borderStyle span:after{
	content: '';
	position: absolute;
	bottom: -17px;
	left: 10px;
	background: var(--primary-color);
	height: 5px;
	border-radius: 5px;
	width:20%;
}
.borderStyle span:before{
	content: '';
	position: absolute;
	bottom: -15px;
	left: 0px;
	background: var(--primary-color);
	height: 1px;
	border-radius: 5px;
	width:100%;
}
.rightHistory p{
	margin-top: 10px;
}
.leftAbout{
	padding:20px 10px;
	background: #f9f9f9;
}
.leftAbout img{
	height: 300px;
	object-fit: cover;
	object-position: center;
}
.itemAboutLeft{
	display: flex;
	align-items: center;
	margin-top:20px;
}
.itemLeft{
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	-webkit-box-shadow: 0 15px 35px rgb(0 0 0 / 10%);
    box-shadow: 0 15px 35px rgb(0 0 0 / 10%);
    font-size: 30px;
    color: var(--primary-color);
    margin-right: 20px;
    transition: all 0.5s ease-in-out;
    border-radius: 50%;
}
.contactList .itemLeft{
	font-size: 25px;
	width: 70px;
	height: 70px;
}
.itemRight p{
	margin-top: 10px;
}
.itemAboutLeft:hover .itemLeft{
	background: var(--primary-color);
	color: #fff;
}
.itemRight a{
	font-size: 16px;
	color: #333;
	font-weight: 500;
}
.itemRight a:hover {
	color: var(--primary-color);
}
.centerBorder span:after{
	left: 50%;
	transform: translateX(-50%);
}
.inlineItems{
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
}
.leftIcons{
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--primary-color);
	padding: 18px;
	display: flex;
	box-shadow: 0 15px 35px rgb(0 0 0 / 10%);
	align-items: center;
	justify-content: center;
	transition: all 0.5s ease-in-out;
}
.leftIcons img{
	width: 100%;
}
.rightIcons
{
	width: calc(100% - 100px);
}
.rightIcons p{
	margin-top: 10px;
}
.inlineItems:hover .leftIcons{
	transform: rotateY(360deg);
}
.visionText{
	margin-top: 50px;
}
.leftVision p{
	margin-bottom: 15px;
}
.visionText ul{
	margin-top: 20px;
}
.visionText ul li {
	font-size: 14px;
	padding:5px 25px;
	position: relative;
}
.listBullte li{
	position: relative;
}
.listBullte li:before{
	content: '';
	position: absolute;
	top: 11px;
	left: 5px;
	width: 7px;
	height: 7px;
	background: #333;
	border-radius: 50%;
}
.rightVision img{
	max-width: 100%;
}
.formItems{
	margin-bottom:15px;
}
.formItems label{
	font-size: 14px;
	padding-left: 5px;
	font-weight: 500;
	margin-bottom: 5px;
	color: #333;
}
.formItems input{
	width:100%;
	height: 50px;
	border-radius: 5px;
	transition: all 0.3s ease-in-out; 
	border:1px solid #e0e0e0;
	padding:10px;
}
.formItems textarea{
	width:100%;
	height: 100px;
	transition: all 0.3s ease-in-out; 
	border-radius: 5px;
	border:1px solid #e0e0e0;
	padding:10px;
}
.formItems input:focus, .formItems textarea:focus{
	border-color: var(--primary-color);
	-webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}
.addressInfo h4{
	font-weight: 800;
}
.addressInfo ul{
	margin-top: 40px;
}
.addressInfo ul li{
	padding:10px 10px 10px 50px;
	position: relative;
	color: #333;
	font-weight: 500;
}
.addressInfo ul li a{
	color: #333;
	font-weight: 500;
}
.addressInfo ul li a:hover{
	color: var(--primary-color);
}
.address:before{
	content: '\f3c5';
	position: absolute;
	top: 8px;
	left: 0px;
	width: 40px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	height: 40px;
	border-radius: 50%;
	font-size: 18px;
	display: flex;
	align-items:center;
	justify-content: center;
	border:1px solid var(--primary-color);
	color: var(--primary-color);
}
.phone:before{
	content: '\f879';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 40px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	height: 40px;
	border-radius: 50%;
	font-size: 18px;
	display: flex;
	align-items:center;
	justify-content: center;
	border:1px solid var(--primary-color);
	color: var(--primary-color);
}
.mail:before{
	content: '\f0e0';
	position: absolute;
	top: 10px;
	left: 0px;
	width: 40px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	height: 40px;
	border-radius: 50%;
	font-size: 18px;
	display: flex;
	align-items:center;
	justify-content: center;
	border:1px solid var(--primary-color);
	color: var(--primary-color);
}
.leftContact{
	margin-top: 40px;
}
.btnSubmit{
	background: var(--primary-color);
	color: #fff;
	padding: 10px 35px;
	border-radius: 5px;
	border:1px solid transparent;
	font-weight: 600;
}
.btnSubmit:hover{
	background: transparent;
	border-color: var(--primary-color);
	color: var(--primary-color);
}
.socialLinks{
	margin-top: 40px;
}
.socialLinks h4{
	margin-bottom: 20px;
}
.socialLinks ul{
	display: flex;
	align-items: center;
	margin-top: 40px;
}
.socialLinks ul li a{
	color: #fff;
	display: block;
}
.socialLinks ul li
{
	position: relative;
	width: 40px;
	height: 40px;
	transition: all 0.5s ease-in-out;
	display: flex;
	margin-right: 25px;
	align-items: center;
	justify-content: center;
}
.socialLinks ul li.facebook:before{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: #4267B2;
	z-index: -1;
	transform: rotate(45deg);
	border-bottom: 4px solid #34528e;
	border-right: 4px solid #34528e;
	border-radius: 3px;
}
.socialLinks ul li.twitter:before{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: #1DA1F2;
	z-index: -1;
	transform: rotate(45deg);
	border-bottom: 4px solid #1780c1;
	border-right: 4px solid #1780c1;
	border-radius: 3px;
}
.socialLinks ul li.youtube:before{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: #ff0000;
	z-index: -1;
	transform: rotate(45deg);
	border-bottom: 4px solid #cc0000;
	border-right: 4px solid #cc0000;
	border-radius: 3px;
}
.socialLinks ul li.linkedin:before{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: #0077b5;
	z-index: -1;
	transform: rotate(45deg);
	border-bottom: 4px solid #005f90;
	border-right: 4px solid #005f90;
	border-radius: 3px;
}
.socialLinks ul li:hover{
	transform: translateY(-5px);
}
.socialLinks ul li:hover:before
{
	-webkit-box-shadow: 0 15px 35px rgb(0 0 0 / 10%);
    box-shadow: 0 15px 35px rgb(0 0 0 / 10%);    
}
.itemContact{
	background: #fff;
	border:1px solid #e0e0e0;
	border-radius: 5px;
	padding:25px 20px;
	text-align: center;
	height: 100%;
}
.itemContact p{
	margin: 10px 0 10px 0;
}
.itemContact ul li a{
	font-size: 14px;
	color: #000;
}
.itemContact ul li a:hover{
	color: var(--primary-color);
}
.propertPost{
	padding: 40px;
	background: #fff;
	border:1px solid #e0e0e0;
	border-radius: 10px;
}
.mainPost{
	border-top: 1px solid #f1f1f1;
	margin-top: 20px;
	padding-top: 20px;
}
.formPost{
	margin-bottom: 20px;
}
.formPost p{
	margin-top: 10px;
	font-size: 14px;
	font-weight: 500;
}
.formPost input[type="text"], .formPost input[type="number"], .formPost input[type="file"], .formPost input[type="email"], .formPost select{
	width:100%;
	height: 45px;
	font-size: 15px;
	border-radius: 5px;
	transition: all 0.3s ease-in-out; 
	border:1px solid #ccc;
	padding:10px;
}
.formPost textarea{
	width:100%;
	height: 100px;
	font-size: 15px;
	border-radius: 5px;
	transition: all 0.3s ease-in-out; 
	border:1px solid #ccc;
	padding:10px;
}
.formPost input[type="text"]:focus, .formPost input[type="number"]:focus, .formPost input[type="file"]:focus, input[type="email"]:focus, .formPost textarea:focus, .formPost select:focus{
	border-color: var(--primary-color);
	-webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}
.inlineProperty{
	display: flex;
}
.propertyType {
	margin-top: 5px;
	margin-right: 40px;
}
.propertyType label{
	font-size: 14px;
	cursor: pointer;
}
.propertyType input{

} 
.information{
	background: #f8f8f8;
	padding: 10px;
	font-size: 15px;
	margin-bottom: 20px;
}
#formFileMultiple{
	padding-left: 17px;
}
.borderTopNone{
	border-top: none;
	margin-top: 0px;
}
.sidebarLeft{
	margin-bottom: 30px;
}
.sidebarLeft h3{
	background: #f7f7f7;
	padding:10px;
	font-size: 20px;
}
.sidebarLeft ul{
	margin-top: 20px;
}
.sidebarLeft ul li{
	position: relative;
	z-index: 1;
	border-bottom: 1px dashed #e0e0e0;
}
.sidebarLeft ul li:before{
	content: '\f101';
	position: absolute;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	top: 12px;
	font-size: 12px;
	color: #444;
	left: 0px;
}
.sidebarLeft ul li a{
	font-size: 14px;
	color: #333;
	font-weight: 500;
	display: inline-block;
	padding: 10px 20px;
}
.sidebarLeft ul li a:hover{
	color: var(--primary-color);
	text-decoration: underline;
}
.propertyInline{
	padding-left: 15px;
	margin-bottom: 20px;
}
.itemProprtyList{
	margin-bottom: 30px;
	border:1px solid #e0e0e0;
	padding:10px;
	border-radius: 5px;
}
.proImg img{
	max-width: 100%;
	border-radius: 5px;
	border:5px solid #e0e0e0;
	height: 100%;
	object-fit: cover;
}
.proImg{
	height: 250px;
}
.propertyDetail .title{
	font-size: 20px;
}
.propertyDetail h4 a{
	color: #333;
}
.propertyDetail p{
	font-size: 13px;
	margin-top: 10px;
	margin-bottom: 15px;
}
.propertyDetail .propertyDetails ul li{
	width: 33%;
}
.propertyBtn{
	margin-top: 20px;
}
.btnDetail{
	border:1px solid var(--secondary-color);
	color: var(--secondary-color);
	padding:10px 20px;
	border-radius: 5px;
	font-size: 14px;
	background: transparent;
	font-weight: 500;
	margin-right: 10px;
}
.btnDetail:hover{
	background: var(--secondary-color);
	color: #fff;
}
.btnAgent{
	border:1px solid transparent;
	color: var(--primary-color);
	padding:10px 20px;
	border-radius: 5px;
	color: #fff;
	font-size: 14px;
	background: var(--primary-color);
	font-weight: 500;
	margin-right: 10px;
}
.btnAgent:hover{
	background: transparent;
	border-color: var(--primary-color);
	color: var(--primary-color);
}
.itemProprtyList:hover{
	-webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}
.agentBlock{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	z-index: 99;
}
.agentModal{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.agentContnent{
	background: #fff;
	border-radius: 10px;
}
.agentBody .btnSubmit{
	width: 100%;
}
.agentBody .formPost label
{
	font-size: 14px;
}
.inlineHeader{
	padding: 20px 10px;
	background: #f1f1f1;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	display: flex;
	justify-content: space-between;
}
.iconAgent{
	width: 60px;
	height: 60px;
	background: #fff;
	border:1px solid #e0e0e0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin-right: 15px;
}
.agentDetail{
	width: calc(100% - 70px);
}
.agentDetail h4{
	font-size: 18px;
	font-weight: 600;
}
.agentDetail p{
	font-size: 14px;
	color: #444;
	margin-top: 5px;
}
.agentBody{
	padding: 20px;
}
.agentBody p{
	font-size: 14px;
	text-align: center;
}
.agentBody p a{
	color: #000;
}
.agentBody p a:hover{
	text-decoration: underline;
	color: var(--primary-color);
}
.closeIcon{
	position: absolute;
	top: 0px;
	right: -30px;
	color: #fff;
	border:none;
	background: none;
	font-size: 22px;
}
.detailImg{
	height: 310px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8f8f8;
	padding: 10px;
}
.detailImg img{
	max-width: 100%;
	max-height: 100%;
}
.detailImg2{
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8f8f8;
	padding: 10px;
}
.detailImg2 img{
	max-width: 100%;
	max-height: 100%;
}
.rightDetailProprty h4{
	font-weight: 600;
	color: var(--primary-color);
}
.rightDetailProprty p.locationPro{
	margin-top: 10px;
}
.tableLayout{
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	border-left:2px solid #e0e0e0;
	border-bottom: 2px solid #e0e0e0;
}
.column
{
	flex: 1 0 21%;
	border-right:2px solid #e0e0e0;
	border-top: 2px solid #e0e0e0;
	padding: 10px;
}
.tableLayout{
	margin-bottom: 30px;
}
.mainBg{
	background: #fff;
	padding:15px;
	margin-bottom: 40px;
	border:1px solid #e0e0e0;
}
.innerTitle span{
	position: relative;
}
.innerTitle span:before{
	content: '';
	position: absolute;
	top: 40px;
	left: 0px;
	height: 2px;
	background: var(--primary-color);
	width: 70%;
}
.innerTitle{
	margin-bottom: 40px;
}
.addDet{
	display: flex;
	margin-bottom: 15px;
	align-items: center;
}
.addDet .rightSpace{
	margin-right: 15px;
}
.addDet p{
	font-size: 14px;
}
.addDet img{
	width: 30px;
	margin-right: 10px;
	vertical-align: middle;
}
.map{
	margin-top: 40px;
}
.rightSiderbar{
	background: #fff;
	padding:10px;
}
.agentFull{
	margin-top: 20px;
}
.agentFull ul li{
	font-size: 14px;
	padding:0 30px;
	position: relative;
}
.addressIcon:before{
	content: "\f3c5";
	position: absolute;
	top: 0px;
	left: 5px;
	font-weight: 900;
	color: var(--primary-color);
	font-size: 18px;
	font-family: "Font Awesome 5 Free";
}
.rightSiderbar{
	margin-bottom: 20px;
	border:1px solid #e0e0e0;
}
.rightSiderbar .agentBody{
	padding: 0px;
}
.rightSiderbar .agentBody p{
	font-size: 12px;
}
.inlineTabel{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:20px;
	cursor: pointer;
	border-radius: 5px;
}
.itemTabs{
	padding:10px 0px;
	margin-bottom: 10px;
}
.inlineTabel{
	background: #666;
}
.tabContent{
	margin-top: 20px;
	text-align: center;
	display: none;
}
.itemTabs.active .inlineTabel{
	background: var(--primary-color);
}
.itemTabs.active .tabContent{
	display: block;
}
.owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-dot {
    width: 15px;
    height: 15px;
    border: 4px solid #666;
    border-radius: 50%;
    background: #fff;
    margin: 0 2px;
    margin-top: 30px;
}
.owl-dot.active {
    border-color: var(--primary-color);
}
.teamSlider .owl-stage-outer{ 
	padding: 40px 1px;
}
.teamSlider .owl-dot{
	margin-top: 0px;
}
/*.bgImage{
	background: url(../images/about/team-banner.jpg) no-repeat;
	height: 800px;
	background-size: cover;
	position: relative;
	z-index: 1;
}
.bgImage:before{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.2);
}*/
.projectBlock{
	padding: 40px;
	background:#fff;
	border-radius: 5px;
	border: 1px solid #e0e0e0;
}
.leftContent{
	padding-top: 20px;
}
.leftContent p{
	margin-top: 20px;
	line-height: 28px;
}
.btnDetails{
	display: inline-block;
	background: var(--primary-color);
	color: #fff;
	border: 1px solid transparent;
	padding: 12px 30px;
	margin-top: 30px;
}
.btnDetails:hover{
	background: transparent;
	border-color: var(--primary-color);
	color: var(--primary-color);
}
.itemDes{
	border: 1px solid #e0e0e0;
	width: 48%;
}
.inlineDes{
	display: flex;
	margin: 20px 0;
	align-items: center;
	justify-content: space-between;
}
.leftitme{
	background: #f8f8f8;
	padding: 15px 20px;
	height: 100%;
	display: flex;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	align-items: center;
}
.itemDes{
	display: flex;
	align-items: center;
	height: 80px;
	border-radius: 5px;
}
.rightItme{
	display: flex;
	padding: 15px 20px;
	align-items: center;
}
.fixWidt h4{
	margin: 0 10px;
}
.font14{
	font-size: 11px;
}
.fixWidt{
	width: 100px;
    display: flex;
    align-items: center;
    margin-right: 15px;
}
.nearBy{
	margin-bottom: 15px;
}
.nearBy p{
	font-size: 15px;
	line-height: 25px;
}
.iconLeft{
	padding-left: 30px;
	position: relative;
}
.iconLeft i{
	position: absolute;
	top: 3px;
	left: 10px;
	color: #666;
	font-size: 12px;
}
.agentDetail h4{
	width: calc(100% - 70px);
}
.agentDetail h4.auto{
	width: auto;
}
.SpecSlider .owl-item img{
	width: 100%;
}
.linkeWeb a{
	color: var(--primary-color);
	font-weight: 600;
	margin-top: 20px;
	font-size: 15px;
}
.linkeWeb a:hover{
	text-decoration: underline;
}
.projectCom{
	padding: 0 15px;
}
.autWidt{
	width: auto !important;
}
.fullWidth{
	width: 100%;
	max-height: 550px;
}
.areaBlock{
	background: #f9f9f9;
	padding: 40px;
	border-radius: 5px;
	border: 1px solid #e0e0e0;
	margin-top: 40px;
}
.projectsItems{
    padding:20px 30px 20px 20px;
    border:1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 20px;
}
.projectsItems:hover{
    box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.teamMeamber .itemMember{
	margin-bottom: 30px;
}
.mainRera{
	margin-top: 40px;
}
.itemRera{
	display: flex;
	justify-content: space-between;
	height: 140px;
	margin-bottom: 30px;
}
.itemRera:last-child{
	margin-bottom: 0px;
}
.iconRera{
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background: #fff;
    -webkit-box-shadow: 0 15px 35px rgb(0 0 0 / 10%);
    box-shadow: 0 15px 35px rgb(0 0 0 / 10%);
}
.iconRera img{
	max-height: 100%;
	max-height: 100%;
}
.reraRight{
	width: calc(100% - 126px);
}
.reraRight p{
	line-height: 25px;
	margin-top: 15px;
}
.propertyLeft p{
	margin-bottom: 20px;
}
.rightForm{
	border: 1px solid #e0e0e0;
	border-radius: 5px;
}
.rightForm h4{
	background: #f9f9f9;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 10px 0;
}
.rightForm .agentBody p{
	font-size: 11px;
}
.middleImg{
	padding: 20px;
	background: #f9f9f9;
}
.heightAuto{
	height: auto;
}
.newsImg{
	overflow: hidden;
}
.newsImg img{
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}
.itemNews{
	border: 1px solid #e0e0e0;
	margin-bottom: 30px;
}
.itemNews p{
	padding: 15px;
	font-weight: 500;
	color: #000;
	font-size: 16px;
}
.itemNews p a{
	color: #000;
}
.itemNews:hover img{
	transform: scale(1.1);
}
.itemNews:hover a{
	color: var(--primary-color);
}


/*testimonials page*/

.testimonials_card {
    box-shadow: 0 0 10px 0 #eee;
    position: relative;
    padding: 30px;
    padding-bottom: 60px;
    padding-bottom: 30px;
    background-color: #fff;
    position: relative;
    margin-bottom: 30px;
}

.testimonials_card::before {
    content: '\201C';
    font-family: 'georgia';
    position: absolute;
    left: 0;
    top: 0;
    color: #F7BC24;
    opacity: 1;
    font-size: 400%;
}

.testimonials_card .title {
    font-weight: 500;
    margin-bottom: 5px;
}

.testimonials_card .date {
    color: #777;
    font-style: italic;
}

.testimonials_card .name {
    font-size: 150%;
    font-weight: 700;
    margin-top: 10px;
}

.testimonials_card .desg {
    font-style: italic;
    color: #777;
}

.testimonials_card .img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
}

/*//testimonials page*/

.clear_image {
    image-rendering: -moz-crisp-edges; /* Firefox */
    image-rendering: -o-crisp-edges; /* Opera */
    image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}

.cke_content ul {
    list-style: disc;
    padding-left: 25px;
    margin-top: 15px;
}

.cke_content ul li {
    margin-bottom: 5px;
}

.inlineDes.bhks h4.small_heading {
    font-size: 110%;
}

.inlineDes.bhks .fixWidt h4 {
    font-size: 180%;
}

.inlineDes.bhks .leftitme {
    padding-right: 15px;
    padding-left: 15px;
}

.cke_content p {
    line-height: initial;
    margin-top: 10px;
}

.img_table {
    display: table;
    margin: 0 auto;
}

.img_cell {
    display: table-cell;
    vertical-align: middle;
}

.img_cell img {
    max-width: 100%;
    width: auto;
}

.project_img .img_table {
    height: 400px;
}

.project_img .img_cell img {
    max-height: 400px;
}

.pagination-wrapper {
    margin-top: 20px;
}

.pagination li a.page-link {
    color: #629aa9 !important;
    border: 1px solid #dee2e6;
}

.pagination li.active a.page-link {
    background-color: #629aa9;
    border-color: #629aa9;
    color: #fff;
}

