h1 {
	text-align: center;
	margin-bottom: 0px;
}

h1::before {
	display: none;
}

.snow {
	position: fixed;
	z-index: 5;
	inset: 0;
	pointer-events: none;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	opacity: 0.1;
}


._content {
	max-width: 1200px;
	width: 90vw;
	margin: 0 auto;
	padding: 90px 0px;

	font-size: 23px;
}


.content_object {
	padding-top: 130px;
}

.top {
	width: 100%;
	position: relative;
	top: 0px;
	display: block;
}

.bg1 {
	background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(images/bg-1.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	aspect-ratio: 2.18;
}


.contacts1 {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
}


.ticket {
	text-decoration: none;
	color: black;
	display: flex;
	flex-direction: column;
	gap: 0px;
	font-size: 19px;
	display: block;
	background: url(images/ticket.png?3) no-repeat center;
	background-size: cover;
	color: white;
	aspect-ratio: 2.01;
	width: 550px;
	align-content: center;
	justify-items: center;

	box-sizing: border-box;
	padding: 0px 9%;
}

h3 {
	margin-bottom: 0px;
}

h3.bb {
	text-align: center;
	margin-bottom: 50px;
}

h4 {
	margin-bottom: 0px;
	margin-top: 20px;
	text-transform: uppercase;
}



.bg2 {
	background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(images/bg-2.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	aspect-ratio: 2.18;

}



.bg3 {
	background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(images/bg-3.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	aspect-ratio: 2.18;
	display: flex;
	align-items: center;
}

h2.gold {
	color: #e19517;
	font-size: 36px;
	text-align: center;
	font-weight: bold;
}

.tarifs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	align-items: center;
}

.tarifs>A {
	text-align: center;
	background-color: rgba(0, 0, 0, 0.165);
	aspect-ratio: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	text-decoration: none;
	color: black;
}

.tarifs>A:hover {
	text-decoration: none;
	color: black;
}

.tarifs>A>._price {
	font-weight: bold;
}

.tarifs>A>.img {
	display: inline-flex;
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(223, 193, 118, .42);
	border-radius: 50%;
	background: #2a4261 radial-gradient(circle at 35% 28%, rgba(255, 236, 174, .18), rgba(223, 193, 118, .06) 58%, rgba(5, 16, 38, .12));
	color: var(--ny-gold);
	box-shadow: inset 0 0 18px rgba(223, 193, 118, .06), 0 8px 22px rgba(0, 0, 0, .18);
	margin-bottom: 15px;
}


._form {
	width: fit-content;
	margin: 0 auto;
	padding-bottom: 120px;
	padding-top: 120px;
}

._form h2 {
	font-size: 23px;
	text-align: center;
}

.input-holder {
	width: 400px;
	max-width: 100% !important;
}


._form .button {
	margin: 0 auto;
	display: block;
}

@media(max-width: 800px) {

	.content_object {
		padding-top: 110px;
	}

	.tarifs {

		grid-template-columns: repeat(1, 1fr);
		gap: 30px;
	}

	.ticket {
		width: 90vw;
		padding: 0px 17%;
		font-size: 14px;
	}

	.contacts1 {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}

	._content {
		padding: 30px 0px;
	}

	h2.gold {
		font-size: 32px;
	}

	.input-holder {
		width: 80vw;
		max-width: 100% !important;
	}

}