.main-containerfooter {
  padding: 0 !important;
  display: contents;
}

/* ----------------------------------
   Footer
---------------------------------- */

.jr-footer {
	--jr-brand-footer:#181818;
    background: var(--jr-brand-footer);
    color: #ffffff;
    padding: 4rem 0 6.25rem;
    position: relative;
}

.jr-footer__logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(4rem, 3.2rem + 1.6vw, 7.5rem);
}

.jr-footer__logo-link {
    /*background: #fafafa;*/
    border-radius: 0 0 1.25rem 1.25rem;
    display: inline-flex;
    justify-content: center;
    padding: 1.15rem 1.9rem 1rem;
}

.jr-footer__logo {
    display: block;
    max-width: 10rem;
    width: 100%;
}

.jr-footer__container {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}

.jr-footer__grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(0, 1.45fr) minmax(12rem, 1fr) minmax(12rem, 1fr) minmax(13rem, 1fr);
}

.jr-footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-width: 0;
}

.jr-footer__col--brand {
    max-width: 25.5rem;
}

.jr-footer__heading {
    color: #fffcf9;
    font-family: "Manrope", "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.25;
    margin: 0;
    text-transform: uppercase;
}

.jr-footer__text {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Manrope", "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.jr-footer__divider {
    background: rgba(255, 255, 255, 0.12);
    height: 1px;
    width: 100%;
}

.jr-footer__socials {
    display: flex;
    gap: 0.625rem;
}

.jr-footer__socials a {
    display: inline-flex;
    opacity: 0.8;
    transition: transform 180ms ease, opacity 180ms ease;
}

.jr-footer__socials a:hover,
.jr-footer__socials a:focus-visible {
    opacity: 1;
    transform: translateY(-2px);
}

.jr-footer__socials img {
    display: block;
    height: 2.25rem;
    width: 2.25rem;
}

.jr-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.jr-footer__nav a {
    color: #ffffff;
    font-family: "Manrope", "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.85;
    opacity: 0.88;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
    width: fit-content;
}

.jr-footer__nav a:hover,
.jr-footer__nav a:focus-visible {
    color: #ffffff;
    opacity: 1;
    transform: translateY(-2px);
}

.jr-footer__hours {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.jr-footer__hours div {
    align-items: center;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 4.7rem auto;
}

.jr-footer__hours strong,
.jr-footer__hours span {
    font-family: "Manrope", "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.85;
}

.jr-footer__hours strong {
    font-weight: 600;
    letter-spacing: -0.04em;
}

.jr-footer__hours span {
    font-weight: 400;
}

.jr-footer__actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.jr-footer__button {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 0.5rem;
    color: #ffffff;
    display: inline-flex;
    font-family: "Manrope", "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    gap: 0.25rem;
    justify-content: center;
    overflow: hidden;
    padding: 0.75rem 1.125rem;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
    width: fit-content;
}

.jr-footer__button:hover,
.jr-footer__button:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-1px);
}

.jr-footer__button img {
    display: block;
    height: 1.5rem;
    width: 1.5rem;
}

.jr-footer__copyright {
    align-items: center;
    color: #eeeeee;
    display: flex;
    font-family: "Manrope", "Poppins", sans-serif;
    font-size: 0.875rem;
    gap: 0.3125rem;
    justify-content: center;
}

.jr-footer__copyright-mark {
    color: rgba(242, 240, 239, 0.5);
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 1199.98px) {
    .jr-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jr-footer__col--brand {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .jr-footer {
        padding-bottom: 4rem;
    }

    .jr-footer__logo-link {
        padding-inline: 1.25rem;
    }

    .jr-footer__grid {
        grid-template-columns: 1fr;
    }

    .jr-footer__hours div {
        gap: 0.85rem;
        grid-template-columns: 4.7rem auto;
    }
}

