* {
    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: 219px;
    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: 54px;
    height: 55px;
    margin-left: 45px;
    margin-right: 10px;
}
.header_container .left .title {
    font-size: 26px;
    font-weight: 400;
    color: #000000;
    line-height: 37px;
    
    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: 38px;
    font-size: 26px;
    font-weight: 400;
    color: #000000;
    line-height: 37px;
    margin-left: 30px;
}
.header_container .right .nav_current {
    padding: 15px 36px;
    border: 2px solid #191A23;
    border-radius: 18.7px;
}
/*Header page*/

/*Footer page*/
.footer_container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 118px;
    background-color: #387DE2;
}
.footer_container .copyright {
    margin-left: 118px;

    height: 48px;
    font-size: 29px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 34px;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
/*Footer page*/


