.footer {
    background-color: rgba(12, 12, 12, 1);
    padding-top: 100px;
}

.footer-inner {
    display: flex;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1220px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 960px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-logo {
    max-width: 350px;
    margin: 0;
}

.footer-logo img {
    width: 100%;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

@media (min-width: 960px) {
    .footer-links {
        text-align: left;
    }
}

.footer-links li a {
    color: #d9d9d9;
    text-decoration: none;
    font-size: 18px;
}

.footer-links li a:hover {
    text-decoration: underline;
}

.footer .btn {
    display: block;
    margin-top: 20px;
}



.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding: 2rem 0;
}

.footer-bottom address {
    font-style: normal;
    margin: 0 2rem;
}

.footer-bottom .contact {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom .contact a {
    text-decoration: none;
    margin: 0 2rem;
}

.footer-bottom .social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 2rem;
}

.footer-bottom .social a {
    text-decoration: none;
}

.footer-bottom .social a img {
    width: 24px;
    height: 24px;
    margin: 0 0.5rem;
}

@media (max-width: 960px) {
    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom .contact {
        margin: 1rem 0;
        flex-direction: column;
    }

    .footer-bottom .contact a {
        margin: 0.5rem 0;
    }

    .footer-bottom .social {
        margin: 1rem 0;
    }
}