@media (max-width: 1000px) {
	.main .top {
		flex-direction: column;
		align-items: center;
	}

	.main .top .slogan {
		border-right: 0px !important;
	}
}

@media (max-width: 670px) {
	.main .top .waitlist {
		width: 90% !important;
	}
}


.main .top {
	display: flex;
	position: relative;
	width: calc(100% - 2rem);
	padding: 0 2rem;
	background: radial-gradient(var(--racing-red), transparent);
}


.main .top .slogan {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: fit-content;
	margin: 6rem 1rem;
	width: 70%;
	border-right: 2px solid var(--racing-red);

}

.main .top .slogan p {
	position: relative;
	font-weight: bold;
	font-size: 6rem;
}

.main .top .slogan p:before {
	z-index: -1;
    content: attr(data-text);
    position: absolute;
    left: 0;
    right: 0;
    transform: skewX(-60deg) translateX(-3rem);
    transform-origin: bottom left;
	color: var(--racing-red);
}

.main .top .slogan .emphasis {
	font-size: 8rem;
	position: relative;
	color: var(--lavendar-mist);
	font-weight: bold;
	font-family: "Lobster Two";
}

.main .top .slogan .emphasis:before {
	z-index: -1;
	position: absolute;
	color: transparent;
	content: "grow";
	border-bottom: 4px solid black;
	width: fit-content;
	top: -1.5rem;
}

.main .top .waitlist {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	height: fit-content;
	margin: 6rem 1rem;
	width: 30%;
}

.main .top .waitlist p {
	position: relative;
	font-weight: bold;
	color: black;
	width: max-content;
	font-size: 3rem;
}

.main .top .waitlist input {
	font-size: .9rem;
	border-radius: 1rem;
	padding: 1rem 2rem;
	border: 0;
	box-shadow: 5px -5px var(--racing-red);
}

.main .top .waitlist button {
	border-radius: 1rem;
	padding: 1rem 2rem;
	border: 0;
	box-shadow: 5px -5px var(--racing-red);
	transition: .3s;
}

.main .top .waitlist button:not(:disabled) {
	cursor: pointer;
}

.main .top .waitlist button:not(:disabled):hover {
	filter: brightness(.8);
}

.main .middle_text {
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1rem 0;
	color: #00000099;
}

