
/* --------------------------------Zoom-Effect--------------------------------- */
	.zoom-container {
		position: relative;
		overflow: hidden;
		display: inline-block;
		font-size: 16px;
		font-size: 1rem;
		vertical-align: top;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		
	}
	.zoom-container a {
		display: block;
		position: absolute;
		top: -100%;
		opacity: 0;
		left: 0;
		bottom: 0;
		right: 0;
		text-align: center;
		color: inherit;
	}
	.zoom-container:hover a {
		opacity: 1;
		top: 0; 
		z-index: 500;
	}
	.zoom-container:hover a i {
		top: 50%;
		position: absolute;
		left: 0;
		right: 0;
		transform: translateY(-50%);
	}
	.zoom-container img {
		display: block;
		width: 100%;
		height: auto;
		-webkit-transition: all .5s ease; /* Safari and Chrome */
		-moz-transition: all .5s ease; /* Firefox */
		-ms-transition: all .5s ease; /* IE 9 */
		-o-transition: all .5s ease; /* Opera */
		transition: all .5s ease;
		
	}
	.zoom-container .zoom-caption {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 10;
		-webkit-transition: all .5s ease; /* Safari and Chrome */
		-moz-transition: all .5s ease; /* Firefox */
		-ms-transition: all .5s ease; /* IE 9 */
		-o-transition: all .5s ease; /* Opera */
		transition: all .5s ease;
		color: #fff;
	}
	.zoom-container .zoom-caption span{background-color: #FD0005;position:absolute;top: 0;padding: 0px 7px;font-weight: bold;font-size: 13px;}
	.zoom-container .zoom-caption p{
			position: absolute;
			bottom: 0;left:0; right: 0;text-align: center;font-size: 20px; 
			background: rgba(255, 0, 0, 1);
			margin:0;
			padding: 2px 15px;
			}
	.zoom-container:hover img {
		-webkit-transform:scale(1.25); /* Safari and Chrome */
		-moz-transform:scale(1.25); /* Firefox */
		-ms-transform:scale(1.25); /* IE 9 */
		-o-transform:scale(1.25); /* Opera */
		 transform:scale(1.25);
	}
	.zoom-container:hover .zoom-caption {
		background: rgba(0, 0, 0, .1);
	}
	.post {margin-bottom: 15px;}
	
	.badge_blue{background-color:#0059b3;color:#ffffff;}	