.post{
	box-sizing: border-box;
	display: flex;
	flex-flow: row wrap;
	max-width: 950px;
}
.post img{
	display: block;
	margin: auto;
}
.post h1{
	/*font-family:'Poppins', sans-serif; */
	font-size: 44px;
}
.post ul{
	list-style: disc;
	padding-left: 40px;
}
.post .wrappost{
	display: flex;
	flex-flow: row nowrap;
}
.post .wrappost>div:first-child{
	flex: 0 0 110px;
	/*padding-right: 60px;*/
}
.post .wrappost>div:last-child{
	flex:  1 1 100%;
}
.post .wrappost h2{
	font-size: 20px;
	margin-bottom: 20px;
	margin-top: 10px;
}
.post .date{
	border-top: 3px solid var(--color-red);
	padding-top: 10px;
	width: 50px;
}
.post .date .day{
	color: #777;
	font-size: 42px;
	font-weight: bold;
	margin-bottom: 5px;
}
.post .date .month{
	font-size: 12px;
	text-transform: uppercase;
}
.post .html{
	width: 100%;
}
.post .breadcrumb{
	font-size: 14px;
	font-style: italic;
	/*font-family:'Poppins', sans-serif;*/
	margin-bottom: 20px;
	margin-top: 20px;
	text-align: center;
	opacity: .6;
}
.post .breadcrumb a{
	color: #343434;
}
.post .breadcrumb a:hover{
	color: var(--cl_primary);
}
.post .breadcrumb span{
	opacity: .5;
}

.post .galeria{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	width: 100%;
}
.post .galeria .item{
	background: #FFF;
	cursor: pointer;
	height: 200px;
	overflow: hidden;
	position: relative;
	width: 33%;
}
.post .galeria .item .icon{
	background: var(--cl_primary);
	border-radius: 50%;
	color: #FFF;
	font-size: 22px;
	left: 50%;
	padding: 15px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%) scale(.2);
	transition: all .2s linear;
}
.post .galeria .item:hover .icon{
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}
.post .galeria .item img{
    left: 50%;
	margin-bottom: 15px;
	max-width: 100%;
	min-height: 100%;
	position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.post .html .content{
	font-size: 16px;
	font-weight: 300;
	line-height: 1.8em;
}
.post .html .content p{
	line-height: 1.8em;
	text-align: justify;
}
.post .banner{
	width: 100%;
}
.post .share a{
	background: #504F51;
	border-radius: 50%;
	color: #FFF;
	display: inline-block;
	font-size: 16px;
	margin-right: 5px;
	padding: 11px 14px 10px 14px;
}
.post .share a:hover{
	background: var(--color-red);
}
.post .related{
	width: 100%;
}
.post .related .flex{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	width: 100%;
}
.post .related .flex h2{
	font-size: 20px;
	font-family:'Poppins', sans-serif;
	font-weight:500;
	margin-top:0px;
	margin-left: 0px;
}
.post .related .flex .item{
	border-radius: 4px;
	box-shadow: 0px 3px 10px rgba(0,0,0,.06);
	margin-right: 3%;
	margin-bottom: 2%;
	max-width: 300px;
	margin-left: 0px;
	overflow: hidden;
	transition: all .2s linear;
	width: 22.7%;
}
.post .related .item:hover{
	box-shadow: 0px 3px 20px rgba(0,0,0,.3);
}
.post .related .item:nth-child(4n){
	margin-right: 0px;	
}
.post .related .item img{
	max-width: 100%;
}
.post .related .item .title{
	font-weight: normal;
	font-size: 14px;
	color: #777;
	margin: 0px;
	text-align: center;
}
.post .related .item .link{
	background: var(--color-red);
	border-radius: 15px;
	font-size: 12px;
	min-width: 100px;
	padding: 7px 12px 4px 12px;
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
}
.post .related .item .content{
	line-height: 1.3rem;
	padding: 10px 15px 20px 15px;
	min-height: 120px;
	padding-bottom: 55px;
}
.post .related .item .picture{
	/*height: 190px;*/
	overflow: hidden;
}

@media screen and (max-width: 1025px){
	.post .related .flex .item .picture{
		height: 120px;
	}
	.post .related .flex .item .picture img{
		height: 150%;
		min-width: 100%;
		min-height: 100%;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		max-width: initial;
	}

}
@media screen and (max-width: 860px){
	.post h1{
		font-size: 32px;
		line-height: 40px;
	}
	.post h2{
		font-size: 20px;
		line-height: 24px;
	}
	.post h3{
		font-size: 18px;
		line-height: 20px;
	}
	.post .banner img{
		max-width: 100%;
	}
	.post .related .item .content{
		padding: 10px 10px 20px 10px;
	}
	.post .related .item .link{
		border-radius: 11px;
		font-size: 8px;
	    padding: 4px 9px 1px 10px;
	}
	.post .related .item .title{
		font-size: 12px;
	}
}
@media screen and (max-width: 760px){
	.post .date{
		background: #fff;
		margin-top: -105px;
	}
	.post .galeria .item{
		height: 120px;
		width: 50%;
	}
	.post .related .flex{
		display: flex;
	}
	.post .related .flex .item{
		width: 48%;
		max-width: initial;
	}
	.post .related .flex .item:nth-child(2n){
		margin-right: 0px;
	}
	.post .related .flex .item .content{
		height: calc(100% - 120px);
	}
	.post .wrappost{
		flex-flow: row wrap;
	}
	.post .wrappost>div:first-child{
		flex: 0 0 100%;
	}
	.post .wrappost>div:last-child{
		flex: 0 0 100%;
	}
}