@import url('https://fonts.googleapis.com/css?family=Lato:300,400|Poppins:300,400,800&display=swap');

.card__container {
	width: 100%;
	/* align-items: center;
	justify-items: center; */
	color: white;
	background-color: var(--color-dark);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	
}
 /* .card {

	 background-color: var(--color-dark);
	 background-color: var(--color-white);

	 padding: 10px, 10px;
	 margin: 10px, 10px;
	 display: grid;
} */

.card {
	/* width: 90%; */
	/* height: 95%; */
	background: #191a19;
	margin: 10px auto;
	border-radius: 5px;
	/* padding: 20px; */
	cursor: pointer;
	/* box-shadow: 16px 16px 44px #0a0a0a, -16px -16px 44px #282a28; */
	transition: 0.3s all ease-in-out;
}
 .card .post a{
	 font-size: 3em;
	 color: #232323;
 }
 .card .post {
	 width: 350px;
	 height: 500px;
	 display: flex;
	 overflow: hidden;
	 /* flex-direction: column; */
	 flex-direction: row;
	 position: relative;
	 border-radius: 10px;
	 box-shadow: 0 0 10px 4px #d0d0d0;
	 /* box-shadow: 0 0 10px 4px var(--color-gold); */
}
 .card .post:hover .header_post {
	 margin-top: -20px;
}
 .card .post:hover .body_post {
	 /* height: 50%; */
	 height: 50%;
}
 .card .post:hover img {
	 transform: translatey(-10px) translatex(-5px) scale(1.05);
}
 .card .post .header_post {
	 width: 100%;
	 position: absolute;
	 top: 0;
	 /* -webkit-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
	 -moz-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
	 -ms-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
	 -o-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms; */
}
 .card .post .header_post img {
	 max-width: 100%;
	 height: auto;
	 transition: ease-in-out 600ms;
	 /* background: linear-gradient(#fff0 0%, #fff0 70%, #1d1d1d 100%),url("img1.jpg"); */
	 
}
.card .post .post_content{
	height:300px;
}
 .card .post .body_post {
	 width: 100%;
	 /* height: 60%; */
	 /* height: 100%; */
	 background: #fff;
	 position: absolute;
	 bottom: 0;
	 /* top:0; */
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 flex-direction: column;
	 -webkit-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
	 -moz-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
	 -ms-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
	 -o-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
	 transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
	 cursor: pointer;
	 /* background: linear-gradient(#fff0 0%, #fff0 70%, #1d1d1d 100%); */
}
 .card .post .body_post .post_content {
	 width: 100%;
	 /* height: auto; */
	 padding: 10px 10px 0 10px;
	 background: #fff;
	 position: relative;
	 color: var(--color-dark);
}
 .card .post .body_post .post_content h2 {
	 font-size: 20px;
	 font-weight: bold;
}
 .card .post .body_post .post_content p {
	 font-weight: normal;
}
 .card .post .body_post .post_content .card_infos {
	 width: 100%;
	 display: flex;
	 justify-content: space-between;
	 position: absolute;
	 bottom: 0;
	 border-top: 1px solid rgba(0, 0, 0, .2);
	 padding-top: 25px;
}
 .card .post .body_post .post_content .card_infos .price {
	 display: flex;
	 flex-direction: column;
	 text-transform: uppercase;
	 letter-spacing: 1px;
	 /* font-size: 12px; */
}
 .card .post .body_post .post_content .card_infos .price span {
	 /* font-size: 12px; */
	 text-transform: uppercase;
	 opacity: 0.5;
	 letter-spacing: 1px;
	 font-weight: bold;
	 color: var(--color-dark);
}
 .card .post .body_post .post_content .card_infos .card_tags {
	 display: flex;
	 flex-direction: column;
}
 .card .post .body_post .post_content .card_infos .card_tags span {
	 /* font-size: 12px; */
	 text-transform: uppercase;
	 opacity: 0.5;
	 letter-spacing: 1px;
	 font-weight: bold;
	 /* background-color: #232323; */
}
 .card .post .body_post .post_content .card_infos .card_tags .tags ul {
	 display: flex;
}
 .card .post .body_post .post_content .card_infos .card_tags .tags ul li {
	 /* font-size: 12px; */
	 letter-spacing: 2px;
	 list-style: none;
	 margin-left: 8px;
	 text-transform: uppercase;
	 position: relative;
	 z-index: 1;
	 display: flex;
	 justify-content: center;
	 cursor: pointer;
}
 .card .post .body_post .post_content .card_infos .card_tags .tags ul li:first-child {
	 margin-left: 0px;
}
 .card .post .body_post .post_content .card_infos .card_tags .tags ul li:before {
	 content: '';
	 text-align: center;
	 width: 100%;
	 height: 5px;
	 background: #fc6042;
	 opacity: 0.5;
	 position: absolute;
	 bottom: 0;
	 z-index: -1;
	 padding: 0px 1px;
	 -webkit-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
	 -moz-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
	 -ms-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
	 -o-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
	 transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
}
 .card .post .body_post .post_content .card_infos .card_tags .tags ul li:hover:before {
	 height: 18px;
}
 /* footer {
	 width: 350px;
	 height: 80px;
	 background: #17a16f;
	 position: absolute;
	 right: 0;
	 bottom: -80px;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 animation: top 0.8s forwards;
}
 footer span {
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 font-size: 12px;
	 color: #fff;
	 font-family: 'Poppins';
}
 footer span i {
	 margin-right: 25px;
	 font-size: 22px;
	 color: #fff;
	 animation: icon 2s forwards;
	 opacity: 0;
} */
 @keyframes top {
	 0% {
		 opacity: 0;
		 bottom: -80px;
	}
	 100% {
		 opacity: 1;
		 bottom: 0px;
	}
}
 @keyframes icon {
	 0% {
		 opacity: 0;
		 transform: scale(0);
	}
	 50% {
		 opacity: 1;
		 transform: scale(1.3) rotate(-2deg);
	}
	 100% {
		 opacity: 1;
		 bottom: 0px;
	}
}


.cat_type{
	position: absolute;
	z-index: 100;
	background-color: var(--color-dark);
	padding: 7px 20px;
	left: -6px;
	font-size: 0.9em;
	transform: skewX(-20deg);
	/* transform: skewX(20deg); */
}
/* .cat_type span{
	transform: none !important;
} */
.cat_propertytype{
	position: absolute;
	z-index: 100;
	background-color: var(--color-dark);
	padding: 7px 15px;
	right: 0;
	font-size: 0.9em;
	text-align: end;
}

.cat_propertytype.shop{
	background-color: var(--color-pink);
	color: var(--color-dark);
	font-weight: 600;
}
.mallshop{
	background-color: var(--color-purple);
	color: var(--color-dark);
	font-weight: 600;
}
.fnb{
	background-color: var(--color-lime);
	color: var(--color-dark);
	font-weight: 600;
}
.cat_propertytype.medical{
	background-color: var(--color-cyan);
	color: var(--color-dark);
	font-weight: 600;
}
.cat_propertytype.office{
	background-color: var(--color-blue);
}
.cat_propertytype.business{
	background-color: var(--color-green);
}
.cat_propertytype.b1{
	background-color: var(--color-yellow);
	color: var(--color-dark);
	font-weight: 600;
}
.cat_propertytype.b2{
	background-color: var(--color-orange);
}
.cat_propertytype.warehouse{
	background-color: var(--color-red);
}
.cat_propertytype.dormitory{
	background-color: var(--color-magenta);
}
.cat_propertytype.land{
	background-color: var(--color-brown);
}

.post_content .feature{
	position: absolute;
	top:-30px;
	background-color: #ffffff44;
	padding: 2px 5px;
	border-radius: 6px;
	/* color: #fff; */
}
.post_content .feature-img{
	position: absolute;
	top:-30px;
	right: 10px;
	background-color: #ffffff44;
	padding: 2px 5px;
	border-radius: 6px;
	/* color: #fff; */
}

.price span {
	padding-right: 10px;
	font-weight: 600;
}
.price .value {
	font-size: 0.8em;
	font-weight: normal;
	display: inline;
}
.info-neg{
	position: relative;
	top: -40px;
	float: right;
	border: 1px solid var(--color-dark);
	padding: 2px 5px;
	border-radius: 5px;
	font-size: 0.9em;
}
.info-desc{
	margin-top: 10px;
}
.info-post{
	position: absolute;
	float:right;
	top: -30px;
	right: 20px;
	font-style: italic;
	color:var(--color-dark);
}

.actions{
	width: 100%;
}
.button {
	background-color: transparent;
	border: none;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	color: var(--color-white);
	cursor: pointer;
	display: inline-block;
	font-family: Roboto, sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.75px;
	line-height: 36px;
	min-width: 64px;
	padding: 0 8px;
	text-align: center;
	text-transform: uppercase;
	}
	.button, .action-icon {
	-webkit-transition: box-shadow .4s cubic-bezier(.25, .8, .25, 1), background-color .4s cubic-bezier(.25, .8, .25, 1);
	transition: box-shadow .4s cubic-bezier(.25, .8, .25, 1), background-color .4s cubic-bezier(.25, .8, .25, 1);
	}
	.button--raised {
	-moz-box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
	-webkit-box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
	box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
	-o-transition: box-shadow .28s cubic-bezier(.4, 0, .2, 1);
	-webkit-transition: 0 .28s cubic-bezier(.4, 0, .2, 1);
	transition: box-shadow .28s cubic-bezier(.4, 0, .2, 1), 0 .28s cubic-bezier(.4, 0, .2, 1);
	}
	.button--raised:focus, .button--raised:hover {
	-moz-box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
	-webkit-box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
	box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
	}
	.button--purple {
	background-color: #6200EE;
	color: #fff;
	}
	.button:hover, .action-icon:hover {
	background-color: rgba(158,158,158,0.2);
	}
	.button:active, .action-icon:active {
	background-color: rgba(158,158,158,0.4);
	}
	.button:focus:not(:active), .action-icon:focus:not(:active) {
	background-color: rgba(0,0,0,.12);
	}
	.button[disabled] {
	color: rgba(0,0,0,.26);
	cursor: default;
	}
	.button[disabled]:hover {
	background: none;
	}
	.action-buttons, .action-icons {
	display: inline-block;
	vertical-align: middle;
	}
	.actions {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/* min-height: 52px; */
	height:50px;
	padding: 8px;
	position: absolute;
	bottom: 0;
	/* z-index: 1; */
	background:var(--color-dark);
	text-align: center;
		vertical-align: middle;
	}
	.action-icons {
	/* -moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%; */
	/* box-sizing: border-box; */
	cursor: pointer;
	/* margin: 0 2px; */
	outline: none;
	/* padding: 6px; */
	/* margin: 20px 20px; */
	}
	.action-icons{
		/* vertical-align: middle; */
		/* float: right; */
		/* float: none; */
		justify-content: center;
	}
	
	.action-icons i{
		padding: 10px 20px;
		font-size: 1.5em;
		color: var(--color-white);
	}
	.action-icons i:hover{
		color: var(--color-gold);
	}

	@media screen and (max-width:768px) {
	.card .post{
		width: 100vw;
	}
	.card{
		margin: 10px 0;
	}
	.card .post .body_post .post_content{
		padding-right: 25px;
	}
	.post .cat_propertytype{
		padding-right: 25px;
	}
}