.site-footer {
    background: var(--brand-black);
    color: var(--brand-white);
    padding: 4rem 0 2rem;
}

.footer-logo {
    display: block;
    height: auto;
    margin-bottom: 1.2rem;
    max-width: 190px;
}

.footer-title {
    color: var(--brand-white);
    font-size: 1.55rem;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, .78);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact,
.footer-socials {
    display: grid;
    gap: .55rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    font-size: .85rem;
    gap: .7rem;
    margin-top: 1rem;
}

.footer-links li + li {
    margin-top: .6rem;
}

.footer-links a,
.footer-contact a,
.footer-bottom a {
    color: var(--brand-white);
}

.footer-socials a{
    color: rgba(255, 255, 255, .78);
}


.footer-bottom a {
    color: var(--brand-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .65);
    margin-top: 3rem;
    padding-top: 1.4rem;
}

.footer-bottom p {
    margin: 0;
}

@media screen and (min-width: 992px) {
  .copy-right {
        text-align: right;
    }
}