.footer{
    background-color: rgb(76, 30, 119);
    color: rgb(115, 187, 187);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -5px;
}
.footer > .footer-image > img{
    width: 216px;
    height: 100%;
}
.footer > .footer-contacts{
    display: flex;
    flex-direction:row;
}
.footer > .footer-contacts > .footer-number{
    width: 130px;
    padding: 20px 5px;
    text-align: center;
    
}
.footer > .footer-contacts > .footer-time{
    width: 180px;
    padding: 20px 5px;
    text-align: center;
    color: gold;
}
.footer > .footer-navbar{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer > .footer-navbar > .footer-nav-link{
    width: 150px;
    height: 25px;
    text-align: center;
}

.footer > .footer-navbar > .footer-nav-link > a{
    color: white;
    text-decoration: none;
    transition: 0.5s;
}   
.footer > .footer-navbar > .footer-nav-link > a:hover{
    letter-spacing: 2px;
    color: gold;
}
.footer-social {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer-social > .social1{
    width: 40px;
    height: 30px;
    text-align: center;
    padding: 10px;
}

.footer-copyright{
    color:#cea135;
}
.footer > .footer-image img{
    opacity: 0.5;
    /*filter: brightness(50%) another method to 
    alter the brightness of the image*/
}
