/*====================================

FOOTER

====================================*/

footer{

padding:120px 8% 60px;

background:#050505;

border-top:1px solid rgba(255,255,255,.08);

text-align:center;

}

.footer-logo h2{

font-family:'Bebas Neue',sans-serif;

font-size:70px;

letter-spacing:10px;

margin-bottom:10px;

}

.footer-logo p{

color:#888;

letter-spacing:3px;

margin-bottom:50px;

}

.footer-menu{

display:flex;

justify-content:center;

gap:45px;

margin-bottom:50px;

flex-wrap:wrap;

}

.footer-menu a{

color:white;

letter-spacing:3px;

font-size:13px;

text-transform:uppercase;

transition:.35s;

position:relative;

}

.footer-menu a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:var(--red);

transition:.35s;

}

.footer-menu a:hover{

color:var(--red);

}

.footer-menu a:hover::after{

width:100%;

}

.footer-copy{

color:#666;

font-size:14px;

letter-spacing:2px;

}
/*==============================

NEW FOOTER

==============================*/

.footer{

background:#050505;

padding:140px 8% 40px;

border-top:1px solid rgba(255,255,255,.08);

}

.footer-top{

display:flex;

justify-content:space-between;

gap:100px;

flex-wrap:wrap;

margin-bottom:90px;

}

.footer-brand{

max-width:420px;

}

.footer-brand .jp{

display:block;

color:var(--red);

letter-spacing:8px;

margin-bottom:12px;

}

.footer-brand h2{

font-family:'Bebas Neue',sans-serif;

font-size:72px;

letter-spacing:8px;

margin-bottom:20px;

}

.footer-brand p{

color:#888;

line-height:2;

}

.footer-links{

display:grid;

grid-template-columns:repeat(3,180px);

gap:50px;

}

.footer-column{

display:flex;

flex-direction:column;

}

.footer-column h4{

margin-bottom:22px;

letter-spacing:3px;

text-transform:uppercase;

font-size:13px;

color:#fff;

}

.footer-column a{

color:#888;

text-decoration:none;

margin-bottom:14px;

transition:.3s;

}

.footer-column a:hover{

color:var(--red);

padding-left:8px;

}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.08);

padding-top:30px;

display:flex;

justify-content:space-between;

flex-wrap:wrap;

gap:20px;

}

.footer-bottom p{

color:#666;

font-size:14px;

}

@media(max-width:900px){

.footer-top{

flex-direction:column;

}

.footer-links{

grid-template-columns:1fr;

gap:40px;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

}