.footer{
    padding: 10px 0;
    /*width: 100%;*/
    background: rgb(217,224,232) ;
    color: black;
    z-index:2;
    position:relative;
}
.footer-title{
    position: relative;
    color: black;
    font-size: 24px;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 20px;
    /*border-bottom: 1px solid #4e4e4e;*/
}
.footer-title:after{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 30px;
    height: 4px;
    background: orange;
}
.footer-links a{
    padding: 8px 0;
    /*border-bottom: 1px solid rgb(47,85,151) ;*/
    color: black;
    display: block;
    transition: color 0.5s ease-in-out;
    text-decoration:none;
}
.footer-links a:hover{
    color: orange;
}