* {
    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: #004831;
}
.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: 225px;
    height: 98px;
    margin-right: 19px;
}
.header_container .left .title {
    width: 469px;
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    color: #FFFFFF;
    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: 24px;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    padding: 12px 22px;
    color: #FFFFFF;
    margin-left: 24px;
}
.header_container .right .nav_current {
    color: #FFF;
    background: #F98B1C;
    border-radius: 12px;
}
/*Header page*/

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

    height: 100px;
    background-color: #004831;
}
.footer_container .copyright {
    /*width: 874px;*/
    height: 49px;
    font-size: 30px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 42px;
    letter-spacing: -1px;
}
/*Footer page*/


