@font-face { font-family: 'HeliosC-Regular'; src: url('../fonts/HeliosC.ttf')  format('truetype'); } 
@font-face { font-family: 'HeliosC-Bold'; src: url('../fonts/HeliosC-Bold.ttf')  format('truetype'); } 
@font-face { font-family: 'HeliosC-Italic'; src: url('../fonts/HeliosC-Italic.ttf')  format('truetype'); } 

* {
    border: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 24px;
}
body, textarea, input {
    box-sizing: border-box;
    font-size: 16px;
    line-height: 24px;
    font-family: "HeliosC-Regular";
}
a {
    text-decoration: none;
    color: #000;
}
h1, h2 {
    font-size: 30px;
    line-height: 38px;
    color: #00536d;
    margin-bottom: 50px;
    font-weight: 400;
}
h2{
 /*   font-size: 26px;
    line-height: 34px;
    margin-bottom: 35px;*/

}
p {
    line-height: 24px;
}
h3 {
    font-size: 17px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
}

.lg-backdrop {
    background-color: rgb(0 0 0 / 70%) !important;
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
    opacity: 1;
    transition: opacity .2s ease-out .15s;
    background-color: #ccc;
    color: #000;
}

.container {
    max-width: 100%;
    width: 1460px;
    padding: 0 20px;
    margin: auto;
}
.aligncenter
{
    text-align: center;
}

/* Форма ================= */
.form_select {
    padding: 0 13px;
    height: 40px;
    border: 1px solid #00536d;
    width: 100%;
    outline: none;
    cursor: pointer;
    margin-bottom: 40px;
}
.form_label {
    width: 100%;
    margin-bottom: 10px;
    display: block;
}
.form_input {
    padding: 0 13px;
    height: 40px;
    border: 1px solid #00536d;
    width: 100%;
    outline: none;
    margin-bottom: 40px;
}
.form_textarea {
    padding: 10px 13px;
    height: 125px;
    border: 1px solid #00536d;
    width: 100%;
    outline: none;
    margin-bottom: 40px;
}
.form_right {
    display: flex;
    justify-content: flex-end;
}
.form_button {
    width: 155px;
    height: 44px;
    border-radius: 5px;
    border: 1px solid #00536d;
    background-color: #00536d;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
}
.form_button:hover {
    background: transparent;
    color: #00536d;
}
.form_wrapp {
    position: relative;
    margin-bottom: 40px;
}
.form_wrapp input {
    padding-right: 45px;
    margin-bottom: 0;
}
.form_wrapp.error:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: url(../img/error-form.png) no-repeat;
    background-position: center;
    content: "";
    z-index: 1;
}
.form_wrapp.error input {
    border-bottom: 2px solid #ed1c24;
    margin-bottom: 5px;
}
.form_wrapp p {
    display: none;
}
.form_wrapp.error p {
    color: #ed1c24;
    display: block;
}
/* Форма конец ================= */

/* Главная ============================ */

.header {
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    border-bottom: 2px solid #e2e2e2;
}
.header__mobile-menu {
    display: none;
}
.header__burger {
    float: right;
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
    display: none
}
.header__burger span {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 5px;
    background-color: #00536d;
    transition: all 0.5s;
}
.header__burger:after {
    width: 100%;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 5px;
    background-color: #00536d;
    transition: all 0.5s;
}
.header__burger:before {
    width: 100%;
    content: "";
    position: absolute;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 5px;
    background-color: #00536d;
    opacity: 1;
    transition: all 0.5s;
}
.header__burger.active:before {
    transform: rotate(45deg);
    top: 0;
    margin: auto;
}
.header__burger.active:after {
    opacity: 0;
}
.header__burger.active span {
    bottom: 0;
    margin: auto;
    transform: rotate(-45deg);
}
.header__nav {
    display: flex;
}
.header__nav > li {
    list-style: none;
    position: relative;
}
.header__nav > li > a {
    color: #00536d;
    /*font-size: 18px;*/
    padding: 20px 22px;
}
.header__nav > li:hover > a {
    font-weight: bold;
}
.header__nav .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 0px);
    display: none;
    width: 520px;
    z-index: 11;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 30px 30px 30px;
}
.header__nav .sub-menu li {
    list-style: outside;
    margin-top: 15px;
    margin-left: 20px;
    color: #00536d;
    font-size: 20px;
}
.header__nav .sub-menu a {
    color: #00536d;
}
.header__nav > li:hover .sub-menu {
    display: block;
}
.header__nav .sub-menu li a:hover {
    font-size: 16px;
    color: #5082a4;
}
.header-user {
    display: none;
}
.header-btn {
    width: 110px;
    height: 33px;
    line-height: 33px;
    text-align: center;
    font-size: 16px;
    border-radius: 5px;
    text-transform: uppercase;
    background-color: #00536d;
    border: 1px solid #00536d;
    color: #fff;
    transition: 0.3s;
    position: relative;
    z-index: 12;
}
.header-btn:hover {
    background-color: #fff;
    color: #00536d;
}
.header-phone {
    display: flex;
    align-items:center;
    color: #666;
    font-family: "HeliosC-Bold";
    font-size: 17px;
}
.header-phone img {
    margin-right: 10px;
}


.section__content {
    padding-top: 70px;
    padding-bottom: 115px;
}
.section__content-row {
    display: flex;
    justify-content: space-between;
}
.section__content-left {
    width: 70%;
}
.section__content-right {
    width: 25%;
}
.section__content-text {
    margin-bottom: 75px;
}
/*Новости*/

.section__news-item {
    height: 270px;
    display: flex;
    margin-bottom: 60px;
}
.section__news-item.h_auto {
    height: auto;
}
.section__news-image {
    position: relative;
    margin-right: 55px;
    height: 100%;
    transition: all .3s;
}
.section__news-image img {
    height: 100%;
    transition: all .4s;
}
.section__news-image img:hover {
    box-shadow: 0px 0px 30px rgb(0 0 0 / 10%);
}
.section__news-date {
    color: #999;
    margin-bottom: 10px;
    display: block;
}
.section__news-title {
    font-size: 23px;
    line-height: 32px;
    color: #00536d;
    display: block;
    margin-bottom: 35px;
}
.section__news-hr {
    width: 120px;
    height: 4px;
    background-color: #00536d;
}
.section__news-title:hover {
    color: #5082a4;
}
.section__news-excerpt {
    display: block;
    width: 100%;
}
.section__news-btn {
    text-align: right;
}
.section__news-btn a {
    color: #00536d;
}
.section__news-btn a:hover {
    color: #5082a4;
}


.sidebar__foto {
    margin-bottom: 85px;
}
.sidebar__foto-image {
    width: 100%;
    display: block;
    position: relative;
    cursor: pointer;
}
.sidebar__foto-image a {
    display: block;
}
.sidebar__foto-image img {
    width: 100%;
}
.sidebar__foto-image a:hover:after {
    content: "";
    background-image: url(../img/zoom-in.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    top: 0;
}
.sidebar__foto-link {
    color: #00536d;
    text-align: right;
    display: block;
    width: 100%;
    margin-top: 35px;
}
.sidebar__foto-link:hover {
    color: #5082a4;
}
.sidebar__birth {
    padding: 70px 15px;
    background: url(../img/bg-sidebar-1.png) no-repeat center;
    background-size: cover;
    margin-bottom: 90px;     
    position: relative;
}
.sidebar__birth::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: url(../img/bg-sidebar.png) no-repeat center;
    background-size: cover;
}
.sidebar__birth-title {
    color: #fff;
}
.sidebar__birth-link {
    color: #fff;
    display: block;
    width: 100%;
    line-height: 24px;
    margin-bottom: 15px;
}
.sidebar__birth-link:last-child {
    margin-bottom: 0;
}
.sidebar__birth-link.day {
    color: #fce6b0;
}
.sidebar__month-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 16px;
}
.sidebar__month-item.st_mounth .st_day {
    color: #00536d;
}
.sidebar__month-item:last-child {
    margin-bottom: 0;
}
.sidebar__month-number {
    display: block;
    width: 28px;
    line-height: 26px;
    margin-right: 20px;
    text-align: center;
    border: 1px solid #00536d;
    background-color: #00536d;
    transition: all .3s;
    color: #fff;
    min-width:28px;
    
}
.sidebar__month-item.st_day .sidebar__month-number {
    color: #00536d;
    background-color: #fff;
}
.sidebar__month-list span {
    display: block;
    width: 100%;
    color: #333;
    line-height: 23px;
}
.sidebar__month-list a:hover {
    color: #00536d;
}


.footer {
    background-image: -moz-linear-gradient( 0deg, rgb(18,92,119) 0%, rgb(77,161,171) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(18,92,119) 0%, rgb(77,161,171) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(18,92,119) 0%, rgb(77,161,171) 100%);   
    position: relative;
}
.footer-wrapp {
    background: url(../img/bg-footer-row.png);
    background-position: bottom;
    background-repeat: repeat-x;
}
.footer-row {
    height: 205px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo span {
    display: block;
    color: #fff;
    margin-top: 16px;
}
.footer__contact-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
.footer__contact-item img {
    width: 22px;
    margin-right: 24px;
}
.footer__contact-item a {
    color: #fff;
    font-size: 20px;
    display: block;
}
.footer-nav {
    display: flex;
}
.footer-nav li {
    list-style: none;
    padding: 0px 10px;
}
.footer-nav a {
    /*font-size: 18px;*/
    color: #fff;
}
.footer-nav a:hover {
    color: #fce6b0;
}

.scroll-top {
    width: 155px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0 83 109 / 75%);
    color: #fff;
    text-transform: uppercase;
    position: fixed;
    right: 30px;
    bottom: 30px;
    border-radius: 5px;
    display: none;
    z-index: 999999999;
}
.scroll-top img {
    margin-left: 7px;
}
.scroll-top-stop {
    position: absolute;
    right: 30px;
    top: -75px;
}


/* Главная конец ================== */

/* Новость ================== */

.section__guote {
    padding: 5px 0 5px 45px;
    border-left: 4px solid #00536d;
    margin-bottom: 55px;
}
.section__guote p {
    font-size: 18px;
    line-height: 29px;
}
.page__news-image {
    margin-bottom: 25px;
    max-width: 100%;
}
.page__news-subtitle {
    font-family: "HeliosC-Italic";
    font-size: 16px;
    color: #999;
    margin-bottom: 40px;
    line-height: 24px;
}
.page__news-content {
    margin-bottom: 10px;
}
.page__news-content h2,
.page__news-content h3,
.page__news-content h4 {
    margin-top: 50px;
    margin-bottom: 30px;
}
.page__news-content h2 {
    font-size: 24px;
}
.page__news-content blockquote {
    padding: 5px 0 5px 45px;
    border-left: 4px solid #00536d;
    margin-bottom: 30px;
}
.page__news-content blockquote p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 29px;
}
.page__news-content p {
    line-height: 26px;
    margin-bottom: 30px;
}
.page__news-content ol {
    margin-bottom: 30px;
    padding-left: 40px;
}
.page__news-content ul {
    margin-bottom: 30px;
    padding-left: 40px;
}
.page__news-content ol li {
    line-height: 26px;
}
.page__news-content ul li {
    line-height: 26px;
    list-style: none;
    text-indent: -17px;
}
.page__news-content ul li:before {
    content: "";
    display: inline-block;
    height: 7px;
    width: 7px;
    border-radius: 10px;
    background-color: #00536d;
    margin-right: 10px;
}
.page__news-date {
    color: #999999;
}

/* Новость конец ========================= */

/* Документы ============== */
.page__document-item {
    margin-bottom: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid #0d4966;
    margin-top: -10px;
}
.page__document-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}
.page__document-item p:last-child {
    margin-bottom: 0;
}
.page__document-title {
    margin-bottom: 35px;
    font-size: 24px;
    color: #333;
}
.page__document-subtitle {
    margin-bottom: 35px;
    color: #333;
}
.page__document-link {
    display: flex;
    align-items: center;
}
.page__document-link a {
    color: #00536d;
}
.page__document-link a:hover {
    color: #5082a4;
}
.page__document-show {
    margin-right: 40px;
}
.page__document-dowload {
    display: flex;
    align-items: center;
}
.page__document-dowload span {
    margin-right: 20px;
}
.page__document-dowload a {
    margin-right: 20px;
}
.page__document-dowload img:hover {
    transform: scale(1.1);
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
}
.pagination ul {
    width: 100%;
    display: flex;
    justify-content: center;
}
.pagination span,
.pagination a {
    width: 27px;
    line-height: 27px;
    text-align: center;
    color: #00536d;
    display: block;
    transition: all 0.3s;
    margin: 0 5px;
}
.pagination span {
    margin: 0 5px;
}
.pagination span.current {
    color: #fff;
    background-color: #00536d;
}
.pagination li {
    list-style: none;
}
.pagination a:hover {
    background-color: rgba(0, 83, 109, 0.1);
}


/* обращение ============== */
.page__appeals-form textarea {
    height: 430px;
    /*font-size: 18px;*/
}
.page__appeals-mess {
    /*font-size: 18px;*/
    margin-bottom: 20px;
    display: none;
}

/* обращение конец ================= */


/* контакты ================= */
.page__contact-region {
    display: flex;
    justify-content: space-between;
    margin-bottom: 55px;
}
.page__contact-region_title {
    display: flex;
    align-items: center;
    /*font-size: 18px;*/
}
.page__contact-region_title img {
    margin-right: 15px;
}
.page__contact-select, .page__vopros-select, .page__document-select, .page__form-select {
    width: 60%;
    border: 1px solid #00536d;
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0px 20px;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    z-index: 10;
}
.page__form-select{
	width: 100%;
	margin: 0 0 30px;
}
.page__contact-select:after, .page__vopros-select:after, .page__document-select:after, .page__form-select:after {
    content: "";
    width: 17px;
    height: 10px;
    background: url(../img/select.png) no-repeat 100%;
    background-position: center;
    transition: all .5s;
}
.page__contact-select.active:after, .page__vopros-select.active:after, .page__document-select.active:after, .page__form-select.active:after {
    transform: rotate(180deg);
}
@-webkit-keyframes rotate { 0% {left: -30px;margin-left: 0px;} 30% {left: 110%;margin-left: 80px;} 100% {left: 110%;margin-left: 80px;}}
@keyframes rotate { 
    0% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
    100% {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}
.page__contact-select:before, .page__vopros-select:before, .page__document-select:before, .page__form-select:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left-color: #00536d;
    -webkit-animation: rotate 2s infinite linear;
    animation: rotate 2s infinite linear;
    position: absolute;
    display: none;
    top: 0;
    bottom: 0;
    right: 18px;
    margin: auto;
}
.page__contact-select.load:after, .page__vopros-select.load:after, .page__document-select.load:after, .page__form-select.load:after {
    display: none;
}
.page__contact-select.load:before, .page__vopros-select.load:before, .page__document-select.load:before, .page__form-select.load:before {
    display: block;
}
.page__contact-select ul, .page__vopros-select ul, .page__document-select ul, .page__form-select ul {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0px);
    padding: 15px 0;
    background-color: #fff;
    border: 1px solid #00536d;
    z-index: 9;
    display: none;
}
.page__contact-select li, .page__vopros-select li, .page__document-select li, .page__form-select li {
    list-style: none;
    line-height: 26px;
    padding: 0px 15px;
}
.page__contact-select li:hover, .page__vopros-select li:hover, .page__document-select li:hover, .page__form-select li:hover  {
    color: #00536d;
}
.page__contact-select span, .page__vopros-select span, .page__document-select span, .page__form-select span {
    line-height: 40px;
    white-space: nowrap;
}
.page__contact-region select {
    margin-bottom: 0;
}


.select__table-name {
    width: 25%;
}
.select__table-post {
    width: 35%;
}
.select__table-phone {
    width: 20%;
}
.select__table-email {
    width: 25%;
}
.select__table-contact {
    display: none;
    border-right: 0;
    width: 100%;
}
.select__table-phone span,
.select__table-email span {
    /*white-space: nowrap;*/
}

.select__table-head {
    display: flex;
    text-align: center;
    height: 55px;
    background-color: #00536d;
    background-image: -moz-linear-gradient( 0deg, rgb(18,92,119) 0%, rgb(77,161,171) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(18,92,119) 0%, rgb(77,161,171) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(18,92,119) 0%, rgb(77,161,171) 100%);     
}
.select__table-head_colon {
    border-right: 1px solid #fff;
}
.select__table-head_colon:last-child {
    border-right: 0;
}
.select__table-head_colon span {
    color: #fff;
    text-transform: uppercase;
    line-height: 55px;
}
.select__table-body {
    display: flex;
}
.select__table-body_colon {
    min-height: 80px;
    display: flex;
    align-items: center;
    padding: 4px 10px 2px;
    border-right: 1px solid #fff;
}
.select__table-body.color {
    background-color: #dde8f0;
}
.select__table-body_colon span {
    line-height: 24px;
}
.select__table-body_colon a {
    color: #00536d;
}
.select__table-body_colon a:hover {
    color: #5082a4;
}
.select__table-body_colon:last-child {
    border-right: 0;
}

/* контакты конец ================= */

/* Вопросы ====================== */
.page__vopross-item {
    margin-bottom: 60px;
    margin-top: -7px;
}
.page__vopross-title {
    height: auto;
    margin-bottom: 35px;
}
.page__vopross-text {
    height: auto;
}
.page__vopross-text br {
    display: none;
}
.page__vopross-text ul,
.page__vopross-text ol {
    padding-left: 20px;
    line-height: 24px;
    margin-bottom: 20px;
}
.page__vopross-text p {
    margin-bottom: 20px;
}
.page__vopross-text *:last-child {
    margin-bottom: 0;
}

/* Вопросы конец ====================== */

/* галерея ======================== */
.page__gallery-item {
    margin-bottom: 115px;
    margin-top: -7px;
}
.page__gallery-item:last-child {
    margin-bottom: 65px;
}
.page__gallery-link {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 33px;
    display: block;
    color: #00536d;
}
.page__gallery-link:hover {
    color: #5082a4;
}
.page__gallery-element {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.page__gallery-element_date {
    color: #999;
}
.page__gallery-element_count {
    display: flex;
}
.page__gallery-element_count span {
    display: flex;
    align-items: center;
    margin-right: 15px;
    color: #00536d;
}
.page__gallery-element_count span:last-child {
    margin-right: 0;
}
.page__gallery-element_count img {
    margin-right: 5px;
}
.page__gallery-row {
    display: flex;
   
}
.page__gallery-row a {
    height: 240px;
    margin-right: 10px;
    background-size: cover;
    background-position: center;
    flex-grow: 1;
    position: relative;
    transition: all .4s;
    outline: auto;
    overflow: hidden;
    color: #fff;
    display: block;
}
.page__gallery-row a:last-child {
    margin-right: 0;
}
.page__gallery-row a img {
    height: 100%;
    min-width: 100%;
}
.page__gallery-row a:last-child {
    margin-right: 0;
}
.single__gallery-row img {
    min-width: 100%;
}
.page__gallery-foto:hover:after {
    content: "";
    background-image: url(../img/zoom-in.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
.page__gallery-video span {
    position: absolute;
    left: 0;
    bottom: 24px;
    background-color: #00536d;
    background-image: -moz-linear-gradient( 0deg, rgb(18,92,119) 0%, rgb(77,161,171) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(18,92,119) 0%, rgb(77,161,171) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(18,92,119) 0%, rgb(77,161,171) 100%);
    display: flex;
    align-items: center;
    color: #fff;
    width: 170px;
    height: 40px;
    padding-left: 20px;
    transition: all .4s;
}
.page__gallery-video span:before {
    content: "";
    background: url(../img/video-camera-1.png) no-repeat 100%;
    background-position: center;
    width: 25px;
    height: 14px;
    margin-right: 10px;
}
.page__gallery-video:hover span {
    opacity: 0;
}
.page__gallery-video:hover:after {
    content: "";
    background-image: url(../img/play-button.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
.page__gallery-button {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: 0;
    background-color: #00536d;
    background-image: -moz-linear-gradient( 0deg, rgb(18,92,119) 0%, rgb(77,161,171) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(18,92,119) 0%, rgb(77,161,171) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(18,92,119) 0%, rgb(77,161,171) 100%);     
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
}
.page__gallery-button:hover {
    border: 1px solid #00536d;
    background: transparent;
    color: #00536d; 
}
.page__gallery-load {
    text-align: center;
    margin-bottom: 15px;
    display: none;
}
.page__gallery-mb {
    margin-bottom: 60px;
}
.single__gallery-row {
    display: flex;
    flex-wrap: wrap;
}
.single__gallery-row a {
    margin-bottom: 10px;
    margin-right: 0; 
    max-width: 320px;
    height: 240px !important;
}
.page__gallery-url {
    margin-top: 15px;
    text-align: right;
}
.page__gallery-url a {
    color: #00536d;
}
.page__gallery-url a:hover {
    color: #5082a4;
}


/* галерея конец ======================== */

/* Страница входа ===================== */
.page__login {
    padding: 90px 0;
    text-align: center;
}
.page__login-logo {
    display: inline-block;
    margin-bottom: 70px;
}
.page__login-container {
    display: flex;
    justify-content: center;
}
.page__login-form {
    text-align: left;
    width: 380px;
}
.page__login-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page__login-link {
    color: #00536d;
}
.page__login-link:hover {
    color: #5082a4;
}
.page__login-error.active {
    margin-bottom: 20px;
    color: #ed1c24;
}
.page__login-mess {
    border-left: 2px solid #00536d;
    padding: 5px 0 5px 10px;
    margin-bottom: 30px;
    display: none;
}
