* {
    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: 135px;
    background-color: #dfd4c6;
}
.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: 54px;*/
    margin-left: 76px;
    /*margin-right: 30px;*/
}
.header_container .left .title {
    width: 381px;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: 23px;
    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 {
    height: 29px;
    font-size: 23px;
    font-weight: 500;
    color: #AAAAAA;
    line-height: 28px;
    text-decoration: none;
    white-space: nowrap;
    margin-left: 102px;
    padding-bottom: 20px;
}
.header_container .right .nav_current {
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    padding-bottom: 20px;
    border-bottom: 7px solid #333333;
}
/*Header page*/

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

    height: 159px;
    background-color: #BFAF86;
}
.footer_container .copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.footer_container .copyright p:nth-child(1) {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 28px;
    letter-spacing: -1px;
    
}
.footer_container .copyright p:nth-child(2) {
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 28px;
    letter-spacing: -1px;
    
}
/*Footer page*/


