.stc-footer {
    background-color: var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.stc-footer  a{
    color: var(--color-white);
    text-decoration: none;
}


.stc-footer a:hover,
.stc-footer a:active,
.stc-footer a:focus
{
    color: var(--color-accent);
    font-weight: normal;
    text-decoration: none;
}

.stc-footer__logo {
    display: flex;
    align-items: center;
    color: var(--color-white);
}

.stc-footer__logo img {
    width: 20px;
    margin: 2px;
}

.stc-footer__links a {
    
}

.stc-footer__links a:after {
    content: ".";
    display: inline-block;
    margin-left: 5px;
    color: var(--color-white)
}

.stc-footer__links a:last-of-type:after {
    display: none;
}

.stc-footer__links a:hover:after {
    color: var(--color-white)
}

.stc-footer--mobile {
    display: none;
}

@media screen and (max-width: 600px) {
    .stc-footer {
        display: none;
    }

    .stc-footer--mobile {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background-color: var(--color-primary);
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        /* height: 70px; */
    }

    .stc-footer--mobile > a {
        border-right: 1px solid var(--color-white);
        padding: 10px 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        color: var(--color-white);
        text-decoration: none;
        font-size: 15px;
        row-gap: 5px;
        column-gap: 5px;
    }

    .stc-footer--mobile > a i {
        font-size: 14px;
    }

    .stc-footer--mobile > a:last-child {
        border-right: none;
    }

    .stc-footer--mobile > a img {
        width: 30px;
    }

    .stc-footer--mobile > a i {
        font-size: 25px;
    }

    .stc-footer--mobile > a:hover,
    .stc-footer--mobile > a:active,
    .stc-footer--mobile > a:focus {
        background-color: var(--color-accent);
        color: var(--color-primary);
    }
}