.logo {
	width: 151px;
}

/*Hide Recaptcha badge in the bottom right.*/
.grecaptcha-badge {
	visibility: hidden !important;
}

/*Articles*/
.article-preview .article-description {
	height: 100px;
	overflow-y: hidden;
	position: relative;
}

.article-preview .article-name {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.article-preview .article-description:after {
	content: '';
	background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255, 1));
	position: absolute;
	width: 100%;
	height: 75%;
	bottom: 0;
	left: 0;
}

.article-preview .hero-image-wrapper {
	min-height: 200px;
	align-content: center;
}

.article-section:not(:last-child) {
	margin-bottom: 32px;
}

.article-content p:last-child {
	margin-bottom: 0;
}
/*Fixes how wow doesn't hide the initial state of the object so you see it flash in its final position before animating.*/
.wow {
	visibility: hidden;
}

/*Shine effect*/
.shine {
	position: relative;
	overflow: hidden;
}

	.shine:after {
		content: '';
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: 1;
		animation: slide 1s infinite;
		/*Gradient*/
		background: linear-gradient(75deg, rgba(255,255,255,0) 15%, rgba(255,255,255,0.375) 50%, rgba(255,255,255,0) 85%);
	}

@keyframes slide {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(100%);
	}
}

/*Footer link styling.*/
footer a {
	--bs-text-opacity: 1;
	color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

	footer a:hover {
		border-bottom: 1px solid rgb(var(--bs-white-rgb)) !important;
	}

/*Eliminate excessive bottom spacing on footer.*/
.footer .footer-column p:last-child {
	margin-bottom: 0;
}

/*Success stories*/
.story {
	position: relative;
	overflow: hidden;
}

	.story > i {
		color: rgba(0,1,254, 0.05);
		transform: translate(-50%, -50%);
		position: absolute;
		font-size: 6em;
	}

		.story > i:nth-child(1) {
			top: 20%;
			left: 20%;
		}

		.story > i:nth-child(2) {
			top: 50%;
			left: 65%;
			transform: rotate(180deg);
		}

.stories .story::-webkit-scrollbar {
	display: none;
}

.story-content {
	position: relative;
	height: 250px;
	overflow-y: auto;
	scrollbar-width: none;
}

.story:after {
	content: ' ';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 82%, rgba(255, 255, 255, 1) 100%);
	pointer-events: none;
}

/*Sections*/
.section.bg-primary a {
	color: #FFF !important;
}

/*FAQs*/
.faq p:last-child {
	margin-bottom: 0;
}
