html {
	--top-spacing: 575px;
	scroll-padding-top: var(--top-spacing);
	scroll-behavior: smooth;
}

.top {
	transition: transform 0.3s ease, background-color 0.3s ease;
	display: none;
	/* Initially hide the button */
	position: fixed;
	bottom: 10px;
	right: 0px;
	cursor: pointer;
	z-index: 1;
}

.top:hover {
	transform: scale(1.1);
	/* The background color on hover */
}

.top h3 {
	text-align: center;
	margin: -10px;
	color: #000000;
	text-shadow: 0 0 1px #ee4924, 0 0 2px #0000ff;
}

.services-intro {
	text-align: center;
	/* Background color for the entire aside */
	z-index: 1;
	justify-content: center;
	align-items: center;
	padding-bottom: 10px;
}

.parallax_serv_start {
	/* The image used */
	background-image: url("ATC_Word_Logo.png");
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 20px;
	align-items: flex-start;
	/* Align content at the top */
	width: 100vw;
	height: auto;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	border-bottom: 2px solid #ee4924;
}


.background-color {
	/* Full width and height of the viewport */
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	/* Background color with transparency */
	position: absolute;
	/* Position this container absolutely */
	top: 0;
	left: 0;
}


.center_list {
	margin: 0 auto;
	/* Center the container horizontally within its parent */
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.center_list ul {
	list-style-position: inside;
	/* Place the list bullets inside the list items */
	text-align: left;
	font-size: 18px;
}


/*Background Box*/
.services-911,
.services-non,
.services-dialysis,
.services-events,
.services-wheelchair {
	text-align: center;
	width: 100%;
	/* Allow content to expand to full width */
	background-color: rgba(255, 255, 255, 0.8);
	height: auto;
	margin: 0 auto;
	/* Background color for the entire aside */
	padding: 20x;
	/* Add padding to create individual boxes */
	/* 
	border: 2px solid #ee4924;
	Border for individual boxes */
	border-radius: 0px;
	/* Rounded corners for individual boxes */
}

.services nav ul {
    text-align: center; /* Centers the content */
    list-style-type: none; /* Removes bullet points */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}

.services nav ul li {
    display: inline-block; /* Aligns the list items inline */
    margin-right: 10px; /* Optional: Adds some space between list items */
}

.parallax_911 {
	/* The image used */
	background-image: url("911.jpg");
	/* Full width and height of the viewport */
	display: flex;
	justify-content: center;
	align-items: flex-start;
	/* Align content at the top */
	width: 100vw;
	height: 100vh;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.services-911 h2 {
	font-weight: bold;
	/* Adjust the font weight for H2 */
	color: #00215b;
	/* Text color for H2 */
}

.parallax_non {
	/* The image used */
	background-image: url("Long_dist.jpg");
	display: flex;
	justify-content: center;
	align-items: flex-start;
	/* Align content at the top */
	width: 100vw;
	height: 100vh;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.parallax_wheelchair {
	/* The image used */
	background-image: url("Wheelchair.jpg");
	display: flex;
	justify-content: center;
	align-items: flex-start;
	/* Align content at the top */
	width: 100vw;
	height: 100vh;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}


.parallax_dialysis {
	/* The image used */
	background-image: url("Dialysis.jpg");
	display: flex;
	justify-content: center;
	align-items: flex-start;
	/* Align content at the top */
	width: 100vw;
	height: 100vh;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.parallax_events {
	/* The image used */
	background-image: url("Special_Events.jpg");
	display: flex;
	justify-content: center;
	align-items: flex-start;
	/* Align content at the top */
	width: 100vw;
	height: 100vh;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.collapsible {
	color: #00215b;
	font-size: 18px;
	padding: 15px 32px;
	text-align: left;
	align-items: left;
	cursor: pointer;
	margin: 0 auto;
	background-color: rgba(255, 255, 255, 0.8);
	/* Background color for the entire aside */
	border: 2px solid #00215b;
	/* Border for individual boxes */
	border-radius: 50px;
	/* Rounded corners for individual boxes */
	box-shadow: 0 0 20px rgba(0, 34, 92, 0.9);
	margin-bottom: 5px;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.actives,
.collapsible:hover {
	color: #ee4924;
	/* Hover color for links 
	border-color: #ee4924;
	/* Hover border color for links */
	transform: scale(1.1);
	box-shadow: 5px 5px 10px -2px#ee4924;
}

.collapsible:after {
	content: '\002B';
	font-weight: bold;
	float: left;
	margin-right: 10px;
}

.active:after {
	content: "\2212";
}

.content {
	padding: 10px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out;
}

h2 {
	text-decoration: none;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	color: #00215b;
	font-size: 50px;
}

p {
	display: inline-block;
	/* Make text elements inline blocks */
	max-width: 900px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
	font-weight: 500;
	text-align: left;
}

.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 20px;
	left: 0;
	background-color: #CC423A;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 60px;
}

.sidenav a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 16px;
	color: white;
	display: block;
	transition: 0.3s;
}

.sidenav a:hover {
	color: #000000;
}

.sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
}


.services-events,
.services-non,
.services-dialysis,
.services-911,
.services-wheelchair {
	opacity: 0;
	transform: translateY(200px);
	transition: opacity .5s ease-out, transform .5s ease-out;
}

.collapsible {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .5s ease-out, transform .5s ease-out;
}


.reveal {
	opacity: 1;
	transform: translateY(0);
}

@media screen and (max-width: 960px) {

	.parallax_serv_start {
		/* The image used */
		background-image: url("mobile/ATC_Word_Logo.png");
		background-attachment: scroll;
	}

	.parallax_911 {
		background-attachment: scroll;
	}

	.parallax_non {
		background-attachment: scroll;
	}

	

	.parallax_dialysis, .parallax_wheelchair {
		background-attachment: scroll;
	}

	.parallax_events {
		background-attachment: scroll;
	}


	html {
		--top-spacing: 625px;
	}

	.collapsible {
		font-size: small;
	}

	.center_list ul {
		font-size: 16px;
	}

	p {
		font-size: 16px;
		max-width: 600px;
	}

	h1,
	h2,
	h3 {
		font-size: larger;
	}
}

@media screen and (max-width: 600px) {

	.services-intro p {
		margin-top: 0px;
	}

	.parallax_serv_start {
		/* The image used */
		background-image: url("mobile/ATC_Word_Logo2.png");
		width: 100%;		
	}

	

	html {
		--top-spacing: 415px;
	}


	p {
		max-width: 400px;
	}

	.center_list ul {
		font-size: small;
	}

	h1,
	h2,
	h3 {
		font-size: large;
	}
}