/*Blog Page*/
.fl-container{
    width: 88%;
    margin: 0px auto;
    overflow: hidden;
}

.mainBlogContainer{
	position: relative;
	height: fit-content;
}

.blogFilter{
	width: 350px;
	height: fit-content;
	background: #eee;
	float: left;
	/*transition: 0.2s ease-in-out;*/
}

.monthUl{
	width: 100%;
	list-style-type: none;
	padding: 10px 20px;
	padding-top: 30px;
}
.yearLi{
	display: block;
	margin-bottom: 15px;
	padding: 8px 10px;
	background: #f8a724;
	color: #fff;
	text-align: center;
	box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.1);
}
.monthLI{
	display: block;
	margin-bottom: 15px;
	padding: 5px 10px;
	background: #fafafa;
	box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.1);
	position: relative;
}

.monLiBtn{
	position: absolute;
	right: 0px;
	top: 0px;
	padding: 8px 10px;
	cursor: pointer;
}

.blogCatUl{
	width: 100%;
	padding: 10px;
	list-style-type: none;
	padding-top: 15px;
	display: none;
}

.blogCatUl li{
	display: block;
	margin-bottom: 5px;
	background: #fff;
	box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.1);
}

.blogCatUl li label{
	display: block;
	width: 100%;
	height: 100%;
	padding: 5px 8px;
	cursor: pointer;
	background: #fff;
	font-size: 12px;
}
.blogCatUl li a{
	color: #000;
}

.blogCatUl li label:hover{
	background: #fafafa;
	/*color: #fff;*/
}

.blogCatUl li input[type=radio]{
    display: none;
}

.blogCatUl li input[type=radio]:checked + label {
	background: #f8a724;
	color: #fff
}

.blogBoxes{
	width: 65%;
	float: right;
	padding: 2px;
}
.timeSearchBlog{
	position: fixed;
	left: 0;
	top: 100px;
	z-index:9999; 
	background: #61265a;
	padding: 10px;
	color: #fff;
	outline: none;
	border: none;
	display: none;
}

.divCloseRes{
	padding: 10px 20px;
	display: none;
}
.closeblogFilter{
	background: #f44336;
	color: #fff;
	border: none;
	outline: none;
	padding: 5px;
	float: right;
}
@media screen and (max-width:768px) {
	.timeSearchBlog{
		display: block;
	}
	.divCloseRes{
		display: block;
	}
	.blogFilter{
		width: 300px;
		position: fixed;
		left: -320px;
		top: 0;
		height: 100vh;
		overflow-y:scroll;
		z-index: 9999999;
		transition: 0.2s ease-in-out;
	}
	.blogFilter::-webkit-scrollbar {
	    display: none;
	}
	.blogBoxes{
		width: 100%;
		float: none;
		padding: 2px;
	}
}

.backLink{
	width: 100%;
}
.backLink a{
	display: block;
	width: 100%;
	padding:5px 8px;
	margin-bottom: 20px;
	background: #eee;
	color: #212121;
}
.blogUl{
	width: 100%;
	list-style-type: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.singleBlog{
	display: inline-block;
	width: 48%;
	margin-bottom: 30px;
	height: fit-content;
	background: #fff;
	box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.1);
}

.singleBlog a{
	color: #000;
}

.mBlogInfo{
	width: 100%;
	padding: 5px;
	background: #fafafa;
	display: flex;
	justify-content: space-between;
}

.mBlogImg{
	width: 100%;
	height:150px;
	overflow: hidden;
	float: left;
	display: flex;
	justify-content: center;
}
.mBlogImg img{
	height: 100%;
	width: auto;
	transition: 0.2s ease-in-out;
}
.mBlogDesc{
	padding: 5px;
	width: 100%;
	overflow: hidden;
	background: #fafafa;
	padding-bottom: 10px
}

.singleBlog:hover .mBlogImg img{
	transform: scale(1.2);
}

.comment{
	width: 100%;
}