* {
  box-sizing: border-box;
}

nav {
	position: fixed;
	z-index: 999;
	left: 0;
	right: 0;
	top: 0;
	font-family: 'Montserrat', sans-serif;
	padding: 0 5%;
	height: 100px;
  background-color: white;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
nav .logo {
	float: left;
	width: 30%;
	height: 100%;
	display: flex;
	align-items: center;
}
nav .logo img {
  height: 60px;
  width: auto;
}
nav .links {
	float: right;
	padding: 0;
	margin: 0;
	height: 100%;
  width: 70%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
nav .links li {
	list-style: none;
}
#nav-toggle {
	position: absolute;
	top: -100px;
}
nav .icon-burger {
	display: none;
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
  cursor: pointer;
}
nav .icon-burger .line {
	width: 30px;
	height: 5px;
	background-color: #383838;
	margin: 5px;
	border-radius: 3px;
	transition: all .3s ease-in-out;
}

/*----------- Tablet ------------*/
@media (max-width: 833px){
  nav .logo {
		float: none;
		width: auto;
	}
	nav .links {
		float: none;
		position: fixed;
		z-index: 9;
		left: 0;
		right: 0;
		top: 100px;
		bottom: 100%;
		width: auto;
		height: auto;
		flex-direction: column;
		justify-content: space-evenly;
		background-color: white;
		overflow: hidden;
		box-sizing: border-box;
		transition: all .5s ease-in-out;
	}
	nav .links a {
		font-size: 20px;
	}
	nav :checked ~ .links {
		bottom: 0;
	}
	nav .icon-burger {
		display: block;
	}
	nav :checked ~ .icon-burger .line:nth-child(1) {
		transform: translateY(10px) rotate(225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(3) {
		transform: translateY(-10px) rotate(-225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(2) {
		opacity: 0;
	}
}
section.frst-section-search {
  margin-top: 40px;
 
  }
section.frst-section {
  margin-top: 150px;
 
  }
.btn-sharz {
    display: flex;
    justify-content: center;
    align-items: center;
}
.card {
 margin-bottom: 30px;
}





.appointment {
	position: fixed;
	bottom: 4%;
	width: 90%;
	height: 60px;
	display: inline-block;
	background: #1D9589;
	text-align: center;
	z-index: 2;
	box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.5);
	left: auto;
	right: 4%
}

.appointment > a {
	top: 20%;
	position: relative;
	font-size: 25px;
        font-weight: bold;
	color: #fff;
	text-decoration: none;
        cursor: pointer;
}

.blog-content {
    padding-top:60px;
    padding-bottom:3%;
    padding-left:5%;
    padding-right:5%;
}
h1 {
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(333deg, 100%, 45%);
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.3rem;
}


.property-status {
    display:inline-block;
    padding:4px 15px;
    color:#f95d02;
    background:rgba(249,93,2,.1);
    border-radius:50px;
    font-size:13px;
}
.property-status.dispo {
    color:#03a98a;
    background:rgba(3,169,138,.1);
}
.property-status.nodispo {
    color:#a871e4;
    background:rgba(168,113,228,.1);
}

.property-segust {
   font-size:12px;
   font-weight:600;
   padding:4px 12px;
   margin-top:5px;
   border-radius:50px;
   background:#efefef;
   display:inline-block;
}
.property-segust.dispo {
    background:#3b58c3;
    color:#fff;
    margin-bottom:5px;
}
.property-segust.nodispo {
   background:rgba(247,68,0,.1);
   color:#f74400;
}

.property-segust.dispo {
   margin-top:10px;
}
.property-segust.soon {
    background:rgba(136,102,218,.1);
    color:#8866da;
}



.property-page h1 {
    font-size: 25px;
    color:#2d3954;
    font-weight:600;
    text-transform:capitalize;
    font-family:jost,sans-serif;
margin-bottom:0;margin-bottom:0
}







.tz-gallery img {
    width: auto;
    height: auto;
    

}
.tz-gallery img:hover {
    cursor: crosshair;
}




.item {
            display: none;
}
#load-more {
            display: none;
            text-align: center;
            margin: 20px;
            cursor: pointer;
            background-color: #007bff;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
}


.prt-detail-title-desc h1{font-size:22px}









.section {
   padding:3rem 1.5rem
}
@media screen and (min-width:1024px) {
   .section {
      padding:3rem 3rem
   }
}
.map{
	overflow: hidden;
}

.map--svg{
	width: 93%;
	float: center;
        margin-right: 20px;
}
.map--svg path{
	fill: #FF0000;
	stroke:#FFF;
	stroke-width: 1px;
	transition: fill 0.3s; 
}
.map--svg path:hover{
	fill: #1D9589; 
}
.map--svg .is-active path{
	fill: #1D9589;
}

.map a {
    color: #000;
    text-decoration: none;
}