/*--------------------------------------------------
	01. Blog Layout
---------------------------------------------------*/	
	
	#blog, #blog-post {
		position:relative;
		width:100%;
		min-height:700px;
		margin:0 auto;
		margin-top:0;
		box-sizing: border-box;
		padding:40px;
		-webkit-transition: height 1.2s ease-out, opacity 0.3s ease-out;
		transition: height 1.2s ease-out, opacity 0.3s ease-out;
	}
	
	#blog.boxed {
		max-width:1540px;
	}
	
	#blog.are-images-unloaded {
	  opacity: 0;
	}
	
	.grid__col-sizer {
		width: 20%;
	}
	
	#blog.boxed  .grid__col-sizer {
		width: 25%;
	}
		
	#blog-post {
		padding:0;
	}
	
	#blog::after, #blog-post::after, .post-content::after {
		clear: both;
		content: " ";
		display: table;
	}
	
	article {
		width:calc(20% - 56px);
		background-color:#fff;
		margin:20px;
		box-sizing:border-box;
		border-radius:3px;
		border-bottom:1px solid #dadada;
		float: left;
		overflow:hidden;
	}
	
	.modern-thumbs article {
		border-bottom:none;
		-webkit-box-shadow: 0px 4px 15px 0px rgba(0,0,0,0.03);
		-moz-box-shadow: 0px 4px 15px 0px rgba(0,0,0,0.03);
		box-shadow: 0px 4px 15px 0px rgba(0,0,0,0.03);
		
	}
	
	.modern-thumbs article:hover {
		-webkit-box-shadow: 0px 4px 28px 0px rgba(0,0,0,0.25);
		-moz-box-shadow: 0px 4px 28px 0px rgba(0,0,0,0.25);
		box-shadow: 0px 4px 28px 0px rgba(0,0,0,0.25);
		-webkit-transition: box-shadow 0.2s ease-in-out;
		-moz-transition: box-shadow 0.2s ease-in-out;
		transition: box-shadow 0.2s ease-in-out;
	}
	
	#blog.boxed article {
		width:calc(25% - 60px);
	}
	
	.post-link, .post-quote {
		text-align:center;
	}
	
	.post-url, .post-author-quote {
		color:#999;
		font-size:14px;
		margin-top:10px;
		margin-bottom:60px;
		display:block;
		position:relative;
	}
	
	.post-url::after {
		height: 10px;
		position: absolute;
		font-size: 28px;
		font-family: 'FontAwesome';
		content: "\f0c1";
		color: #000;
		left: 0;
		bottom: -30px;
		-webkit-transition: opacity 0.2s ease-in-out 0.2s;
		transition: opacity 0.2s ease-in-out 0.2s;
		text-align: center;
		width: 100%;
	}
	
	.post-author-quote::after {
		height: 10px;
		position: absolute;
		font-size: 28px;
		font-family: 'FontAwesome';
		content: "\f10e";
		color: #000;
		left: 0;
		bottom: -30px;
		-webkit-transition: opacity 0.2s ease-in-out 0.2s;
		transition: opacity 0.2s ease-in-out 0.2s;
		text-align: center;
		width: 100%;
	}
	
	.post-image {
		position: relative;
		display: block;
		width: 100%;
		height: auto;
		border-top-left-radius: 3px;
		border-top-right-radius: 3px;
		overflow:hidden;
	}
	
	.minimal-thumbs .post-image {
		border-radius:3px;
	}
	
	.post-image::after, .article-tabbed-thumb::after, article .swiper-slide::after {
		content: "";
		opacity:0;
		position:absolute;
		width:100%;
		height: 100%;
		box-sizing:border-box;
		left:0;
		bottom:0;
		pointer-events:none;
		z-index:1;
		-webkit-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
		background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
		background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
		background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
	}
	
	.minimal-thumbs .post-image::after, .minimal-thumbs article .swiper-slide::after {
		background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
		background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
		background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
		opacity:0;
	}
	
	.post-image:hover::after, .article-tabbed-thumb:hover::after, .post-image:hover .swiper-slide::after  {
		opacity:1;
	}
	
	.minimal-thumbs article:hover .post-image::after, .minimal-thumbs article:hover .post-image .swiper-slide::after  {
		opacity:1;
	}
	
	post-image a {
		z-index:10;
		position:relative;
	}
	
	.post-image a img {
		max-width:none;
		width:100%;
		height:auto;
	}
	
	.plus-img {
		width:30px;
		height:30px;
		position:absolute;
		top:50%;
		left:50%;
		margin-left:-15px;
		margin-top:-15px;
		z-index:10;
	}
	
	.minimal-thumbs .plus-img {
		display:none;
	}
	
	.article-tabbed-thumb .plus-img {
		width:20px;
		height:20px;
		margin-left:-10px;
		margin-top:-10px;
	}
	
	.plus-img span:first-child {
		height: 30px;
		width: 2px;
		background-color: #fff;
		position: absolute;
		left: 14px;
		border-radius:2px;
		transform: scaleY(0);
		transform-origin: top;
		transition: transform .2s ease-in 0.1s;
		-webkit-transition: transform .2s ease-in 0.1s;
	}
	
	.article-tabbed-thumb .plus-img span:first-child {
		height: 20px;
		left: 9px;
	}
  
    .post-image:hover .plus-img span:first-child, .article-tabbed-thumb:hover .plus-img span:first-child {
		transform: scaleY(1);
		transform-origin: bottom;
		transition: transform .2s ease-out;
		-webkit-transition: transform .2s ease-out;
	}
	
	.plus-img span:last-child {
		height:2px;
		width:30px;
		background-color:#fff;
		position: absolute;
		top:14px;
		border-radius:2px;
		transform: scaleX(0);
		transform-origin: left;
		transition: transform .2s ease-in;
		-webkit-transition: transform .2s ease-in;
	}
	
	.article-tabbed-thumb .plus-img span:last-child {
		width:20px;
		top:9px;
	}
	
	 .post-image:hover .plus-img span:last-child, .article-tabbed-thumb:hover .plus-img span:last-child {
		transform: scaleX(1);
		transform-origin: right;
		transition: transform .2s ease-out 0.1s;
		-webkit-transition: transform .2s ease-out 0.1s;
	}
	
	.plus-video {
		width:30px;
		height:30px;
		position:absolute;
		top:50%;
		left:50%;
		margin-left:-15px;
		margin-top:-15px;
		z-index:10;
	}
	
	.minimal-thumbs .plus-video {
		display:none;
	}
	
	.plus-video svg {
		top: -25px;
		left: -25px;
		position: absolute;
		opacity:0;
		transition: opacity 0s ease-out 0.34s;
		-webkit-transition: opacity 0s ease-out 0.34s;
	}
	
	.post-image:hover .plus-video svg {
		opacity:1;
		transition: opacity .1s ease-out 0.3s;
		-webkit-transition: opacity .1s ease-out 0.3s;
	}
	
	.triangle {
		-webkit-transition: all 0.7s ease-in-out;
		stroke-dasharray: 240;
		stroke-dashoffset: 480;
		stroke: #fff;
		transform: translateY(0) 
	}
  
  
	.post-image:hover .triangle {
		stroke-dashoffset: 0;
		opacity: 1;
		stroke: #fff;      
	}	
	
	article .swiper-container {
     	width: 100% !important;
	  	z-index:2;
    }
	
	.swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }
	
	article .swiper-button-next, article .swiper-button-prev {
		background-image:none!important;
		opacity:0;
		-webkit-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
	}
	
	article .swiper-button-prev::before {
		height: 10px;
		width: 20px;
		position: absolute;
		font-size: 30px;
		font-family: 'FontAwesome';
		content: "\f104";
		color: #fff;
		left: 8px;
		top: 6px;
		-webkit-transition: opacity 0.2s ease-in-out 0.2s;
		transition: opacity 0.2s ease-in-out 0.2s;
	}
	
	article .swiper-button-next::before {
		height: 10px;
		width: 20px;
		position: absolute;
		font-size: 30px;
		font-family: 'FontAwesome';
		content: "\f105";
		color: #fff;
		left: 9px;
		top: 6px;
		-webkit-transition: opacity 0.2s ease-in-out 0.2s;
		transition: opacity 0.2s ease-in-out 0.2s;
	}
	
	article .post-image:hover .swiper-button-next, article .post-image:hover .swiper-button-prev {
		opacity:1;
		-webkit-transition: opacity 0.2s ease-in-out 0.1s;
		transition: opacity 0.2s ease-in-out 0.1s;
	}
	
	.article-content {
		padding:30px;
	}
	
	.minimal-thumbs .has-post-thumbnail .article-content {
		padding: 0 30px;
		position: absolute;
		bottom: 0;
		z-index:10;
	}
	
	.post-add-banner {
		overflow: hidden;
		background: transparent;
		border: navajowhite;
	}
	
	.post-add-banner .article-content {
		padding:0px;
	}
	
	.post-add-banner img {
		width:100%;
	}
	
	.post-categories {
		padding:0;
		margin:0;
	}
	
	#hero .post-categories {
		margin-top:40px;
	}
	
	#hero > #showcase-slider .post-categories {
		margin-top:0px;
	}
	
	.entry-meta {
		padding:0;
		margin:0;
		position:relative;
	}
	
	.minimal-thumbs .has-post-thumbnail .article-content .entry-meta {
		opacity:0;
		transform: translateY(10px);
		-webkit-transform: translateY(10px);
		-webkit-transition: all 0.2s ease-in;
		transition: all 0.2s ease-in;
	}
	
	.minimal-thumbs .post-audio .article-content .entry-meta {
		display:none;
	}
	
	.minimal-thumbs .has-post-thumbnail:hover .article-content .entry-meta {
		opacity:1;
		transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-webkit-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
	}
	
	.hero-footer {
		margin-bottom:40px;
	}
	
	.hero-footer .entry-meta {
		display:inline-block;
	}
	
	.entry-meta li {
		display:inline-block;
		margin:0;
		padding:0;
		list-style:none;
		color:#555;
	}
	
	.hero-footer .entry-meta li {
		font-size:14px;
	}
	
	.entry-meta li a {
		color:#555;
	}
	
	.light-content .entry-meta li a, .light-content .entry-meta li {
		color:#fff;
	}
	
	.entry-meta li a:hover {
		color:#000;
	}
	
	.light-content .entry-meta li a:hover {
		color:#fff;
	}
	
	.entry-categories {
		margin-left:-1px;
	}
	
	.entry-categories li {
		background-color: #f9f9f9;
		display: inline-block;
		margin-right: 5px;
		margin-bottom:15px;		
		list-style: none;
		border: 1px solid #e3e3e3;
		border-radius: 15px;
		line-height: 20px;
		box-sizing: border-box;
		-webkit-transition: all 0.1s ease;
		transition: all 0.1s ease;
	}
	
	.modern-thumbs .entry-categories li {
		border: 1px solid #f9f9f9;
	}
	
	#hero .entry-categories li {
		background-color:#FFF;
		border: 1px solid #fff;
		margin-right: 8px;
		margin-bottom:8px;
	}
	
	#hero.light-content .entry-categories li, #hero .light-content .entry-categories li {
		background-color:transparent;
		border: 1px solid #fff;
		margin-right: 8px;
	}
	
	.minimal-thumbs .has-post-thumbnail .entry-categories li {
		background-color:transparent;
		border: 1px solid #fff;
	}
	
	#hero .entry-categories li:last-child {
		margin-right:0;
	}
	
	.entry-categories li:hover {
		background-color: #000;
		border: 1px solid #000;
	}
	
	#hero .entry-categories li:hover {
		background-color: #000;
		border: 1px solid #000;
	}
	
	#hero.light-content .entry-categories li:hover, #hero .light-content .entry-categories li:hover {
		background-color:#fff;
		border: 1px solid #fff;
	}
	
	.minimal-thumbs .has-post-thumbnail .entry-categories li:hover {
		background-color:#fff;
		border: 1px solid #fff;
	}
	
	.entry-categories li a {
		padding: 0px 12px;
		font-size: 10px;
		color: #999;
		position: relative;
		height: 20px;
		line-height: 21px;
		display: block;
		-webkit-transition: all 0.1s ease;
		transition: all 0.1s ease;
	}
	
	.modern-thumbs .entry-categories li a {
		color: #888;
	}
	
	#hero .entry-categories li a {
		color: #777;
	}
	
	#hero.light-content .entry-categories li a, #hero .light-content .entry-categories li a {
		color: #fff;
	}
	
	.minimal-thumbs .has-post-thumbnail .entry-categories li a {
		color: #fff;
	}
	
	.entry-categories li:hover a {
		color:#fff;
	}
	
	#hero .entry-categories li:hover a {
		color:#fff;
	}
	
	#hero.light-content .entry-categories li:hover a, #hero .light-content .entry-categories li:hover a {
		color:#000;
	}
	
	.minimal-thumbs .has-post-thumbnail .entry-categories li:hover a {
		color:#000;
	}
	
	.entry-date li a {
		line-height: 20px;
		height: 20px;
		font-size: 10px;
		color: #999;
		top: -1px;
		position: relative;
	}
	
	.entry-date li a:hover {
		color:#000;
	}
	
	.hero-footer .entry-date li a {
		line-height: 20px;
		height: auto;
		font-size: 14px;
		color: #555;
		top: 0px;
		position: relative;
		margin-left:25px;
	}
	
	.hero-footer .entry-date::before {
		width: 100%;
		height: 30px;
		width: 20px;
		position: absolute;
		font-size: 16px;
		font-family: 'FontAwesome';
		content: "\f017";
		color: #000;
		left: 0px;
		top: 0px;
	}
	
	.light-content .entry-date li a {
		color:#fff;
	}
	
	.hero-footer .entry-author {
		padding-left:25px;
		margin-right:20px;
	}
	
	.hero-footer .entry-author a {
		position:relative;
	}
	
	.hero-footer .entry-author::before {
		width: 100%;
		height: 30px;
		width: 20px;
		position: absolute;
		font-size: 16px;
		font-family: 'FontAwesome';
		content: "\f007";
		color: #000;
		left: 0px;
		top: 0px;
	}
	
	.hero-footer .entry-meta li a::before {
		content: '';
		position: absolute;
		bottom: -4px;
		left: 0;
		width: 100%;
		height: 2px;
		background: rgba(0,0,0,1);
		transform: scaleX(0);
		transform-origin: right;
		transition: transform .2s ease-out;
	}
	
	.light-content .hero-footer .entry-meta li a::before {
		background: rgba(255,255,255,1);
	}
  
    .hero-footer .entry-meta li a:hover::before {
		transform: scaleX(1);
		transform-origin: left;
	}
	
	.entry-comments {
		background-color: #fff;
		border-radius: 25px;
		height: 16px;
		top: 4px;
	}
	
	.entry-comments::before {
		height: 10px;
		width: 20px;
		position: absolute;
		font-size: 10px;
		font-family: 'FontAwesome';
		content: "\f086";
		color: #000;
		left: 8px;
		top: 2px;
		-webkit-transition: opacity 0.2s ease-in-out 0.2s;
		transition: opacity 0.2s ease-in-out 0.2s;
	}
	
	.entry-comments li {
		line-height: 16px;
		height: 16px;
		font-size: 10px;
		font-weight: 400;
		color: #999;
		top: -4px;
		padding-left: 22px;
		padding-right: 7px;
		position: relative;
	}
	
	.entry-comments li a {
		line-height: 16px;
		height: 16px;
		font-size: 10px;
		font-weight: 400;
		color: #999;		
	}
	
	.screen-reader-text {
		display:none;
	}
	
	
	.light-content .entry-meta::before {
		color:#fff;
	}
	
	.entry-tags {
		margin-top: 40px;
		margin-left: -1px;
		width: calc(100% - 250px);
	}
	
	.entry-tags li {
		background-color: #fff;
		display: inline-block;
		margin-right: 5px;
		margin-bottom:8px;		
		list-style: none;
		border: 1px solid #fff;
		border-radius: 15px;
		line-height: 20px;
		box-sizing: border-box;
		-webkit-transition: all 0.1s ease;
		transition: all 0.1s ease;
	}
	
	.entry-tags li:first-child {
		display:none;
	}
	
	.entry-tags li:hover {
		background-color: #000;
		border: 1px solid #000;
	}
	
	.entry-tags li a {
		padding: 0px 12px;
		font-size: 10px;
		color: #999;
		position: relative;
		height: 20px;
		line-height: 21px;
		display: block;
	}
	
	.entry-tags li:hover a {
		color:#fff;
	}
	
	.post-title {
		font-size: 18px;
		line-height:24px;
		font-weight: 500;
		font-family: 'Poppins', sans-serif;
		color: #000;
		margin-bottom: 10px;
		display: block;
		-ms-word-wrap: break-word;
		word-wrap: break-word;
	}
	
	.post-title:hover {
		opacity:0.8;
	}
	
	.minimal-thumbs .post-title {
		margin-bottom:0;
	}
	
	.minimal-thumbs .has-post-thumbnail .post-title {
		color:#fff;
		opacity:0;
		margin-bottom:30px;
		transform: translateY(20px);
		-webkit-transform: translateY(20px);
		-webkit-transition: all 0.2s ease-in;
		transition: all 0.2s ease-in;
	}
	
	.minimal-thumbs .post-audio .post-title {
		display:none;
	}
	
	.minimal-thumbs article.has-post-thumbnail:hover .post-title {
		opacity:1;
		transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-webkit-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
	}
	
	.post-excerpt, .post-excerpt p {
		font-size:14px;
		line-height:22px;
		
	}
	
	.minimal-thumbs .has-post-thumbnail .post-excerpt, .minimal-thumbs .has-post-thumbnail .post-excerpt p {
		display:none;
	}
	
	.article-footer {
		background-color: #f9f9f9;
		width: calc(100% + 60px);
		margin-left: -30px;
		margin-bottom: -30px;
		padding:5px 15px;
		box-sizing: border-box;
		margin-top:30px;
	}
	
	.modern-thumbs .article-footer {
		background-color: transparent;
		border-top: solid 1px #f9f9f9;
	}
	
	.minimal-thumbs .article-footer {
		display:none;
	}
	
	.article-footer::after {
		clear: both;
		content: " ";
		display: table;
	}
	
	
	.article-footer .entry-date {
		float:left;
	}
	
	.article-footer .entry-comments {
		float:right;
	}
	
	
	ul.page-numbers {
		display: table;
		margin: 0;
		list-style: none;
		border-radius: 3px;
		border-width: 0;
	    margin: 0 auto;
		margin-bottom: 80px;
		padding-left: 0;
	}
	
	ul.page-numbers li {
		display: block;
		float: left;
		margin: 0 1px;
		text-align: center;
	}
	
	ul.page-numbers .prev, ul.page-numbers .next {
		width: auto;
		padding: 0 22px;
		background-color:#fff;
		border-radius:3px;
		margin:0 15px;
		margin-top: 10px;
	}
	
	ul.page-numbers a, ul.page-numbers span {
		display: block;
		width: 34px;
		height: 34px;
		line-height: 35px;
		font-weight: 500;
		font-family: 'Poppins', sans-serif;
		font-size: 12px;
		cursor: pointer;
		padding: 0;
		margin-top: 10px;
		color:#999;
	}
	
	ul.page-numbers a:hover, ul.page-numbers span:hover {
		color:#000;
	}
	
	ul.page-numbers .current, ul.page-numbers .current:hover {
		color: #fff;
		background-color: #262629;
		border-radius: 3px;
	}
	
	.wigets-tabs .article-content {
		padding:0;
	}
	
	.wigets-tabs  .swiper-pagination {
		position: relative;
		bottom:0!important;
		width:100%;
		display:block;
		text-align:left;
		box-sizing: border-box;
		padding: 15px 20px;
		height:50px;
		border-bottom: 1px solid #f2f2f2;
	}
	
	.wigets-tabs .swiper-pagination-bullet {
		width: auto;
		height: 20px;
		line-height: 20px;
		display: inline-block;
		border-radius:0;
		background: transparent;
		opacity:0.5;
		padding: 0 10px;
		box-sizing: border-box;
		color:#000;
		font-size: 14px;
		font-weight: 500;
		font-family: 'Poppins', sans-serif;
	}
	
	.wigets-tabs .swiper-pagination-bullet-active {
		opacity: 1;
		background: transparent;
	}
	
	.wigets-tabs .swiper-slide {
		width: 100% !important;
	}
	
	.tab-slide-content {
		display:block;
		position:relative;
		width:100%;
		height:auto;
		text-align:left;
		padding:30px;
	}
	
	.article-tabbed {
		width: 100%;
		position: relative;
		display: table;
		margin-bottom: 10px;
	}
	
	.tab-slide-content .article-tabbed:last-child {
		margin-bottom:0;
	}
	
	.article-tabbed-thumb {
		width:70px;
		height:70px;
		display:block;
		float:left;
		position:relative;
		border-radius:3px;
		overflow:hidden;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}
	
	.article-tabbed-title {
		color: #000;
		line-height: 24px;
		font-weight: 500;
		font-family: 'Poppins', sans-serif;
		font-size: 14px;
		width: 70%;
		display: block;
		float: left;
		padding-top:5px;
		padding-left: 14px;
		box-sizing: border-box;
	}
	
	.widget-social-icons {
		margin:0px;
		margin-top:30px;
		position:relative;
		display:block;
	}
	
	.widget-social-icons li {
		display: inline-block;
		padding-right: 4px;
		padding-left: 5px;
		margin-bottom: 10px;
	}
	
	.widget-social-icons .fa {
		font-size: 16px;
	}
	
	.widget-social-icons .fa {
		width: 40px;
		height: 40px;
		line-height: 40px;
		text-align: center;
		color: rgba(255, 255, 255, 0.7);
		-webkit-transition: all 0.15s ease-in-out;
		transition: all 0.15s ease-in-out;
	}
	
	.widget-social-icons .fa{ 
		border-radius: 3px;
	}
	
	.widget-social-icons .fa:hover, .widget-social-icons .fa:active {
		color: #FFF; 
	}
	 
	.widget-social-icons .fa-adn{background-color:#504e54;} 
	.widget-social-icons .fa-apple{background-color:#aeb5c5;} 
	.widget-social-icons .fa-android{background-color:#A5C63B;}  
	.widget-social-icons .fa-bitbucket,.widget-social-icons .fa-bitbucket-square{background-color:#003366;} 
	.widget-social-icons .fa-bitcoin,.widget-social-icons .fa-btc{background-color:#F7931A;} 
	.widget-social-icons .fa-css3{background-color:#1572B7;} 
	.widget-social-icons .fa-dribbble{background-color:#F46899;}  
	.widget-social-icons .fa-dropbox{background-color:#018BD3;}
	.widget-social-icons .fa-facebook,.widget-social-icons .fa-facebook-square{background-color:#3C599F;}  
	.widget-social-icons .fa-flickr{background-color:#FF0084;}
	.widget-social-icons .fa-foursquare{background-color:#0086BE;}
	.widget-social-icons .fa-github,.widget-social-icons .fa-github-alt,.widget-social-icons .fa-github-square{background-color:#070709;} 
	.widget-social-icons .fa-google-plus,.widget-social-icons .fa-google-plus-square{background-color:#CF3D2E;} 
	.widget-social-icons .fa-html5{background-color:#E54D26;}
	.widget-social-icons .fa-instagram{background-color:#A1755C;}
	.widget-social-icons .fa-linkedin,.widget-social-icons .fa-linkedin-square{background-color:#0085AE;} 
	.widget-social-icons .fa-linux{background-color:#FBC002;color:#333;}
	.widget-social-icons .fa-maxcdn{background-color:#F6AE1C;}
	.widget-social-icons .fa-pagelines{background-color:#241E20;color:#3984EA;}
	.widget-social-icons .fa-pinterest,.widget-social-icons .fa-pinterest-square{background-color:#CC2127;} 
	.widget-social-icons .fa-behance{background-color:#025DAC;}
	.widget-social-icons .fa-skype{background-color:#01AEF2;}
	.widget-social-icons .fa-stack-exchange{background-color:#245590;}
	.widget-social-icons .fa-stack-overflow{background-color:#FF7300;}
	.widget-social-icons .fa-trello{background-color:#265A7F;}
	.widget-social-icons .fa-tumblr,.widget-social-icons .fa-tumblr-square{background-color:#314E6C;} 
	.widget-social-icons .fa-twitter,.widget-social-icons .fa-twitter-square{background-color:#32CCFE;} 
	.widget-social-icons .fa-vimeo-square{background-color:#229ACC;}
	.widget-social-icons .fa-vk{background-color:#375474;}
	.widget-social-icons .fa-weibo{background-color:#D72B2B;}
	.widget-social-icons .fa-windows{background-color:#12B6F3;}
	.widget-social-icons .fa-xing,.widget-social-icons .fa-xing-square{background-color:#00555C;} 
	.widget-social-icons .fa-youtube,.widget-social-icons .fa-youtube-play,.widget-social-icons .fa-youtube-square{background-color:#C52F30;}
 
 	audio {
		height: 0px !important;
		display: none;
		top: 0;
		pointer-events: none;
	}
	
	.post-audio .article-content {
		margin-top:52px;
	}
	
	.mejs-inner .plyr--audio .plyr__controls {
		background-color:transparent;
	}
 
	.plyr__volume {
		max-width: 32px!important;
	}
	
	article .plyr--audio .plyr__controls {
    	background: rgba(0,0,0,0.02);
		padding: 10px 22px;
		color:#222;
		border-top-left-radius: 3px;
		border-top-right-radius: 3px;
		position: absolute;
		width: 100%;
	}
	
	article .plyr--audio .plyr__control.plyr__tab-focus, article .plyr--audio .plyr__control:hover, article .plyr--audio .plyr__control[aria-expanded="true"] {
		background: rgba(0,0,0,0.1);
		color:#000;
	}
	
	#hero .plyr {
		left: -3px;
	}
	
	#hero.has-image.light-content .plyr--audio .plyr__controls {
		background: transparent;
		border-radius: inherit;
		color: #fff;
		padding: 0;
		max-width: 700px;
		margin-left:-6px;
	}
	
	#hero.has-image .plyr--audio .plyr__controls {
		background: transparent;
		border-radius: inherit;
		color: #000;
		padding: 0;
		max-width: 700px;
		margin-left:-6px;
	}
	
	#hero.has-image.text-align-center .plyr--audio .plyr__controls {
		margin: 0 auto;
	}
	
	#hero .plyr--audio .plyr__controls {
		color: #000;
	}
		
	#hero.has-image.light-content .plyr--audio .plyr__control.plyr__tab-focus, #hero.has-image.light-content .plyr--audio .plyr__control:hover, #hero.has-image.light-content .plyr--audio .plyr__control[aria-expanded="true"] {
		background: rgba(255,255,255,0.2);
	}
	
	#hero .plyr--audio .plyr__control.plyr__tab-focus, #hero .plyr--audio .plyr__control:hover, #hero .plyr--audio .plyr__control[aria-expanded="true"] {
		background: rgba(0,0,0,0.1);
		color:#000;
	}
	
	.plyr__control.plyr__tab-focus {
		box-shadow:0 0 0 5px rgba(0,0,0,0)!important;
	}
	
	#hero.has-image.light-content .plyr--full-ui input[type="range"] {
    	color: #fff;
	}
	
	#hero .plyr--full-ui input[type="range"] {
    	color: #000;
	}
	
	.post-content {
		max-width: 980px;
		width: 100%;
		margin: 0 auto;
		margin-bottom:40px;
		padding: 0 60px;
		box-sizing: border-box;
	}
	
	.post-navigation {
		margin-top:100px;
	}
	
	.post-nav {
		margin: 0;
		padding: 0;
		width: 100%;
		display: block;
		height: auto;
		position: relative;
		margin: 0 auto;
		overflow: hidden;
	}
	
	.post-nav.boxed {
		max-width:1480px;
		border-radius:4px;
	}
	
	.post-nav::after {
		clear: both;
		content: " ";
		display: table;
	}
	
	.post-nav li {
		position: relative;
		margin: 0;
		width: 50%;
		display: block;
		float: left;
		height: 300px;
		background-color: #313134;
		overflow: hidden;
		box-sizing: border-box;		
	}
	
	.post-nav li a {
		box-sizing: border-box;
		display: block;
		height: 100%;
	}
	
	.post-nav li.post-nav-prev a {
		border-right: 1px solid rgba(255,255,255,0.05);
		box-sizing: border-box;
		display: block;
		height: 100%;
	}
	
	.post-nav li .outer {
		position: relative;
		z-index: 2;
		padding: 60px 120px;
		box-sizing: border-box;
	}
	
	.post-nav li.post-nav-prev .outer {
		text-align:right;
	}
	
	.prev-post-img, .next-post-img {
		position:absolute;
		background-size:cover;
		background-position:center center;
		width:100%;
		height:100%;
		z-index:0;
		opacity:0.8;
		-webkit-transition: 0.15s ease;
		transition: 0.15s ease;
	}
	
	.post-nav li:hover .prev-post-img, .post-nav li:hover .next-post-img {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);	
	}
	
	.post-nav li h6 {
		font-weight:600;
		font-size: 24px;
		transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-webkit-transition: 0.15s ease-in-out;
		transition: 0.15s ease-in-out;
	}
	
	.post-nav li:hover h6 {
		font-weight:500;
		font-size: 12px;
		transform: translateY(-30px);
		-webkit-transform: translateY(-30px);
	}
	
	.post-nav li h4 {
		opacity: 0;
		height: 0;
		transform: translateY(30px);
		-webkit-transform: translateY(30px);
		-webkit-transition: 0.15s ease-in-out;
		transition: 0.15s ease-in-out;
		-ms-word-wrap: break-word;
		word-wrap: break-word;
		position: absolute;
		display: block;
		width: 100%;
		max-width: 50vw;
		left: 0;
		padding: 0 120px;
		box-sizing: border-box;
	}
	
	.post-nav li:hover h4 {
		opacity: 1;
		max-height:200px;
		transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
	}
	
	.post-nav li b, .post-nav li strong {    
		color: #fff;
	}
	
	.post-widgets .post-wrap {
		max-width:1200px;
		padding-top:100px;
		padding-bottom:40px;
	}
	
	.post-widgets h4 {
		text-align:center;
	}
	
	.post-widgets .related-slider {
		margin-top:50px;
	}
	
	.related-slider .swiper-pagination {
		margin-top:50px;
		position:relative;
		z-index:10;
	}
	
	
	.related-slider .swiper-slide {
		background-color:transparent;
	}
	
	.related-slider .post-image {
		height: 100%;
		min-height: 140px;
		background-size: cover;
		background-position: center;
	}
	
	.post-widgets article {
    	width: 100%;
		margin:0;
		text-align:left;
	}
	
	.page-links {
		max-width:980px;
		padding: 0 60px;
		box-sizing:border-box;
		width:100%;
		position:relative;
		margin:0 auto;
	}
	
	.page-links {
		clear: both;
	}
	
	.page-links p {
		font-weight: 500;
		font-size: 12px;
	}
	
	.page-links a {
		width: 34px;
		height: 34px;
		line-height: 35px;
		font-weight: 500;
		font-size: 12px;
		cursor: pointer;
		padding: 0;
		color:rgba(255,255,255,0.6);
		background-color: #262629;
		border-radius: 3px;
		display: inline-block;
		margin: 0 5px;
		margin-bottom:5px;
		text-align: center;
	}
	
	.page-links a:hover{
		color:rgba(255,255,255,1)
	}
	
	#default-content .page-links {
		max-width: 1180px;
		padding: 0;
	}
	
	.post-wrap {
		max-width: 980px;
		width: 100%;
		padding: 0 60px;
		box-sizing: border-box;
		position:relative;
		margin:0 auto;
	}
	
	#page-with-comments .post-wrap {
		max-width: 1180px;
	}
	
	.post-comments {
		position:relative;
		display:block;
		padding-top:50px;
		padding-bottom:40px;
		border-top: 1px solid #e6e6e6;
	}
	
	.user_comment {
		color: #000;
		margin-top:40px;
		margin-bottom: 30px;
		padding-left: 65px;
		position:relative;
	}
	
	.user-image {
		border-radius: 50%;
		height: 50px;
		overflow: hidden;
		width: 50px;
		position:absolute;
		left:0px;
	}
	
	.user-image img {
		width:100%;
		height:auto;
	}
	
	.comment-head {
		font-weight: 500;
		font-family: 'Poppins', sans-serif;
		color:#000;
		font-size:14px;
		margin-bottom: 0px;
	}
	
	.light-content .comment-head {
		color:#fff;
	}
	
	.comment-head span {
		font-weight:300;
		color:#999;
	}
	
	.comment-head span a {
		color:#000;
		font-weight:400;
		position:relative;
		display:inline-block;
	}
	
	.comment-head span a::before {
		content: '';
		position: absolute;
		bottom:4px;
		left: 0;
		width: 100%;
		height: 2px;
		background: rgba(0,0,0,1);
		transform: scaleX(0);
		transform-origin: right;
		transition: transform .2s ease-out;
	}
  
    .comment-head span a:hover::before {
		transform: scaleX(1);
		transform-origin: left;
	}
	
	.light-content .comment-head span a {
		color:#fff;
	}
	
	.comment-text {
		color: #999;
		margin-bottom:35px;
	}
	
	.user_comment_reply {
		position:relative;
		color: #000;
		padding-left: 65px;
		margin-top: 25px;
		display:block;
	}
	
	.add-comment .caption-content {
		padding:0;
	}
	
	.comments-navigation .alignleft {
		float: none;
	}
	
	.post-form {
		float:left;
		width:100%;
		background-color: #fff;
		position: relative;
		display: block;
		padding-top:80px;
		padding-bottom:80px;
		margin-bottom:-1px;
		border-top: 1px solid #e6e6e6;
	}
	
	#commentsform {
		position: relative;
		float: left;
		margin-bottom: 0px;
		width:100%;	
	}
	
	#comments .comments-navigation { 
		margin-top: 30px;
		display: block;
		position: relative;
	}
	
	#respond #commentsform {
		float:none;
	}
	
	#comments .comments-navigation a {
		color:#777;
	}
	
	#comments .comments-navigation a:hover {
		color:#000;
	}
	
	.form-submit, .post-password-form input[type="submit"] {		
		cursor: pointer;
		border: none;
		box-sizing: border-box;
		text-align: center;
		background-color: #000;
		display: inline-block;
		border-radius: 4px;
		position: relative;
		overflow: hidden;
		margin-top:40px;
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;  

	}
	
	.form-submit input[type="submit"], .post-password-form input[type="submit"] {
		color: #fff;
		font-weight: 500;
		font-family: 'Poppins', sans-serif;
		font-size: 14px;
		padding: 14px 24px;
		line-height: 16px;
		position:relative;
		z-index:10;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;  
	}
	
	.form-submit::after, .post-password-form input[type="submit"]::after {
		content: '';
		position: absolute;
		bottom: 0px;
		left: 0;
		width: 100%;
		height: 100%;
		background: #333;
		transform: scaleX(0);
		transform-origin: right;
		transition: transform .2s ease-out;
		-webkit-transition: transform .2s ease-out;
	}
	
	.form-submit:hover::after {
		transform: scaleX(1);
		transform-origin: left;
	}
	
	.logged-in textarea {
		margin-bottom:40px;
	}
	
	.logged-in .form-submit {
		margin-top:10px;
	}
	
	input[type="password"] {
		background:#fff;
		box-sizing:border-box;
		border-radius:3px;
		padding:10px;
		height:50px;
		line-height:30px;
		outline:none;
		min-width:350px;
		display:block;
		border:1px solid #ddd;
	}
	
	.post-password-form input {
		margin-top:20px!important;
	}
	
	.clapat-button.view-more-button {
		display: table;
		margin: 0 auto;
		position: absolute;
		left: 50%;
    	transform: translate(-50%, 0);
		bottom: 0;
	}
	
	.page-load-wrap {
		height: 50px;
		position: relative;
		max-width: 300px;
		margin: 0 auto;
		margin-bottom: 60px;
	}
	
	.page-load-status {
		display: none;
		margin: 0 auto;
		max-width: 300px;
		width: 100%;
		text-align: center;		
		margin-bottom: 50px;
	}
	
	.infinite-scroll-last, .infinite-scroll-error {
		position: relative;
		width: 100%;
		text-align: center;
		top:0;		
		color:#CCC;
	}
	
	.loader-ellips {
		font-size: 20px; /* change size here */
		position: relative;
		width: 40px;
		height: 10px;
		margin: 0px auto;
		transform: translate(0, -20px);
	}
	
	.loader-ellips__dot {
		display: block;
		width: 10px;
		height: 10px;
		border-radius: 0.5em;
		background: #555; /* change color here */
		position: absolute;
		animation-duration: 0.5s;
		animation-timing-function: ease;
		animation-iteration-count: infinite;
	}
	
	.loader-ellips__dot:nth-child(1),
	.loader-ellips__dot:nth-child(2) {
		left: 0;
	}
	.loader-ellips__dot:nth-child(3) { left: 15px; }
	.loader-ellips__dot:nth-child(4) { left: 30px; }
	
	@keyframes reveal {
	  from { transform: scale(0.001); }
	  to { transform: scale(1); }
	}
	
	@keyframes slide {
	  to { transform: translateX(15px) }
	}
	
	.loader-ellips__dot:nth-child(1) {
	  animation-name: reveal;
	}
	
	.loader-ellips__dot:nth-child(2),
	.loader-ellips__dot:nth-child(3) {
	  animation-name: slide;
	}
	
	.loader-ellips__dot:nth-child(4) {
	  animation-name: reveal;
	  animation-direction: reverse;
	}
	
	.clapat-sidebar-widget {
		margin-bottom:40px;
	}
	
	.clapat-sidebar-widget h4 {
		font-size:18px;
		line-height:24px;
		margin-bottom:15px;
	}
	
	.clapat-sidebar-widget ul {
		margin:0;
	}
	
	.clapat-sidebar-widget ul li ul, .clapat-sidebar-widget ul li ul li ul, .clapat-sidebar-widget ul li ul li ul li ul {
		margin: 10px 0 0 20px;
	}
	
	.clapat-sidebar-widget ul li {
		list-style:none;
		font-size:14px;
	}
	
	.clapat-sidebar-widget p {
		font-size: 14px;
		line-height: 24px;
	}
	
	.clapat-sidebar-widget ul li a {
		font-size:14px;
		color: #777;
		position:relative;
	}
	
	.clapat-sidebar-widget ul li a:hover {
		color:#000;
	}

	#wp-calendar {
		width: 100%; 
		border:0;
	}
	
	#wp-calendar caption {
		text-align: left;
		color: #333;
		font-size: 14px;
		margin-top: 15px;
		margin-bottom: 15px;
	}
	
	.light-content #wp-calendar caption {
		color:#fff;
	}
	
	#wp-calendar thead { 
		font-size: 10px; 
	}
	
	#wp-calendar thead th { 
		padding-bottom: 10px; border:0; 
	}
	
	#wp-calendar tbody { 
		color: #aaa; 
	}
	
	#wp-calendar tbody td {
		background: #eee;
		border: 1px solid #fff;
		text-align: center;
		padding: 8px;
		border-radius: 3px;
		font-size: 12px;
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	
	.light-content #wp-calendar tbody td {
		background: #333;
		border: 1px solid #222;
	}
	
	.light-content #wp-calendar a {
		color:#fff;
	}
	
	#wp-calendar tbody td:hover { 
		background: #000; 
		color:#fff;
	}
	
	#wp-calendar tbody td:hover a {
		color:#fff;
	}
	
	#wp-calendar tbody .pad { 
		background: none; 
	}
	
	#wp-calendar tfoot #next { 
		font-size: 10px; 
		text-transform: uppercase; 
		text-align: right; 
	}
	
	#wp-calendar tfoot #prev { 
		font-size: 10px; 
		text-transform: uppercase; 
		padding-top: 10px; 
	}
	
	#wp-calendar tfoot td {	
		border:0
	}
	
	#wp-calendar .pad {
		background-color:transparent!important;
	}
	
	.select {
		position: relative;
		display: block;
		width: 100%;
		height: 40px;
		background: #eee;
		line-height: 40px;
		margin-top:20px;
		border-radius:3px;
		overflow:hidden;
	}
	
	.select::after {
		content: '\25BC';
		position: absolute;
		font-size:14px;
		top: 0;
		right: 0;
		bottom: 0;
		padding: 0 15px;
		background: #111;
		pointer-events: none;
		height: 41px;
    	line-height: 41px;
		color:#999;
		-webkit-transition: .25s all ease;
		-o-transition: .25s all ease;
		transition: .25s all ease;
	}
	
	.select:hover::after {
		color: #fff;
	}
	
	select {
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0 0 0 10px;
		color: #000;
		cursor: pointer;
		-webkit-appearance: none;
		-moz-appearance: none;
		-ms-appearance: none;
		appearance: none;
		outline: 0;
		box-shadow: none;
		border: 0 !important;
		background-image: none;
		background: #eee;
		font-family: 'Roboto', sans-serif;
		font-weight: 300;
		font-size:14px;
	}
	
	select::-ms-expand {
		display: none;
	}
	
	.clapat-sidebar-widget .search-form {
		height:50px;
		background-color:transparent;
	}
	
	.clapat-sidebar-widget .search-form input[type="search"] {
		width: 100%;
		height: 50px;
		padding: 10px 40px 10px 15px;
		line-height: 40px;
		border: none;
		box-sizing: border-box;
		text-align: left;
		background-color: #eee;
		color: #777;
		font-weight: 400;
		font-family: 'Poppins', sans-serif;
		font-size: 12px;
		opacity: 1;
		border-radius: 3px;
	}
	
	.clapat-sidebar-widget .search-form:after {
		font-family: FontAwesome;
		content: "\f002";
		width:20px;
		height:20px;
		font-size:14px;
		line-height:20px;
		text-align:left;
		position:absolute;
		right:10px;
		top:16px;
		color:#000;
	}
	
	.clapat-sidebar-widget.widget_search .close-button {
		display:none;
	}
	
	.widget_recent_entries span {
		line-height: 20px;
		height: 20px;
		font-size: 10px;
		color: #999;
		top: -1px;
		position: relative;
	}
	
	.clapat-sidebar-widget .tagcloud a {
		background-color: #f9f9f9;
		display: inline-block;
		margin-right: 5px;
		margin-bottom: 8px;
		list-style: none;
		border: 1px solid #e3e3e3;
		border-radius: 15px;
		line-height: 20px;
		box-sizing: border-box;
		-webkit-transition: all 0.1s ease;
		transition: all 0.1s ease;
		padding: 0px 12px;
		font-size: 10px !important;
		color: #999;
		position: relative;
		height: 20px;
		line-height: 19px;
	}
	
	.clapat-sidebar-widget .tagcloud a:hover {
		background-color: #000;
		border: 1px solid #000;
		color:#fff;
	}
	
	.clapat-sidebar-widget .article-content, .clapat-sidebar-widget .tab-slide-content {
		padding:0;
	}
	
	.clapat-sidebar-widget  .swiper-pagination {
		position: relative;
		bottom:0!important;
		width:100%;
		display:block;
		text-align:left;
		box-sizing: border-box;
		padding: 15px 0px;
		height:50px;
		border-bottom: 1px solid #f2f2f2;
		margin-bottom:30px;
	}
	
	.clapat-sidebar-widget .swiper-pagination-bullet {
		width: auto;
		height: 20px;
		line-height: 20px;
		display: inline-block;
		border-radius: 0;
		background: transparent;
		opacity: 0.5;
		padding-right: 20px;
		box-sizing: border-box;
		color: #000;
		font-size: 14px;
		font-weight: 500;
		font-family: 'Poppins', sans-serif;
		margin: 0 !important;
	}
	
	.clapat-sidebar-widget .swiper-pagination-bullet-active {
		opacity: 1;
		background: transparent;
	}
	
	.clapat-sidebar-widget .widget-social-icons li {
		display: inline-block;
		padding-right: 10px;
		padding-left: 0;
		margin-bottom: 10px;
	}
	
	.clapat-footer-widget h4, .widget_mc4wp_form_widget h4 {
		color:#fff;
		text-align:center;
	}
	
	#slide-menu .widget_mc4wp_form_widget h4 {
		color:#000;
		text-align:left;
	}
	
	.widget_mc4wp_form_widget {
		padding: 80px 60px;
	}
	
	#slide-menu .widget_mc4wp_form_widget {
		padding: 0px;
	}
	
	.widget_mc4wp_form_widget .newsletter-wrap {
		padding:0;
	}
	
	.mc4wp-response {
		margin-top:20px;
		text-align:center;
	}
	
	.mc4wp-alert.mc4wp-error a {
		color:#fff;
	}
	
	.instafeed-wrap i {
		margin-right:6px;
	}
	
	.sticky {
		-webkit-box-shadow: 0px 4px 15px 0px rgba(0,0,0,0.2);
		-moz-box-shadow: 0px 4px 15px 0px rgba(0,0,0,0.2);
		box-shadow: 0px 4px 15px 0px rgba(0,0,0,0.2);
	}
	
	.sticky::after {
		height: 18px;
		width: 30px;
		position: absolute;
		font-size: 22px;
		font-family: 'FontAwesome';
		content: "\f02e";
		color: #000;
		right: 30px;
		top: -2px;
		line-height: 22px;
		text-align: right;
	}
	
	.alignleft {
		display: inline;
		float: left;
	}
	
	.alignright {
		display: inline;
		float: right;
	}
	
	.aligncenter {
		display: block;
		margin-right: auto;
		margin-left: auto;
	}
	
	blockquote.alignleft, .wp-caption.alignleft, img.alignleft {
		margin: 0.4em 1.6em 1.6em 0;
	}
	
	blockquote.alignright, .wp-caption.alignright, img.alignright {
		margin: 0.4em 0 1.6em 1.6em;
	}
	
	blockquote.aligncenter, .wp-caption.aligncenter, img.aligncenter {
		clear: both;
		margin-top: 0.4em;
		margin-bottom: 1.6em;
	}
	
	.wp-caption.alignleft, .wp-caption.alignright, .wp-caption.aligncenter {
		margin-bottom: 1.2em;
	}
		
	.post-comments-textarea.comment_area_loggedin {
		position:relative;
	}
	
	.bypostauthor > article .fn:before {
		content: "";
		margin: 0 2px 0 -2px;
		position: relative;
	}
	
	.wp-caption {
		margin-bottom: 1.6em;
		max-width: 100%;
	}
	
	.screen-reader-text {
		display:none;
	}
	
	.wp-caption-text {
		font-size: 11px;
		font-weight: 400;
		color:#999;
	}
	
	.post-password-form label {
		color: #333;
		display: block;
		line-height: 1.5;
	}
	
	article .page-links {
		margin-top:10px;
		margin-bottom:30px;
		padding:0;
	}
	
	.minimal-thumbs article .page-links {
		margin-bottom:0px;
		padding:0;
	}
	
	.article-footer .page-links {
		margin-bottom:10px;
	}
	
	.gallery {
		margin-bottom: 1.6em;
	}
	
	.gallery-item {
		display: inline-block;
		padding: 1.79104477%;
		text-align: center;
		vertical-align: top;
		width: 100%;
	}
	
	.gallery-columns-2 .gallery-item {
		max-width: 50%;
	}
	
	.gallery-columns-3 .gallery-item {
		max-width: 33.33%;
	}
	
	.gallery-columns-4 .gallery-item {
		max-width: 25%;
	}
	
	.gallery-columns-5 .gallery-item {
		max-width: 20%;
	}
	
	.gallery-columns-6 .gallery-item {
		max-width: 16.66%;
	}
	
	.gallery-columns-7 .gallery-item {
		max-width: 14.28%;
	}
	.gallery-columns-8 .gallery-item {
		max-width: 12.5%;
	}
	
	.gallery-columns-9 .gallery-item {
		max-width: 11.11%;
	}
	
	.gallery-icon img {
		margin: 0 auto;
	}
	
	.gallery-caption {
		color: #707070;
		color: rgba(51, 51, 51, 0.7);
		display: block;
		font-family: "Noto Sans", sans-serif;
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.5;
		padding: 0.5em 0;
	}
	
	.gallery-columns-6 .gallery-caption, .gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption {
		display: none;
	}		
	
	.bottom-post {
		text-align: center;
		margin-top: 40px;
		margin-bottom: 30px;
	}
	
	.pingback {
		padding-left: 0;
	}
	
	.search_results {
		padding:0 20px;
	}
	
	.list-share {
		text-align: left;
		display: block;
		width: 250px;
		position: absolute;
		top: -3px;
		left: 60px;
		padding-left: 50px;
		box-sizing: border-box;
	}
	
	.list-share.right-aligned {
		text-align: right;
		display: block;
		right: 50px;
		left: auto;
	}
	
	.list-share::before {
		content: 'Share:';
		position: absolute;
		top: 0;
		left: 0;
		line-height: 30px;
		font-size: 12px;
	}
	
	.list-share.right-aligned::before {
		left:40px;
	}
	
	.list-share a img {
		opacity:0!important;
	}
	
	.list-share a:nth-child(5), .list-share a:nth-child(6), .list-share a:nth-child(7), .list-share a:nth-child(8), .list-share a:nth-child(9) {
		display:none;
	}
	
	.list-share a  {
		background-color:transparent;
		height:30px!important;
		width:40px!important;
		line-height:30px;
		display:inline-block;
		margin:0!important;
		text-align:center;
		position:relative;
	}
	
	.list-share:hover a::before {
		opacity:0.4;
	}
	
	.list-share a:nth-child(1) {
		border-left:none;
	}
	
	.list-share a::before {
		font-family: FontAwesome;
		padding-right:0px;
		font-size:15px;
		color:#000;
		position:absolute;
		margin-top:0px;
		left:0;
		width:100%;
		text-align:center;
		webkit-transition: all 0.1s ease-in-out;
		-moz-transition: all 0.1s ease-in-out;
		-o-transition: all 0.1s ease-in-out;
		-ms-transition: all 0.1s ease-in-out;
		transition: all 0.1s ease-in-out;
	}
	
	.list-share a:hover::before {
		opacity:1;
		color:#000!important;
		-webkit-transform: scale(1.3);
		-moz-transform: scale(1.3);
		-o-transform: scale(1.3);
		-ms-transform: scale(1.3);
		transform: scale(1.3);
	}
	
	.list-share .synved-social-provider-facebook::before {
		content: "\f09a";
	}
	
	.list-share .synved-social-provider-twitter::before {
		content: "\f099";
	}
	
	.list-share .synved-social-provider-google_plus::before {
		content: "\f1a0";
	}
	
	.list-share .synved-social-provider-reddit::before {
		content: "\f1a1";
	}
	
	.list-share .synved-social-provider-pinterest::before {
		content: "\f0d2";
	}
	
	.list-share .synved-social-provider-linkedin::before {
		content: "\f0e1";
	}
	
	.list-share .synved-social-provider-tumblr::before {
		content: "\f173";
	}
	
	.list-share .synved-social-provider-mail::before {
		content: "\f0e0";
	}
	
/*--------------------------------------------------
	04. Responsive
---------------------------------------------------*/	

@media only screen and (max-width: 1900px) {	

	.grid__col-sizer {
		width: 25%;
	}
	
	#blog.boxed  .grid__col-sizer {
		width: 25%;
	}
	
	article {
		width:calc(25% - 60px);
	}

}

@media only screen and (max-width: 1466px) {
	
	.grid__col-sizer {
		width: 33.333%;
	}
	
	#blog.boxed  .grid__col-sizer {
		width: 33.333%;
	}

	article, #blog.boxed article {
		width:calc(33.333% - 53px);
	}
	
	#blog {
    	padding: 20px;
	}
	
	#hero .post-categories {
		margin-top: 20px;
	}
	
	.hero-footer {
		margin-bottom: 10px;
	}
	
	.post-content {    
    	padding: 0 40px;
	}
	
	.post-wrap {
		padding: 0 40px;
	}
	
	.list-share {
		left: 30px;
	}
	
	.list-share.right-aligned {
		right: 30px;
	}
	
	.page-links {
   		padding: 0 40px;
	}
	
	.post-nav li {
    	height: 250px;
	}
	
	.post-nav li .outer {
		padding: 40px 80px;
	}
	
	.post-nav li h4 {
		padding: 0 80px;
	}
	
	.widget_mc4wp_form_widget {
		padding: 80px 40px;
	}
	
	.search_results {
		padding:0 20px;
	}

}

@media only screen and (max-width: 1024px) {
	
	.grid__col-sizer {
		width: 50%;
	}
	
	#blog.boxed  .grid__col-sizer {
		width: 50%;
	}

	article, #blog.boxed article {
		width:calc(50% - 60px);
	}
	
	#blog {
    	padding: 20px;
	}
	
	#commentsform {
		margin-bottom: 0px;
	}
	
	.post-nav li {
    	height: 250px;
	}
	
	.post-nav li .outer {
		padding: 40px 40px;
	}
	
	.post-nav li h4 {
		padding: 0 40px;
	}
	
}


@media only screen and (max-width: 767px) {
	
	#blog {
    	padding: 15px;
	}
	
	article, #blog.boxed article {
		width:calc(50% - 45px);
		margin:15px;
	}
	
	.post-content {
		padding: 0 30px;
	}
	
	.post-wrap {
		padding: 0 30px;
	}
	
	.page-links {
   		padding: 0 30px;
	}
	
	.list-share {
		left: 30px;
	}
	
	.list-share.right-aligned {
		right: 20px;
	}
	
	.post-nav li h4 {
		font-size:20px;
		line-height:28px;
	}
	
	.user_comment {
		padding-left: 50px;
	}
	
	.user-image {
		height: 40px;
		width: 40px;
	}
	
	.user_comment_reply {
		padding-left: 50px;
	}
	
	.widget_mc4wp_form_widget {
		padding: 60px 30px;
	}
	
	.search_results {
		padding:0 15px;
	}
	
}


@media only screen and (max-width: 479px) {
	
	#blog {
    	padding: 10px;
	}
	
	article, #blog.boxed article {
		width: calc(100% - 40px);
		margin: 10px;
	}
	
	.post-content {
		padding: 0 20px;
	}
	
	.post-wrap {
		padding: 0 20px;
	}
	
	.page-links {
   		padding: 0 20px;
	}
	
	.entry-tags {
		width: 100%;
	}
	
	.list-share {
		position: relative;
		top: 10px;
		left:0;
	}
	
	.list-share.right-aligned {
		right: auto;
		text-align: left;
	}
	
	.list-share.right-aligned::before {
		left: 0px;
	}
	
	.post-navigation {
		margin-top: 80px;
	}
	
	.post-nav li {
		height: 200px;
		width: 100%;
	}
	
	.post-nav li.post-nav-prev a {
		border-bottom: 1px solid rgba(255,255,255,0.15);
	}
	
	.post-nav li .outer {
		padding: 20px;
		text-align: left!important;
	}
	
	.post-nav li h6 {
		font-weight:500;
		font-size: 12px;
		transform: translateY(-30px);
		-webkit-transform: translateY(-30px);
	}
	
	.post-nav li h4 {
		opacity: 1;
		padding: 0 20px;
		transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
		max-width: 100%;
	}
	
	.user_comment {
		padding-left: 0px;
	}
	
	.user-image {
		display:none;
	}
	
	.user_comment_reply {
		padding-left: 10px;
	}
	
	.clapat-footer-widget h4, .widget_mc4wp_form_widget h4 {
		color: #fff;
	}
	
	.widget_mc4wp_form_widget {
		padding: 40px 20px;
	}
	
	.search_results {
		padding:0 10px;
	}
	
}