.staff-grid-wrap {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

	.staff-grid {
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-justify-content: space-between;
		    -ms-flex-pack: space-between;
		        justify-content: space-between;
		-webkit-align-items: stretch;
		    -ms-flex-align: stretch;
		        align-items: stretch;
		flex-wrap: wrap;
		width: 100%;
	}

	.staff-grid-layout {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
	}

		.three-columns .staff-grid-layout {
			width: calc(33.33% - ( 30px * 2 / 3 ) );
		    margin-right: 30px; 
		}
		
		.three-columns .staff-grid-layout:nth-child(3n+0) {
			margin-right: 0;
		}	
		
		.four-columns .staff-grid-layout {
			width: calc(25% - ( 110px * 3 / 4 ) );
    		margin-right: 110px;
    		max-width: 184px; 
			padding-bottom: 40px;
		}
		
		.four-columns .staff-grid-layout:nth-child(4n+0) {
			margin-right: 0;
		}	
		
			.staff-item-image {
				position: relative;
				display: block;
			}
		
				.staff-item-image img {
					display: block;
					width: 100%;
					height: auto;
				}
				
				.staff-image-caption {
					text-align: center;
					background-color: #F2F2F2;
					font-weight: 600;
					color: #404040;
					letter-spacing: 0.46px;
					padding-bottom: 10px;
					padding-top: 10px;
					padding-left: 10px;
					padding-right: 10px;
					flex-grow: 1;
				}
				
					.staff-name {
						font-size: 23px;
						padding-bottom: 10px;
					}
						
						.staff-title {
							font-size: 14px;
							font-style: italic;
						}
						
						.staff-description-bio {
							font-weight: 400;
							font-size: 16px;
							padding: 20px 20px 0;
							border-top: 1px solid #ffffff;
						}

@media (max-width: 1200px) {
	/*.image-hover-name {
		font-size: 2.5vw;
	}*/
}

@media ( max-width: 960px) {
	.four-columns .staff-grid-layout {
		width: calc( 25% - ( 30px * 3 / 4 ) );
		margin-right: 30px;
	}
}
@media (max-width: 767px) {
	.four-columns .staff-grid-layout {
		width: calc( 50% - 30px );
		max-width: 50%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.four-columns .staff-grid-layout:nth-child(even) {
		margin-right: 0;
	}
	
	.four-columns .staff-grid-layout:nth-child(odd) {
		margin-left: 0;	
	}
	
	.three-columns .staff-grid-layout {
		width: 100% !important;
		max-width: 369px;
		margin-left: auto !important;
		margin-right: auto !important;
		margin-bottom: 30px;
	}
	
	.three-columns .staff-grid-layout:nth-child(3n+0) {
		margin-right: auto;
		margin-bottom: 0;
	}
}

@media (max-width:520px) {
	.staff-grid {
		display: block;
	}
	
	.four-columns .staff-grid-layout {
		width: 100%;
		max-width: 184px;
	}
	
	.four-columns .staff-grid-layout:nth-child(odd) {
		margin-left: auto;
	}
	
	.four-columns .staff-grid-layout:nth-child(even) {
		margin-right: auto;
	}
}.footer-5-content {
	display: flex;
	align-items: stretch;
}

	.box {
		width:100%;
		padding: 40px 30px;
		font-size: 14px;
	}

	.box:first-child:nth-last-child(4), .box:first-child:nth-last-child(4) ~ .box {
		width:25%;
	}

	.icon-list-item {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: start;
		align-items: flex-start;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-bottom: 15px;
	}

	.icon-list-item > .fa,
	.icon-list-item > .fas {
		font-size: 24px;
		line-height: 1;
	}

	.icon-list-text {
		width: calc(100% - 40px);
		text-align: left;
	}

	.icon-list-text a {
		color: inherit;
		text-decoration: none;
	}

@media (max-width:1200px) {
	.footer-5-content {
		padding-left: 0;
		padding-right: 0;
	}	
}

@media (max-width: 1023px) {
	.footer-5-content {
		flex-wrap: wrap;
	}
	
	.box:first-child:nth-last-child(4), .box:first-child:nth-last-child(4) ~ .box {
    	width: 50%;
	}
}

@media ( max-width: 767px ) {
	.box {
		width: 100% !important;
	}
}