.simple-footer {
    background:  #b8c3ff ;
    padding: 20px 0;
    width: 100%;
    font-size: 18px;
    border-top:1px solid black;
   
}

.footer-content {
    max-width: auto;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-kafedra-name {
    flex: 0 0 30%;
    text-align: left;
    color:#003366;
    font-weight: 800;
    font-size: 20px;
}

.footer-links {
    flex: 0 0 40%;
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 30px; 
}

.footer-basic-info {
    flex: 0 0 30%;
    text-align: right;
    margin-right: 200px;
}

.footer-basic-info a {
    color:#003366;
    font-weight: 800;
    font-size: 18px;
}
.footer-logo{
    transition: transform 0.9s;
}
.footer-logo:hover{
    transform: scale(1.3);
}
/* fix футера под мобилки */
@media(max-width:768px){
    .footer-content{
        flex-direction: column;

    }
    .footer-kafedra-name{
        text-align: center;
        font-size: 15px;
    }
    .footer-basic-info{
        text-align: center;
        margin: 0 auto;
    }
    .footer-basic-info a{
        font-size: 10px;
    }
}



