.textWithLightBackGrid {
	grid-template-areas: "figure lightText .";
	grid-template-columns: 2fr 3fr 0.5fr;
	grid-column-gap: 30px;
}
.textWithLightBack_image {
	grid-area: figure;
}
.textWithLightBack_content {
	grid-area: lightText;
	color: #264653;
	padding: 100px 50px;
}
.textWithLightBack_title {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1;
	margin: 0 0 48px;
}
.textWithLightBack_description {
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 2;
	margin-bottom: 30px;
}
.textWithLightBack_buttons {
	display: flex;
	flex-direction: row;
}
.textWithLightBack_buttons .button {
	margin-bottom: 10px;
}
.textWithLightBack_buttons .button:nth-of-type(2) {
	margin: 0 0 10px 20px;
}

@media screen and (max-width: 992px) {
	.textWithLightBackGrid {
		grid-template-areas: "lightText" "figure";
		grid-template-columns: 1fr;
		padding: 60px 0;
	}
	.textWithLightBack_content {
		padding: 0;
	}
	.textWithLightBack_buttons {
		display: block;
	}
	.textWithLightBack_buttons .button:nth-of-type(2) {
		margin-left: 0;
	}
}
