.c-cta {
	padding: 0 20px;
}

.c-cta__block {
	overflow: hidden;
	position: relative;
	display: grid;
	grid-template-columns: 1fr 33.5%;
	gap: 100px;
	align-items: flex-start;
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px;
	border-radius: 40px;
}

.c-cta--wide .c-cta__block {
	grid-template-columns: 1fr 47.22%;
	align-items: center;
	padding: 80px 60px;
}

.c-cta__title {
	font-size: 40px;
	line-height: 1.24;
	color: #fff;
}

.c-cta__line {
	position: relative;
	height: 1px;
	margin: 42px auto;
	background-color: #d9d9d9;
	border: none;
}

.c-cta__line::before,
.c-cta__line::after {
	content: '';
	position: absolute;
	width: 1px;
	height: 21px;
	background-color: #d9d9d9;
	transform: translateY(-50%);
}

.c-cta__line::before {
	inset: 50% auto auto 10px;
}

.c-cta__line::after {
	inset: 50% 10px auto auto;
}

.c-cta__text {
	display: grid;
	gap: 12px;
	margin-top: 32px;
	font-size: 18px;
	color: rgb(255 255 255 / 80%);
}

.c-cta__button {
	margin-top: 32px;
}

.c-cta__button .c-button__text {
	padding: 20px 28px;
	background-color: #fff;
	border-radius: 60px;
	color: #1a1b1d;
}

.c-cta__button .c-button__text::after {
	background: linear-gradient(113deg, #fff 35.12%, #ffc6af 92.14%);
}

.c-cta__button .c-button__icon {
	background-color: #fff;
}

.c-cta__button .c-button__icon::after {
	background: linear-gradient(113deg, #ffc6af 35.12%, #fff 92.14%);
}

.c-cta__button .c-button__icon>span::before {
	background-color: #1a1b1d;
}

.c-cta__button .c-button__icon>span::after {
	background-color: #1a1b1d;
}

.c-cta--wide .c-cta__media {
	margin-top: 18px;
}

.c-cta__media img {
	display: block;
	width: 100%;
}

.c-cta__bg {
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.c-cta__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	.c-cta__block {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 24px 16px;
		border-radius: 24px;
	}

	.c-cta--wide .c-cta__block {
		grid-template-columns: 1fr;
		padding: 24px 16px;
	}

	.c-cta__title {
		font-size: 32px;
	}

	.c-cta__line {
		margin-top: 26px;
		margin-bottom: 26px;
	}

	.c-cta__text {
		margin-top: 24px;
	}

	.c-cta__button {
		margin-top: 24px;
	}

	.c-cta--wide .c-cta__media {
		margin-top: 0;
	}
}

.c-contact {
	position: relative;
	padding: 0 20px;
}

.c-contact__inner {
	width: 100%;
	max-width: 788px;
	margin: 0 auto;
}

.c-contact__block {
	overflow: hidden;
	position: relative;
	padding: 100px 160px;
	border-radius: 40px;
	z-index: 1;
}

.js-fade-up {
	opacity: 0;
	transform: translateY(70px);
	transition: all 1s ease-in-out;
}

.js-fade-up.is-inview {
	opacity: 1;
	transform: translateY(0);
}

.c-contact__title {
	font-size: 50px;
	color: #fff;
	text-align: center;
}

.c-contact__text {
	display: grid;
	gap: 12px;
	margin-top: 32px;
	font-size: 18px;
	color: rgb(255 255 255 / 80%);
	text-align: center;
}

.c-contact__button {
	justify-content: center;
	margin-top: 32px;
}

.c-contact__button .c-button__text {
	padding: 20px 28px;
	background-color: #fff;
	border-radius: 60px;
	color: #1a1b1d;
}

.c-contact__button .c-button__text::after {
	background: linear-gradient(113deg, #fff 35.12%, #ffc6af 92.14%);
}

.c-contact__button .c-button__icon {
	background-color: #fff;
}

.c-contact__button .c-button__icon::after {
	background: linear-gradient(113deg, #ffc6af 35.12%, #fff 92.14%);
}

.c-contact__button .c-button__icon>span::before {
	background-color: #1a1b1d;
}

.c-contact__button .c-button__icon>span::after {
	background-color: #1a1b1d;
}

.c-contact__bg {
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.c-contact__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-contact__benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	padding: 40px;
	background: radial-gradient(68% 84% at 50% 52%, rgb(255 81 58 / 14%) 0%, rgb(255 255 255 / 0%) 100%), #f3f3f3;
	border-radius: 32px;
}

.c-contact__benefits-item {
	display: grid;
	grid-template-columns: 54px 1fr;
	align-items: center;
	gap: 14px;
}

.c-contact__benefits-icon {
	padding: 11px;
	background-color: #1a1b1d;
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.c-contact__benefits-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.c-contact__benefits-text {
	font-weight: 700;
	line-height: 1.3;
	color: #1a1b1d;
}

.c-contact__section-bg {
	position: absolute;
	inset: 140px auto -80px 0;
	width: 100%;
	z-index: -1;
}

.c-contact__section-bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	.c-contact__block {
		padding: 30px 20px;
		border-radius: 24px;
	}

	.c-contact__title {
		font-size: 40px;
	}

	.c-contact__text {
		margin-top: 20px;
	}

	.c-contact__benefits {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 20px;
		border-radius: 24px;
	}

	.c-contact__section-bg {
		inset: auto auto -80px 0;
		height: 480px;
	}
}