/* You can add your own CSS styles here. Use !important to overwrite styles if needed. */
/*move wrapped title, meta, and text up over the image*/



/***** Styling the Paginations using WP-PageNavi Plugin *****/

/*To styles the numbers*/

.wp-pagenavi a,
.wp-pagenavi span {
  color: #000000;
  background: #f1f3f5;
  font-size: 1em !important;
  line-height: 1em;
  padding: 0.45em 0.8em !important;
  border-radius: 100px;
  transition: all .5s;
}


/*To styles the current page number*/

.wp-pagenavi span.current {
  color: #ffffff !important;
  background: #F79489 !important;
  border-radius: 100px;
}


/*To styles the numbers when hovering*/

.wp-pagenavi a:hover {
  color: #ffffff!important;
  background: #F79489!important;
}


/*To hides teh background around the pages*/

.wp-pagenavi .pages {
  background: none;
}


/*To removes the border and centers the entire pagination*/

.wp-pagenavi {
  border-top: none;
  text-align: center;
}

.et-pb-contact-message {
    color: #F79489;
}


/*style the Divi blog link text as a button*/

.et_pb_post a.more-link {
  color: #ffffff;
	background: rgb(247,148,137);
    background: linear-gradient(0deg, rgba(247,148,137,1) 0%, rgba(248,175,166,1) 99%);
	padding: .7em 1.3em;
	margin-top: 20px;
	border-radius: 5px;
	text-transform: capitalize;
	display: inline-block;
}

/*add an icon to the Divi blog read more button*/

.et_pb_post .more-link:after {
	content: "5";
	font-family: ETModules;
	vertical-align: middle;
	margin-left: 10px;
}

/*move wrapped title, meta, and text up over the image*/

.pa-blog-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	padding: 30px;
	z-index: 1;
}


/*keep the moved items positioned with their parent items*/

.et_pb_blog_grid article {
	position: relative;
}


/*remove spacing around entire blog post*/

.et_pb_blog_grid .et_pb_post {
	padding: 0px;
}


/*remove negative margins on blog featured image*/

.et_pb_image_container {
	margin: 0;
}


/*remove the margin below the featured image frame*/

.et_pb_post .entry-featured-image-url {
	margin: 0;
}



.et_pb_blog_grid .entry-featured-image-url::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}