* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

/* || NAVIGATION MENU */
.nav-menu {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	background-color: white;
	top: 0;
	right: 0;
	font-size: 2rem;
	line-height: 2.5rem;
	font-weight: 700;
	transition: 0.3s ease;

	> div:nth-child(1) {
		display: flex;
		padding: 24px 64px;
		align-items: center;
		justify-content: flex-end;
		line-height: 3rem;
		flex-direction: row;
		width: 100%;
		height: fit-content;
		align-items: center;
	}
	> div:nth-child(2) {
		display: flex;
		flex-direction: column;
		height: 100%;
		width: 100%;
		justify-content: flex-start;
		padding: 24px 64px;
		gap: 20px;
	}
}

.nav-menu p a {
	color: var(--text-primary);
}

#chevron-right {
	display: none;
}


/* || NAVIGATION BAR */
.nav-bar {
	display: flex;
	flex-direction: row;
	flex-direction: 100%;
	max-width: 1440px;
	margin: 0px auto;
	padding: 24px 64px;
	justify-content: space-between;	
	align-items: center;
	div {
		display: flex;
		flex-direction: row;
		gap: 12px;
		justify-content: space-between;
		align-items: center;
		align-content: center;
		height: fit-content;
	}
	> p {
		pointer-events: none;
	}
}

.nav-bar-item {
	padding: 6px 12px;
	cursor: pointer;
	transition: 0.2s;
}

.nav-bar-item:hover {
	border-radius: 4px;
	background-color: #EDEDED;
}

.nav-bar p a {
	color: var(--text-primary);
}

.active {
	text-decoration: underline;
	text-underline-offset: 0.5rem;
	color: var(--text-hyperlink);
}

.active:hover {
	border-radius: 4px;
	background-color: rgba(0, 79, 182, 0.1)
}

.hide {
	display: none;
}

.show {
	display: initial;
}


/* || WRAPPER */
.wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 100%;
	width: 100%;
	padding: 48px 64px;
	padding-bottom: 128px;
	margin: 0px auto;
}


/* || CONTENT */
.content {
	display: flex;
	flex-direction: column;
	margin: 0px auto;
	width: 100%;
	gap: 128px;
	max-width: var(--content-max-width);
}


/* || MEDIA QUERIES */

/* Width less than 480px */
@media (width <= 480px) {
	.nav-bar {
		padding: 16px calc(20px - 8px);
	}

	.nav-menu {
		> div:nth-child(1), div:nth-child(2) {
			padding: 16px calc(20px - 8px);
		}
		>div:nth-child(1) {
			line-height: 2.5rem;
		}
	}
}

/* Width greater than 760px */
@media (760px < width) {
	.nav-bar {
		padding: 24px calc(64px - 12px);
	}
}

/* Width less than 760px */
@media (width <= 760px) {
	.wrapper {
		padding: 20px;
		padding-bottom: 64px;
	}

	.content {
		min-width: 100%;
		flex: 100%;
		gap: 80px;
	}

	.hide {
		display: initial;
	}

	.show {
		display: none;
	}
}

/* Width between 480px and 760px */
@media (480px < width <= 760px) {
	.nav-bar {
		padding: 24px calc(48px - 12px);
	}

	.nav-menu {
		> div:nth-child(1), div:nth-child(2) {
			padding: 24px calc(48px - 12px);
		}
	}

	.wrapper {
		padding: 24px 48px;
		padding-bottom: 64px;
	}
}