* {
	font-family: 'Inter';
}

.scene {
	width: 100%;
	height: 100vh;
}

.cube {
	cursor: help;
	will-change: transform;
	transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	-webkit-animation: spin 250000s infinite linear;
	animation: spin 250000s infinite linear;

	position: relative;
	width: 20rem;
	height: 20rem;
	top: 45%;
	left: 45%;
	margin-left: -50px;
	margin-top: -10rem;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.cube div {
	width: 20rem;
	height: 20rem;
	line-height: 20rem;
	text-align: center;
	-webkit-box-shadow: inset 0px 0px 0px 0.5px rgba(0, 0, 0, 0.2),
		inset 0 0 0 0.75px rgba(222, 222, 222, 0.5);
	box-shadow: inset 0px 0px 0px 0.5px rgba(0, 0, 0, 0.2),
		inset 0 0 0 0.75px rgba(222, 222, 222, 0.5);
	background: rgba(0, 0, 0, 0.5);
	display: block;
	position: absolute;
	animation: fade 15s infinite;
	-webkit-animation: fade 15s infinite;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.cube div.top {
	transform: rotateX(90deg);
	-webkit-transform: rotateX(90deg);
	margin-top: -10rem;
}

.cube div.right {
	transform: rotateY(90deg);
	-webkit-transform: rotateY(90deg);
	margin-left: 10rem;
}

.cube div.bottom {
	transform: rotateX(-90deg);
	-webkit-transform: rotateX(-90deg);
	margin-top: 10rem;
}

.cube div.left {
	transform: rotateY(-90deg);
	-webkit-transform: rotateY(-90deg);
	margin-left: -10rem;
}

.cube div.front {
	transform: translateZ(10rem);
	-webkit-transform: translateZ(10rem);
}

.cube div.back {
	transform: translateZ(-10rem) rotateX(180deg);
	-webkit-transform: translateZ(-10rem) rotateX(180deg);
}

/* ANIMATED */
.cube.animated {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}
.cube.animated:hover {
	-webkit-animation-play-state: running;
	animation-play-state: running;
}

.cube.animated div.top {
	transform: rotateX(90deg);
	-webkit-transform: rotateX(90deg);
	margin-top: -2rem;
}

.cube.animated div.right {
	transform: rotateY(90deg);
	-webkit-transform: rotateY(90deg);
	margin-left: 2rem;
}

.cube.animated div.bottom {
	transform: rotateX(-90deg);
	-webkit-transform: rotateX(-90deg);
	margin-top: 2rem;
}

.cube.animated div.left {
	transform: rotateY(-90deg);
	-webkit-transform: rotateY(-90deg);
	margin-left: -2rem;
}

.cube.animated div.front {
	transform: translateZ(2rem);
	-webkit-transform: translateZ(2rem);
}

.cube.animated div.back {
	transform: translateZ(-2rem) rotateX(180deg);
	-webkit-transform: translateZ(-2rem) rotateX(180deg);
}

.cube.animated {
	position: relative;
	width: 4rem;
	height: 4rem;
	margin-top: -2rem;
	margin: 0;
	left: 0;
	top: 5%;
}

.cube.animated div {
	width: 4rem;
	height: 4rem;
	line-height: 4rem;
}



@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate3d(1, 0, 0, 20deg) rotate3d(0, 1, 0, 20deg);
		transform: rotate3d(1, 0, 0, 20deg) rotate3d(0, 1, 0, 20deg);
	}
	99.999% {
		-webkit-transform: rotate3d(1, 0, 0, 20000deg)
			rotate3d(0, 1, 0, 20000deg);
		transform: rotate3d(1, 0, 0, 20000deg) rotate3d(0, 1, 0, 20000deg);
	}
	100% {
		-webkit-transform: rotate3d(1, 0, 0, 20deg) rotate3d(0, 1, 0, 20deg);
		transform: rotate3d(1, 0, 0, 20deg) rotate3d(0, 1, 0, 20deg);
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate3d(1, 0, 0, 20deg) rotate3d(0, 1, 0, 20deg);
		transform: rotate3d(1, 0, 0, 20deg) rotate3d(0, 1, 0, 20deg);
	}
	99.999% {
		-webkit-transform: rotate3d(1, 0, 0, 20000deg)
			rotate3d(0, 1, 0, 20000deg);
		transform: rotate3d(1, 0, 0, 20000deg) rotate3d(0, 1, 0, 20000deg);
	}
	100% {
		-webkit-transform: rotate3d(1, 0, 0, 20deg) rotate3d(0, 1, 0, 20deg);
		transform: rotate3d(1, 0, 0, 20deg) rotate3d(0, 1, 0, 20deg);
	}
}

@-webkit-keyframes fade {
	0% {
		background: rgba(0, 0, 0, 0.96);
	}
	50% {
		background: rgba(0, 0, 0, 0.33);
	}
	100% {
		background: rgba(0, 0, 0, 0.96);
	}
}

@keyframes fade {
	0% {
		background: rgba(0, 0, 0, 0.96);
	}
	50% {
		background: rgba(0, 0, 0, 0.33);
	}
	100% {
		background: rgba(0, 0, 0, 0.96);
	}
}

body.flattened {
	background: rgba(0, 0, 0, 0.93);
	-webkit-animation-name: none;
	animation-name: none;
	-webkit-transform: background 20s linear;
	transform: background 20s linear;
}

body.animated {
	background: #fff8f8 !important;
}

.flattened .cube {
	cursor: help;
	animation: none;
	-webkit-animation: none;
	transform: rotateX(0) rotateY(0) scale(1.5);
	-webkit-transform: rotateX(0) rotateY(0) scale(1.5);
	transition: transform 1s, -webkit-transform 1s;
}

.flattened .cube div {
	-webkit-animation-name: none;
	animation-name: none;
	opacity: 0;
}

.flattened .cube .front {
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
}

.flattened .cube .back {
	transform: translateZ(0) rotateX(180deg);
	-webkit-transform: translateZ(0) rotateX(180deg);
}

.flattened .cube .top,
.flattened .cube .right,
.flattened .cube .bottom,
.flattened .cube .left {
	transform: scale(0);
	-webkit-transform: scale(0);
}

#password-form.animated {
	visibility: hidden;
	opacity: 0;
}

#bg.animated {
	background: #fff8f8 !important;
}

.prose h2 {
	font-size: 2.5rem;
	margin-top: 0;
}

.sticky h2 {
	font-size: 1.2rem;
	margin-top: 0;
}

.sticky a {
	color: #7e7e7e;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.sticky a:hover {
	color: black;
}

.prose ul {
	list-style: none;
	padding-left: 0;
}

.prose ul li {
	padding-left: 0;
}

.prose ul li a {
	text-decoration: none;
}

.prose img {
	max-width: 420px;
}

html,
body {
	scroll-behavior: smooth;
}

.about-button svg,
.faq-button svg {
	pointer-events: none;
}

.mobile-only {
	display: none;
}

body #gform_1 label {
	display: none !important;
}

#gform_1 input::-webkit-input-placeholder {
	text-align: left;
}

#gform_1 input::-moz-placeholder {
	text-align: left;
}

#gform_1 input:-ms-input-placeholder {
	text-align: left;
}

#gform_1 input::-ms-input-placeholder {
	text-align: left;
}

#gform_1 input::placeholder {
	text-align: left;
}

body #gform_1 input,
body #gform_1 textarea {
	/* Existing CSS */
	display: inline-block;
	padding: 10px 20px;
	font-size: 18px;
	color: #fff;
	background-color: #333;
	border: none;
	border-radius: 5px;
	text-decoration: none;
	cursor: pointer;
	outline: none !important;
	width: 22rem;
	max-width: 100%;

	/* New CSS */
	margin-top: 10px;
	-webkit-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}

body #gform_1 input:focus,
body #gform_1 textarea:focus {
	color: #333;
}

body #gform_1 textarea {
	font-size: 1.1rem !important;
	height: 11rem !important;
}

body #gform_1 .gfield_description {
	color: #333333;
	font-size: 13px !important;
	font-weight: 300;
	padding-top: 0 !important;
}

body #gform_1 input:active,
body #gform_1 textarea:active,
body #gform_1 input:focus,
body #gform_1 textarea:focus {
	background: #ffffff;
	border-color: #000000 !important;
}

#gform_1 .gform_footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

body .gform_validation_errors {
	display: none !important;
}

body .gform_wrapper.gravity-theme .gfield_description {
	margin-top: 0;
	border: none;
	position: absolute;
	color: #a41717 !important;
	padding-left: 5px;
	padding-bottom: 0;
}

.header-email {
	color: black;
	-webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
	text-decoration: none;
	margin: 0 0 0 auto;
	top: 3rem;
	right: 5rem;
}

.header-email.header-email-landing {
	right: 0;
}

#password-form:not(.hidden) {
	display: table;
	z-index: 9999 !important;
}

#password-form #pw-field {
	background-color: rgba(255,255,255,1) !important;
	position: relative !important;
	z-index: 99 !important;
	color: #000000 !important;
	text-align: center;
}

#password-form #pw-field::placeholder {
	color: #000000 !important;
}


@media screen and (max-width: 1024px) {
	.mobile-only {
		display: block;
	}
}
@media screen and (max-width: 650px) {
	.header-email.header-email-landing {
		right: 0 !important;
		left: 0 !important;
		text-align: center;
	}
	
	#password-form:not(.hidden) {
		display: block;
		top: 20% !important;
	}
	.cube {
		width: 10rem;
		height: 10rem;
	}

	.cube div {
		width: 10rem;
		height: 10rem;
		line-height: 10rem;
	}

	.cube div.top {
		transform: rotateX(90deg);
		-webkit-transform: rotateX(90deg);
		margin-top: -5rem;
	}

	.cube div.right {
		transform: rotateY(90deg);
		-webkit-transform: rotateY(90deg);
		margin-left: 5rem;
	}

	.cube div.bottom {
		transform: rotateX(-90deg);
		-webkit-transform: rotateX(-90deg);
		margin-top: 5rem;
	}

	.cube div.left {
		transform: rotateY(-90deg);
		-webkit-transform: rotateY(-90deg);
		margin-left: -5rem;
	}

	.cube div.front {
		transform: translateZ(5rem);
		-webkit-transform: translateZ(5rem);
	}

	.cube div.back {
		transform: translateZ(-5rem) rotateX(180deg);
		-webkit-transform: translateZ(-5rem) rotateX(180deg);
	}

	/* ANIMATED */
	.cube.animated div.top {
		transform: rotateX(90deg);
		-webkit-transform: rotateX(90deg);
		margin-top: -1rem;
	}

	.cube.animated div.right {
		transform: rotateY(90deg);
		-webkit-transform: rotateY(90deg);
		margin-left: 1rem;
	}

	.cube.animated div.bottom {
		transform: rotateX(-90deg);
		-webkit-transform: rotateX(-90deg);
		margin-top: 1rem;
	}

	.cube.animated div.left {
		transform: rotateY(-90deg);
		-webkit-transform: rotateY(-90deg);
		margin-left: -1rem;
	}

	.cube.animated div.front {
		transform: translateZ(1rem);
		-webkit-transform: translateZ(1rem);
	}

	.cube.animated div.back {
		transform: translateZ(-1rem) rotateX(180deg);
		-webkit-transform: translateZ(-1rem) rotateX(180deg);
	}

	.cube.animated {
		position: relative;
		width: 2rem;
		height: 2rem;
		margin-top: -1rem;
		margin: 0;
		left: 0;
		top: 5%;
	}

	.cube.animated div {
		width: 2rem;
		height: 2rem;
		line-height: 2rem;
	}

	.prose h2 {
		font-size: 1.8rem;
		margin-top: 0;
	}

	.sticky h2 {
		font-size: 1rem;
		margin-top: 0;
	}
}

/*# sourceMappingURL=custom.css.map */