/*=========================================================
FOOTER
=========================================================*/

.footer{

    background:#0f172a;

    color:#cbd5e1;

    padding:80px 0 25px;

}

.footer h4,
.footer h5{

    color:#fff;

    font-weight:700;

}

.footer-logo{

    width:70px;

    height:70px;

    object-fit:contain;

}

.footer p{

    line-height:1.8;

}

.footer-links{

    list-style:none;

    margin:0;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--secondary);

    padding-left:8px;

}

.footer-contact{

    list-style:none;

    padding:0;

}

.footer-contact li{

    margin-bottom:15px;

}

.footer-contact i{

    color:var(--secondary);

    width:22px;

}

.footer-social{

    display:flex;

    gap:12px;

}

.footer-social a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#1e293b;

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--secondary);

    color:#000;

    transform:translateY(-4px);

}

.footer hr{

    border-color:#334155;

    margin:50px 0 25px;

}

.footer-bottom{

    color:#94a3b8;

}

.footer-bottom strong{

    color:#fff;

} 

@media(max-width:768px){

.footer{

text-align:center;

}

.footer-logo{

margin:auto;

}

.footer-social{

justify-content:center;

}

}