/*//Paginations*/
.pagination {
	width: 100%;
	text-align: center;
}

.pagination .page-numbers,
.pagination li{
	list-style: none;
	font-size: 16px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: 40px;
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: 0 7px;
	text-align: center;
	letter-spacing: normal;
	color: #484848;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0 3px 12px 0 rgba(0, 0, 0, .1);
	position: relative;
}

.pagination .page-numbers:hover {
	text-decoration: none;
}

.pagination .page-numbers.prev a,
.pagination .page-numbers.next a {
	font-family: dashicons;
	font-size: 0;
	display: inline-block;
	background: transparent;
	box-shadow: none;
	text-rendering: auto;
}

/*.pagination .page-numbers.prev a:before,
.pagination .page-numbers.next a:before {
	font-size: 20px;
	color: #7DC456;
}*/

.pagination a { 
	color: inherit;  
	text-decoration: none; 
	display: inline-block; 
	width: 40px; 
	height: 40px;
	border-radius: 50%; 
}

.pagination .page-numbers.prev a:before {
	content: "";
	width: 20px;
	height: 20px;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('../images/blog-left-arrow.svg');
	display: inline-block;
    background-position: center;
    top: 0px;
    position: absolute;
    right: 0;
    left: 0;
    margin: 10px;
}

.pagination .page-numbers.next a:before {
	content: "";
	width: 20px;
	height: 20px;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('../images/blog-right-arrow.svg');
	display: inline-block;
    background-position: center;
    top: 0px;
    position: absolute;
    right: 0;
    left: 0;
    margin: 10px;
}

.pagination a:hover,
.pagination .active {
	color: #fff;
	background: linear-gradient(to bottom, #7DC456, #19B786);
	border-radius: 50%;
}

/*.recent-posts-row{
	margin-bottom: 60px;
}*/

.recent-posts-row .article-item .image {
    margin-bottom: 0;
    min-height: 222px;
    max-height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.recent-posts-row .article-item .image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    z-index: 0;
}

.recent-posts-row .post-nav-link {
    font-size: 27px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 2;
    display: block;
    transition: .2s;
    text-align: left;
    letter-spacing: normal;
    color: #fff;
    position: relative;
}

.recent-posts-row .article-item .title {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    margin-top: 20px;
}
.recent-posts-row .article-item .entry-meta {
    font-size: 16px;
}