/*Обнуление*/
*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}
nav,footer,header,aside{display: block;}
html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family:inherit;}
input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 700;}
/*--------------------------------------------------*/
body {
	font-family: Arial, sans-serif;
}
.wrapper{
	background: url(../img/bg-sm4.jpg) no-repeat;
	background-size: cover;
	background-position: right bottom;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.wrap{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100%;
}
.container{
	max-width: 1180px;
	margin: 0px auto;
	padding: 0px 10px;
}
.header{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 50;
	margin: 75px 0;
}
.header:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background-color: #fff;*/
	z-index: 2;
}
.header_bg:before{
	background-color: #fff;
}
.header__body{
	position: relative;
	display: flex;
	justify-content: space-between;
	height: 100px;
	align-items: center;
}
.header__logo{
	font-size: 60px;
	font-family: 'Oranienbaum', serif;
	/*color: #76204f;*/
	/*color: #0000ba;*/
	color: #000;
	position: relative;
	z-index: 3;
}
.header__burger{
	display: none;
}
.header__menu{}
.header__list{
	display: flex;
	position: relative;
	z-index: 2;
}
.header__list li{
	margin: 0 0 0 50px;
}
.header__link{
	font-size: 30px;
	color: #512036;
	/*color: #000080;*/
}
.content{
	padding: 190px 0 0 0;
	flex-grow: 1;
}
.content__body{
	margin: 20px 0;
}
.content__mail{
	font-weight: bold;
}
.content__text{
	font-size: 18px;
	line-height: 25px;
}
.content__text p{
	margin: 0 0 20px 0;
}
.content__text_right{
	text-align: right;
	font-weight: bold;
}
.content__text a:visited{
	color: blue;
}
.content_top{
	margin: -30px 0 0 0;
}
.content__image{
    margin: 0px auto;
    text-align: center;
}
.content__image img{
	max-width: 100%;
}
.content__sign{
	display: block;
	text-align: right;
	padding-bottom: 120px;
}
.content__sign img{
	width: 400px;
}
.footer__content{
	border-top: 1px solid red;
}
.footer__copy{
	text-align: center;
	font-size: 12px;
	padding: 20px 0;
}

@media (max-width: 1024px){
	.header__list li{
	margin: 0 0 0 30px;
}
	.content__sign img{
	width: 300px;
	}
	.content__sign{
	display: block;
	padding-bottom: 100px;
	}
}

@media (max-width: 768px){
	body.lock{
		overflow: hidden;
	}
	.header__body{
		height: 50px;
		padding: 0 25px;
	}
	.header__logo{
		font-size: 35px;
	}
	.header__burger{
		display: block;
		position: relative;
		width: 30px;
		height: 20px;
		position: relative;
		z-index: 3;
		margin-right: 50px;
	}
	.header__burger span{
		position: absolute;
		/*background-color: #76204f;*/
		/*background-color: #000080;*/
		background-color: #000;
		left: 0;
		width: 100%;
		height: 2px;
		top: 9px;
		transition: all 0.3s ease 0s;
	}
	.header__burger--blue span{
		background-color: blue;
	}
	.header__burger:before,
	.header__burger:after{
		content: '';
		/*background-color: #76204f;*/
		/*background-color: #000080;*/
		background-color: #000;
		position: absolute;
		width: 100%;
		height: 2px;
		left: 0;
		transition: all 0.3s ease 0s;
	}
	.header__burger--blue:before,
	.header__burger--blue:after{
		background-color: blue;
	}
	.header__burger:before{
		top: 0;
	}
	.header__burger:after{
		bottom: 0;
	}
	.header__burger.active span{
		transform: scale(0);
	}
	.header__burger.active:before{
		transform: rotate(45deg);
		top: 9px;
	}
	.header__burger.active:after{
		transform: rotate(-45deg);
		bottom: 9px;
	}
	.header__menu{
		position: fixed;
		top: -100%;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #fff;
		padding: 70px 10px 20px 10px;
		transition: all 0.3s ease 0s;
		overflow: auto;
	}
	.header__menu--index {
		background-color: rgba(255, 255, 255, 0);
	}
	.header__menu.active{
		top: 0;
	}
	.header__list{
		display: block;
		text-align: right;
    	margin: 20px 25px 0 0;
    	padding-top: 45px;
	}
	.header__list li{
		margin: 0 0 20px 0;
	}
	.header__link {
		font-size: 20px;
	}
	.content{
		padding: 130px 0 0 0;
		flex-grow: 1;
	}
	.content__text{
		font-size: 14px;
	}
	.content__text p{
		padding: 0 25px;
		margin: 0 0 10px 0;
	}
	.content__sign img{
		width: 250px;
	}
	.content__sign{
		display: block;
		padding-bottom: 80px;
	}
}

@media (max-width: 425px){
	.wrapper{
		background: url(../img/bg-sm4.jpg) no-repeat;
		background-size: cover;
		background-position: right bottom;
	}
	.header__logo{
		font-size: 27px;
	}
	.header__link {
		font-size: 18px;
	}
	.header__burger{
		margin-right: 0;
	}
	.content__boottom{
	display: none;
	}
	.content__sign img{
	width: 200px;
	}
}