	/*------------------------------------------------------------------

Project:	A Future HTML UI Kit
Version:	1.0.0
Author: 	webstrot 

------------------------------------------------------------------
[Table of contents]
 

1. blog_section start
2. blog_pagination_section start

*/


/* --------------------------------------
blog_section start
----------------------------------------- */

.blog_section {
	float:left;
	width:100%;
	padding-top:100px;
	padding-bottom:100px;
}
.blog_section .blog-post-wrapper {
	background-color: #f7f7f7;
	margin-bottom: 40px;
}
.blog_section .blog-post-wrapper .post-thumbnail{
	position: relative;
}
.blog_section .blog-post-wrapper .post-thumbnail img{
	width: 100%;
}
.blog_section .blog-post-wrapper .post-thumbnail .posted-date{
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  background-color: #4285f4;
  color: #fff;
  width: 146px;
  margin: 0 auto;
  font-size: 11px;
  font-weight: 400;
  padding: 4px 0;
  border-radius: 30px;
  text-transform: uppercase;
  text-align: center;
}
.blog_section .blog-post-wrapper .blog-content{
  padding: 20px 22px 20px;
}
.blog_section .blog-post-wrapper .blog_fullwidth_content{
	padding: 20px 22px 20px;
}
.blog_section .blog-post-wrapper .blog_fullwidth_content 
.entry-content p{
	text-align:left;
}

/*entry-header*/

.blog_section .blog-post-wrapper .entry-header {
  margin: 20px 0 22px;
}
.blog_section .blog-post-wrapper .entry-title{
  line-height: 22px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.blog_section .blog-post-wrapper .entry-title a{
	color: #313131;
}
.blog_section .blog-post-wrapper .entry-title a:hover{
	color: #4285f4;
}

/*entry-meta*/

.blog_section .blog-post-wrapper .entry-header .entry-meta {
	font-size: 10px;
	text-transform: uppercase;
}
.blog_section .blog-post-wrapper .entry-header .entry-meta ul{
	margin:0;
	padding:0;
}
.blog_section .blog-post-wrapper .entry-header .entry-meta li {
	display: inline-block;
	padding-right: 5px;
	margin-right: 5px;
	position: relative;
}
.blog_section .blog-post-wrapper .entry-header .entry-meta li:last-child {
	padding-right: 0;
	margin-right: 0;
}
.blog_section .blog-post-wrapper .entry-header .entry-meta li::before {
  content: ".";
  position: absolute;
  right: -3px;
  bottom: 0;
}
.blog_section .blog-post-wrapper .entry-header .entry-meta li:last-child::before {
  content: "";
}
.blog_section .blog-post-wrapper .entry-header .entry-meta li a{
	color: #969595;
}
.blog_section .blog-post-wrapper .entry-header .entry-meta li a:hover{
	color: #4285f4;
}

/*entry-content*/

.blog_section .blog-post-wrapper .entry-content p{
	margin: 0;
	text-align:center;
}

/*entry-footer*/

.blog_section .blog-post-wrapper .entry-footer {
	margin-top: 26px;
	text-align: center;
    background: transparent;
    padding-top: 0;
    padding-bottom: 20px;
}
.blog_section .blog-post-wrapper .entry-footer a{
	display: inline-block;
	padding: 10px 30px;
	color: #969595;
	background: #fff;
	font-size: 14px;
	text-transform: uppercase;
	border-radius: 30px;
}
.blog_section .blog-post-wrapper .entry-footer a:hover{
	color: #fff;
	background: #4285f4;
}
.blog_section .blog-post-wrapper .blog_fullwidth_footer {
	margin-top: 26px;
	text-align:left;
    background: transparent;
    padding-top: 0;
    padding-bottom: 20px;
}
.blog_section .blog-post-wrapper .blog_fullwidth_footer a{
	display: inline-block;
	padding: 10px 30px;
	color: #969595;
	background: #fff;
	font-size: 14px;
	text-transform: uppercase;
	border-radius: 30px;
}
.blog_section .blog-post-wrapper .blog_fullwidth_footer a:hover{
	color: #fff;
	background: #4285f4;
}

/*blog gallery post*/

#blog_section_slider .carousel-control {
	top: auto;
	bottom: 25px;
	width: 30px;
	height: 30px;
	line-height: 28px;
	font-size: 16px;
	color: #fff;
	text-shadow: none;
	filter: alpha(opacity=100);
	opacity: 1;
	text-align: center;
}
#blog_section_slider .carousel-control.left,
#blog_section_slider .carousel-control.right {
	background-image: none;
	border: 1px solid #fff;
	border-radius: 50%;
	top:45%;
}
#blog_section_slider .carousel-control:focus, 
#blog_section_slider .carousel-control:hover {
  background-color: #4285f4;
  border: 1px solid #4285f4;
  color: #fff !important;
  filter: alpha(opacity=100);
  opacity: 1;
}
#blog_section_slider .carousel-control.left {
	left: 20px;
}
#blog_section_slider .carousel-control.right {
	right: 20px;
}

/*blog video post*/

.blog_section .blog-post-wrapper .play-trigger {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	margin-left: -30px;
	margin-top: -30px;
	border: 0;
	border-radius: 50%;
	color: #fff;
	background: #4285f4;
	font-size: 20px;
	line-height: 60px;
	text-align: center;
	-webkit-transition      : all 0.3s ease 0s;
	-moz-transition      : all 0.3s ease 0s;
	-o-transition      : all 0.3s ease 0s;
	transition      : all 0.3s ease 0s;
}
.blog_section .blog-post-wrapper .play-trigger:hover {
  color: #4285f4;
  background: #fff;
}
.blog_section .blog-post-wrapper .play-trigger i {
	margin-left: 5px;
}
.blog_video_wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	margin-bottom:30px;
}
.blog_video_wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border:0;
}

/* --------------------------------------
blog_section end
----------------------------------------- */


/* blog_pagination_section end */

.blog_pagination_section{
	float:left;
	width:100%;
	margin-top:50px;
	text-align:center;
}
.blog_pagination_section ul{
	margin:0;
	padding:0;
	list-style:none;
	display:inline-block;
}
.blog_pagination_section ul li{
	float:left;
	margin-left:20px;
}
.blog_pagination_section li:first-child{
	margin-left:0px;
}
.blog_pagination_section .prev i{
	margin-right:10px;
}
.blog_pagination_section .next i{
	margin-left:10px;
}
.blog_pagination_section ul li a i{
	font-size:16px;
}
.blog_pagination_section .prev{
	margin-left:0px;
	border-radius:35px;
	width:90px;
	height:34px;
	line-height:34px;
}
.blog_pagination_section .next{
	border-radius:35px;
	width:90px;
	height:34px;
	line-height:34px;
}
.blog_pagination_section ul li a{
	float:left;
	color:#4285f4;
	border-radius:50%;
	line-height:30px;
	height:30px;
	width:30px;
	text-align:center;
	margin-bottom:40px;
	border:1px solid #e0e0e0;
}
.blog_pagination_section ul li a:hover{
	background:#4285f4;
	color:#fff;
	border:1px solid #4285f4;
}

/* blog_pagination_section end */


/* --------------------------------------
sidebar start
----------------------------------------- */

.sidebar_widget{
	float: left;
    width: 100%;
	margin-bottom:50px;
}
.sidebar_widget h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
	text-transform:uppercase;
}
.sidebar_widget h4:after {
    display: block;
    content: "";
    background: #4285f4;
	border:1px solid #4285f4;
    width: 40px;
    height: 4px;
	border-radius:3px;
    margin-top: 13px;
}


/* media query css for mobile */

@media(max-width: 767px){
	
	.video_wrapper img{
		width: 100%;
	}
}

@media(min-width: 768px)and (max-width: 991px){
	
	.blog_pagination_section .prev{
		width:70px;
	}
	.blog_pagination_section .next{
		width:70px;
	}	
	.blog_pagination_section ul li {
		margin-left:7px;
	}
}
 
@media only screen and (max-width : 480px) {
	

	.blog_pagination_section .prev{
		width:70px;
	}
	.blog_pagination_section .next{
		width:70px;
	}	
	.blog_pagination_section ul li {
		margin-left: 10px;
	}

}

@media only screen and (max-width : 390px) {
	
	.blog_pagination_section .prev i{
		display:none;
	}
	.blog_pagination_section .next i{
		display:none;
	}
	.blog_pagination_section .prev{
		width:50px;
	}
	.blog_pagination_section .next{
		width:50px;
	}		
	#blog_section_slider .carousel-control.left, 
	#blog_section_slider .carousel-control.right {
		top: 35%;
	}

}


