.footer {
    background-color: #24262b;
    margin-top: auto;
}


.footer .footer-logo {
    display: flex;
    justify-content: center;
}

.footer .footer-logo a img {
    padding-top: 20px;
    width: 200px;
    height: 100px;

}

.footer-col {
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.nav-rows {
    display: flex;
    justify-content: center;
}

.nav-rows li {
    margin-right: 10px;
}

.nav-rows li:last-child {
    margin-right: 0;
}

.nav-footer-col ul li a {
    padding-bottom: 10px;
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.nav-footer-col ul li a:hover {
    color: #ffffff;

}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
}


.footer-col .social-links a svg {
    width: 24px;  /* Adjust according to your preference */
    height: 24px; /* Adjust according to your preference */
    fill: #ffffff; /* This sets the SVG color */
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover svg {
    fill: #24262b;
}



@media screen and (max-width: 366px) {
    .nav-rows {
        flex-direction: column;
        text-align: center;
    }
}