.index-footer-ui {
    display: flex;
    flex-direction: row;
    height: 25vh;
    margin-top: 15vh;
    background-color: #e9ecef;
    align-items: center;
    overflow: hidden;
}

.logo {
    height: 15vh;
    transform: scale(1.5);
    margin-left: 5vw;
    margin-right: auto;
    transition: 
        transform 
        0.3s 
        ease;
    /* border: 1px solid green; */
}

.logo:hover{
    cursor: pointer;
    transform: scale(1.65)
}

@media(max-width: 768px) {
    .index-footer-ui{
        flex-direction: column;
        height: 50vh;
    }
    .logo {
        margin-left: auto;
        margin-right: auto;
        transform: scale(1.3);
    }
}