/* global footer styles goes here */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

footer .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 2rem 1rem;
    gap: 1.5rem 1rem;
    flex-direction: column;
    background: white;
}

@media screen and (min-width: 1024px) {
    footer .grid {
        padding: 4rem 2rem;
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    }
    footer .col {
        gap: 1rem;
    }
}

footer .col:first-child {
    grid-column: span 2 / span 2;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-right: 1rem;
}

footer div.land-ack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media screen and (min-width: 1024px) {
    footer .col:first-child {
        grid-column: auto;
    }
}

footer .col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: start;
}

footer .col a {
    text-decoration: none;
    font-size: 1.125rem;
}

footer .col p {
    font-size: 1.125rem;
}

footer .col .logo {
    flex-grow: 1;
}

footer a:hover {
    text-decoration: underline;
    background: none;
}

/*footer .social a {
    display: grid;
    grid-template-columns: 1rem auto;
    gap: 0.5em;
}

footer .social img {
    margin-right: 0.5em;
}

footer .social a span {
    justify-self: center;
}*/

footer .buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer .bottom {
    background: #222222;
    grid-column: span 2 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 24px;
    font-size: 0.65rem;
    color: #fff;
    gap: 0.5rem;
}

@media screen and (min-width: 1024px) {
    footer .bottom {
        grid-column: span 5 / span 5;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        font-size: 0.85rem;
    }
}

footer .bottom p {
    color: #fff;
}

footer .bottom a {
    color: #fff;
    font-weight: 700;
}

@media screen and (min-width: 1024px) {
    footer p:first-child {
        display: flex;
        align-items: center;
    }

    footer p:first-child span {
        margin-right: 0.5rem;
        margin-top: 0.1rem;
    }
}