.rh-lower {
	position: relative;
	min-height: 0;
	background: transparent;
	margin-top: 24px;
}

.rh-lower__container {
	min-height: 0;
	display: flex;
	align-items: flex-start;
	padding-block: 28px 48px;
}

.rh-lower__content {
	width: 100%;
	text-align: center;
}
.section_tite,
.section_title {
	margin: 0 0 6px;
	font-size: 52px;
	font-weight: 700;
	color: var(--rh-white);
}

.rh-lower__subtitle {
	margin: 0 0 20px;
}

.rh-lower__top {
	background: transparent;
}

.rh-lower-bottom-section {
	position: relative;
	margin-top: -8px;
	background-color: #121B2E;
	background-image: none;
}

.rh-lower-bottom__container {
	padding-block: 20px 48px;
	position: relative;
	z-index: 1;
}

.rh-lower__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 20px;
	row-gap: 20px;
}

.rh-lower__card {
	padding: 40px;
	border-radius: 22px;
	background: rgba(31, 37, 64, 0.88);
	text-align: left;
}

.rh-lower__card--icon-only {
	display: flex;
	align-items: center;
	justify-content: center;
}

.rh-lower__icon {
	width: 72px;
	height: 72px;
	display: block;
	margin-bottom: 18px;
}

.rh-lower__card--icon-only .rh-lower__icon {
	margin-bottom: 0;
}

.rh-lower__card-title {
	margin: 0 0 14px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--rh-white);
}

.rh-lower__card-text {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1100px) {
	.rh-lower__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.section_tite,
	.section_title {
		font-size: 36px;
	}

	.rh-lower {
		margin-top: 28px;
	}

	.rh-lower__container {
		padding-block: 20px 32px;
	}

	.rh-lower__subtitle {
		margin-bottom: 28px;
	}

	.rh-lower-bottom__container {
		padding-block: 16px 32px;
	}

	.rh-lower__grid {
		grid-template-columns: 1fr;
		row-gap: 20px;
	}

	.rh-lower__grid--bottom .rh-lower__card--icon-only {
		order: 3;
	}

	.rh-lower__card {
		padding: 28px;
	}

	.rh-lower__card-title {
		font-size: 18px;
	}

	.rh-lower__card-text {
		font-size: 15px;
	}
}