.homepage-hero {
	position: relative;
	border-radius: 1.5rem;
	overflow: hidden;
	padding: 4rem 0.5rem 1.5rem 0.5rem;
	@media (min-width:992px) {
		padding: 4rem 6rem 4rem 6rem;
	}
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	&.homepage-hero-bubbles .homepage-hero-heading {
		padding-bottom: 0rem;
	}
	.homepage-hero-heading {
		font-size: clamp(4.5rem, 9vw, 9rem);
		line-height: 100%;
		font-family: var(--Serif);
		margin: 0 auto;
		text-align: center;
		padding-bottom: 14rem;
		@media (min-width:992px) {
			padding-bottom: 25rem;
		}
		/** CUSTOM POSITIONING BASED ON TITLE **/
			@media (min-width:565px) {
				span {
					position: relative;
					display: block;
				}
				.span-1 {
					left: -28%;
				}
				.span-2 {
					left: 28%;
					margin-top: -0.25em;
				}
			}
	}
	.homepage-hero-background-image {
		position: absolute;
		z-index: -1;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	}
	.bubbles {
		position: relative;
		display: flex;
		flex-direction: column;
		height: clamp(18rem, 29vw, 20rem);
		width: 100%;
		.bubble:nth-of-type(1) {
			top: 0;
			left: 50%;
			transform: translateX(-50%);
		}
		.bubble:nth-of-type(2) {
			top: clamp(7rem, 1vw, 9.25rem);
			left: clamp(0%, 1vw, 10%);
		}
		.bubble:nth-of-type(3) {
			top: clamp(13rem, 1vw, 18.5rem);
			right: clamp(0%, 1vw, 10%);
		}
	}
	.logo-lockup {
		max-width: 100%;
		width: 276px;
		height: auto;
		@media (min-width:992px) {
			width: 470px;
			height: auto;
		}
	}
}

/* Find bubble CSS in bubble.css */
/* .bubble {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-width: auto;
	@media (min-width:992px) {
		min-width: 12.75rem;
	}
	padding: 1rem;
	border-radius: 3.75rem;
	background: rgba(255, 255, 255, 0.90);
	backdrop-filter: blur(2px);
	position: absolute;
	&.bubble-bottom-left {
		border-bottom-left-radius: 0;
	}
	&.bubble-bottom-right {
		border-bottom-right-radius: 0;
	}
	&.bubble-top-left {
		border-top-left-radius: 0;
	}
	&.bubble-top-right {
		border-top-right-radius: 0;
	}

	.label {
		display: inline-block;
		font-size: clamp(0.9rem, 2vw, 1.33688rem);
		line-height: 110%;
		color: var(--Blue);
		flex-grow: 1;
		white-space: nowrap;
		padding: 0 0.5rem;
	}
	.label-up-to {
		text-transform: uppercase;
		font-size: clamp(0.6rem, 0.8vw, 0.8269rem);
		font-variation-settings: 'wght' 670;
		color: var(--Blue);
		line-height: 100%;
		@media (min-width:992px) {
			margin-bottom: -0.5rem;
		}
	}
	.number {
		display: inline-block;
		font-family: var(--Serif);
		font-size: clamp(1.6rem, 3vw, 2.72519rem);
		font-variation-settings: 'wght' 600;
		color: var(--Blue);
	}
} */