.projects-wrapper {
	display: flex;
	flex-direction: column;
	overflow-y: scroll;
	position: relative;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: y mandatory;
	height: 100vh;
}

.mobile-nav-button {
	display: none;
}
@media (max-width: 800px) {
	.projects-wrapper {
		display: flex;
		flex-direction: row;
		overflow-x: scroll;
		position: relative;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		height: 100vh;
	}

	.desktop-nav {
		display: none;
	}
	.mobile-nav-button {
		transition: all 0.2s ease-in-out 0s;
		transition-delay: 1.2s;
		visibility: visible;
		display: block;
		position: fixed;
		bottom: 0;
		right: 0;
		z-index: 8;
		width: 80px;
		height: 80px;
		background-image: url(../components/mobile-menu/menu-button.png);
	}
}
.mnb-hidden {
	position: fixed;
	right: -100px;
	bottom: -100px;
	transition: all 0.3s ease-in-out 0s;
}
#p1 {
	background-color: black;
}
.p1__video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	min-width: 100%;
	height: auto;
	min-height: 100%;
	transform: translateX(-50%) translateY(-50%);
	z-index: 1;
}
.p1_lower {
	/* filter: brightness(0.15); */
}
.video-container {
	width: 100vw;
	height: 100vh;
	position: absolute;
	overflow: hidden;
}
#p2 {
	background-color: red;
}
#p3 {
	background-color: white;
}
.subsection {
	display: inline-block;
	flex-shrink: 0;
	height: 100vh;
	width: 100vw;
	scroll-snap-align: start;
	overflow: visible;
}
.anim-1 {
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}
.project-wrapper {
	position: absolute;
	z-index: 2;
	width: 100vw;
	height: 100vh;
}
.project-link {
	padding: 16px 32px 19px 32px;
	font-weight: 100;
	color: white;
	border: 1px solid white;
	border-radius: 2px;
	font-size: 18px;
	line-height: 10px;
	cursor: pointer;
	background-color: rgb(0 0 0 / 70%);
}
.project-link:hover {
	color: black;
	background-color: white;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}
.ss-red {
	background-color: rgb(148 0 0 / 40%);
	transition: all 0.2s ease-in-out 0s;
}
.ss-red:hover {
	background-color: white;
}

.ss-green {
	background-color: rgb(17 113 17 / 30%);
	transition: all 0.2s ease-in-out 0s;
}
.ss-green:hover {
	background-color: white;
}
.login-title {
	position: absolute;
	top: 10px;
	left: 10px;
}
.ss-icon {
	font-size: 28px;
	margin-bottom: -8px;
}
