/*================================================
Blog Area CSS
=================================================*/
.blog-card {
	margin-bottom: 25px;
	border-radius: 5px;
	background-color: #F7F8F9;
}
.blog-card .blog-image {
	position: relative;
}
.blog-card .blog-image a img {
	border-radius: 5px;
}
.blog-card .blog-image .tag-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #020000;
	color: #ffffff;
	border-radius: 5px;
	padding: 2px 10px;
	transition: 0.6s;
	font-size: 14px;
	position: absolute;
	left: 10px;
	top: 10px;
}
.blog-card .blog-image .tag-btn:hover {
	background-color: #1B6F58;
}
.blog-card .blog-image .author-btn {
	border-radius: 50px;
	border: 2px solid #ffffff;
	box-shadow: 0px 4px 20px 0px rgba(84, 196, 217, 0.15);
	position: absolute;
	right: 15px;
	bottom: -15px;
	max-width: 32px;
	transition: 0.6s;
}
.blog-card .blog-image .author-btn:hover {
	border: 2px solid #1B6F58;
}
.blog-card .blog-content {
	padding: 30px;
}
.blog-card .blog-content .meta {
	display: flex;
	align-items: center;
	padding-left: 0;
	padding-right: 0;
	margin-bottom: 18px;
}
.blog-card .blog-content .meta li {
	list-style-type: none;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.27px;
	position: relative;
	padding-left: 25px;
	line-height: 1;
	margin-right: 55px;
}
.blog-card .blog-content .meta li::before {
	position: absolute;
	content: "";
	right: -32px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-block;
	height: 7px;
	width: 7px;
	border-radius: 50px;
	background-color: #1B6F58;
}
.blog-card .blog-content .meta li i {
	font-size: 16px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #B4B7C9;
}
.blog-card .blog-content .meta li:last-child {
	margin-right: 0;
}
.blog-card .blog-content .meta li:last-child::before {
	display: none;
}
.blog-card .blog-content h3, .blog-card .blog-content .h3 {
	margin-bottom: 0;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.5;
}
.blog-card.with-border {
	background-color: transparent;
	border: 1px solid #DAE8F0;
	transition: 0.6s;
}
.blog-card.with-border .blog-image {
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
}
.blog-card.with-border .blog-image .author-btn {
	right: 25px;
}
.blog-card.with-border .blog-content .tag-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #020000;
	color: #ffffff;
	border-radius: 5px;
	padding: 2px 10px;
	transition: 0.6s;
	font-size: 14px;
	margin-bottom: 15px;
}
.blog-card.with-border .blog-content .tag-btn:hover {
	background-color: #1B6F58;
}
.blog-card.with-border .blog-content .meta {
	margin-top: 18px;
	margin-bottom: 0;
}
.blog-card.with-border:hover {
	border: 1px solid #1B6F58;
}
/*================================================
Blog Sidebar Widget Area CSS
=================================================*/
.widget-area {
	position: sticky;
	top: 120px;
}
.widget-area .widget {
	margin-bottom: 25px;
}
.widget-area .widget .widget-title {
	font-size: 22px;
	margin-bottom: 20px;
	font-weight: 500;
}
.widget-area .widget:last-child {
	margin-bottom: 0;
}
.widget-area .widget_search {
	background-color: #F9F7F4;
	padding: 35px 25px;
	border-radius: 5px;
}
.widget-area .widget_search form {
	position: relative;
}
.widget-area .widget_search form .search-field {
	display: inline-block;
	height: 55px;
	border-radius: 30px;
	background: #ffffff;
	border: none;
	outline: 0;
	box-shadow: unset;
	color: #687693;
	padding: 15px 25px 15px 60px;
	width: 100%;
	font-size: 15px;
}
.widget-area .widget_search form .search-field::placeholder {
	color: #687693;
	transition: 0.6s;
}
.widget-area .widget_search form .search-field:focus::placeholder {
	color: transparent;
}
.widget-area .widget_search form button {
	border: none;
	padding: 0;
	background-color: transparent;
	font-size: 25px;
	color: #1B6F58;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 25px;
	transition: 0.6s;
	line-height: 1;
}
.widget-area .widget_search form button:hover {
	color: #A68E74;
}
.widget-area .widget_categories {
	background-color: #F9F7F4;
	padding: 35px 25px;
	border-radius: 5px;
}
.widget-area .widget_categories .list {
	padding-left: 0;
	margin-bottom: 0;
}
.widget-area .widget_categories .list li {
	font-size: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #ffffff;
	padding-top: 15px;
	margin-bottom: 15px;
	font-weight: 500;
}
.widget-area .widget_categories .list li:last-child {
	margin-bottom: 0;
}
.widget-area .widget_categories .list li a {
	color: #687693;
}
.widget-area .widget_categories .list li a:hover {
	color: #1B6F58;
}
.widget-area .widget_categories .list li span {
	display: inline-block;
	height: 30px;
	width: 30px;
	line-height: 30px;
	background-color: #ffffff;
	color: #020000;
	font-size: 14px;
	font-weight: 500;
	border-radius: 50px;
	text-align: center;
}
.widget-area .widget_posts_thumb {
	background-color: #F9F7F4;
	padding: 35px 25px;
	border-radius: 5px;
}
.widget-area .widget_posts_thumb .item {
	overflow: hidden;
	margin-bottom: 25px;
	border-top: 1px solid #ffffff;
	padding-top: 25px;
}
.widget-area .widget_posts_thumb .item:last-child {
	margin-bottom: 0;
}
.widget-area .widget_posts_thumb .item .thumb {
	float: left;
	overflow: hidden;
	display: block;
	width: 100px;
	height: 85px;
	margin-right: 20px;
}
.widget-area .widget_posts_thumb .item .thumb .fullimage {
	width: 100px;
	height: 85px;
	display: inline-block;
	border-radius: 5px;
	background-size: cover !important;
	background-repeat: no-repeat;
	background-position: center center !important;
}
.widget-area .widget_posts_thumb .item .thumb .fullimage.bg1 {
	background-image: url(../../assets/images/blog/blog1.jpg);
}
.widget-area .widget_posts_thumb .item .thumb .fullimage.bg2 {
	background-image: url(../../assets/images/blog/blog2.jpg);
}
.widget-area .widget_posts_thumb .item .thumb .fullimage.bg3 {
	background-image: url(../../assets/images/blog/blog3.jpg);
}
.widget-area .widget_posts_thumb .item .thumb .fullimage.bg4 {
	background-image: url(../../assets/images/blog/blog4.jpg);
}
.widget-area .widget_posts_thumb .item .info {
	overflow: hidden;
}
.widget-area .widget_posts_thumb .item .info .title {
	margin-bottom: 0;
	line-height: 1.5;
	font-size: 16px;
	font-weight: 600;
}
.widget-area .widget_posts_thumb .item .info span {
	display: flex;
	align-items: center;
	font-size: 14px;
	margin-top: 10px;
}
.widget-area .widget_posts_thumb .item .info span i {
	font-size: 18px;
	margin-right: 7px;
	color: #B4B7C9;
}
.widget-area .widget_tag_cloud {
	background-color: #F9F7F4;
	padding: 35px 25px;
	border-radius: 5px;
}
.widget-area .widget_tag_cloud .tag-cloud {
	border-top: 1px solid #ffffff;
	padding-top: 15px;
}
.widget-area .widget_tag_cloud .tag-cloud a {
	padding: 2px 10px;
	border-radius: 5px;
	display: inline-flex;
	align-items: center;
	background: #1B6F58;
	color: #ffffff;
	letter-spacing: 0.65px;
	margin-right: 2px;
	margin-top: 10px;
	font-size: 13.5px;
	font-weight: 400;
}
.widget-area .widget_tag_cloud .tag-cloud a:hover {
	background-color: #A68E74;
}