* {
    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: 169px;
    background-color: #FFFFFF;
}
.header_container .left {
    display: flex;
    align-items: flex-start;
    justify-items: flex-start;
}
.header_container .left .logo {
    flex-shrink: 0;
    background-image: url("../img/header/logo_1.png");
    background-size: cover;
    width: 70px;
    height: 70px;
    margin-left: 208px;
    margin-right: 16px;
}
.header_container .left .title {
    width: 441px;
    height: 32px;
    line-height: 32px;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    letter-spacing: -1px;
    /*white-space: nowrap;*/
}
.header_container .right {
    display: flex;
    align-items: center;
    justify-items: flex-end;
    padding-right: 208px;
}
.header_container .right .nav {
    text-decoration: none;
    white-space: nowrap;
    height: 29px;
    line-height: 29px;
    font-size: 19px;
    font-weight: bold;
    color: #000000;
    margin-left: 38px;

}
.header_container .right .nav_current {
    padding: 10px 26px;
    color: #FFFFFF;
    border-radius: 12px;
    background-color: #0B75C1;
}
/*Header page*/

/*Footer page*/
.footer_container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 159px;
    background-color: #0B75C1;
}
.footer_container .copyright {
    height: 60px;
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 40px;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
/*Footer page*/


