.page-title {
	color: var(--blue);
	font-size: 2vw;
	font-weight: 600;
	padding: 1vw 3vh;
	padding-left: 0vw;
}

/* --------About Nav------------- */

.about-nav {
	position: fixed;
	right: 0vw;
	top: 0vw;
	width: 15vw;
	/* height: 80vh; */
}

.about-nav-wrapper {
	display: block;
	padding: 0vw;
	text-align: right;
	font-size: 1vw;
	font-weight: 600;
	color: var(--blue);
}

.about-link {
	list-style: none;
	line-height: 2.5;
	padding-right: 1vw;
	cursor: pointer;
	transition: 0.2s ease-in-out;
overflow: scroll;}
.about-link:hover {
	border-right: 1vw solid var(--blue);
	transition: 0.2s ease-in-out;
}

.about-nav .about-link a {
	text-decoration: none;
	color: inherit;
}

/* -----------Content---------- */
.content-wrapper {
	width: 100%;
	background: var(--white);
	/* height: 100vh; */
	/* margin-bottom: 40vh; */
}
.content {
	padding-left: 7vw;
	padding-right: 1vw;
	width: 85%;
	background-color: var(--white);
	/* border-radius: 0 0 15vw 0; */
	min-height: 100vh;
	overflow: scroll;
	/* box-shadow: -5px 0px 20px -5px var(--logo-color); */
}
.content-container {
    position: relative;
}
.content-title {
	padding: 1vh;
	color: var(--logo-color);
	background: var(--white);
	font-size: 1.5vw;
	z-index: 2;
	/* font-weight: 800; */
	position: sticky;
	top: 0;
	margin-bottom: 0.5vw;
}