.pod-block {
	position: relative;
	z-index: 99;
	width: 100%;
}
.pod-wrapper {
	clear: both;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
}
.pod-wrapper.one {
	display: block;
}
.pod-wrap {
    position: relative;
    text-align: left;
    overflow: hidden;
    min-height: 550px;
}
.pod-wrap::before {
	content: " ";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 90px;
	width: 5px;
	background: #fff;
	z-index: 3;
	transition: .35s height ease-in;
}
.one .pod-wrap {
	width: 100%;
}
.two .pod-wrap {
	width: 49%;
}
.three .pod-wrap {
	width: 32%;
}
.four .pod-wrap {
	width: 25%;
}
.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 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pod-wrap .icon {
	width: 60px;
	height: 60px;
	margin: -35px 30px 0 30px;
	border-radius: 100%;
	text-align: center;
	transition: .2s all ease-out;
}
.pod-wrap i {
	font-size: 30px;
	line-height: 60px;
}
.pod-text {
	padding: 30px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 100%;
	z-index: 2;
	background: RGBA(0, 0, 0, .5);
	background: linear-gradient(5deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, 0) 50%);
	background-size: 100% 60%;
	background-position: bottom;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-content: flex-start;
	transition: background-size .35s ease;
}
.pod-text h4 {
	padding-top: 0;
	color: #fff;
}
.pod-text p {
	color: #fff;
	margin-top: 10px;
	bottom: 0;
	transform: translateY(20px);
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: transform 0.3s ease, opacity 0.3s ease, max-height 0.3s ease;
}
.pod-text p:last-child {
	padding-bottom: 0;
}
.pod-text a {
	font: normal 700 0.875em/1.2em 'Poppins', sans-serif;
	padding: 0;
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
	border-radius: 25px;
	color: #ffd166;
	background: rgba(255, 255, 255, 0);
	text-transform: uppercase;
	transition: .2s all ease-out;
	position: relative;	
}
.pod-text a::after {
	content: "\f061";
	margin: 0 0 0 10px;
	font-size: 15px;
	color: #ffd166;
	transition: .2s all ease-out;
	float: right;
}
.pod-text a::before {
	display: none;
}
.pod-text a:hover {
	color: #ffd166;
	background: rgba(255, 255, 255, 0);
	border: 0px solid;
	margin: 0;
}
.pod-text a:hover::after {
	margin: 0 -5px 0 15px;
}
.pod-wrap a.abs-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	font-size: 0;
	z-index: 999;
}
.pod-wrap:hover .icon {
	margin: -45px 30px 10px 30px;
}
.pod-wrap:hover::before {
	height: 100%;
	background: #ffd166;
}
.pod-wrap:hover .pod-text {
	background-size: 100% 150%;
}
.pod-wrap:hover .pod-text p {
	transform: translateY(0);
  	opacity: 1;
  	max-height: 100%;
    position: relative;
}

/* FOCUS */
	.pod-text a:focus-visible {
		color: #ffd166;
		background: rgba(255, 255, 255, 0);
		border: 0px solid;
		margin: 0;
	}
	.pod-text a:focus-visible::after {
		margin: 0 -5px 0 15px;
	}
	.pod-wrap:focus-visible .icon {
		margin: -45px 30px 10px 30px;
	}
	.pod-wrap:focus-visible::before {
		height: 100%;
		background: #ffd166;
	}
	.pod-wrap:focus-visible .pod-text,
	.pod-wrap .pod-text.open {
		background-size: 100% 150%;
	}
	.pod-wrap:focus-visible .pod-text p,
	.pod-wrap .pod-text.open p {
		transform: translateY(0);
	  	opacity: 1;
	  	max-height: 100%;
	    position: relative;
	}

/* HIGH CONTRAST */
	.high_contrast .pod-wrap::before {
		background: #fff;
	}
	.high_contrast .pod-text {
		background: RGBA(0, 0, 0, .75);
	}
	.high_contrast .pod-text h4 {
		color: #fff!important;
	}
	.high_contrast .pod-text p {
		color: #fff!important;
	}
	.high_contrast .pod-text a {
		color: #fff;
		background: rgba(255, 255, 255, 0);
	}
	.high_contrast .pod-text a::after {
		color: #fff;
	}
	.high_contrast .pod-text a:hover {
		color: #999;
		background: rgba(255, 255, 255, 0);
	}
	.high_contrast .pod-wrap:hover::before {
		background: #fff;
	}
	/* RESPONSIVE */
	@media all and (max-width: 700px) {
		.high_contrast .pod-text h4 {
			color: #212121!important;
		}
		.high_contrast .pod-text {
	        background: rgba(255, 255, 255, .95) !important;
	    }
		.high_contrast .pod-text p {
			color: #212121!important;
		}
	}

/* FONT SIZER */
	/* BIG +2 */
		.big .pod-wrapper.five {
			flex-wrap: wrap;
		}
		.big .five .pod-wrap {
			width: 50%;
		}
	/* BIGGER +4 */
		.bigger .pod-wrapper.five {
			flex-wrap: wrap;
		}
		.bigger .five .pod-wrap {
			width: 50%;
		}
		.bigger .pod-wrapper.four {
			flex-wrap: wrap;
		}
		.bigger .four .pod-wrap {
			width: 50%;
		}
	/* BIGGEST +6 */
		.biggest .pod-wrapper.five {
			flex-wrap: wrap;
		}
		.biggest .five .pod-wrap {
			width: 50%;
		}
		.biggest .pod-wrapper.four {
			flex-wrap: wrap;
		}
		.biggest .four .pod-wrap {
			width: 50%;
		}
		.biggest .pod-wrapper.three {
			flex-wrap: wrap;
		}
		.biggest .three .pod-wrap {
			width: 50%;
		}

	@media all and (max-width: 1200px) {
		/* BIG +2 */
			.big .pod-wrapper.four {
				flex-wrap: wrap;
			}
			.big .four .pod-wrap {
				width: 50%;
			}
		/* BIGGER +4 */
			.bigger .pod-wrapper.three {
				flex-wrap: wrap;
			}
			.bigger .three .pod-wrap {
				width: 50%;
			}
		/* BIGGEST +6 */
			.biggest .pod-wrapper.two {
				flex-wrap: wrap;
			}
			.biggest .two .pod-wrap {
				width: 50%;
			}
	}
	@media all and (max-width: 1100px) {
		/* BIG +2 */
			.big .pod-wrapper.three {
				flex-wrap: wrap;
			}
			.big .three .pod-wrap {
				width: 50%;
			}
		/* BIGGER +4 */
			.bigger .pod-wrapper.two {
				flex-wrap: wrap;
			}
			.bigger .two .pod-wrap {
				width: 50%;
			}
		/* BIGGEST +6 */
			.biggest .pod-wrapper,
			.biggest .pod-wrapper.two,
			.biggest .pod-wrapper.three,
			.biggest .pod-wrapper.four,
			.biggest .pod-wrapper.five {
				flex-direction: column;
			}
			.biggest .pod-wrap,
			.biggest .two .pod-wrap,
			.biggest .three .pod-wrap,
			.biggest .four .pod-wrap,
			.biggest .five .pod-wrap {
				width: 100%;
				position: relative;
				clear: both;
				overflow: hidden;
				min-height: 0;
				height: auto;
			}
			.biggest .pod-wrap figure {
				height: auto;
				overflow: hidden;
			}
			.biggest .pod-wrap figure img {
				height: 100%;
				width: 100%;
				object-fit: cover;
			}
			.biggest .pod-text h4 {
				color: #474747!important;
			}
			.biggest .pod-text {
		        position: absolute;
		        background: rgba(255, 255, 255, .8) !important;
		        height: auto;
		        width: 90%;
		        left: 5%;
		        bottom: 5%;
		    }
			.biggest .pod-text p {
				position: relative;
				color: #474747!important;
				height: auto;
				transform: translateY(0); 
			  	opacity: 1;
			  	max-height: 100%;
			}
			.biggest .pod-text a,
			.biggest .pod-text a::after {
				color: #264091;
			}
	}
	@media all and (max-width: 1000px) {
		/* BIG +2 */
			.big .pod-wrapper.two {
				flex-wrap: wrap;
			}
			.big .two .pod-wrap {
				width: 50%;
			}
		/* BIGGER +4 */
			.bigger .pod-wrapper,
			.bigger .pod-wrapper.two,
			.bigger .pod-wrapper.three,
			.bigger .pod-wrapper.four,
			.bigger .pod-wrapper.five {
				flex-direction: column;
			}
			.bigger .pod-wrap,
			.bigger .two .pod-wrap,
			.bigger .three .pod-wrap,
			.bigger .four .pod-wrap,
			.bigger .five .pod-wrap {
				width: 100%;
				position: relative;
				clear: both;
				overflow: hidden;
				min-height: 0;
				height: auto;
			}
			.bigger .pod-wrap figure {
				height: auto;
				overflow: hidden;
			}
			.bigger .pod-wrap figure img {
				height: 100%;
				width: 100%;
				object-fit: cover;
			}
			.bigger .pod-text h4 {
				color: #474747!important;
			}
			.bigger .pod-text {
		        position: absolute;
		        background: rgba(255, 255, 255, .8) !important;
		        height: auto;
		        width: 90%;
		        left: 5%;
		        bottom: 5%;
		    }
			.bigger .pod-text p {
				position: relative;
				color: #474747!important;
				height: auto;
				transform: translateY(0); 
			  	opacity: 1;
			  	max-height: 100%;
			}
			.bigger .pod-text a,
			.bigger .pod-text a::after {
				color: #264091;
			}
		/* BIGGEST +6 */
	}
	@media all and (max-width: 900px) {
		/* BIG +2 */
			.big .pod-wrapper,
			.big .pod-wrapper.two,
			.big .pod-wrapper.three,
			.big .pod-wrapper.four,
			.big .pod-wrapper.five {
				flex-direction: column;
			}
			.big .pod-wrap,
			.big .two .pod-wrap,
			.big .three .pod-wrap,
			.big .four .pod-wrap,
			.big .five .pod-wrap {
				width: 100%;
				position: relative;
				clear: both;
				overflow: hidden;
				min-height: 0;
				height: auto;
			}
			.big .pod-wrap figure {
				height: auto;
				overflow: hidden;
			}
			.big .pod-wrap figure img {
				height: 100%;
				width: 100%;
				object-fit: cover;
			}
			.big .pod-text h4 {
				color: #474747!important;
			}
			.big .pod-text {
		        position: absolute;
		        background: rgba(255, 255, 255, .8) !important;
		        height: auto;
		        width: 90%;
		        left: 5%;
		        bottom: 5%;
		    }
			.big .pod-text p {
				position: relative;
				color: #474747!important;
				height: auto;
				transform: translateY(0); 
			  	opacity: 1;
			  	max-height: 100%;
			}
			.big .pod-text a,
			.big .pod-text a::after {
				color: #264091;
			}
		/* BIGGER +4 */
		/* BIGGEST +6 */
	}

/* RESPONSIVE */
	@media all and (max-width: 1200px) {
		.pod-wrapper.five {
			flex-wrap: wrap;
		}
		.five .pod-wrap {
			width: 50%;
		}
	}
	@media all and (max-width: 1100px) {
		.pod-wrapper.four {
			flex-wrap: wrap;
		}
		.four .pod-wrap {
			width: 50%;
		}
	}
	@media all and (max-width: 1000px) {
		.pod-wrapper.three {
			flex-wrap: wrap;
		}
		.three .pod-wrap {
			width: 50%;
		}
	}
	@media all and (max-width: 900px) {
		.pod-wrapper.two {
			flex-wrap: wrap;
		}
		.two .pod-wrap {
			width: 50%;
		}
	}
	@media all and (max-width: 700px) {
		.pod-wrapper,
		.pod-wrapper.two,
		.pod-wrapper.three,
		.pod-wrapper.four,
		.pod-wrapper.five {
			flex-direction: column;
		}
		.pod-wrap,
		.two .pod-wrap,
		.three .pod-wrap,
		.four .pod-wrap,
		.five .pod-wrap {
			width: 100%;
			position: relative;
			clear: both;
			overflow: hidden;
			min-height: 0;
			height: auto;
		}
		.pod-wrap figure {
			height: auto;
			overflow: hidden;
		}
		.pod-wrap figure img {
			height: 100%;
			width: 100%;
			object-fit: cover;
		}
		.pod-text h4 {
			color: #474747!important;
		}
		.pod-text {
	        position: absolute;
	        background: rgba(255, 255, 255, .8) !important;
	        height: auto;
	        width: 90%;
	        left: 5%;
	        bottom: 5%;
	    }
		.pod-text p {
			position: relative;
			color: #474747!important;
			height: auto;
			transform: translateY(0);
		  	opacity: 1;
		  	max-height: 100%;
		}
		.pod-text a,
		.pod-text a::after {
			color: #264091;
		}
	}