@import url(http//font.googleapis.com/css?family=Roboto:wght@300,400,500)
	margin:
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
width: 100%;

}
.blog-section{
	width: 100%;

}
.blog-section .section-content{

}

.blog-section .section-content .title{
	width: 100%;
    text-align: center;
	margin:auto;

}

.blog-section .section-content .title h2{
	font-size: 40px;
	color: green;
	text-transform: uppercase;
}


.blog-section .section-content .title p{
	font-size: 18px;
	color: #199998;
}


.blog-section .section-content .cards{

	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 50px;
	margin: 25px auto;



}



.blog-section .section-content .cards .card{

	width: 100%;
	background-color: green;
	position: relative;
}


.blog-section .section-content .cards .card img{
	width: 100%;
	height: auto;
}

.blog-section .section-content .cards .card .article {
	padding: 15px 20px;
	width: 100%;
}

.blog-section .section-content .cards .card .article p{
	text-decoration: none;
	display: inline-block;
	background-color: white;

}
.blog-section .section-content .cards .card .article .blog-view .button a{
	text-decoration: none;
	display: inline-block;
	background-color: red;
	padding: 8px 1px;
	margin-left: 10px;
	color: white;
	margin-bottom: 20px;

}


.blog-section .section-content .cards .card .article .posted-date {
	background-color: blue; font-weight: 600; position: absolute; top: 0; left:0; display: inline-block; padding: 6px 15px;
	
	
	
	
	

}






@media  screen and (max-width:992px){
	.blog-section .section-content .cards{
		grid-template-columns: repeat(2,1fr);
		
	}
}



@media  screen and (max-width:768px){
	.blog-section .section-content .cards{
		grid-template-columns: 1fr;
		
	}
}




img{
	width: 200%;
	
	

}





.header-right-list.footer-list{
margin-bottom: 0 45px;
list-style: none;
position: relative;


}

.button{
position: relative;
display: inline-block;
width:150px;
height: 60px;
background-color: #fff;
color: #000;
text-transform: uppercase;
text-decoration: none;
text-align: center;
line-height: 60px;
z-index: 9;
margin-top: 50px;
transition: all ease 0.5s;
}
.button:before{
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #000;
	opacity: .9;
	z-index: -1;
	transition: all ease 0.5s;
}
.button:hover{
	color: #fff;
}
.button:hover:before{
	top: 0;
	height: 100%;
}