.thank-you-page {
	background: #fff;
}

.thank-you {
	padding: 80px 20px;
	padding-top: calc(70px + 80px);
}

.thank-you__banner {
	position: relative;
	max-width: 750px;
	margin: 0 auto;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	overflow: hidden;
	background-color: #26404f;
	background-image: url('../img/thank-you-page/thank-you__top.webp');
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
}

.thank-you__banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(38, 64, 79, 0.6);
	pointer-events: none;
	z-index: 0;
}

.thank-you__top {
	position: relative;
	z-index: 1;
	height: 230px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding-bottom: 0;
	flex-shrink: 0;
}

.thank-you__success {
	transform: translateY(20px);
	font-family: 'Kobzar KS', sans-serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 0.8;
	color: #f0eee9;
	text-align: center;
	letter-spacing: -1.2px;
}

.thank-you__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 24px 60px 60px;
	text-align: center;
}

.thank-you__title {
	font-family: 'e-Ukraine', sans-serif;
	font-weight: 500;
	font-size: 32px;
	line-height: 1.3;
	color: var(--color-orange);
	text-align: center;
}

.thank-you__text {
	font-family: 'e-Ukraine', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.4;
	color: #fff;
	text-align: center;
}

.thank-you__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 50px;
	padding: 16px 24px;
	border-radius: 56px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	font-family: 'e-Ukraine', sans-serif;
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.28px;
	text-decoration: none;
	transition: background 0.2s ease;
}

.thank-you__btn:hover {
	background: rgba(255, 255, 255, 0.1);
}

.thank-you__btn img {
	transform: rotate(-90deg);
	flex-shrink: 0;
}

@media (max-width: 768px) {

	.thank-you {
		padding: 40px 16px;
		padding-top: calc(70px + 40px);
	}

	.thank-you__banner {
		border-radius: 16px;
	}

	.thank-you__top {
		height: 200px;
	}

	.thank-you__success {
		font-size: 48px;
	}

	.thank-you__body {
		padding: 20px 24px 40px;
	}

	.thank-you__title {
		font-size: 24px;
	}

	.thank-you__text {
		font-size: 14px;
	}
}
