
/* =========================================
Footer
========================================= */

.hp-footer{
    background:#0a71a8;
    color:#0f172a;
    margin-top:40px;
    font-family:Arial, sans-serif;
}

/* TOP */

.footer-top{
    padding:50px 0 35px;
}

.footer-box{
    margin-bottom:30px;
}

.footer-box h4{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:22px;
    position:relative;
    padding-bottom:10px;
}

.footer-box h4:after{
    content:'';
    width:55px;
    height:3px;
    background:#00b4ff;
    position:absolute;
    left:0;
    bottom:0;
    border-radius:10px;
}

.footer-box p{
    color:#eaeef2;
    line-height:1.9;
    font-size:14px;
}

/* LINKS */

.footer-links{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links li a{
    color:#dbe4ee;
    text-decoration:none;
    transition:.3s;
    font-size:15px;
}

.footer-links li a:hover{
    color:#00b4ff;
    padding-left:5px;
}

/* BROWSERS */

.browser-support{
    margin-top:25px;
}

.browser-support span{
    display:block;
    margin-bottom:12px;
    color:#fff;
    font-weight:600;
}

.browser-icons{
    display:flex;
    gap:12px;
}

.browser-icons img{
    height:36px;
    width:auto;
    background:#fff;
    border-radius:10px;
    padding:5px;
}

/* CONTACT */

.footer-contact p{
    margin-bottom:14px;
}

.last-update{
    color:#7dd3fc;
    font-size:13px;
}

.site-map-btn{
    display:inline-block;
    margin-top:10px;
    padding:10px 20px;
    background:linear-gradient(135deg,#009dff,#005bea);
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.site-map-btn:hover{
    transform:translateY(-2px);
    color:#fff;
}

/* BOTTOM */

.footer-bottom{
    background:#08111f;
    padding:18px 0;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
}

.footer-bottom p{
    margin:0;
    color:#c7d2de;
    font-size:14px;
}

.footer-social{
    display:flex;
    gap:12px;
    list-style:none;
    margin:0;
    padding:0;
}

.footer-social li a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#132238;
    color:#fff;
    border-radius:50%;
    transition:.3s;
    font-size:16px;
}

.footer-social li a:hover{
    background:#00b4ff;
    transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

    .footer-top{
        padding:40px 0 20px;
    }

    .footer-bottom-flex{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .footer-box h4{
        font-size:20px;
    }

}