:root {
	--max-page-width: 1000px;
	--white: #fff;
	--grey-color: #efefef;
	--blue-color: #627887;
	--purple-color: #98758c;
}
* {
	font-family: Helvetica, Arial, "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", "sans-serif";
	padding: 0;
	margin: 0;
	line-height: 1.2;
	font-size: 16px;
}
h2 {
	font-size: 25px;
}
h3 {
	font-size: 25px;
	color: var(--blue-color);
	max-width: var(--max-page-width);
    margin: 10px auto;
    padding-left: 10px;
    width: calc(100% - 12px);
}
h4 {
	max-width: var(--max-page-width);
    margin: 10px auto;
    padding-left: 10px;
    width: calc(100% - 12px);
	color: var(--purple-color);
}
ul {
	padding-left: 40px;
}
.mobileOnly {
	display: none;
}
.desktopOnly {
	display: block;
}
.topBarWrapper {
	background-color: var(--blue-color);
}
.topBarContainer {
	display: flex;
    justify-content: flex-end;
	padding: 5px 0;
	width: var(--max-page-width);
	margin: auto;
}
.topBarContent {
	margin-left: 20px;
}
.topBarContent svg {
	margin-right: 5px;
}
.topBarContent a {
	color: white;
	text-decoration: none;
	position: relative;
	display: flex;
    align-items: flex-end;
}
/* Underline Animation On Hover */
a:not(.appointmentButton), a:not(body nav menu menuitem a) {
	position: relative;
	width: fit-content;
}
a:not(.appointmentButton)::before, body nav menu menuitem a::before, a::before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: white;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}
a:not(.appointmentButton):hover::before {
	transform: scaleX(1);
}
body nav menu menuitem a::before, footer menu menuitem a::before, a::before {
	background-color: black !important;
}
footer menu menuitem a {
	text-decoration: none;
	color: #000000;
	margin: 0 10px;
	position: relative;
}

h1 {
	text-align: center;
	margin-bottom: 20px;
}
p {
	padding: 10px;
}
.phonenumber {
	text-decoration: none;
	color: #000000;
}
body {
	min-height: 100vh;
	height:100vh;
	display: flex;
	flex-direction:column; 
}
body nav {
	background-color: var(--grey-color);
	display: block;
	width: 100%;
	min-height: 50px;
}
body nav .pageName {
	font-weight: bold;
}

body nav .menuWrapper {
	margin: auto;
	display: flex;
/*	align-items: center;*/
	width: 100%;
	max-width: var(--max-page-width);
	min-height: 50px;
}
body nav menu {
	margin: 0 5px;
	display: flex;
	flex-grow: 10;
	justify-content: space-between;
	align-items: center;
	min-height: 50px;
}
body nav menu menuitem a {
	text-decoration: none;
	color: #000000;
	position: relative;
}
.menuButton {
	display: none;
}
main {
	line-height: 22px;
}
.fullWidthImage {
	max-width: 100vw;
	width: 100%;
	min-height: 200px;
	background-repeat: repeat;
    background-attachment: fixed;
    background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content:center;
}
.fullWidthImage .headerImageTextLarge {
	font-size: 40px;
    color: #fff;
    text-shadow: 5px 5px 5px #000;
    text-align: center;
    line-height: 40px;
}
.fullWidthImage .headerImageText {
	max-width: var(--max-page-width);
	color: #fff;
	text-shadow: 5px 5px 5px #000;
	text-align: left;
}
.quoteBar {
	margin:auto;
	text-align: center;
	padding: 20px 0;
	background: var(--grey-color);
	clear: both;
}
.quoteBar .quote {
	font-size: 18px;
	font-weight: bold;
}
.quoteBar .credit {
	font-style: italic;
	font-size: 14px;
}
.purpleBar {
	background-color: var(--purple-color);
	color: #ffffff;
	max-width: 100vw;
	width: 100%;
}
.blueBar {
	background-color: var(--blue-color);
	color: #ffffff;
	max-width: 100vw;
	width: 100%;
}
.blueBar .content, .purpleBar .content {
	padding: 20px 0;
	max-width: var(--max-page-width);
	margin: auto !important;
}
.blueBar .content a, .purpleBar .content a {
	color: #ffffff;
	position: relative;
	text-decoration: none;
}
.whiteBar {
	max-width: 100vw;
	width: 100%;
}
.whiteBar .content {
	max-width: var(--max-page-width);
	margin: auto;
}

.appointmentBarContainer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-between;
}
.appointmentBarContainer p {
    padding: 10px 0;
}
.leftBox, .rightBox {
	font-weight: bold;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.leftBox a, .rightBox a {
	color: black;
	text-decoration: none;
}

.bottomContactBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0;
	max-width: var(--max-page-width);
}
.bottomContactBox .appointmentButton {
	background-color: var(--purple-color);
    color: #ffffff!important;
    border-radius: 10px;
    padding: 10px 20px;
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
	width: 250px;
}
.bottomContactBox .appointmentButton:hover {
	text-decoration: none;
	background-color: #98758cd4;
}

.list {
	padding-left: 45px;
}

.listedOn li {
	margin: 5px 0;
}


footer {
	background-color: var(--grey-color);
	display: block;
	width: 100%;
	min-height: 90px;
	height: 55px;
	margin-top: auto;
	
}
footer menu {
	margin: auto;
	display: flex;
	max-width: var(--max-page-width);
	justify-content: space-around;
	align-items: center;
	min-height: 55px;
	flex-wrap: wrap;
}
footer .copyright {
	text-align: center;
	background-color: var(--grey-color);
	height: 25px;
}
.pageTitle {
	max-width: var(--max-page-width);
	margin: 10px auto;
	padding-left: 10px;
	width: calc(100% - 12px);
	color: var(--blue-color);
	font-size: 20px;
}
.profileImage {
	float: left;
	margin-right: 10px;
}
form.contact {
	display: flex;
	flex-direction: row;
}
form.contact input[type="text"],form.contact input[type="email"],form.contact textarea,form.contact input[type="tel"] {
    width: calc(100% - 20px);
    padding: 5px;
    font-size: 20px;
}
form.contact textarea {
	min-height: 200px;
}
form.contact input[type="submit"] {
	padding: 10px 40px;
    font-size: 18px;
	border-radius: 10px;
	border: none;
	background: #fff;
	color: var(--purple-color);
	cursor: pointer;
}
input[type="submit"]:hover {
	color: #ffffffc4;
}
form.contact div{
	width: 50%;
}
form.contact input.needsCompleting {
	border: 2px solid red;
}

.scrollButton {
	rotate: 180deg;
}
#myBtn {
	display: none; /* Hidden by default */
	position: fixed; /* Fixed/sticky position */
	bottom: 20px; /* Place the button at the bottom of the page */
	right: 30px; /* Place the button 30px from the right */
	z-index: 99; /* Make sure it does not overlap */
	border: none; /* Remove borders */
	outline: none; /* Remove outline */
	cursor: pointer; /* Add a mouse pointer on hover */
	font-size: 18px; /* Increase font size */
	background: none;
}

.content .floatRight {
	float: right;
	margin: 0 0 20px 20px;
	border-radius: 15px;
	max-width: 30vw;
}

@media screen  and (max-width: 1100px){
	.purpleBar .content, .blueBar .content {
		width: 90vw;
	}
	.topBarContainer {
		width: unset;
		margin-right: 20px;
	}
	.fullWidthImage .headerImageTextLarge {
		padding: 0 20px;
	}
	body nav menu { 
		margin: 0 20px;
	}
	.whiteBar .content {
		max-width: 90vw;
		margin: 10px auto;
	}
}
@media screen  and (max-width: 820px){
	.mobileOnly {
		display: block;
	}
	.desktopOnly {
		display: none;
	}
	.topBarMobile {
		margin: auto;
	}
	body nav .menuWrapper {
		justify-content:flex-start;
	}
	body nav .menuButton {
		position: absolute;
		display: block;
		right: 10px;
		top:10px;
	}
	body nav menu {
		display: none;
	}
	body nav menu menuitem {
		padding: 20px;
		font-size: 20px;
	}
	
	body nav menu.visible {
		display: flex;
		position: absolute;
		right: 0;
		top: 50px;
		width: 100%;
		background-color: var(--grey-color);
		flex-direction: column;
		margin: 0;
		align-items: flex-end;
	}
	.fullWidthImage .headerImageText {
		border-radius: unset;
	}
	.topBarWrapper {
		display: none;
	}
	.content .floatRight {
		margin: 0 20px 20px 20px;
	}
	.quoteBar .quote {
		margin: 0 20px;
	}
}
@media screen  and (max-width: 800px){
	form.contact {
		display: flex;
		flex-direction: column;
}
	form.contact div{
		width: 100%;
	}
	.bottomContactBox {
		display: flex;
		flex-direction: column;
	}
	.bottomContactBox .appointmentButton {
		margin: 0 20px;
	}
	footer {
		min-height: 208px;
	}
	footer menu {
		flex-direction: column;
	}
	menuitem {
		margin: 5px 0;
	}
	.leftBox, .rightBox {
		align-items: center;
		min-height: 60px;
		margin-top: 0 !important;
	}
}
@media screen  and (max-width: 500px)  {
	.content .floatRight {
		float: none;
		max-width: unset;
		display: block;
		margin: auto;
	}
	.pageTitle , h2, h3 {
		text-align: center;
		padding: 0;
	}
}