#boost_income {
	padding: 5rem 0;
}

#boost_income .boost__income__container {
	position: relative;
	width: min(100%, 75rem);
	border-radius: 0.625rem;
	overflow: hidden;
	margin: 0 auto;
	padding: 3rem 4.25rem;
	color: var(--Primary-color-Oxfordblue);
}

#boost_income .boost__income__container .boost__income__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

#boost_income .boost__income__container .boost__income__content {
	display: flex;
	flex-direction: column;	
	text-align: center;
}

#boost_income .boost__income__container .boost__income__content .headline {
	font-size: 3rem;
	font-weight: 600;
	line-height: 120%;
	margin-bottom: 0.75rem;
}

#boost_income .boost__income__container .boost__income__content .boost__description {
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 160%;
	color: rgba(9, 44, 76, 0.87);
	margin-bottom: 2rem;
}

#boost_income .boost__income__container .boost__income__content .boost__income__btn {
	align-self: center;
	font-size: 1rem;
	font-weight: 500;
	padding: 0.9375rem 0.75rem;
	border-radius: 0.25rem;
	background: var(--Primary-color-Tangerine-Red);
	color: var(--color-neutral-white);
	border: none;
}

@media screen and (max-width: 639px) {
	#boost_income {
		padding: 3rem 1.25rem;
	}

	#boost_income .boost__income__container {
		padding: 3rem 1.25rem;
	}

	#boost_income .boost__income__container .boost__income__content .headline {
		font-size: 1.75rem;
	}

	#boost_income .boost__income__container .boost__income__content .boost__description {
		color: rgba(9, 44, 76, 0.87);
		line-height: 160%;
		letter-spacing: 0.5px;		
	}

	#boost_income .boost__income__container .boost__income__content .boost__income__btn {
		align-self: unset;
		display: flex;
		justify-content: center;
		padding: 0.75rem 1.5rem;
	}
}