/* Footer */

.site-footer {
    padding-block: clamp(2.1875rem, 1.8689rem + 1.3592vw, 3.5rem) clamp(1.8125rem, 1.7063rem + 0.4531vw, 2.25rem);
}

.site-footer__wrapper,
.site-footer__navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-navigation h5 {
    margin-bottom: clamp(0.75rem, 0.6286rem + 0.5178vw, 1.25rem);


}

.footer-navigation ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer-navigation ul .home {
    display: none;
}

.footer-navigation a {
    display: block;
    font-size: var(--font-size-22);
    font-weight: var(--font-weight-regular);
    text-decoration: underline;
    padding-block: .5rem;
}

.site-footer__reviews .google-rating img {
    max-width: clamp(7.125rem, 6.6396rem + 2.0712vw, 9.125rem);;
}

.site-footer__accreditations {
    margin-block: clamp(1rem, 0.8331rem + 0.712vw, 1.6875rem) 1rem;
    gap: clamp(0.625rem, 0.443rem + 0.7767vw, 1.375rem);
    display: flex;
}

.site-footer__accreditations .logo {
    max-width: 7.5rem;
    width: calc(calc(100% - 2rem) / 3);
}

@media screen and (max-width: 1024px) { 

    .site-footer__wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .site-footer__info {
        grid-column: span 2;
        max-width: 280px;
    }
    
    .footer-navigation {
        grid-column: span 1;
    }

    .site-footer .btn {
        grid-column: 3/5;
    }

    .site-info {
        max-width: 280px;
    }

}

@media screen and (max-width: 430px) { 

    .site-footer__wrapper {
        display: block;
    }

    .site-footer__info {
        margin-bottom: 3.375rem;
    }

    .footer-navigation {
        margin-bottom: 2rem;
    }

    .site-info {
        margin-top: 2.5rem;
    }

}