/* =========================
   FOOTER
========================= */

.footer{
    background:#000;
    color:#fff;
    padding:70px 0 25px;
}

.footer .custom-logo{
    max-width:180px;
    margin-bottom:20px;
}

.footer-about{
    color:#cbd5e1;
    line-height:1.8;
}

.footer h5{
    color:#fff;
    margin-bottom:20px;
    font-weight:600;
}

.footer-menu{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-menu li{
    margin-bottom:10px;
}

.footer-menu a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.footer-menu a:hover{
    color:#2d6cff;
    padding-left:5px;
}

.footer-contact{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-contact li{
    margin-bottom:15px;
    color:#cbd5e1;
}

.footer-subscribe{
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-subscribe input{
    flex:1;
    height:45px;
    border:none;
    border-radius:6px;
    padding:0 15px;
}

.footer-subscribe button{
    width:130px;
    height:45px;
    border:none;
    border-radius:6px;
    background:#2d6cff;
    color:#fff;
    font-weight:600;
}

.footer-subscribe button:hover{
    background:#1e54e5;
}

.footer hr{
    border-color:rgba(255,255,255,.15);
    margin:40px 0 20px;
}

.footer-bottom{
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#cbd5e1;
}

/* MOBILE */

@media(max-width:991px){

    .footer{
        text-align:left;
    }

    .footer .custom-logo{
        margin-bottom:20px;
        display:block;
    }

    .footer-menu,
    .footer-contact,
    .footer h5,
    .footer-about{
        text-align:left;
    }
}