section.header.vh-100 {
}
@media (min-width: 992px) {
	section.header.vh-100 {
		grid-template-rows: 1fr 4fr 40fr;
	}
}

@media (max-width: 991.98px) {
	.nobr br {
		display: none;
	}
}


.mouse {
	width: 24px;
	height: 36px;
	border: 3px solid #ffffff;
	border-radius: 60px;
	position: relative;
	margin: 0 auto;
}

@media (min-width: 992px) {
	.mouse {
		margin: 0 auto 0 0;
	}
}

.mouse::before {
	content: "";
	width: 5px;
	height: 5px;
	position: absolute;
	top: 3px;
	background: var(--bs-accent);
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	opacity: 1;
	animation: mouse 2s infinite;
}

@keyframes mouse {
	from {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}

	to {
		opacity: 0;
		transform: translateX(-50%) translateY(20px);
	}
}