.footer {
    background: url(/img/footer.webp) no-repeat center center;
    clip-path: polygon(0 15%, 100% 2%, 100% 100%, 0% 100%);
    background-size: cover;
    padding-top: 120px;
    padding-bottom: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
}

.footer-content h6{
    margin-bottom: 5px;
}

.footer-menu a:hover {
    color: #aCaBaB;
}

.hour {
    margin-top: 20px;

}
.hour-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.copy {
    background: #3C3B3B;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 20px;
    text-align: center;
    margin-top: 60px;
    border-radius: 5px;
}

.footer-social {
    display: flex;
    margin-top: 20px;
    grid-gap: 10px;
    justify-content: center
}

@media only screen and (max-width: 900px) {
    .footer-content {
        grid-template-columns: minmax(220px, 300px);
        justify-content: center
    }
}