/* Home Hero master wrapper */

.hero-home-master {
	position: relative;
	overflow: hidden;
}

.hero-home-master::before {
	content: "";
	position: absolute;
	inset: 0;

	background: linear-gradient(
		0.98deg,
		#14141A 2%,
		rgba(14, 1, 36, 0.81) 66%,
		rgba(35, 2, 93, 0.38) 98%
	);

	pointer-events: none;
}

/*  Add transparent background to logo marquee */
.hero-home-master .logo-marquee-animated {
	background-color: transparent !important;
}

/* Bottom ellipse gradient */
.hero-home-bottom-ellipse {
	position: absolute !important;
	display: flex !important;
	justify-content: center;
	left: 50%;
	bottom: 100px;
	transform: translateX(-50%);
	width: 100% !important;
	pointer-events: none;
	margin: 0 auto;
	overflow-x: clip;
}

.hero-home-bottom-ellipse img {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: max(100%, 900px);
	max-width: none;
	height: auto;
}

/*
@media (max-width: 767px) {
	.hero-home-bottom-ellipse {
		bottom: 25vw;
	}
}
*/