/* CSS Document */

#footer {
    background-color: var(--green);
    background-image: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
    padding: 48px 0;
}

#footer .workspace {
    grid-gap: 32px;
}

.footer-item {
    display: grid;
    grid-gap: 8px;
    justify-content: center;
}

.footer-icon-container {
    display: grid;
    width: 64px;
    height: 64px;

    justify-self: center;
    align-self: center;

    border: solid rgba(255, 255, 255, 0.55) 1px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.06);
    transition: transform .3s var(--ease), border-color .3s var(--ease);
}

.footer-item:hover .footer-icon-container {
    transform: translateY(-4px);
    border-color: var(--gold-soft);
}

.footer-icon {
    justify-self: center;
    align-self: center;
    font-size: 30px;
    color: var(--gold-soft);
}

.footer-item h3 {
    color: #fff;
    justify-self: center;
    text-align: center;
}

.footer-item h4 {
    color: #fff;
    justify-self: center;
}

.footer-item a {
    color: #fff;
    justify-self: center;
    text-decoration: none;
}

.footer-item h3,
.footer-item a {
    overflow-wrap: anywhere;
}




#bottom-bar {
    display: grid;
    padding: 10px 0;
    width: 100%;
    justify-content: center;
    background-color: #191919;
}

#bottom-bar p {
    text-align: center;
    color: #fff;
}
