* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    height: 100%;
}

body {
    font-family: Roboto, serif;
    line-height: normal;
}



/* Fonts =============================================================================================================*/

@font-face {
    font-family: Roboto;
    src: url('../../fonts/Roboto-Regular.ttf');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: Roboto;
    src: url('../../fonts/Roboto-Light.ttf');
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: Roboto;
    src: url('../../fonts/Roboto-Medium.ttf');
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: Roboto;
    src: url('../../fonts/Roboto-Bold.ttf');
    font-style: normal;
    font-weight: bold;
}

/* Основные стили==================================================================================================== */

.innerPage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100%;
    min-width: 1180px;
}

.innerPage .innerPage-header {
    display: flex;
    flex: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 40px;
    white-space: nowrap;
}

.innerPage .innerPage-body {
    width: 1180px;
    min-height: calc(100vh - 180px); /* 180px = высота хедера и футера, и отступы боди*/
    margin: 20px 0 40px;
}

.innerPage .innerPage-footer {
    width: 100%;
    text-align: right;
    padding: 0 40px 35px 0;
    font-size: 12px;
    color: #000;
}


/* Стили шапки========================================================================================================*/

.innerPage-header .header-logo {
    color: #000;
    font-size: 30px;
    line-height: 70px;
    font-weight: 500;
    height: 100%;
}

.innerPage-header .header-logo  span {
    position: relative;
    vertical-align: middle;
    font-size: 24px;
    font-weight: normal;
    margin-left: 17px;
    padding-left: 21px;
}

.innerPage-header .header-logo span:after {
    content: "";
    position: absolute;
    height: 40px;
    border-left: 1px solid #000;
    left: 0;
    top: calc(50% - 20px);
}

.innerPage-header .header-logo img {
    vertical-align: middle;
    max-height: 80%;
    max-width: 90%;
    line-height: 1;
    color: #000;
}


.innerPage-header .contacts-box {
    font-size: 22px;
    z-index: 1;
}

.innerPage-header .contacts-box a {
    color: #ffffff;
    text-decoration: none;
}
.contacts-box small {
   font-size: 12px;
}
.contacts-box strong {
   margin: 0px 19px;	
}

.innerPage-header .contacts-box a + a {margin-left: 30px}

.innerPage-header .contacts-box .phone {
    background: url(../img/icon-phone.svg) no-repeat center left;
    padding-left: 25px;
}

.innerPage-header .contacts-box .mail {
    background: url(../img/icon-mail.svg) no-repeat center left;
    padding-left: 35px;
}



/* Страница Регистрации  =============================================================================================*/

.registrationPage {
    background: url('../img/back_2560x1440.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.registrationPage:before {
    content: '';
    position: absolute;
    display: block;
    width: 1180px;
    height: 100%;
    background-size: contain;
    background-position: left 90px;
    left: calc(50% - 590px);
}

.registrationPage .innerPage-body {
    flex: none;
    display: flex;
    justify-content: flex-end;
}

.registrationPage .innerPage-body .cardsBlock {width: 631px;}


.registrationPage .innerPage-body .cardsBlock > a:not(.backLink) {
    display: block;
    height: 140px;
    padding: 35px 25px 25px 150px;
    background: #fff;
    color: #222;
    font-size: 24px;
    position: relative;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0), 0 10px 10px rgba(0,0,0,0.22);
}

.registrationPage .innerPage-body .cardsBlock > a:not(.backLink) img {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
}

.registrationPage .innerPage-body .cardsBlock > a:not(.backLink) p {
    padding: 10px 0 0 0;
    font-size: 18px;
    opacity: 0.7;
}

.registrationPage .innerPage-body .cardsBlock > a:not(.backLink) + a {margin-top: 20px}

/* Ссылка Назад */
.registrationPage .backLink {
    display: inline-block;
    position: relative;
    color: #000;
    background: url('../img/icon-leftarrow-white.svg') no-repeat left center;
    font-size: 18px;
    margin-top: 30px;
    padding-left: 30px;
    text-decoration: none;
}