.site-footer {
    margin-top: 4rem;
    background-color: rgb(0, 200, 176);
}

.footer-container {
    max-width: 76rem;
    margin: 0 auto;
    padding: 48px 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0 !important;
    line-height: 27px;
}

.footer-subtitle {
    font-size: 16px;
    margin-bottom: 1rem;
    margin-top: 0 !important;
    line-height: 24px;
}

.footer-text p:last-of-type {
    margin: 0 !important;
}

.footer-text p,
.footer-text a {
    font-size: 16px;
    color: #000;
    line-height: 24px;
    text-decoration: none !important;
}

.footer-text a:hover {
    text-decoration: underline;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    height: 6rem;
    max-width: 100%;
}

.footer-logo img.large-logo {
    height: 8rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .footer-logo img {
        height: 8rem;
    }

    .footer-logo img.large-logo {
        height: 10rem;
    }
}



@media (min-width: 640px) {

    .footer-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {

    .footer-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 1024px) {
    .footer-text {
        margin-top: 0;
    }
}