.site {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-image: url('/closed.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.site-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.site-modal {
	width: 718px;
	max-width: 100%;
	background: white;
	box-shadow: 0px 0px 23.1px 0px #00000026;
	border-radius: 30px;
	padding: 45px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.site-modal__title {
	font-size: 32px;
	line-height: 1.2;
}
.site-modal__content {
	font-size: 19px;
	color: #626262;
	line-height: 1.3;
}
@media screen and (max-width: 991px) {
	.site {
		background-image: url('/closed_mobile.jpg');
	}
	.site-modal {
		padding: 22px;
		gap: 17px;
	}
	.site-modal__title {
		font-size: 20px;
	}
	.site-modal__content {
		font-size: 15px;
	}
	.site-modal button {
		margin-top: 10px;
		font-size: 13px;
		height: 40px;
	}
}