@charset "UTF-8";

body
{
	background: #FFFFFF;
	margin: 0; 
	padding: 0;
	overflow-x: hidden;
}



.siteBody
{
	background: #FFFFFF;
	overflow-x: hidden;
}


/*header site navigation menu properties*/
.headerBottomBar
{
	margin: 0 auto;
	padding: 0px;
	width: 100%;
	float: left;
	background-color: #ffffff;
}

nav
{
	display: block;
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0 auto;
	background: #2A2A2A;
	text-align: center;
}

nav ul
{
	display: inline-block;
	margin: 0;
	padding: 0px;
	height: auto;
	text-align: center;
	list-style: none;
}

nav ul li 
{
	float: left;
	list-style: none;
	position: relative;
	text-align: left;
}

nav ul li a
{
	display: block;
	position: relative;
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	padding:10px 12px;
	text-decoration: none;
}

#current, nav ul li a:hover
{
	background-color: #6F6F6F;
}

nav ul li ul
{
	display: none;
	position: absolute;
	background-color: #2A2A2A;
	padding: 8px;
	border-radius: 0px 0px 8px 8px;
}

nav ul li:hover ul
{
	display: block;
}

nav ul li ul li 
{
	width: 230px;
}

nav ul li ul li a 
{
	padding: 10px 14px;
}

nav ul li ul li a:hover 
{
	background-color: #6F6F6F;
}

.responsiveNav
{
	margin: 0 auto;
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	width: 100%;
	background: #2A2A2A;
	padding: 10px 30px;
	box-sizing: border-box;
	text-align: center;
	display: none;
}

.menuButton
{
	display: inline-block;
}

.menuButton h4
{
	margin: 0; 
	color: #ffffff;
	text-align: center;
	padding: 5px 10px;
	background: #6F6F6F;
	cursor: pointer;
}

@media (min-width: 900px)
{
	nav
	{
		display: block !important;
	}
}

@media (max-width: 900px)
{
	nav
	{
		display: none;
		padding: 0;
	}
	.responsiveNav
	{
		display: block;
	}
	nav ul
	{
		float: none;
		text-align: center;
	}
	nav ul li
	{
		width: 100%;
		display: block;
		text-align: center;
		border-bottom: 1px solid rgba(255, 255, 255, .1);
	}
	nav ul li:hover ul
	{
		display: none;
	}
	
}

/*end navMenu submenu properties*/




/*main control for page content division*/
.pageContent
{
	width: 100%;
	margin: 0 auto;
	padding: 0;
	float: left;
	text-align: center;
	display: inline-block;
}
/*end of main control for page content division*/



.vital7Info
{
	width: 100%;
	margin: auto;
	padding: 0;
	display: inline-block;
	text-align: center;
	background-color: #ffffff;
}

.vital7InfoHeader
{
	display: inline-block;
	width: 100%;
	text-align: center;
}

.vital7InfoHeader h1
{
    max-width: 1000px;
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
    display: inline-block;
    font-family: 'kameron', serif;
    font-size: 24px;
    font-weight: normal;
    color: #000000;
}

@media (max-width: 768px)
{
    .vital7InfoHeader h1
    {
        padding-left: 2%;
        padding-right: 2%;
        text-align: left;
        font-size: 20px;
    }
}

@media (max-width: 500px)
{
    .vital7InfoHeader h1
    {
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
        text-align: left;
        font-size: 18px;
    }
}

.bodyText
{
    width: 100%;
    display: inline-block;
	text-align: center;
	margin: 0 auto;
}

.bodyText p
{
    max-width: 1000px;
    text-align: left;
    width: 90%;
    padding-right: 5%;
    padding-left: 5%;
    display: inline-block;
    font-family: 'kameron', serif;
    font-size: 20px;
    color: #000000;
}

@media (max-width: 500px)
{
    .bodyText p
    {
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
        font-size: 18px;
    }
}


/*GALLERY PROPERTIES*/

.galleryImages
{
	width: 100%;
	margin: 0 auto;
	float: left;
	text-align: center;
}

/*container for individual gallery images*/
.imageContainer	
{
	width: 300px;
	height: 300px;
	display: inline-block;
	margin: 10px;
}

.imageContainer a	
{
	display: inline-block;
	text-decoration: none;
}

.galleryElement
{
	width: 300px;
	height: 300px;
	object-fit: center;
	object-position: center;
	transition: 0.3s;
}

.galleryElement:hover
{
	box-shadow: 0 12px 14px 0 rgba(0, 0, 0, 0.3), 0 10px 24px 0 rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

@media(max-width: 1000px)
{
    .imageContainer	
    {
    	width: 200px;
	    height: 200px;
	    display: inline-block;
	    margin: 5px;
    }
    
    .galleryElement
    {
	    width: 200px;
	    height: 200px;
    }


}
/*end additional gallery images properties*/

/* Formatting for the coaching contact form */

.contactForm {

	margin: 0 auto;
	display: inline-block;
	width: 75%;
	text-align: left;
}


.label {

	font-family: 'kameron', serif;
	font-size: 18px;
	text-align: left;
}


.labelBold {

	font-family: 'kameron', serif;
	font-size: 18px;
	font-weight: bold;
}


.name
{
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	box-sizing: border-box;
	border: none;
	border-bottom: 2px solid black;
	font-family: 'kameron', serif;
	font-size: 16px;
}

.name:focus
{
	background-color: lightblue;
}


.email
{
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	box-sizing: border-box;
	border: none;
	border-bottom: 2px solid black;
	font-family: 'kameron', serif;
	font-size: 16px;
}

.email:focus {

	background-color: lightblue;
}


.formContactNumber
{
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	box-sizing: border-box;
	border: none;
	border-bottom: 2px solid black;
	font-family: 'kameron', serif;
	font-size: 16px;
}

.formContactNumber:focus {

	background-color: lightblue;
}


.descriptionText
{
	width: 100%;
	height: 200px;
	padding: 12px 20px;
	box-sizing: border-box;
	border: 2px solid black;
	border-radius: 4px;
	background-color: white;
	resize: none;
	font-family: 'kameron', serif;
	font-size: 16px;
}


.appointmentTimes
{
	width: 30%;
    border: none;
	border: 2px solid black;
    border-radius: 4px;
    background-color: white;
	font-family: 'kameron', serif;
	font-size: 16px;
	margin-top: 7px;
}

.appointmentTimes:focus {

	background-color: lightblue;
}


@media (max-width: 1000px) {

	.appointmentTimes {

		width: 50%;
	}
}

@media (max-width: 725px) {

	.appointmentTimes {

		width: 70%;
	}
}

@media (max-width: 500px) {

	.appointmentTimes {

		width: 95%;
	}
}


.submitButton {

	background: #000;
	border-color: #000;
	padding: 5px;
	font-family: 'kameron', serif;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
}


.fieldError {

	color: #CD0000;
	font-size: 17px;
	font-family: 'kameron', serif;
}


.requiredFieldsTxt {
	
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: bold;
	font-family: 'kameron', serif;
	font-size: 18px;
}


/* Defines the styling of the upload progress bar in different phases 
of the web page loading, form and file uploading, and 
error message and form response reception from the server. */

/* By default, the upload bar is hidden when the web page initially 
loads and when the form has not submitted yet. */
#upload-progress {

	visibility: hidden;
	height: 20px;
	width: 50%;
}


/* The upload progress bar then becomes visible when the form 
is being submitted to the server. */
#upload-progress.visible {

	visibility: visible;
}




/* SITE FOOTER STYLING CLASSES */
.siteFooter
{
	display: inline-block;
	margin: 0 auto;
	padding: 0;
	width: 100%;
}

.siteFooterInner
{
	display: inline-block;
	margin: 0 auto;
	padding-top: 3%;
	padding-bottom: 3%;
	padding-left: 10%;
	padding-right: 10%;
	width: 80%;
	text-align: left;
}

.privacyPolicyLink {

	font-family: 'Kameron', serif;
	font-size: 18px;
}

/* END SITE FOOTER STYLING CLASSES */