/**
* Footer
*/
footer {
    background-color: var(--primary-color);
    color: #ffffff;
    width: 100%;
    min-height: 90px;
    display: flex;
    margin-top: 3rem;
    flex-direction: column;
    font-weight: 400;
}
footer .footer-hours,
footer .footer-info,
footer .footer-social,
footer .footer-links,
footer .footer-rights {
    margin-inline: 1.3rem;
}
footer > figure {
    margin: 3rem 0;
    text-align: center;
}
footer > figure > img {
    max-width: 200px;
    width: 70%;
    height: auto;
}
footer .footer-hours {
    margin-block: 0 3rem;
    text-align: center;
}
footer .footer-info {
    margin-block: 0 2rem;
    text-align: center;
}
footer .footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 2.5rem;
    margin-bottom: 0.5rem;
}
footer .footer-hours p:last-child,
footer .footer-info p:last-child,
footer .footer-social p:last-child {
    margin-bottom: 0;
}
footer .footer-social a img {
    max-width: 30px;
    height: auto;
}
footer .footer-social a:nth-child(2) img {
    border-radius: 50%;
}
footer .footer-links {
    display: flex;
    flex-direction: column;
    margin-block: 0 3rem;
    padding: 0;
}
footer .footer-links li {
    border-bottom: 1px solid #ffffff;
    padding: 1.5rem 0;
}
footer .footer-links li a {
    font-size: var(--font-size-regular);
    font-weight: var(--bolder);
    color: #ffffff;
}
footer .footer-rights {
    text-align: center;
    margin-bottom: 2rem;
}
footer .footer-rights .footer-copyright {
    text-align: right;
    font-weight: var(--light);
    margin-block: 3rem 0;
}
footer .footer-desktop-menu {
    display: none;
}
/* Extra small devices (phones, 768px and up)
@media only screen and (min-width: 768px) {
}

/* Small devices (tablets, 992px and up)*/
@media only screen and (min-width: 992px) {
    footer {
        padding: 2rem 2rem;
        display: grid;
        grid-template-columns: repeat(5, auto);
        grid-template-rows: repeat(3, auto);
        grid-column-gap: 2.5rem;
        grid-row-gap: 0px;
    }
    footer > figure {
        grid-area: 1 / 1 / 3 / 2;
    }
    footer > figure > img {
        width: 100%;
    }
    footer .footer-hours {
        grid-area: 1 / 2 / 3 / 3;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-self: center;
        max-width: 270px;
        margin: 0;
    }
    footer .footer-info {
        grid-area: 1 / 3 / 2 / 4;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-self: flex-end;
        max-width: 250px;
        margin: 0 0 1.5rem 0;
    }
    footer .footer-info p {
        display: flex;
        flex-direction: column;
    }
    footer .footer-info p span {
        margin-bottom: 0.5rem;
    }
    footer .footer-social {
        grid-area: 2 / 3 / 3 / 4;
        justify-content: unset;
        margin: 0;
        max-width: 250px;
    }
    footer .footer-desktop-menu {
        display: block;
        grid-area: 1 / 4 / 3 / 5;
        padding-inline-start: 0;
        margin: 0;
    }
    footer .footer-desktop-menu li {
        border-bottom: 1px solid #ffffff;
        padding: 1rem 0;
    }
    footer .footer-desktop-menu li:last-of-type {
        border-bottom: none;
    }
    footer .footer-desktop-menu li a {
        font-size: var(--font-size-regular);
        font-weight: var(--bolder);
        color: #ffffff;
    }
    footer .footer-links {
        grid-area: 1 / 5 / 3 / 6;
        margin: 0;
    }
    footer .footer-links li {
        padding: 1rem 0;
    }
    footer .footer-links li:last-of-type {
        border-bottom: none;
    }
    footer .footer-rights {
        grid-area: 3 / 1 / 4 / 6;
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: repeat(2, auto);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        margin: 2rem 0 0 0;
    }
    footer .footer-rights p:first-of-type {
        grid-area: 1 / 1 / 2 / 3;
        text-align: left;
        margin-bottom: 0;
    }
    footer .footer-rights p:nth-of-type(2) {
        grid-area: 2 / 1 / 3 / 2;
        text-align: left;
    }
    footer .footer-rights p:nth-of-type(3) {
        grid-area: 2 / 2 / 3 / 3;
        text-align: right;
        margin-block: 0;
    }
}
/* Medium devices (Laptop, 1280px and up) */
@media only screen and (min-width: 1280px) {
    footer {
        padding: 4rem 5rem 2rem 5rem;
        display: grid;
        grid-template-columns: repeat(5, auto);
        grid-template-rows: repeat(3, auto);
        grid-column-gap: 3rem;
        grid-row-gap: 0px;
    }
}

/* Large devices (Monitors, 1440px and up) 
@media only screen and (min-width: 1440px) {
}*/
