html, body{ margin:0; height:100%; }
.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 33px;
    box-sizing: border-box;
    padding-right: 350px;
    padding-top: 40px;
}
.logo{
    width: 140px;
}
.nav-list{
    display: flex;

}
.nav-item{
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    padding: 9px 15px;
    box-sizing: border-box;
    margin-right: 56px;
    cursor: pointer;
}
.nav-list .active{
    font-size: 18px;
    font-weight: 500;
    color: #67B39F;
    background: #FFFFFF;
    border-radius: 10px;
}
.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: #F1F3EC;
    position: absolute;
    bottom: 40px;
}
.footer a {
    color: #F1F3EC;
    margin-right: 20px;
    cursor: pointer;
}