html, body {
	-moz-user-select: none;
	-webkit-user-select: none;
	background-color: white;
	font-size: 16px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	height: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
}

h1 {
	font-weight: bold;
}

h2 {
	font-size: 30px;
}

.page-container, .page-container-fluid {
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
}

#header {
	background-color: #00023E;
	padding: 10px;
	height: auto;
	display: table;
	position: relative;
}

#header-logo {
	height: 20px;
	position: absolute;
	top: 50%;
	transform: translate(0%, -50%);
}

#header-book-appointment-button {
	color: black;
	background-color: white;
	border: none;
	border-radius: 5px;
	padding: 5px 10px;
	float: right;
}

#header-book-appointment-button:hover {
	background-color: #EEEEEE;
}

#header-book-appointment-button:active {
	border: none;
}

.jumbotron {
	position: relative;
	overflow: hidden;
	padding: 0;
}

#jumbotron-img {
	width: 100%;
}

#title-holder {
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translate(0%, -50%);
	background-color: #212121DD;
	color: white;
	padding: 20px;
	border-radius: 5px;
}

.container-title {
	margin-bottom: 30px;
}

.container-title > hr {
	border-top: 2px solid #337AB7;
	width: 50%;
}

.picture-holder, .content-container {
	margin-top: 10px;
	margin-bottom: 10px;
	font-family: "Questrial";
}

.picture-holder {
	width: 100%;
}

#about .content-container {
	text-align: left;
}

#mental-health {
	background-color: #212121;
	color: white;
	padding: 0;
	height: max-content;
}

#mental-health-content {
	position: absolute;
	top: 50%;
	transform: translate(0%, -50%);
}

#mental-health-image {
	padding: 0;
}

#mental-health img {
	width: 100%;
}

.services-list {
	list-style-type: none;
	line-height: 2;
	margin: 0;
	padding: 0;
}

#testimonials {
	background-color: #ff9a98;
	min-height: fit-content;
}

.quote-left, .quote-right {
	font-size: 70px;
	color: white;
	text-align: left;
	line-height: 0.5;
	margin: 0;
	padding: 0;
}

.quote-right {
	text-align: right;
}

#contact-me #contact-timing {
	text-align: left;
}

#contact-me #address {
	text-align: right;
}

#map {
	margin: 0;
	padding: 0;
}

#clinic-google-map {
	width: 100%;
	height: 70vh;
}

#contact-form {
	margin: 0;
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: #212121;
	color: white;
}

#contact-form #content-container {
	position: relative;
}

#contact-form #content-container > p {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.contact-form-input {
	width: 100%;
	border: none;
	border-bottom: 2px solid white;
	margin-top: 10px;
	margin-bottom: 10px;
	resize: none;
	background: none;
	color: white;
}

input:focus, textarea:focus {
	outline: none;
}

input:-webkit-autofill {
	box-shadow: 0 0 0px 1000px #212121 inset;
	-webkit-box-shadow: 0 0 0px 1000px #212121 inset;
	color: white;
	-webkit-text-fill-color: white;
}

input[type=submit] {
	background-color: #212121;
	color: white;
	padding: 5px 20px;
	border: 2px solid white;
	border-radius: 5px;
	cursor: pointer;
	float: right;
}

input[type=submit]:hover {
	background-color: #414141;
}

::-webkit-input-placeholder {
	color: white;
}

:-ms-input-placeholder {
	color: white;
}

::placeholder {
	color: white;
}

#footer {
	margin: 0;
	padding: 15px;
}

#footer > p {
	margin: 0;
	line-height: 2rem;
}

#author-tag {
	font-size: 12px;
}

#author-tag a {
	color: #337AB7;
}

@media only screen and (max-width: 768px) {
	.jumbotron {
		height: 50vh;
	}

	#jumbotron-img {
		height: 100%;
		width: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	
	#title-holder {
		left: 50%;
		transform: translate(-50%, -50%);
		text-align: center;
	}

	#mental-health-content-container {
		padding: 10px;
		margin-bottom: 10px;
	}

	#mental-health-content {
		position: relative;
	}

	#contact-me #address, #contact-me #contact-timing {
		text-align: center;
	}

	#contact-form #content-container > p {
		position: relative;
	}
}