
						
													#Image43{
								box-sizing: border-box;
								background-repeat: no-repeat;
																	background-image: url('/images/cms/PROOF-335817.jpg');
																
																	background-size: cover;
																
																	background-position: Center;
																
																	min-height: 600px;
															}
							
														
														
													
												
					

						figure {
    position: relative;
    z-index: 4;
}
.imageContainer {
    position: relative;
}
.imageContainer .bio {
	opacity:0;
	visibility:hidden;
}
.profile figcaption {
	text-align:center;	
}
.profile figcaption .name {
	color:var(--color-blue1);	
	font-weight:bold;
}
.profile figcaption .position {
	color:var(--color-blue3);
	font-size:90%;
}

.imageContainer .bio {
	transform: translateY(0);
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.5rem;
	text-align: center;
	transition: all 0.2s ease-in-out;
	color: #FFF;
	z-index: 3;
	display: flex;
	align-items: center;
}
.imageContainer .bio:before {
	content:'';
	opacity:0.7;
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0,44,128);
    background: radial-gradient(circle, rgba(0,44,128,1) 0%, rgba(0,44,128,1) 25%, rgba(2,0,36,1) 100%);
	z-index:-1;
}
.imageContainer:hover {
	transform:translateY(-10px);
}
.imageContainer:hover .bio {
	opacity:1;
	visibility:visible;
}
						
