/*Шапка*/
.hero
{
	position: relative;
	height: 100vh;
	height:100svh;
	overflow: hidden;
}

.hero__picture
{
	height: 100%;
	position: absolute;
	z-index: -1;
	width: 100%;
}

.hero__meta
{
	height: 100%;
	display: grid;
	align-items: end;
	color:var(--white);
}

.hero__meta-h1
{
	font-size: 43px;
	line-height: 1;
}

@media (min-width: 990px)
{
	.hero
	{
		height: 100vh;
		aspect-ratio:auto;
		overflow: hidden;
	}
	
	.hero__picture
	{
		height: 100%;
	}
	
	.hero__meta-h1
	{
		font-size: 80px;
		line-height: 1;
		margin-bottom: 50px;
	}
}

/*Текст 1*/
.text-one
{
	position: relative;
	margin-top: 75px;
}

.text-one__part-one
{
	font-size: 36px;
	line-height: 0.9;
}

.text-one__part-two p
{
	margin-bottom: 25px;
}

.text-one__decor
{
	position: absolute;
	z-index: -1;
}

@media (max-width: 990px)
{
	.text-one__part-one
	{
		margin-bottom: 50px;
	}
	
	.text-one__picture
	{
		grid-column-start: 2;
		grid-column-end: 7;
		margin-right: calc(-1 * var(--indent));
		margin-bottom: 50px;
		max-width: none;
	}
	
	.text-one__decor
	{
		bottom: -150px;
		width: 75vw;
	}
	
	.text-one__decor svg
	{
		width: 100%;
		height: 100%;
	}
}

@media (min-width: 990px)
{
	.text-one
	{
		margin-top: 125px;
	}
	
	.text-one__meta
	{
		grid-template-rows: repeat(5, auto);
	}
	
	.text-one__part-one
	{
		grid-area: 1 / 1 / 3 / 6;
		font-size: 60px;
		margin-bottom: 75px;
	}
	
	.text-one__part-two
	{
		grid-area: 3 / 2 / 6 / 6;
	}
	
	.text-one__picture
	{
		grid-area: 1 / 6 / 6 / 13;
	}
	
	.text-one__decor
	{
		bottom: -250px;
	}
}

/*Форма*/
.form
{
	position: relative;
	margin-top: 200px;
}

.form__title
{
	font-size: 36px;
	line-height: 1;
	margin-bottom: 25px;
}

.form__label
{
	display: block;
	font-style: italic;
	color:var(--brown);
	margin-bottom: 5px;
}

.form__input
{
	border:1px solid var(--brown);
	width: 100%;
	height: 50px;
	padding: 0 10px;
	background-color: transparent;
	/*+border-radius:var(--radius);*/
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	-khtml-border-radius: var(--radius);
	border-radius:var(--radius);
}

.form__field
{
	margin-bottom: 25px;
}

.form__textarea
{
	border:1px solid var(--brown);
	width: 100%;
	background-color: transparent;
	padding: 10px;
	/*+border-radius:var(--radius);*/
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	-khtml-border-radius: var(--radius);
	border-radius:var(--radius);
}

.form__agree
{
	display: grid;
	grid-template-columns: 40px auto;
	column-gap:var(--gap);
	font-size: 16px;
	color:var(--brown);
	margin-bottom: 25px;
}

.form__agree-text
{
	font-size: 14px;
	font-style: italic;
	line-height: 1.3;
}

.form__agree a
{
	text-decoration: underline;
}

.form__checkbox
{
	border:1px solid var(--brown);
	width: 30px;
	height: 30px;
}

.form__special
{
	display: none;
}

.form__submit
{
	width: 100%;
}

.form__submit:disabled
{
	cursor: not-allowed;
}

.form__decor
{
	position: absolute;
	right: 0;
	z-index: -1;
}

@media (max-width: 990px)
{
	.form__textarea-container
	{
		display:contents;
		order: 1;
	}
	
	.form__decor
	{
		top: -65px;
	}
	
	.form__decor svg
	{
		width: 60vw;
		height: auto;
	}
}

@media (min-width: 990px)
{
	.form__title
	{
		margin-bottom: 75px;
		font-size: 60px;
	}
	
	.form__grid
	{
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: max-content max-content;
		column-gap:var(--gap);
	}
	
	.form__fields-container
	{
		grid-area: 1 / 1 / 2 / 2;
	}
	
	.form__textarea-container
	{
		grid-area: 1 / 2 / 3 / 3;
	}
	
	.form__send-container
	{
		grid-area: 2 / 1 / 3 / 2;
		align-self: end;
	}
	
	.form__field-group
	{
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap:var(--gap);
	}
	
	.form__textarea
	{
		height: calc(100% - 33px);
	}
	
	.form__agree
	{
		align-items: center;
	}
	
	.form__decor
	{
		top: -50px;
	}
}

/*Картинка*/
.picture
{
	margin-top: 100px;
}

.picture__picture
{
}

.picture__image
{
	margin: 0 auto;
}

@media (min-width: 990px)
{
	.picture
	{
		margin-top: 175px;
	}
}
