footer{
    background-color: var(--p8);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    margin-top: auto;
}
footer .container{
     width: 1140px;
     max-width: 1140px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

footer .top{
    box-sizing: border-box;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

footer .top .left{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

footer .top .left .logo{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    text-transform: uppercase;
    text-decoration: center;
    margin-top: 30px;
}

footer .top .left .logo .up{
    color: var(--white-fade);
    font-size: 47px;
    font-weight: 700;
    letter-spacing: 3px;
    border-bottom: 2px solid var(--white-clearest);
    margin-bottom: 12px;
    padding-bottom: 4px;
}

footer .top .left .logo .down{
    color: var(--white-fadest);
    font-size: 20px;
    font-weight: 300;
}

footer .top .right{

}

footer .top .right ul{
    text-align: right;
    color: var(--white-fadest);
    list-style-type: none;
    font-size: 16px;

}
footer .top .right ul .big{
    color: var(--white-fadest);
    text-transform: uppercase;
    margin-bottom: 18px;
    font-size: 28px;
}
footer .top .right ul li{
    color: var(--white-clear);
    margin-top: 10px;
}
footer .top .right ul li a{
    text-decoration: none;
    color: inherit;
    padding-right: 0px;
    transition: all 0.2s ease-in-out 0s;
}
footer .top .right ul li a:hover{
    color: var(--white-fade);
    padding-right: 6px;
}

footer .bottom{
    box-sizing: border-box;
    width: 100%;
    padding: 0px 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255,255,255,0.05);
    color: var(--white-clear)
}