
.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;
	}
}
.three-columns {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

	.three-column {
			display: -webkit-flex;
			display: -ms-flexbox;
			display: flex;
			-webkit-flex-direction: column;
			-ms-flex-direction: column;
			flex-direction: column;
			-webkit-align-items: stretch;
			-ms-flex-align: stretch;
			align-items: stretch;
			-webkit-justify-content: flex-start;
			-ms-flex-pack: start;
			justify-content: flex-start;
	}

		.has-three-columns .three-column {		
			width: calc(33.33% - 20px);
		}

		.has-four-columns .three-column {
				width: calc(25% - 20px);
		}

		.three-column-image img {
			display: block;
			max-width: 100%;
			height: auto;
			width:100%;
		}

		.three-column-text {
			-webkit-flex-grow: 1;
			-ms-flex-positive: 1;
			flex-grow: 1;
		}

			h3.three-column-heading {
				margin-bottom: 0px;
				padding-top: 10px;
				padding-bottom: 10px;
				text-transform: uppercase;
				text-align: center;
			}

			.three-column-heading a {
				text-decoration: none;
				color: inherit;
				font-weight: 600;
			}

			.three-column-link a {
				padding-bottom: 8px;
				text-decoration: none;
				border-bottom-width: 5px;
				border-bottom-style: solid;
				color: inherit;
			}
@media (max-width:1023px) {
	
	.three-columns.has-four-columns {
		flex-wrap: wrap;
	}
	
	.has-four-columns .three-column {
		width: calc( 50% - 40px );
		padding-bottom: 20px;
	}
}	
@media ( max-width:767px ) {
	.three-columns {
		display: block;
	}
	
		.three-column, 
		.has-four-columns .three-column, 
		.has-three-columns .three-column {
			width: 100%;
			max-width: 360px;
			margin-left: auto;
			margin-right: auto;
		}
	
	.three-column:not(:first-child) {
    	margin-top: 40px;
	}
}#ft-apdental-menu-button {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}


#ft-apdental-menu #footer-apd-nav li {
	list-style-type: none;
}

	#footer-apd-nav #menu-footer-menu {
		padding-left: 0;
		margin: 0;
	}

		#ft-apdental-menu #footer-apd-nav li a {
			color: inherit;
			text-decoration: none;
			font-weight: 500;
			position: relative;
		}

#ft-apdental-menu  .footer-nav > .menu {
					display: -ms-flexbox;
					display: -webkit-flex;
					display: flex;
					-ms-flex-align: center;
					-webkit-align-items: center;
					align-items: center;
					-ms-flex-pack: start;
					-webkit-justify-content: flex-start;
					justify-content: flex-start;
			}

				#ft-apdental-menu  .footer-nav ul, 
				#ft-apdental-menu .footer-nav li {
					margin: 0;
					padding: 0;
					list-style: none;
					position: relative;
				}

				#ft-apdental-menu .footer-nav .menu > .menu-item > a {
						display: block;
						padding: 12px 32px;
						text-transform: uppercase;
						font-weight: 600;
						font-size: 22px;
						text-decoration: none;
						color:inherit;
						position: relative;
						font-family: 'Lato',sans-serif;
					}
#ft-apdental-menu-button .apd-menu-button {
	padding: 12px 25px;
	background-color: #2DACD6;
}
 
.apd-ft-columns {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	font-size: 20px;
}


.apdft-text-large-map-text {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-align-items: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}

	.apdft-text-large-map-text .apd-text-large-map {
		max-width: 100%;
		width: 100%;
	}

		.apdft-text-large-map-text .apd-text-large-map iframe {
			max-width: 100%;
			display: block;
			width: 100%;
		}

		.apdft-text-large-map-text.text-right .apdft-tf-text-and-heading {
			-webkit-order: 1;
			    -ms-flex-order: 1;
			        order: 1;
			width:50%;
			padding-bottom: 20px;
			padding-top: 80px;
		}

		.apdft-text-large-map-text.text-right .apdft-tf-text-and-heading {
			max-width: 600px;
			
		}

		.apdft-text-large-map-text.text-left .apdft-tf-text-and-heading {
			-webkit-order: 0;
			    -ms-flex-order: 0;
			        order: 0;
			
			max-width: 600px;
		}

			.apdft-text-large-map-text.text-left .apd-text-large-map {
				-webkit-flex-shrink: 1;
				    -ms-flex-negative: 1;
				        flex-shrink: 1;
				-webkit-order: 1;
				    -ms-flex-order: 1;
				        order: 1;
			}

			.apdft-text-large-map-text.text-right .apd-text-large-map {
				-webkit-order: 0;
				    -ms-flex-order: 0;
				        order: 0;
				display: -webkit-flex;
				display: -ms-flexbox;
				display: flex;
				-webkit-flex-direction: column;
				    -ms-flex-direction: column;
				        flex-direction: column;
				-webkit-flex-grow: 1;
				    -ms-flex-positive: 1;
				        flex-grow: 1;
			}

			.apdft-text-large-map-text iframe {
				-webkit-flex-grow: 1;
				    -ms-flex-positive: 1;
				        flex-grow: 1;
			}

			.apdft-text-large-map-text .apd-tm-large-map {
				width:50%;
				display: -webkit-flex;
				display: -ms-flexbox;
				display: flex;
				-webkit-flex-direction: column;
				    -ms-flex-direction: column;
				        flex-direction: column;
			}

			.apdft-text-large-map-text .apdft-tf-text-and-heading {
				width: 43%;
			}

		
@media ( max-width: 1250px ){
		.apdft-text-large-map-text.text-right .apdft-tf-text-and-heading {
			padding-left: 30px;
			padding-right: 30px;
	}
}

@media ( max-width: 960px ) {
	.apdft-text-large-map-text {
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.apdft-text-large-map-text.text-left .apdft-tf-text-and-heading {
		order: 1;
		margin: 0 auto 0 0;
		padding: 50px 0 0px 20px;
		max-width: 100%;
		width: 100%;
	}
	
	.apdft-text-large-map-text .apd-tm-large-map,
	.apdft-text-large-map-text.text-right .apdft-tf-text-and-heading  {
		width:100%;
	}
	
	.apdft-text-large-map-text.text-right .apdft-tf-text-and-heading {
		padding-left: 0;
		margin:0 auto;
	}
	
		.apdft-text-large-map-text .apd-text-large-map {
			padding-top: 0px;
		}
	
	.apd-tm-large-map,
	.apd-tf-text-and-heading {
		width: 100%;
	}
	
	.apdft-text-large-map-text.text-right .apdft-tf-text-and-heading {
		padding-left: 15px;
		padding-top: 30px;
		padding-right: 15px;
	}
		.apdft-text-large-map-text.text-right .apd-text-large-map {
			padding-left: 0;
		}
	
	.apdft-text-large-map-text.text-right .apdft-tf-text-and-heading {
		padding-right: 0;
	}
		.apdft-text-large-map-text.text-left .apd-text-large-map {
			padding-right: 0;
		}
}

@media (max-width:1200px) {
	#ft-apdental-menu .footer-nav .menu > .menu-item > a {
		font-size: 18px;
		padding: 12px 20px;
	}
}

@media (max-width:960px) {
	#ft-apdental-menu .footer-nav .menu > .menu-item > a {
		padding: 10px 14px;
		font-size: 16px;
	}
	#ft-apdental-menu .footer-nav > .menu, #ft-apdental-menu-button {
		display: block;
	}
	#ft-apdental-menu-button .apd-menu-button {
		margin-left: 0;
	}
}