/*Обнуление*/
*{
	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: 400;}
/*---------------------------------------------------*/

html,
body {
    height: 100%;
    line-height: 1;
    font-size: 16px;
    color: #000;
    background-color: #f3f2ef;
    font-weight: 500;
    font-family: Jura;
}
/*---------------------------------------------------*/
.wrapper {
    min-height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
/*---------------------------------------------------*/
._container {
    max-width: 1440px;
    padding: 0px 15px;
    margin: 0px auto;
    box-sizing: content-box;
}
._ibg {
    position: relative;
}
._ibg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
/*---------------------------HEADER------------------*/
.header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 50;
    background-color: #21243d;
    color: #fff;
}
.header__container {
    display: flex;
    min-height: 104px;
    align-items: center;
}
@media (max-width: 479px) {
    header__container {
        min-height: 70px;
    }
}
.header__logo {
    font-size: 33px;
    font-weight: 700;
    font-style: italic;
    color: inherit;
}
.header__menu {
    margin: 0px 0px 0px 133px;
}
@media (max-width: 992px) {
    .header__menu {
        margin: 0px 0px 0px 80px;
    }
}
@media (max-width: 767px) {
    .header__menu {
        margin: 0px 0px 0px 40px;
    }
}
@media (max-width: 479px) {
    .header__menu {
        margin: 0px 0px 0px 20px;
    }
}
.menu {}
.menu__list {
    flex-wrap: wrap;
    display: flex;
}
.menu__item:not(:last-child) {
    margin: 0px 44px 0px 0px;
}
.menu__link {
    color: inherit;
    font-weight: 600;
    line-height: calc(24 / 14 * 100%);
}
@media (max-width: 479px) {
    .menu__link {
        font-size: 18px;
    }
}
/*---------------------------PAGE--------------------*/
.page {
    flex: 1 1 auto;
}
.page__main-block {

}
/*---------------------------FOOTER------------------*/
.footer {
    width: 100%;
    left: 0;
    top: 0;
    z-index: 50;
    background-color: #21243d;
    color: #fff;
}
/*---------------------------MAIN-BLOCK--------------*/
.main-block {
    position: relative;
}
.main-block__container {

}
.main-block__body {
    padding: 184px 0px 191px 0px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
}
.main-block__body > *:not(:last-child) {
    margin: 0px 0px 35px 0px;
}
.main-block__title {
    font-size: 58px;
    line-height: calc(80 / 58 * 100%);
    font-weight: 800;
    text-align: center;
}
.main-block__text {
    font-size: 20px;
    line-height: 150%;
    text-align: justify;
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #000;
    border-radius: 20px;
}
.main-block__quote {
    font-style: italic;
    font-size: 20px;
    line-height: 150%;
    text-align: right;
}
.main-block__signature {
    font-style: italic;
    font-size: 20px;
    line-height: 150%;
    text-indent:30px;
}
.main-block__image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
p { 
    text-indent:30px; 
}