/*====================================
Footer
====================================*/

.footer-section{

    background:#0f172a;
    color:#cbd5e1;
    padding:90px 0 30px;
    position:relative;

}

.footer-section::before{

    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(37,99,235,.08);
    border-radius:50%;
    top:-150px;
    right:-100px;

}

.footer-logo{

    height:60px;
    margin-bottom:25px;

}

.footer-widget p{

    line-height:30px;
    margin-bottom:30px;

}

.footer-widget h4{

    color:#fff;
    margin-bottom:28px;
    font-size:24px;
    position:relative;

}

.footer-widget h4::after{

    content:"";
    width:50px;
    height:3px;
    background:#2563eb;
    display:block;
    margin-top:10px;

}

.footer-widget ul{

    list-style:none;
    padding:0;
    margin:0;

}

.footer-widget ul li{

    margin-bottom:14px;

}

.footer-widget ul li a{

    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;

}

.footer-widget ul li a:hover{

    color:#2563eb;
    padding-left:8px;

}

/* Contact */

.footer-contact div{

    display:flex;
    gap:15px;
    margin-bottom:22px;
    align-items:flex-start;

}

.footer-contact i{

    width:45px;
    height:45px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;

}

.footer-contact span{

    line-height:28px;

}

/* Social */

.footer-social{

    display:flex;
    gap:12px;

}

.footer-social a{

    width:45px;
    height:45px;
    border-radius:50%;
    background:#1e293b;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
    text-decoration:none;

}

.footer-social a:hover{

    background:#2563eb;
    transform:translateY(-5px);

}

/* Bottom */

.footer-section hr{

    border-color:rgba(255,255,255,.08);
    margin:50px 0 25px;

}

.footer-bottom{

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;

}

.footer-bottom p{

    margin:0;

}

.footer-bottom div{

    display:flex;
    gap:20px;

}

.footer-bottom a{

    color:#cbd5e1;
    text-decoration:none;

}

.footer-bottom a:hover{

    color:#2563eb;

}

/* Responsive */

@media(max-width:991px){

.footer-bottom{

    text-align:center;
    justify-content:center;

}

.footer-widget{

    margin-bottom:20px;

}

}