.eco-footer {
    background: #4A4A4A;
    color: #fff;
    padding: 50px 30px;
}

.eco-footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.eco-footer-col {
    color: #fff;
}

.eco-footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.eco-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eco-footer li {
    margin-bottom: 10px;
}

.eco-footer a {
    color: #fff;
    text-decoration: none;
    transition: .3s ease;
}

.eco-footer a:hover {

    color: #fff;

    text-shadow:
        0 0 5px #fff,
        0 0 10px rgba(255,255,255,.6);

}


.eco-footer-logo {
    max-width: 180px;
    height: auto;
}


.eco-item {
    display: flex;
    align-items: center;
    gap: 10px;
}


.eco-svg svg {
    flex-shrink: 0;
}


.eco-footer-bottom {

    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.2);

    text-align: center;

}