.footer{
    background:rgba(0,0,128,1 );
    color:#fff;
    padding:90px 0 20px;
}

.footer-logo-box{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.footer-logo{
    width:65px;
    height:65px;
    border-radius:50%;
    background:rgba(255,255,0,1);
    color:rgba(0,0,128,1 );
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:bold;
}

.footer-title{
    margin-bottom:25px;
    position:relative;
}

.footer-title::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:50px;
    height:3px;
    background:rgba(255,255,0,1);
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:15px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
}

.footer-links a:hover{
    color:rgba(255,255,0,1);
}

.social-icons{
    margin-top:20px;
}

.social-icons a{
    width:42px;
    height:42px;
    background:rgba(255,255,0,1);
    color:#000;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right:10px;
    text-decoration:none;
}

.footer-line{
    margin:50px 0 20px;
    border-color:rgba(255,255,255,0.1);
}

.footer-bottom{
    text-align:center;
    color:#fff;
}