.pod-block {
	position: relative;
}
.pod-wrapper {
	clear: both;
    width: 100%;
    max-width: 100%;
    position: relative;
    margin:  50px auto 50px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}
.pod-wrap {
	margin: 0 2% 50px 2%;
    position: relative;
    text-align: left;
}
.one .pod-wrap {
	width: 100%;
}
.two .pod-wrap {
	width: 48%;
}
.three .pod-wrap {
	width: 30.6%;
}
.four .pod-wrap {
	width: 22%;
}
.five .pod-wrap {
	width: 16.8%;
}
.pod-wrapper .pod-wrap:first-child,
.two .pod-wrap:nth-child(3n),
.three .pod-wrap:nth-child(4n),
.four .pod-wrap:nth-child(5n),
.five .pod-wrap:nth-child(6n) {
	margin-left: 0;
}
.pod-wrapper .pod-wrap:last-child,
.two .pod-wrap:nth-child(2n),
.three .pod-wrap:nth-child(3n),
.four .pod-wrap:nth-child(4n),
.five .pod-wrap:nth-child(5n) {
	margin-right: 0;
}
.pod-text h3 {
	font-size: 1.6em;
	padding-top: 20px;
}
.pod-text p {
	font-size: .9em;
}

/* IMAGE */
	.pod-wrap figure {
		width: 100%;
		margin: 0;
		padding: 0;
		line-height: 0;
		height: 100%;
	}
	.pod-wrap figure::before {
	    display: none;
	}
	.pod-wrap figure img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.image .pod-text {
		width: 100%;
		clear: both;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-start;
		position: absolute;
		background: rgba(20, 66, 76, .5);
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		padding: 20px;
		transition: .4s all ease-out;
	}
	.image .pod-text::before {
		content: " ";
	    width: calc(100% - 24px);
	    height: calc(100% - 24px);
	    position: absolute;
	    left: 10px;
	    top: 10px;
	    border: 2px solid rgba(255, 255, 255, .4);
	}
	.image .pod-text h3 {
		padding-top: 0;
		color: #fff;
	}
	.image .pod-text p {
		display: none;
		color: #fff;
	}
	.image .pod-text .button {
		display: none;
	}
	.image .pod-text.open,
	.image .pod-text:hover {
		background: rgba(20, 66, 76, .9);
		justify-content: flex-start;
	}
	.image .pod-text.open::before,
	.image .pod-text:hover::before {
		border: 0;
	}
	.image .pod-text.open p,
	.image .pod-text.open .button,
	.image .pod-text:hover p,
	.image .pod-text:hover .button {
		display: block;
	}
	.image .pod-text .button:hover::after {
		width: 100%;
	}

/* ICON */
	.pod-wrap.icon {
		background: #fff;
		border-radius: 10px;
		box-shadow: 0 0 10px rgba(0, 0, 0, .05);
		padding: 50px;
	}
	.pod-wrap i {
		font-size: 50px;
		color: #23216e;
	}

/* RESPONSIVE */
	@media all and (max-width: 1000px) {
		.five .pod-wrap {
			width: 30.6%;
		}
		.five .pod-wrap:nth-child(6n) {
			margin-left: 2%;
		}
		.five .pod-wrap:nth-child(5n) {
			margin-right: 2%;
		}
		.five .pod-wrap:nth-child(4n) {
			margin-left: 0%;
		}
		.five .pod-wrap:nth-child(3n) {
			margin-right: 0%;
		}
	}
	@media all and (max-width: 800px) {
		.four .pod-wrap {
			width: 48%;
		}
		.four .pod-wrap:nth-child(5n) {
			margin-left: 2%;
		}
		.four .pod-wrap:nth-child(4n) {
			margin-right: 2%;
		}
		.four .pod-wrap:nth-child(3n) {
			margin-left: 0%;
		}
		.four .pod-wrap:nth-child(2n) {
			margin-right: 0%;
		}
	}
	@media all and (max-width: 800px) {
		.three .pod-wrap {
			width: 48%;
		}
		.three .pod-wrap:nth-child(4n) {
			margin-left: 2%;
		}
		.three .pod-wrap:nth-child(3n) {
			margin-right: 2%;
			margin-left: 0%;
		}
		.three .pod-wrap:nth-child(2n) {
			margin-right: 0%;
		}
	}
	@media all and (max-width: 600px) {
		.five .pod-wrap {
			width: 48%;
			margin: 0 2% 50px 2%;
		}
		.five .pod-wrap:nth-child(4n) {
			margin-left: 2%;
		}
		.five .pod-wrap:nth-child(3n) {
			margin-right: 2%;
			margin-left: 0%;
		}
		.five .pod-wrap:nth-child(2n) {
			margin-right: 0%;
		}
	}
	@media all and (max-width: 500px) {
		.two .pod-wrap,
		.three .pod-wrap,
		.four .pod-wrap,
		.five .pod-wrap {
			width: 100%;
			margin: 0 0 50px 0;
		}
		.two .pod-wrap:nth-child(3n),
		.two .pod-wrap:nth-child(2n),
		.three .pod-wrap:nth-child(4n),
		.three .pod-wrap:nth-child(3n),
		.three .pod-wrap:nth-child(2n),
		.four .pod-wrap:nth-child(5n),
		.four .pod-wrap:nth-child(4n),
		.four .pod-wrap:nth-child(3n),
		.four .pod-wrap:nth-child(2n),
		.five .pod-wrap:nth-child(4n),
		.five .pod-wrap:nth-child(3n) {
			margin-right: 0%;
			margin-left: 0%;
		}
	}




















