.header .navbar {
	box-shadow: none;
	border-bottom: 0 none;
}
.logo {
	height: 30px;
}
.hero-home {
	position: relative;
	overflow: hidden;
}
.hero-home > .container {
	position: relative;
	z-index: 100;
}
.hreo-bg {
	position: absolute;
	width: 1026px;
	height: 1026px;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
}
.hreo-bg svg {
	position: absolute;
	stroke: rgb(209 213 219 / 0.7);
}
.bg-clip-text {
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	background-image: linear-gradient(to right, #332bae, #8242f6);
}
.animate-spin-slow {
	animation: spin 4s linear infinite;
}
.animate-spin-reverse-slower {
	animation: spin-reverse 6s linear infinite;
}
@keyframes spin {
	100% {
		transform: rotate(1turn);
	}
}
@keyframes spin-reverse {
	100% {
		transform: rotate(-1turn);
	}
}
.partner-list figure {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.partner-list img {
	max-width: 100%;
	max-height: 35px;
}
.nav-pills {
	--bs-nav-pills-link-active-bg: var(--bs-white);
}