footer {
    background-color: white;
}

footer .footer-logo img {
    max-width: 200px;
}

footer .links>a {
    text-decoration: none;
}

footer .links>div,
footer .links>a {
    font-size: 12px;
    color: var(--primary-button-color);
}

footer .company-info {
    color: var(--primary-button-color);
}

footer .company-info::after {
    width: calc(100% + (var(--default-mobile-x-padding-dist) * 2));
    position: absolute;
    content: '';
    height: 2px;
    background: var(--primary-main-color);
    opacity: .5;
    top: 0;
    left: calc(var(--default-mobile-x-padding-dist) * -1);
}

a:visited,
.alink:visited {
    color: inherit;
}

footer {
    border-top: 2px solid #00608969;
}

@media screen and (min-width: 768px) {

    footer {
        min-height: unset;
        margin-top: 50px !important;
    }

    footer .desk-footer {
        margin-top: 70px;
        margin-bottom: 60px;
    }

    footer .desk-footer img {
        max-width: 200px;
    }

    footer .desk-footer .page:hover {
        border-bottom: 2px solid var(--secondary-main-color);
    }

    footer .desk-footer span {
        font-size: 14px;
        color: var(--secondary-main-color);
    }

}