.holding2
{
	width: ;
	text-align: center;
	border: 1px solid black;
	background-image: url("salford1.jpg");
	background-image: url("salford2.jpg");
	/*background-image: url("salford3.jpg");*/
	background-size: contain;
	background-repeat: repeat-y;
	background-position: top center;
}
DIV.video IMG, DIV.analytical IMG, DIV.frankie IMG
{
	width: 100%;
}
DIV.name
{
	padding: 25px;
	background-color: rgba(105, 134, 98, 0.957);
	color: #FFFFFF;
}
DIV.footer
{
	background-color: #506C49;
	padding: 9px;
	color: #FFFFFF;
}
.footer P A
{
	color: #FFFFFF;
}
IMG
{
	border: 0px solid black;
	/*+border-radius: 9px;*/
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	-khtml-border-radius: 9px;
	border-radius: 9px;
}
IMG.eval
{
	max-width: 302px;
}
DIV.frankie
{
	max-width: 250px;
	margin: auto;
}
DIV.frankie IMG
{
	/*+border-radius: 10px;*/
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
}
DIV.name P
{
	font-size: 20px;
}
BODY
{
	margin: 0;
	padding: 0;
	font-family: 'Merriweather', serif;
}
H1
{
	font-weight: 600;
	font-size: 51px;
}
H2
{
	font-weight: 600;
	font-size: 30px;
}
DIV.section
{
	background-color: rgba(171, 190, 166, 0.949);
	padding: 20px;
}
DIV.analytical
{
	max-width: 800px;
	margin: auto auto 69px auto;
}
.section P A
{
	color: #000000;
	text-decoration: none;
}
.section P A:hover
{
	text-decoration: underline;
}
DIV.section.two
{
	background-color: rgba(173, 181, 189, 0.966);
}
DIV.video
{
	max-width: 608px;
	margin: auto auto 60px auto;
}
DIV.video IMG
{
	/*+border-radius: 11px;*/
	-moz-border-radius: 11px;
	-webkit-border-radius: 11px;
	-khtml-border-radius: 11px;
	border-radius: 11px;
	border: 2px solid #FFFFFF;
}
/*DIV.photos
{
	display: flex;
	max-width: 80%;
	flex-wrap: wrap;
	margin: auto;
}*/
/*DIV.photos DIV
{
	margin: 5px;
	max-width: 275px;
}*/
/*DIV.photos DIV IMG
{
	width: 100%;
	(*border: 5px solid #FFFFFF;*)
}*/
/******************************************** GALLERY ***************/
UL.image-gallery
{
	list-style: none;
	margin: 0;
	padding: 0;
}
.image-gallery
{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.image-gallery > LI
{
	flex: 1 1 auto;
	/* or flex: auto; */
	height: 320px;
	cursor: pointer;
	position: relative;
}
.image-gallery::after
{
	content: "";
	flex-grow: 999;
}
.image-gallery LI IMG
{
	object-fit: cover;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	border-radius: 5px;
}
.overlay
{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(57, 57, 57, 0.502);
	top: 0;
	left: 0;
	transform: scale(0);
	transition: all 0.2s 0.1s ease-in-out;
	color: #FFF;
	border-radius: 5px;
	/* center overlay content */
	display: flex;
	align-items: center;
	justify-content: center;
}
/* hover */
.image-gallery LI:hover .overlay
{
	transform: scale(1);
}
