html {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

body {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	background-color: #D6E0EA;
}

.page {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	background-color: #D6E0EA;
}

.page .dispatch {
	background:red;
}

.main {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 328px;
	background: transparent;
}

.main-content {
	display: block;
	margin: 0 2rem;
}

.main-bottom {
	position: absolute;
	width: 100%;
	height: 8px;
	bottom: 0;
	background: linear-gradient(90deg, #4B4BD5 0%, #4A95DA 100%);
	box-shadow: 0px -8px 20px 0px rgba(0, 133, 255, 0.45);
}

h1 {
	text-align: center;
	background: linear-gradient(93deg, #4B4BD5 0%, #4A95DA 98.99%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
	font-family: "bc-alphapipe";
	font-size: 64px;
	font-style: normal;
	font-weight: 400;
	line-height: 4rem;
	text-shadow: 0px 0px 24px rgba(0, 133, 255, 0.45);
	margin: 0 2rem 1rem 2rem;
}

h2 {
	text-align: center;
	text-transform: uppercase;
	color: #436BA7;
	text-align: center;
	text-shadow: 0px 2px 4px #F0F8FF;
	font-family: "JetBrains Mono";
	font-size: 19px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	margin: 0;
}


h2 span {
	opacity: 0;
}

h3 {
	color: #4974FF;
	text-shadow: 0px 0px 26px rgba(0, 0, 255, 0.42);
	font-family: "JetBrains Mono";
	font-size: 48px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
}

.content-top {
	display: block;
	opacity: 0;
	animation: fadeInUp 3s ease forwards;
	animation-delay: 0.5s;
	transform: scale(0.9);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: scale(0.9);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1.0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		/* transform: translateY(-20px); */
	}

	to {
		opacity: 1;
		/* transform: translateY(0); */
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}


.point-1,
.bullet-1,
.point-2,
.bullet-2,
.point-3 {
	opacity: 0;
	animation: fadeIn 1s ease forwards;
}

.point-1 {
	animation-delay: 1s;
}

.bullet-1 {
	animation-delay: 2.5s;
}

.point-2 {
	animation-delay: 1.5s;
}

.bullet-2 {
	animation-delay: 3s;
}

.point-3 {
	animation-delay: 2s;
}

@media screen and (max-width: 490px) {
	.main-content {
		display: grid;
		height: 100%;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		grid-template-areas: "h1" "h2";
	}
	.content-top {
		margin-top: 2rem;
		display: flex;
		grid-area: h1;
		justify-content: center;
		align-items: center;
	}
	.content-bottom {
		margin-bottom: 2rem;
		display: flex;
		grid-area: h2;
		justify-content: center;
		align-items: center;
	}
	/* h1 {
		margin-bottom: 8rem;
	} */
	/* h2 {
		display: block;
		width: 100%;
		margin: 0;
		padding: 0;
		position: absolute;
		bottom: 1rem;
		left: 0;
	} */
	h2 {
		font-size: 1.25rem;
	}
	h2 span {
		display: block;
		width: 100%;
		margin: -0.1rem 0;
	}
}

.background {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: radial-gradient(60.83% 60.83% at 50% 0%, #F1F8FF 0%, #D6E0EA 100%);
	z-index: -999999;
}

.dispatch {
	background: #18182C;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 328px;
}

.dispatch-content {
	display: grid;
	max-width: 960px;
	grid-template-columns: 28rem 2px 1fr;
	grid-template-rows: 6rem;
	grid-template-areas: "title divider content";
}

.dispatch-content-title {
	grid-area: title;
	display: flex;
	justify-content: center;
	align-items: center;
}

.dispatch-content-divider {
	grid-area: divider;
	background: #4A95DA;
}

.dispatch-content-text {
	grid-area: content;
	display: flex;
	justify-content: center;
	align-items: center;
}