.footer p.text,
.footer a {
    font-size: 14px;
    margin: 0 auto;
    margin-bottom: 5px;
}

.footer {
    user-select: none;
    background: var(--color-primary);
    color: var(--text-main);
    padding: 30px 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    text-align: left;
    flex-direction: row;
}

.footer p.title {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul.imp-link li::before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 10px;
    color: var(--icon-color);
    padding-right: 5px;
}

.footer a {
    color: var(--link);
    text-decoration: none;
}

.footer a:hover {
    color: var(--link-active)
}

.under-footer {
    background: transparent;
    padding: 25px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.under-footer a {
    color: var(--text-main);
    text-decoration: none;
    margin-right: 20px;
    font-size: 13px;
}

.under-footer a:hover {
    color: var(--link-active)
}

.under-footer a .img {
    border-radius: 50%;
    padding: 0;
    width: 70px;
    filter: grayscale(100%) drop-shadow(0 0 10px var(--bg-shadow));
}

.under-footer a:hover .img {
    filter: grayscale(0) drop-shadow(0 0 15px var(--bg-shadow-blue));
}
