﻿footer {
    display: flex;
    align-items: center;
    font-family: 'Raleway', sans-serif;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 10;
    height: var(--v-footer-height);
}

footer p {
    margin-top: 10px;
}

footer .footer-logo {
    width: 200px;
}

footer .footer-icon {
    width: 30px;
    padding-right: 10px;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: none;
}

@media screen and (max-width: 992px) {
    footer {
        height: calc(var(--v-footer-height-multiplier) * var(--v-footer-height));
        font-size: var(--v-fs-sm);
    }
}

footer .footer-links {
    text-transform: uppercase;
}

.footer-vireo-dark {
    color: white;
    background-color: var(--v-grey-dark);
}

.footer-vireo-dark a {
    color: #fff;
}

.footer-vireo-dark a:hover {
    color: var(--v-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
}

@media screen and (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
