/* Normal */
._p-header{
	display: flex;
	width: 100%;
	height: 300px;
	position: relative;
	margin-top: -70px;
	overflow: hidden;
	align-items: center;
	justify-content: center;
}
._p-header::after{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(var(--bgrey-40-rgb), 0.2);
	box-shadow: inset 0 0 30px #000;
}

._p-header > .image-container{
	width: 100%;
	height: 100%;
	will-change: transform;
	object-fit: cover;
	transition: transform 0 ease-out;
	transform-origin: top center;
}

._p-header.normal > h1{
	display: flex;
	width: calc(100% - var(--page-hor-padding) * 2);
	height: 60%;
	position: absolute;
	z-index: 1;
	margin: 0;
	margin-top: var(--menu-height);
	/* background: radial-gradient(ellipse at 50%, rgba(var(--bgrey-20-rgb),0.8) 10%, rgba(var(--bgrey-20-rgb),0.6) 25%, transparent 70%); */
	background: radial-gradient(ellipse at 50%, rgba(var(--grey-rgb),0.7) 10%, rgba(var(--grey-rgb),0.6) 25%, transparent 70%);
	align-items: center;
	justify-content: center;
	text-shadow: 0 0 6px #000;
	text-align: center;
	font-size: 60px;
	color: #fff;
}



/* Index */
._p-header.index{
	height: 600px;
}
._p-header.index::after{
	background-color: transparent;
	box-shadow: inset 0 0 1600px #000;
}

._p-header.index > h1{
	width: calc(100% - var(--page-hor-padding) * 2);
	position: absolute;
	z-index: 1;
	padding: 25px calc(var(--page-hor-padding) + 20px);
	margin-top: var(--menu-height);
	background-color: rgba(var(--bgrey-20-rgb),0.2);
	text-shadow: 0 0 6px #000;
	backdrop-filter: blur(2px);
	text-align: center;
	font-size: 60px;
	color: #fff;
}



/* Multiimg */
._p-header.multiimg > .image-container.zooming{
	transition: transform var(--header-duration) ease-out;
	transform: scale(1.2);
}

._p-header.multiimg > .image-container > img{
	transition: opacity var(--header-transition) linear;
	opacity: 0;
}
._p-header.multiimg > .image-container > img.visible{
	opacity: 1;
}






/* radial-gradient(ellipse at 70%, rgba(var(--bgrey-20-rgb),0.9) 15%, rgba(var(--bgrey-20-rgb),0.8) 30%, transparent 70%) */




/* Линза */
/* ._p-header > .image-container{
	width: 100%;
	height: 100%;
	filter: blur(1.5px);
}

._p-header > .text{
	width: 100%;
	height: 130px;
	position: absolute;
	z-index: 1;
	margin-top: var(--menu-height);
	border-top: 1px solid var(--bgrey);
	border-bottom: 1px solid var(--bgrey);
}
._p-header > .text > div{
	display: flex;
	width: calc(100% - var(--page-hor-padding) * 2);
	height: 100%;
	z-index: 1;
	padding: 0 var(--page-hor-padding);
	background-color: rgba(var(--bgrey-20-rgb),0.2);
	align-items: center;
	justify-content: center;
	text-align: center;
	text-shadow: 0 0 3px var(--bgrey-20);
	font-weight: 600;
	font-size: 52px;
	color: #fff;
} */