* {
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

/*Header page*/
.header_container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
    background-color: #fff;
}
.header_container .left {
    display: flex;
    align-items: center;
    justify-items: flex-start;
    padding-left: 93px;
}
.header_container .left .logo {
    flex-shrink: 0;
    background-image: url("../img/header/logo_1.png");
    background-size: cover;
    width: 60px;
    height: 60px;
    margin-right: 19px;
}
.header_container .left .title {
    font-size: 26px;
    line-height: 30px;
    font-weight: 500;
    color: #000000;
    letter-spacing: -2px;
    white-space: nowrap;
}
.header_container .right {
    display: flex;
    align-items: center;
    justify-items: flex-end;
    padding-right: 67px;
}
.header_container .right .nav {
    text-decoration: none;
    white-space: nowrap;
    height: 30px;
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
    padding: 10px 12px;
    color: #000000;
    margin-left: 12px;
}
.header_container .right .nav_current {
    color: #FFF;
    background: #004691;
    border-radius: 12px;
}
/*Header page*/

/*Footer page*/
.footer_container {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 118px;
    background-color: #004691;
}
.footer_container .copyright {
    letter-spacing: -1px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    /*width: 967px;*/
    height: 40px;
    font-size: 24px;
    line-height: 40px;
}
/*Footer page*/


