.pod-block {
	position: relative;
	overflow: hidden;
}
.pod-wrapper {
	clear: both;
    width: 100%;
    position: relative;
    margin:  30px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}
.pod-wrap {
	margin: 1%;
    position: relative;
    text-align: left;
}
.one .pod-wrap {
	width: 100%;
}
.two .pod-wrap {
	width: 49%;
}
.three .pod-wrap {
	width: 32%;
}
.four .pod-wrap {
	width: 23%;
}
.five .pod-wrap {
	width: 18%;
}
.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-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;
}
i {
	font-size: 30px;
}
.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;
}
.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);
}
.pod-text h3 {
	padding-top: 0;
	color: #fff;
}
.five .pod-text h3 {
	font-size: 1.8em;
}
.pod-text p {
	display: none;
	color: #fff;
	font-size: .88em;
}
.pod-text .button {
	border: 0;
	background: transparent;
	margin: 0;
	padding: 0;
	border-radius: 0;
	position: relative;
	display: none;
}
.pod-text .button::after {
	content: " ";
	display: block;
	position: absolute;
	border-bottom: 2px solid #c85d1b;
	width: calc(100% - 30px);
	left: 30px;
	bottom: 0;
	transition: .2s all ease-out;
}
.pod-text .button::before {
	content: " ";
	display: block;
	background: url(icon-white.png) no-repeat top left;
	float: left;
	width: 20px;
	height: 22px;
	margin: 0 10px 0 0;
}
.pod-text.open,
.pod-text:hover {
	background: rgba(20, 66, 76, .9);
	justify-content: flex-start;
}
.pod-text.open::before,
.pod-text:hover::before {
	border: 0;
}
.pod-text.open p,
.pod-text.open .button,
.pod-text:hover p,
.pod-text:hover .button {
	display: block;
}
.pod-text .button:hover::after {
	width: 100%;
}

/* FOCUS */
	.pod-text:focus-visible {
		background: rgba(20, 66, 76, .9);
		justify-content: flex-start;
	}
	.pod-text:focus-visible::before {
		border: 0;
	}
	.pod-text:focus-visible p,
	.pod-text:focus-visible .button {
		display: block;
	}

/* RESPONSIVE */
	@media all and (max-width: 1300px) {
		.five .pod-text h3 {
			font-size: 1.6em;
		}
	}
	@media all and (max-width: 1200px) {
		.pod-text h3 {
			font-size: 2em;
		}
		.five .pod-text h3 {
			font-size: 1.5em;
		}
	}
	@media all and (max-width: 1100px) {
		.pod-text h3 {
			font-size: 1.8em;
		}
		.five .pod-text h3 {
			font-size: 1.3em;
		}
	}
	@media all and (max-width: 1000px) {
		.pod-text h3 {
			font-size: 1.8em;
		}
		.five .pod-wrap {
			width: 23%;
		}
		.five .pod-wrap:nth-child(6n),
		.five .pod-wrap:nth-child(5n) {
			margin: 1%;
		}
		.five .pod-wrap:nth-child(5n) {
			margin-left: 0;
		}
		.five .pod-wrap:nth-child(4n) {
			margin-right: 0;
		}
	}
	@media all and (max-width: 900px) {
		.four .pod-wrap,
		.five .pod-wrap,
		.three .pod-wrap {
			width: 49%;
			margin: 1%;
		}
		.three .pod-wrap:nth-child(4n),
		.five .pod-wrap:nth-child(5n),
		.five .pod-wrap:nth-child(4n) {
			margin: 1%;
		}
		.three .pod-wrap:nth-child(2n),
		.four .pod-wrap:nth-child(2n),
		.five .pod-wrap:nth-child(2n) {
			margin-right: 0;
		}
		.three .pod-wrap:nth-child(3n),
		.four .pod-wrap:nth-child(3n),
		.five .pod-wrap:nth-child(3n) {
			margin-left: 0;
		}
	}
	@media all and (max-width: 600px) {
		.two .pod-wrap,
		.three .pod-wrap,
		.four .pod-wrap,
		.five .pod-wrap {
			width: 100%;
			margin: 0 0 5% 0!important;
		}
	}