#join-steps-container {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	gap: 3rem;
}

.join-step {
	background: #00b5e2;
	margin: 0 10vw;
	padding: 1vh 3vw 2vh;
	border-radius: 10px;
	box-shadow: 0 0 10px 5px #046d87;
	width: 50vw;
	color: white;
	text-align: center;
}

.join-step:last-of-type {
	margin-bottom: 3rem;
}

h2 {
	font-size: 2rem;
	color: unset;
	padding: unset;
	background: unset;
	border-radius: unset;
	width: unset;
	text-align: unset;
	margin: unset;
}

.step-desc-a {
	padding: 1vw;
	background: white;
	color: #00b5e2;
	text-decoration: none;
	border-radius: 10px;
	font-weight: bold;
}

.step-desc-a:hover {
	color: white;
	background-color: #046d87;
}

.join-step h2 {
	border-bottom: 1px solid white;
}

@media screen and (max-width:1024px) {
	.join-step {
		width: 90%;
	}

	.header-bottom-inner a {
		display: none;
	}

	#page-heading {
		font-size: 2.5rem;
	}

	.header-bottom::after {
		height: 5rem;
		background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0, rgba(0, 0, 0, 0.6) 3rem, transparent 100%);
	}

	main {
		margin-top: 4rem;
	}

	h2 {
		width: unset;
		font-size: 1.5rem;
	}
}