.site-footer {
    background: #D6EBF5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 40px 25px 40px;
    width: 100%;
    box-sizing: border-box;
}

.primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.secondary {
    display: grid;
    grid-template-areas: "social" "copyright" "legal";
    width: 100%;
}

.logo {
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 0.5px solid #000000;
    text-align: center;
}

.logo > img {
    width: 185px;
}

.info {
    text-align: center;
    padding: 16px 0;
    width: 100%;
}

.info > p {
    font-size: 12px;
    margin: 0;
    color: #000000;
}

.social {
    grid-area: social;
    padding: 16px 0;
    border-bottom: 0.5px solid #000000;
    border-top: 0.5px solid #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.copyright {
    grid-area: copyright;
    text-align: center;
    padding: 16px 0;
}

.copyright > p {
    margin: 0;
}

.legal {
    grid-area: legal;
    text-align: center;
}

.copyright,
.legal {
    font-size: 12px;
}

.legal > a,
.social > a {
    cursor: pointer;
    color: #000;
    text-decoration: none;
    font-style: normal;
}

@media (min-width: 769px) {
    .primary,
    .secondary {
        max-width: 1200px;
        width: 100%;
    }
    
    .primary {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-areas: "hours logo contact";
        align-items: end;
        gap: 40px;
        border-bottom: 0.5px solid #000000;
        padding-bottom: 25px;
    }
    
    .logo {
        grid-area: logo;
        border: none;
        text-align: center;
        justify-self: center;
        padding-bottom: 0px;
    }

    .logo > img {
        width: 300px;
    }
    
    .info {
        border: none;
        padding: 0;
        width: auto;
    }
    
    .info:nth-child(2) {
        text-align: left !important;
    }
    
    .info:last-of-type {
        text-align: right;
    }
    
    .secondary {
        grid-template-areas: "legal copyright social";
        grid-template-columns: 1fr 1fr 1fr;
        padding-top: 25px;
    }
    
    .social {
        flex-direction: row;
        justify-content: end;
        border: none;
        color: #000;
        font-size: 12px;
    }

    .copyright,
    .legal {
        padding: 0;
    }
    
    .legal {
        text-align: left;
    }


    .legal,
    .social {
        display: flex;
        gap: 30px;
        padding: 0;
    }

    .legal > a:hover,
    .social > a:hover {
        text-decoration: underline;
    }
}