* {
    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: 88px;
    background-color: #fff;
}
.header_container .left {
    display: flex;
    align-items: center;
    justify-items: flex-start;
}
.header_container .left .logo {
    flex-shrink: 0;
    background-image: url("../img/header/logo_1.png");
    background-size: cover;
    width: 42px;
    height: 42px;
    margin-right: 11px;
}
.header_container .left .title {
    height: 39px;
    font-size: 26px;
    font-weight: 600;
    color: #000000;
    line-height: 30px;
    letter-spacing: -1px;
    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: 25px;
    font-size: 18px;
    font-weight: 400;
    color: #727373;
    line-height: 21px;
    margin-left: 56px;
}
.header_container .right .nav_current {
    color: #006592;
    border-bottom: 4px solid #006592;
}
/*Header page*/

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

    height: 118px;
    background-color: #006592;
}
.footer_container .copyright {
    height: 55px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 21px;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
/*Footer page*/


