.footer{

    background:#000;

    color:#fff;

    padding:80px 20px 40px;

    text-align:center;

}

.footer-logo img{

    width:140px;

    margin-bottom:40px;

}

.footer-links{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.footer-links a{

    color:#fff;

    text-decoration:none;

    text-transform:uppercase;

    font-size:13px;

    letter-spacing:2px;

    transition:.3s;

}

.footer-links a:hover{

    opacity:.6;

}

.footer-social{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-bottom:35px;

}

.footer-social a{

    color:#999;

    text-decoration:none;

    font-size:14px;

}

.footer-social a:hover{

    color:white;

}

.copyright{

    color:#777;

    font-size:13px;

    letter-spacing:1px;

}

@media(max-width:768px){

.footer-links{

    flex-direction:column;

    gap:15px;

}

.footer-social{

    flex-direction:column;

    gap:12px;

}

}