.intro {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}
.intro:after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: rgba(0,0,2,0.5);
	top: 0;
	left: 0;
	opacity: 0.25;
	background-image: url(../img/intro-figure.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;
}
.intro .content {
	width: 100%;
	max-width: 750px;
}
.intro .above-title {
	font-weight: 500;
}
.intro .title {
	margin: 20px 0;
	font-family: 'Inter', sans-serif;
	font-weight: 900;
}
.intro .under-title { 
	margin: 0 0 40px;
}

@media screen and (max-width: 991px) {
	.intro:after {
		background-size: cover;
	}
	.intro .btn-container {
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
