.header{
	background-image: url('../../images/blog/blog.jpg');
	background-repeat: no-repeat;
	background-clip: padding-box;
	background-position: center;
	background-size: cover;
	height: 280px;
	position: relative;
}
.header .title{
	text-align: center;
	width: 100%;
	color: white;
	position: absolute;
	bottom: 0px;
	height: 50%;
	margin: 0;
	font-size: 50px;
	font-weight: 100;
	background-image: linear-gradient(to top, black, transparent);
}
.header .title span{
	display: block;
	animation-name: news_title;
	animation-duration: 1s;
}
.news-wrapper{
	background-color: #EEEEEE;
	min-height: 100vh;
}
.news-wrapper .news-container{
	background-color: white;
	width: 80%;
	max-width: 900px;
	margin: 50px auto;
	padding: 30px 50px;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	box-shadow: 2px 2px 5px gainsboro;
	animation-name: news_container;
	animation-duration: 1s;
}
.news-wrapper .news-container .search-post input{
	border-radius: 20px;
	display: block;
	margin: 10px auto 50px auto;
	border: 1px solid #BDBDBD;
	text-align: center;
	height: 2rem;
	transition-property: box-shadow;
	transition-duration: 0.5s;
}
.news-wrapper .news-container .search-post input:focus{
	outline: none;
	box-shadow: 1px 1px 6px #DEDEDE,
				1px -1px 6px #DEDEDE,
				-1px -1px 6px #DEDEDE,
				-1px 1px 6px #DEDEDE;
}
.news-wrapper .news-container .search-post input::placeholder{
	text-align: center;
}
.news-wrapper .news-container h2{
	margin: 0;
	font-weight: 400;
}
.news-wrapper .news-container h2 a{
	text-decoration: none;
	color: black;
}
.news-wrapper .news-container .date{
	display: block;
	color: #9E9E9E;
}
.news-wrapper .news-container img{
	display: block;
	margin: 10px auto;
	width: 100%;
	max-width: 500px;
}
.news-wrapper .news-container hr{
	margin-top: 50px;
	margin-bottom: 50px;
}

@media(max-width: 768px){
	.header{
		height: 220px;
	}
	.header .title{
		font-size: 40px;
	}
	.news-wrapper .news-container{
		width: 100%;
		margin: 0;
	}
}

@keyframes news_title{
	from{
		opacity: 0;
		transform: translateY(100%);
	}
	to{
		opacity: 1;
		transform: translateY(0%);
	}
}
@keyframes news_container{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}

.paginator{
	padding-bottom: 30px; 
}
.paginator .page-link{
	background-color: #BDBDBD;
	color: #424242;
}
.paginator .page-item.active .page-link{
	background-color: #B49554;
	border-color: #A38443;
}








